-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.py
63 lines (47 loc) · 2.05 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
from flask import Flask
import cv2
from flask import Response
from models.model import mirnet, cycle
import time
from flask import render_template
app = Flask(__name__)
model1 = mirnet(size=(256, 256))
model2 = cycle(size=(256, 256))
def get_frame():
capture = cv2.VideoCapture('video/videoplay.mp4') # 노트북의 경우 0, 외부 장치 번호가 1~n 까지 순차적으로 할당
# 카메라의 속성 설정 메서드 set
# capture.set(propid, value)로 카메라의 속성(propid)과 값(value)을 설정
capture.set(cv2.CAP_PROP_FRAME_WIDTH, 256)
capture.set(cv2.CAP_PROP_FRAME_HEIGHT, 256)
count = 0
# while을 통해서 카메라에서 프레임을 지속적으로 받는다.
while cv2.waitKey(33) < 0:
# ret = 카메라 상태, 비정상이면 False
# frame = 현재 시점의 프레임
ret, frame = None, None
for _ in range(3):
time.sleep(0.01)
ret, frame = capture.read()
#ret, frame = capture.read()
# flip : flipcode 가 0 이면 가로대칭 변경. 1이면 세로대칭 변경
rst_img = model1.infer(frame)
rst_img1 = model2.infer(rst_img)
rst_img2 = model2.infer(frame)
original_image = cv2.resize(frame, dsize=model1.desired_size, interpolation=cv2.INTER_LINEAR)
rst_img = cv2.hconcat([original_image, rst_img, rst_img2, rst_img1])
#input size (512, 512)
curr = time.time()
ret, buffer = cv2.imencode('.jpg', rst_img)
frame = buffer.tobytes()
yield (b'--frame\r\n'b'Content-Type: image/jpeg\r\n\r\n' + frame + b'\r\n')
# 카메라 장치에서 받아온 메모리 해제
capture.release()
@app.route('/')
def Index():
return render_template('template.html') # index.html 파일을 렌더링하여 반환합니다.
@app.route('/video_feed')
def video_feed():
return Response(get_frame(),
mimetype='multipart/x-mixed-replace; boundary=frame')
if __name__ == '__main__':
app.run(host='0.0.0.0', port='8080')