-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.py
208 lines (170 loc) · 6.59 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
import base64
from flask import Flask, request, jsonify, render_template
import cv2
import requests
from ultralytics import YOLO
import numpy as np
import firebase_admin
from firebase_admin import credentials
from firebase_admin import firestore
from pyngrok import conf, ngrok
import os
from dotenv import load_dotenv
from skimage.color import rgb2lab, deltaE_ciede2000
app = Flask(__name__)
load_dotenv()
NGROK_KEY = os.getenv("NGROK_KEY")
conf.get_default().auth_token = NGROK_KEY
http_turnel = ngrok.connect(5000)
tunnels = ngrok.get_tunnels()
for kk in tunnels:
print(kk) #forwarding 정보 출력
# YOLO 모델 초기화
model = YOLO("model\clothesDetectModel_pretrained_false_30.pt")
cred = credentials.Certificate('firebase_key.json')
firebase_admin.initialize_app(cred)
db = firestore.client()
def map_object_class(class_name):
# 클래스 이름을 매핑할 딕셔너리 생성
class_mapping = {
'Tshirt': '티셔츠',
'dress': '원피스',
'jacket': '자켓',
'pants': '바지',
'shirt': '셔츠',
'short': '반바지',
'skirt': '치마',
'sweater': '긴소매'
}
# 각 클래스를 매핑된 값으로 변환
mapped_classes = class_mapping.get(class_name)
return mapped_classes
def adjust_saturation_and_brightness(color, saturation_amount=3.8, brightness_amount=0.9):
# HSV 색 공간으로 변환 (Hue, Saturation, Value)
color_hsv = np.array([[color]], dtype=np.uint8)
color_hsv = cv2.cvtColor(color_hsv, cv2.COLOR_RGB2HSV)
# 채도와 밝기 조절
color_hsv = np.array([[[
color_hsv[0,0,0], # Hue 값은 그대로 유지
max(0, min(255, color_hsv[0,0,1] * saturation_amount)), # 채도 조절
max(0, min(255, color_hsv[0,0,2] * brightness_amount)) # 밝기 조절
]]], dtype=np.uint8)
# 다시 RGB 색 공간으로 변환
adjusted_color = cv2.cvtColor(color_hsv, cv2.COLOR_HSV2RGB)[0,0]
return adjusted_color.tolist()
def extract_rgb_and_adjust(image):
r, g, b = image[:, :, 0], image[:, :, 1], image[:, :, 2]
mean_r, mean_g, mean_b = np.mean(r), np.mean(g), np.mean(b)
# 색상 조절
adjusted_color = adjust_saturation_and_brightness([mean_r, mean_g, mean_b])
return adjusted_color
@app.route('/')
def index():
return render_template('index.html')
@app.route('/detect_and_analyze')
def detect_and_analyze_color():
uid = request.args.get('uid')
doc_id = request.args.get('doc_id')
# Firestore에서 이미지 url 가져오기
doc_ref = db.collection("users").document(uid).collection("closet").document(doc_id)
doc = doc_ref.get()
if doc.exists:
data = doc.to_dict()
image_url = data.get("imgURL")
# 이미지를 다운로드하여 바이트 데이터로 변환
response = requests.get(image_url)
image = response.content
# 이미지를 OpenCV 형식으로 디코딩
nparr = np.frombuffer(image, np.uint8)
img = cv2.imdecode(nparr, cv2.IMREAD_COLOR)
if img is None:
# 이미지 로드에 실패했을 경우 오류 처리
print("이미지를 로드할 수 없습니다.")
# YOLO 모델을 사용하여 객체 감지 수행
results = model.predict(img)
# 객체 감지 결과 가져오기
detections = results[0]
# 가장 확률이 높은 박스 식별
highest_prob_box = None
highest_confidence = -1
for box in detections.boxes:
if box.conf > highest_confidence:
highest_prob_box = box
highest_confidence = box.conf
idx2class = np.array([value for key,value in results[0].names.items()])
if highest_prob_box:
object_class = idx2class[highest_prob_box.cls.to('cpu').numpy().astype('int')][0]
else:
object_class = '옷을 인식할 수 없습니다.'
print(object_class)
object_class = map_object_class(object_class)
print(object_class)
# 박스 좌표 얻기
x1, y1, x2, y2 = highest_prob_box.xyxy[0]
# 이미지에서 객체 영역 자르기
cropped_image = img[int(y1):int(y2), int(x1):int(x2)]
# 미리 정의된 색상 카테고리와 그에 해당하는 RGB 값
color_categories = {
'검정색': [0, 0, 0],
'하얀색': [255, 255, 255],
'회색': [120, 120, 120],
'빨간색': [255, 0, 0],
'핑크색': [255, 192, 203],
'주황색': [255, 165, 0],
'베이지': [245, 245, 220],
'갈색': [88, 57, 39],
#'노랑색': [255, 255, 0],
'초록색': [29, 219, 22],
'카키색': [71, 102, 0],
'민트색': [189, 252, 201],
'파란색': [0, 0, 255],
'남색': [24, 41, 68],
'청색': [23, 39, 55],
'하늘색': [135, 206, 235],
'보라색': [102, 51, 153],
'라벤더': [172, 120, 186],
'와인색': [114, 47, 55],
'네온': [183, 255, 0],
'노랑색': [191, 155, 48],
}
# 객체 영역에서 주요 색상 추출
main_color_list = extract_rgb_and_adjust(cropped_image)
# 주요 색상을 표시하는 이미지 생성
#img_temp = cropped_image.copy()
#img_temp[:, :, 0], img_temp[:, :, 1], img_temp[:, :, 2] = main_color_list
#_, encoded_image = cv2.imencode('.jpg', img_temp)
#main_color_image_base64 = base64.b64encode(encoded_image).decode('utf-8')
main_color_list.reverse()
# 주어진 RGB 값과 각 색상 카테고리의 거리 계산
for color in color_categories:
rgb = np.array(color_categories[color], dtype=float) / 255
lab = rgb2lab(rgb.reshape(1, 1, 3))
color_categories[color] = lab.flatten()
# 주요컬러 LABspace 상 색상으로 변경
average_color = np.array(main_color_list, dtype=float) / 255
average_color_lab = rgb2lab(average_color.reshape(1, 1, 3)).flatten()
print(average_color_lab)
# LAB space 상 비슷한 색상 추출
closest_color = None
min_distance = float('inf')
for color_name, color_value in color_categories.items():
distance = deltaE_ciede2000(color_value, average_color_lab)
if distance < min_distance:
min_distance = distance
closest_color = color_name
data = {
'clothes' : object_class,
'closetColorCategory': closest_color,
'closetColorRGB': main_color_list,
}
doc_ref.update(data)
# 결과 반환
return jsonify({
'object_class': object_class,
'closest_color_category': closest_color,
#'main_color_image': main_color_image_base64,
'image_URL': image_url
})
if __name__ == '__main__':
app.run()
#app.run(host='0.0.0.0', port=8000, debug=True)