-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
52 lines (43 loc) · 1.73 KB
/
main.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
import numpy as np
import cv2
import io
from fastapi import FastAPI, File, UploadFile
from fastapi.responses import JSONResponse
from fastapi.middleware.cors import CORSMiddleware
app = FastAPI()
# CORSの設定を追加
origins = [
"https://hiddenfacesapp.streamlit.app",
"http://localhost:8501"
]
app.add_middleware(
CORSMiddleware,
allow_origins=origins, # 許可するオリジンを指定
allow_credentials=True,
allow_methods=["*"], # すべてのHTTPメソッドを許可
allow_headers=["*"], # すべてのヘッダーを許可
)
@app.post("/detect-face/")
async def process_image(file: UploadFile = File(...)):
# 顔検出
face_detector = cv2.FaceDetectorYN_create(
"face_detection_yunet_2023mar.onnx", "", (0, 0), 0.6, 0.3, 5000, cv2.dnn.DNN_BACKEND_DEFAULT, cv2.dnn.DNN_TARGET_CPU
)
bin_data = io.BytesIO(await file.read()) # ファイルのデータを取得するためにread()を使う
back_img = read_image(bin_data)
# 画像のサイズを顔検出器に設定
face_detector.setInputSize((back_img.shape[1], back_img.shape[0]))
# 顔検出
_, faces = face_detector.detect(back_img)
# 顔検出結果がNoneの場合は空リストにする
faces = faces if faces is not None else []
if len(faces) == 0:
return JSONResponse(content={"message": "顔が検出されませんでした。"}, status_code=200)
else:
# facesをリスト形式に変換
faces_list = faces.astype(float).tolist()
return JSONResponse(content={"faces": faces_list}, status_code=200)
def read_image(bin_data):
file_bytes = np.asarray(bytearray(bin_data.read()), dtype=np.uint8)
img = cv2.imdecode(file_bytes, cv2.IMREAD_COLOR)
return img