本文整理汇总了Python中cv2.COLOR_BGR2LUV属性的典型用法代码示例。如果您正苦于以下问题:Python cv2.COLOR_BGR2LUV属性的具体用法?Python cv2.COLOR_BGR2LUV怎么用?Python cv2.COLOR_BGR2LUV使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类cv2
的用法示例。
在下文中一共展示了cv2.COLOR_BGR2LUV属性的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: convert_to_original_colors
# 需要导入模块: import cv2 [as 别名]
# 或者: from cv2 import COLOR_BGR2LUV [as 别名]
def convert_to_original_colors(content_img, stylized_img):
content_img = postprocess(content_img)
stylized_img = postprocess(stylized_img)
if args.color_convert_type == 'yuv':
cvt_type = cv2.COLOR_BGR2YUV
inv_cvt_type = cv2.COLOR_YUV2BGR
elif args.color_convert_type == 'ycrcb':
cvt_type = cv2.COLOR_BGR2YCR_CB
inv_cvt_type = cv2.COLOR_YCR_CB2BGR
elif args.color_convert_type == 'luv':
cvt_type = cv2.COLOR_BGR2LUV
inv_cvt_type = cv2.COLOR_LUV2BGR
elif args.color_convert_type == 'lab':
cvt_type = cv2.COLOR_BGR2LAB
inv_cvt_type = cv2.COLOR_LAB2BGR
content_cvt = cv2.cvtColor(content_img, cvt_type)
stylized_cvt = cv2.cvtColor(stylized_img, cvt_type)
c1, _, _ = cv2.split(stylized_cvt)
_, c2, c3 = cv2.split(content_cvt)
merged = cv2.merge((c1, c2, c3))
dst = cv2.cvtColor(merged, inv_cvt_type).astype(np.float32)
dst = preprocess(dst)
return dst
示例2: get_embeddings
# 需要导入模块: import cv2 [as 别名]
# 或者: from cv2 import COLOR_BGR2LUV [as 别名]
def get_embeddings(self, frame, face):
(x, y, w, h) = face
img = frame[y:y+h, x:x+w]
img_ycrcb = cv2.cvtColor(img, cv2.COLOR_BGR2YCR_CB)
img_luv = cv2.cvtColor(img, cv2.COLOR_BGR2LUV)
hist_ycrcb = self.calc_hist(img_ycrcb)
hist_luv = self.calc_hist(img_luv)
feature_vector = np.append(hist_ycrcb.ravel(), hist_luv.ravel())
return feature_vector.reshape(1, len(feature_vector))
# private function