gpt4 book ai didi

python - Python 中的 opencv groupRectangle 示例

转载 作者:太空宇宙 更新时间:2023-11-03 22:59:47 25 4
gpt4 key购买 nike

我想问一下 groupRectangles 函数。

我正在用 python 编写以下代码 -

gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
#defining the face
thresh=1
faces = face_cascade.detectMultiScale(gray, 1.3, 5)
print faces
faces_1,weights=cv2.groupRectangles(faces, thresh)

其中 vec 是从 detectMultiscal 步骤返回的 recl,1 是 groupThreshold,eps 是 0.2

但它在执行时抛出一个运行时错误。我尝试使用 try-except 来运行代码,但它仍然抛出同样的错误。

Runtime Error!

Program:C:\Python27\pythonw.exe

This application has requested the Runtime to terminate it in an unusual way.

如果有人可以在 python 中提供一些示例 grouprectangle 代码,这将非常有帮助,这样我就可以使我的工作代码具有相同的格式,因为在此代码的文档中我找不到任何示例。

干杯!

最佳答案

我遇到了同样的问题。我设法通过转换为“列表”使其不崩溃(但我不知道结果是否准确):

cv2.groupRectangles(list(rectVec), thresh)

关于python - Python 中的 opencv groupRectangle 示例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21303374/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com