gpt4 book ai didi

java - 使用 OpenCV 检测简单的几何形状 [Java]

转载 作者:行者123 更新时间:2023-12-02 12:13:50 25 4
gpt4 key购买 nike

我正在编写一个 Java 应用程序来检测简单的几何形状。

引用以下Python代码:How to detect simple geometric shapes using OpenCV

这是一些代码 [Python]:

contours,h = cv2.findContours(thresholdedImage,1,2)

for cnt in contours:
approx = cv2.approxPolyDP(cnt,0.01*cv2.arcLength(cnt,True),True)
print len(approx)
if len(approx)==5:
print "pentagon"
cv2.drawContours(img,[cnt],0,255,-1)
elif len(approx)==3:
print "triangle"
cv2.drawContours(img,[cnt],0,(0,255,0),-1)
elif len(approx)==4:
print "square"
cv2.drawContours(img,[cnt],0,(0,0,255),-1)
elif len(approx) == 9:
print "half-circle"
cv2.drawContours(img,[cnt],0,(255,255,0),-1)
elif len(approx) > 15:
print "circle"
cv2.drawContours(img,[cnt],0,(0,255,255),-1)

使用 Java 的 OpenCV 方法,我无法提取近似轮廓的“len”(长度)属性(以确定检测到的形状)。

打印出几个轮廓会产生[Java]:

[ 4*1*CV_32SC2, isCont=true, isSubmat=false, nativeObj=0x23ac75f0, dataAddr=0x1c7c66c0 ]
[ 5*1*CV_32SC2, isCont=true, isSubmat=false, nativeObj=0x23ac7200, dataAddr=0x1c0e5fc0 ]
etc.

我想从上面的代码中获取特定轮廓对象的点数 - 45

我知道我可以将其转换为字符串,然后提取数字,但一定有更好的方法,对吗?

感谢您的回复。

最佳答案

这应该可以解决问题。 (假设您已经将 yourImage 存储在 MatOfPoint2f 对象中)。

MatOfPoint2f approx = new MatOfPoint2f();
Imgproc.approxPolyDP(yourImage, approx, Imgproc.arcLength(yourImage, true) * 0.02, true);
long count = approx.total();
if (count == 5) {
// this is a pentagon
}

检查this查看total()

的使用

与 Python 或 C++ 等其他语言相比,Java 上的 OpenCV 变得有点棘手。

关于java - 使用 OpenCV 检测简单的几何形状 [Java],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46340632/

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