-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathYoonit.Camera.ios.ts
314 lines (261 loc) · 9.52 KB
/
Yoonit.Camera.ios.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
// +-+-+-+-+-+-+
// |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 {
StatusEventData,
FaceImageCreatedEventData,
FaceDetectedEventData,
BarcodeScannedEventData,
FrameImageCreatedEventData
} from '.';
import { CameraBase } from './Yoonit.Camera.common';
import {
EventData,
ImageSource,
knownFolders,
path,
File
} from '@nativescript/core';
export class YoonitCamera extends CameraBase {
nativeView: CameraView;
private permission: boolean = false;
/**
* Creates new native button.
*/
public createNativeView(): Object {
this.nativeView = CameraView.new();
this.nativeView.cameraEventListener = CameraEventListener.initWithOwner(new WeakRef(this));
return this.nativeView;
}
/**
* Initializes properties/listeners of the native view.
*/
initNativeView(): void {
// Attach the owner to nativeView.
// When nativeView is tapped we get the owning JS object through this field.
(<any>this.nativeView).owner = this;
super.initNativeView();
}
/**
* Clean up references to the native view and resets nativeView to its original state.
* If you have changed nativeView in some other way except through setNative callbacks
* you have a chance here to revert it back to its original state
* so that it could be reused later.
*/
disposeNativeView(): void {
this.nativeView.stopCapture();
this.nativeView.cameraEventListener = null;
// Remove reference from native listener to this instance.
(<any>this.nativeView).owner = null;
// If you want to recycle nativeView and have modified the nativeView
// without using Property or CssProperty (e.g. outside our property system - 'setNative' callbacks)
// you have to reset it to its initial state here.
super.disposeNativeView();
}
public startCapture(captureType: string) {
this.nativeView.startCaptureTypeWithCaptureType(captureType);
}
public setFaceNumberOfImages(faceNumberOfImages: number) {
this.nativeView.setFaceNumberOfImagesWithFaceNumberOfImages(faceNumberOfImages);
}
public setFaceDetectionBox(faceDetectionBox: boolean) {
this.nativeView.setFaceDetectionBoxWithFaceDetectionBox(faceDetectionBox);
}
public setFaceTimeBetweenImages(faceTimeBetweenImages: number) {
this.nativeView.setFaceTimeBetweenImagesWithFaceTimeBetweenImages(faceTimeBetweenImages);
}
public setFacePaddingPercent(facePaddingPercent: number) {
this.nativeView.setFacePaddingPercentWithFacePaddingPercent(facePaddingPercent);
}
public setFaceImageSize(width: number, height: number) {
this.nativeView.setFaceImageSizeWithWidthHeight(width, height);
}
public setFaceCaptureMinSize(faceCaptureMinSize: number): void {
this.nativeView.setFaceCaptureMinSizeWithFaceCaptureMinSize(faceCaptureMinSize);
}
public setFaceCaptureMaxSize(faceCaptureMaxSize: number): void {
this.nativeView.setFaceCaptureMaxSizeWithFaceCaptureMaxSize(faceCaptureMaxSize);
}
public setFrameNumberOfImages(frameNumberOfImages: number) {
this.nativeView.setFrameNumberOfImagesWithFrameNumberOfImages(frameNumberOfImages);
}
public setFrameTimeBetweenImages(frameTimeBetweenImages: number) {
this.nativeView.setFrameTimeBetweenImagesWithFrameTimeBetweenImages(frameTimeBetweenImages);
}
public requestPermission(explanation: string = ''): Promise<boolean> {
return new Promise((resolve, reject) => {
const cameraStatus = AVCaptureDevice.authorizationStatusForMediaType(AVMediaTypeVideo);
switch (cameraStatus) {
// Not determined: Explicit user permission is required for media capture,
// but the user has not yet granted or denied such permission..
case 0: {
AVCaptureDevice.requestAccessForMediaTypeCompletionHandler(AVMediaTypeVideo, (granted) => {
if (granted) {
this.permission = true;
resolve(true);
} else {
this.permission = false;
reject(false);
}
});
break;
}
// Restricted: the user is not allowed to access media capture devices.
case 1:
// Denied: The user has explicitly denied permission for media capture.
case 2: {
this.permission = false;
reject(false);
break;
}
// Authorized: The user has explicitly granted permission for media capture,
// or explicit user permission is not necessary for the media type in question.
case 3: {
this.permission = true;
resolve(true);
break;
}
}
});
}
public hasPermission(): boolean {
return this.permission;
}
}
@ObjCClass(CameraEventListenerDelegate)
@NativeClass()
class CameraEventListener extends NSObject implements CameraEventListenerDelegate {
private owner: WeakRef<YoonitCamera>;
public static initWithOwner(owner: WeakRef<YoonitCamera>): CameraEventListener {
const delegate = CameraEventListener.new() as CameraEventListener;
delegate.owner = owner;
return delegate;
}
private imageProcessing(imagePath: string): object {
let imageName: any = imagePath.split('/');
imageName = imageName[imageName.length - 1];
const finalPath: string = path
.join(knownFolders.documents().path, imageName)
.replace('file://', '');
const source: ImageSource = ImageSource.fromFileSync(finalPath);
const imageFile = File.fromPath(finalPath);
const binary = imageFile.readSync();
return {
path: finalPath,
source,
binary
};
}
public onFaceImageCreatedWithCountTotalImagePath(count: number, total: number, imagePath: string): void {
const owner = this.owner.get();
const image = this.imageProcessing(imagePath);
if (owner) {
owner.notify({
eventName: 'faceImage',
object: owner,
count,
total,
image
} as FaceImageCreatedEventData);
}
}
public onFrameImageCreatedWithCountTotalImagePath(count: number, total: number, imagePath: string): void {
const owner = this.owner.get();
const image = this.imageProcessing(imagePath);
if (owner) {
owner.notify({
eventName: 'frameImage',
object: owner,
count,
total,
image
} as FrameImageCreatedEventData);
}
}
public onFaceDetectedWithXYWidthHeight(x: number, y: number, width: number, height: number): void {
const owner = this.owner.get();
if (owner) {
owner.notify({
eventName: 'faceDetected',
object: owner,
x,
y,
width,
height
} as FaceDetectedEventData);
}
}
public onFaceUndetected(): void {
const owner = this.owner.get();
if (owner) {
owner.notify({
eventName: 'faceDetected',
object: owner,
x: null,
y: null,
width: null,
height: null
} as EventData);
}
}
public onEndCapture(): void {
const owner = this.owner.get();
if (owner) {
owner.notify({
eventName: 'endCapture',
object: owner,
} as EventData);
}
}
public onErrorWithError(error: string): void {
const owner = this.owner.get();
if (owner) {
owner.notify({
eventName: 'status',
object: owner,
status: {
type: 'error',
status: error
}
} as StatusEventData);
}
}
public onMessageWithMessage(message: string): void {
const owner = this.owner.get();
if (owner) {
owner.notify({
eventName: 'status',
object: owner,
status: {
type: 'message',
status: message
}
} as StatusEventData);
}
}
public onPermissionDenied(): void {
const owner = this.owner.get();
if (owner) {
owner.notify({
eventName: 'permissionDenied',
object: owner,
} as EventData);
}
}
public onBarcodeScannedWithContent(content: string): void {
const owner = this.owner.get();
if (owner) {
owner.notify({
eventName: 'qrCodeContent',
object: owner,
content
} as BarcodeScannedEventData);
}
}
}