-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.py
89 lines (79 loc) · 3.13 KB
/
app.py
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
import os
os.environ['TF_ENABLE_ONEDNN_OPTS'] = '0'
import cv2
import json
import numpy as np
import ocr
import time
import cnn_detect
from flask import Flask, request, jsonify
from flask import Flask, render_template, request, flash
from PIL import Image
from flask import Flask, render_template, request, flash
app = Flask(__name__)
app.config['JSON_SORT_KEYS'] = False
@app.route('/ocr', methods = ['POST'])
def upload_file():
start_time = time.time()
if 'image' not in request.files:
finish_time = time.time() - start_time
return jsonify({
'error': True,
'message': "Foto wajib ada"
})
else:
try:
imagefile = request.files['image'].read()
npimg = np.frombuffer(imagefile, np.uint8)
image = cv2.imdecode(npimg, cv2.IMREAD_COLOR)
fileimage = request.files['image'].stream
fileimage = Image.open(fileimage)
isimagektp = cnn_detect.main(fileimage)
if isimagektp:
(nik, nama, tempat_lahir, tgl_lahir, jenis_kelamin, agama,
status_perkawinan, provinsi, kabupaten, alamat, rt_rw,
kel_desa, kecamatan, pekerjaan, kewarganegaraan, berlaku_hingga) = ocr.main(image)
finish_time = time.time() - start_time
if not nik or not nama or not provinsi or not kabupaten:
return jsonify({
'error': True,
'message': 'Resolusi foto terlalu rendah, silakan coba lagi.'
})
return jsonify({
'error': False,
'message': 'Proses OCR Berhasil',
'result': {
'nik': str(nik),
'nama': str(nama),
'tempat_lahir': str(tempat_lahir),
'tanggal_lahir': str(tgl_lahir),
'jenis_kelamin': str(jenis_kelamin),
'agama': str(agama),
'status_perkawinan': str(status_perkawinan),
'pekerjaan': str(pekerjaan),
'kewarganegaraan': str(kewarganegaraan),
'berlaku_hingga': str(berlaku_hingga),
'alamat': {
'name': str(alamat),
'rt_rw': str(rt_rw),
'kel_desa': str(kel_desa),
'kecamatan': str(kecamatan),
'kabupaten': str(kabupaten),
'provinsi': str(provinsi)
},
'time_elapsed': str(round(finish_time, 3))
}
})
else:
return jsonify({
'error': True,
'message': 'Foto yang diunggah haruslah foto E-KTP'
})
except Exception as e:
print(e)
return jsonify({
'error': True,
'message': 'Maaf, KTP tidak terdeteksi'
})
if __name__ == "__main__":
app.run(debug = True)