@regulaforensics/ionic-native-face-api
Version:
Ionic Native wrapper for cordova face api
156 lines (143 loc) • 6.76 kB
text/typescript
import { Component, ViewChild, ElementRef } from '@angular/core'
import { Dialogs } from '@awesome-cordova-plugins/dialogs/ngx'
import { File } from '@awesome-cordova-plugins/file'
import { Camera, DestinationType, MediaType, PictureSourceType } from '@awesome-cordova-plugins/camera/ngx'
import { Platform } from '@ionic/angular'
import { Enum, FaceCaptureResponse, LivenessResponse, MatchFacesResponse, MatchFacesRequest, MatchFacesImage, FaceSDK, ComparedFacesSplit, InitResponse, LivenessSkipStep, InitConfig, LivenessNotification } from '@regulaforensics/ionic-native-face-api/ngx'
var image1 = new MatchFacesImage()
var image2 = new MatchFacesImage()
({
selector: 'app-home',
templateUrl: 'home.page.html',
styleUrls: ['home.page.scss'],
})
export class HomePage {
('img1', { static: true }) img1: ElementRef
('img2', { static: true }) img2: ElementRef
('matchFacesButton', { static: true }) matchFacesButton: ElementRef
('livenessButton', { static: true }) livenessButton: ElementRef
('clearResultsButton', { static: true }) clearResultsButton: ElementRef
('similarityResult', { static: true }) similarityResult: ElementRef
('livenessResult', { static: true }) livenessResult: ElementRef
constructor(public FaceSDK: FaceSDK, public platform: Platform, private dialogs: Dialogs, private camera: Camera) {
}
ionViewDidEnter() {
var app = this
var FaceSDK = this.FaceSDK
app.img1.nativeElement.onclick = function () { pickImage(true) }
app.img2.nativeElement.onclick = function () { pickImage(false) }
app.matchFacesButton.nativeElement.addEventListener("click", matchFaces)
app.livenessButton.nativeElement.addEventListener("click", liveness)
app.clearResultsButton.nativeElement.addEventListener("click", clearResults)
var onInit = (json: any) => {
var response = InitResponse.fromJson(JSON.parse(json))
if (!response.success) {
console.log(response.error.code);
console.log(response.error.message);
} else {
console.log("Init complete")
}
}
app.platform.ready().then(() => {
File.resolveDirectoryUrl(File.applicationDirectory + "www/assets").then(dir => File.getFile(dir, "regula.license", null).then(fileEntry => fileEntry.file(file => {
var reader = new FileReader()
reader.onloadend = (_) => {
var license = reader.result as String
var config = new InitConfig()
config.license = license.substring(license.indexOf(',') + 1)
FaceSDK.initialize(config).then(onInit)
}
reader.readAsDataURL(file)
})).catch(_ => {
FaceSDK.initialize(null).then(onInit)
}))
})
function liveness() {
FaceSDK.startLiveness({ skipStep: [LivenessSkipStep.ONBOARDING_STEP] }).subscribe((raw: string) => {
// handling events
var lnEventId = "livenessNotificationEvent"
var csEventId = "cameraSwitchEvent"
if (raw.substring(0, lnEventId.length) === lnEventId) {
raw = raw.substring(lnEventId.length, raw.length)
var notification = LivenessNotification.fromJson(JSON.parse(raw))
console.log("LivenessStatus: " + notification.status)
} else if (raw.substring(0, csEventId.length) === csEventId) {
raw = raw.substring(csEventId.length, raw.length)
var cameraId = raw
console.log("switched to camera " + cameraId)
} else {
// handling response
var result = LivenessResponse.fromJson(JSON.parse(raw))
if (result.image == null) return
image1.image = result.image
image1.imageType = Enum.ImageType.LIVE
app.img1.nativeElement.src = "data:image/png;base64," + result.image
app.livenessResult.nativeElement.innerHTML = result.liveness == Enum.LivenessStatus.PASSED ? "passed" : "not passed"
}
})
}
function matchFaces() {
if (image1 == null || image1.image == null || image1.image == "" || image2 == null || image2.image == null || image2.image == "")
return
app.similarityResult.nativeElement.innerHTML = "Processing..."
var request = new MatchFacesRequest()
request.images = [image1, image2]
FaceSDK.matchFaces(request, null).then((response: any) => {
response = MatchFacesResponse.fromJson(JSON.parse(response))
FaceSDK.splitComparedFaces(response.results, 0.75).then((str: any) => {
var split = ComparedFacesSplit.fromJson(JSON.parse(str))
app.similarityResult.nativeElement.innerHTML = split.matchedFaces.length > 0 ? ((split.matchedFaces[0].similarity * 100).toFixed(2) + "%") : "error"
})
})
}
function clearResults() {
app.img1.nativeElement.src = "assets/img/portrait.png"
app.img2.nativeElement.src = "assets/img/portrait.png"
image1 = new MatchFacesImage()
image2 = new MatchFacesImage()
app.similarityResult.nativeElement.innerHTML = "nil"
app.livenessResult.nativeElement.innerHTML = "nil"
}
function pickImage(first: boolean) {
app.dialogs.confirm("Choose the option", "", ["Use camera", "Use gallery"]).then((button: number) => {
if (button == 1)
FaceSDK.startFaceCapture(null).subscribe((raw: string) => {
// handling event
var csEventId = "cameraSwitchEvent"
if (raw.substring(0, csEventId.length) === csEventId) {
raw = raw.substring(csEventId.length, raw.length)
var cameraId = raw
console.log("switched to camera " + cameraId)
} else {
// handling response
setImage(
first,
FaceCaptureResponse.fromJson(JSON.parse(raw)).image.image,
Enum.ImageType.LIVE
)
}
})
else app.camera.getPicture({
destinationType: DestinationType.DATA_URL,
mediaType: MediaType.PICTURE,
sourceType: PictureSourceType.PHOTOLIBRARY
}).then((result: string) => setImage(first, result, Enum.ImageType.PRINTED))
})
}
function setImage(first: boolean, base64: string, type: number) {
if (base64 == null) return
app.similarityResult.nativeElement.innerHTML = "nil"
if (first) {
image1.image = base64
image1.imageType = type
app.img1.nativeElement.src = "data:image/png;base64," + base64
app.livenessResult.nativeElement.innerHTML = "nil"
}
else {
image2.image = base64
image2.imageType = type
app.img2.nativeElement.src = "data:image/png;base64," + base64
}
}
}
}