java - HoughLinesP 不检测线 OpenCV android

标签 java android opencv

我正在使用 Android 版 OpenCV 3.0。我有一个图像,我想检测圆形表盘内的指针角度。为此,我正在使用 HoughLinesP 来检测手。 这是代码。

Mat imgSource = new Mat(), imgCirclesOut = new Mat(),imgLinesOut=new Mat();
//grey opencv
Imgproc.cvtColor(Image, imgSource, Imgproc.COLOR_BGR2GRAY);
Imgproc.GaussianBlur( imgSource, imgSource, new Size(9, 9), 2, 2 );

int threshold = 0;
int minLineSize = 0;
int lineGap = 0;

Imgproc.HoughLinesP(imgSource, imgLinesOut, 1, Math.PI/180, threshold, minLineSize, lineGap);
for( int j = 0; i < imgLinesOut.cols(); i++ )
{
    double[] vec=imgLinesOut.get(0,j);
    Point pt1, pt2;
    pt1=new Point(vec[0],vec[1]);
    pt2=new Point(vec[2],vec[3]);
    Imgproc.line( Image, pt1, pt2, new Scalar(0,0,255), 3, Core.LINE_AA,0);
}

但是结果是 enter image description here

我需要的是这些圆圈中手的角度。非常感谢有关此问题的任何帮助。提前致谢

编辑 我已经用这个更新了我的代码

 Mat imgSource = new Mat(), imgCirclesOut = new Mat(),imgLinesOut=new Mat();

 Imgproc.GaussianBlur( Image, imgSource, new Size(5, 5), 2, 2 );      
 int threshold = 20;
 int minLineSize = 0;
 int lineGap = 10;
 Imgproc.Canny(imgSource, imgSource, 70, 100);
 Imgproc.HoughLinesP(imgSource, imgLinesOut, 1, Math.PI/180, threshold, minLineSize, lineGap);
for( int j = 0; j < imgLinesOut.cols(); j++ )
{
    double[] vec=imgLinesOut.get(0,j);

    Point pt1, pt2;
    pt1=new Point(vec[0],vec[1]);
    pt2=new Point(vec[2],vec[3]);

    Imgproc.line( imgSource, pt1, pt2, new Scalar(0,0,255), 3, Core.LINE_AA,0);
}

按照@Micka的建议,不需要灰度图像(我删除了cvtcolor)。我还将 GuassianBlur Size 的值减小到 5。我也在图像上添加了 Canny 作为边缘。

生成的模糊图像是

enter image description here

最佳答案

在如此小的图像中检测线条可能是一个问题,因为您必须用几个点来正确填充霍夫累加器。

我建议使用不同的方法:

  1. 分割每个圆(表盘)
  2. 提取最大的黑色 Blob (手)

下面是这个想法的简单实现。代码是用 C++ 编写的,但您可以轻松移植到 Java,或者至少可以用作引用。

#include "opencv2/opencv.hpp"
using namespace cv;

int main(int, char**)
{
    Mat1b img = imread("path_to_image", IMREAD_GRAYSCALE);

    Mat3b res;
    cvtColor(img, res, COLOR_GRAY2BGR);

    // Find dials
    vector<Vec3f> circles;
    HoughCircles(img, circles, CV_HOUGH_GRADIENT, 1, img.cols/10, 400, 40);

    // For each dial
    for (int i = 0; i < circles.size(); ++i)
    {

        // Segment the dial
        Mat1b dial(img.size(), uchar(255));
        Mat1b mask(img.size(), uchar(0));
        circle(mask, Point(circles[i][0], circles[i][1]), circles[i][2], Scalar(255), CV_FILLED);
        img.copyTo(dial, mask);

        // Apply threshold and open
        Mat1b bin;
        threshold(dial, bin, 127, 255, THRESH_BINARY_INV);
        Mat kernel = getStructuringElement(MORPH_ELLIPSE, Size(5,5));
        morphologyEx(bin, bin, MORPH_OPEN, kernel);

        // Get min area rect
        vector<Point> points;
        findNonZero(bin, points);
        RotatedRect r = minAreaRect(points);

        // Draw min area rect
        Point2f pts[4];
        r.points(pts);
        for (int j = 0; j < 4; ++j) {
            line(res, pts[j], pts[(j + 1) % 4], Scalar(0, 255, 0), 1);
        }       
    }

    imshow("Result", res);
    waitKey();

    return 0;
}

从这张图片开始:

enter image description here

我在这里找到:

enter image description here

关于java - HoughLinesP 不检测线 OpenCV android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31648041/

相关文章:

java - 无法将数据绑定(bind)到recyclerView中

java - 在加载另一个应用程序时运行我的应用程序

android - 如何在 Android 中以编程方式停止在 VideoView 中播放视频?

android - Android OpenCV教程5相机控制崩溃

c++ - OpenCV - 访问沿曲线/路径的像素

java - Sonarqube - 记录的 API 配置

java - JVMJ9VM007E 命令行选项无法识别 : -javaagent

java - 为什么@EnableWs从spring bean中删除aop代理

android - 如何防止 ActivityUnitTestCase 调用 Application.onCreate?

ios - 在 Xcode 中找不到 opencv2/opencv.hpp 文件