本文整理匯總了Python中cv2.COLOR_HSV2GRAY屬性的典型用法代碼示例。如果您正苦於以下問題:Python cv2.COLOR_HSV2GRAY屬性的具體用法?Python cv2.COLOR_HSV2GRAY怎麽用?Python cv2.COLOR_HSV2GRAY使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類cv2
的用法示例。
在下文中一共展示了cv2.COLOR_HSV2GRAY屬性的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: __call__
# 需要導入模塊: import cv2 [as 別名]
# 或者: from cv2 import COLOR_HSV2GRAY [as 別名]
def __call__(self, image, labels=None):
if self.current == 'RGB' and self.to == 'HSV':
image = cv2.cvtColor(image, cv2.COLOR_RGB2HSV)
elif self.current == 'RGB' and self.to == 'GRAY':
image = cv2.cvtColor(image, cv2.COLOR_RGB2GRAY)
if self.keep_3ch:
image = np.stack([image] * 3, axis=-1)
elif self.current == 'HSV' and self.to == 'RGB':
image = cv2.cvtColor(image, cv2.COLOR_HSV2RGB)
elif self.current == 'HSV' and self.to == 'GRAY':
image = cv2.cvtColor(image, cv2.COLOR_HSV2GRAY)
if self.keep_3ch:
image = np.stack([image] * 3, axis=-1)
if labels is None:
return image
else:
return image, labels
開發者ID:pierluigiferrari,項目名稱:data_generator_object_detection_2d,代碼行數:19,代碼來源:object_detection_2d_photometric_ops.py