标签: python numpy image-processing
您好我有二进制值图片。
提取值为1的形状坐标的最佳方法是什么。
感谢您的想法。
答案 0 :(得分:0)
您可以使用skimage库而不是OpenCV。
skimage
from skimage import measure contours = measure.find_contours(im, 0.8)
contours返回值为1的那些形状周围的坐标数组。
contours
查看文档HERE了解更多信息
答案 1 :(得分:-1)
简化版本是使用where获取行和列,然后根据需要进行转置。
QString str = button->text();