This repository has been archived by the owner on Jan 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlateRecognizer.js
81 lines (72 loc) · 2.09 KB
/
PlateRecognizer.js
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
import React, { Component } from 'react';
import {
StyleSheet,
Text,
View,
} from 'react-native';
import Camera from 'react-native-openalpr';
const styles = StyleSheet.create({
container: {
flex: 1,
},
textContainer: {
position: 'absolute',
top: 100,
left: 50,
backgroundColor: '#fff'
},
text: {
textAlign: 'center',
fontSize: 20,
},
camera: {
flex: 1
}
});
export default class PlateRecognizer extends Component {
constructor(props) {
super(props);
console.log(Camera.constants);
console.log(Camera.constants.CaptureQuality["720p"]);
this.camera = null;
this.state = {
camera: {
aspect: Camera.constants.Aspect.fill,
captureQuality: Camera.constants.CaptureQuality.photo,
},
plate: 'Scan a plate',
};
}
onPlateRecognized = ({ plate, confidence }) => {
if (confidence > 0.9) {
let text = plate + " : " + confidence;
this.setState({
plate: text,
})
}
}
render() {
return (
<View style={styles.container}>
<Camera
ref={(cam) => {
this.camera = cam;
}}
style={styles.camera}
aspect={this.state.camera.aspect}
captureQuality={this.state.camera.captureQuality}
country="eu"
onPlateRecognized={this.onPlateRecognized}
plateOutlineColor="#ff0000"
showPlateOutline
torchMode={Camera.constants.TorchMode.off}
rotateMode={this.state.rotate ? Camera.constants.RotateMode.on : Camera.constants.RotateMode.off}
touchToFocus
/>
<View style={styles.textContainer}>
<Text style={styles.text}>{this.state.plate}</Text>
</View>
</View>
);
}
}