在OpenCV Python中,可以使用以下步骤将所有白色像素的坐标添加到数组中:
import cv2
import numpy as np
image = cv2.imread('image.jpg')
gray_image = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
_, threshold_image = cv2.threshold(gray_image, 200, 255, cv2.THRESH_BINARY)
white_pixels = np.where(threshold_image == 255)
white_pixels_coordinates = np.column_stack((white_pixels[1], white_pixels[0]))
最终,white_pixels_coordinates将包含所有白色像素的坐标。你可以根据需要进一步处理或使用这些坐标。
这里推荐的腾讯云相关产品是腾讯云图像处理(Image Processing)服务。该服务提供了丰富的图像处理功能,包括图像识别、图像增强、图像分割等。你可以使用腾讯云图像处理服务来处理图像,并在云端进行高效的图像处理操作。
腾讯云图像处理产品介绍链接地址:https://cloud.tencent.com/product/ti
没有搜到相关的沙龙
领取专属 10元无门槛券
手把手带您无忧上云