-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathYoonit.Camera.common.ts
78 lines (59 loc) · 2.55 KB
/
Yoonit.Camera.common.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
// +-+-+-+-+-+-+
// |y|o|o|n|i|t|
// +-+-+-+-+-+-+
//
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// | Yoonit Camera Plugin for NativeScript applications |
// | Luigui Delyer, Haroldo Teruya, |
// | Victor Goulart & Márcio Bruffato @ Cyberlabs AI 2020 |
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
import {
ContentView,
EventData
} from '@nativescript/core';
import {
Camera as CameraDefinition,
StatusEventData,
FaceImageCreatedEventData,
FaceDetectedEventData,
BarcodeScannedEventData,
FrameImageCreatedEventData,
} from '.';
export abstract class CameraBase extends ContentView implements CameraDefinition {
public preview(): void {
this.nativeView.startPreview();
}
public stopCapture(): void {
this.nativeView.stopCapture();
}
public toggleLens(): void {
this.nativeView.toggleCameraLens();
}
public getLens(): number {
return this.nativeView.getCameraLens();
}
public startCapture(captureType: string): void {}
public setFaceNumberOfImages(faceNumberOfImages: number): void {}
public setFaceDetectionBox(faceDetectionBox: Boolean): void {}
public setFaceTimeBetweenImages(faceTimeBetweenImages: number): void {}
public setFacePaddingPercent(facePaddingPercent: number): void {}
public setFaceImageSize(width: number, height: number): void {}
public setFaceCaptureMinSize(faceCaptureMinSize: number): void {}
public setFaceCaptureMaxSize(faceCaptureMaxSize: number): void {}
public setFrameNumberOfImages(frameNumberOfImages: number): void {}
public setFrameTimeBetweenImages(frameTimeBetweenImages: number): void {}
public requestPermission(explanationText?: string): Promise<boolean> {
return new Promise((resolve, reject) => resolve());
}
public hasPermission(): boolean { return false; }
}
export interface CameraBase {
on(eventNames: string, callback: (data: EventData) => void, thisArg?: any);
on(event: "faceImage", callback: (args: FaceImageCreatedEventData) => void, thisArg?: any);
on(event: "frameImage", callback: (args: FrameImageCreatedEventData) => void, thisArg?: any);
on(event: "faceDetected", callback: (args: FaceDetectedEventData) => void, thisArg?: any);
on(event: "endCapture", callback: () => void, thisArg?: any);
on(event: "qrCodeContent", callback: (args: BarcodeScannedEventData) => void, thisArg?: any);
on(event: "status", callback: (args: StatusEventData) => void, thisArg?: any);
on(event: "permissionDenied", callback: () => void, thisArg?: any);
}