myutils.sort_contours 一直报错
时间: 2023-07-18 18:40:14 浏览: 102
实例21显示图像的轮廓.rar_contours image java_图像轮廓_轮廓
如果你使用myutils.sort_contours()函数出现了错误,可能是因为该函数没有正确导入或者函数参数有误。这个函数是自定义的,可能需要在代码中进行定义,所以你需要确保已正确导入该函数,并且正确传递了轮廓列表和排序标准参数。
以下是一个可能的实现示例,其中函数参数包括轮廓列表(contours)和排序标准(sorting_criteria):
```
import cv2
def sort_contours(contours, sorting_criteria):
reverse = False
i = 0
if sorting_criteria == "left-to-right":
i = 1
elif sorting_criteria == "top-to-bottom":
i = 0
reverse = True
bounding_boxes = [cv2.boundingRect(c) for c in contours]
(contours, bounding_boxes) = zip(*sorted(zip(contours, bounding_boxes),
key=lambda b: b[1][i], reverse=reverse))
return contours, bounding_boxes
```
在使用该函数时,你需要传递轮廓列表和排序标准。例如,以下是一个使用“从左到右”标准对轮廓进行排序的示例:
```
import cv2
import myutils
image = cv2.imread("example.jpg")
gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
edged = cv2.Canny(gray, 50, 100)
contours, hierarchy = cv2.findContours(edged, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)
contours, bounding_boxes = myutils.sort_contours(contours, "left-to-right")
for c in contours:
cv2.drawContours(image, [c], -1, (0, 255, 0), 2)
cv2.imshow("Sorted Contours", image)
cv2.waitKey(0)
cv2.destroyAllWindows()
```
请确保在代码中正确导入myutils模块,并将myutils.sort_contours()函数定义在该模块中。如果你仍然遇到问题,请提供更多的错误信息和代码细节,以便更好地解决问题。
阅读全文