在 C++ 中调用 Hough 变换时出现 OpenCV 未指定错误

OpenCV Unspecified error when calling Hough transform in c++

我正在开发音乐识别 Android 应用程序,它应该使用相机实时识别 sheet 中的音乐注释。

当我尝试使用 Hough 变换(HoughCircles 或 HoughLinesP)识别线或圆时,出现未指定错误:

E/cv::error(): OpenCV Error: Unspecified error (The function is not implemented. Rebuild the library with Windows, GTK+ 2.x or Carbon support. If you are on Ubuntu or Debian, install libgtk2.0-dev and pkg-config, then re-run cmake or configure script) in cvWaitKey, file /hdd2/buildbot/slaves/slave_ardbeg1/50-SDK/opencv/modules/highgui/src/window.cpp, line 567
A/libc: Fatal signal 6 (SIGABRT), code -6 in tid 7772 (Thread-411)

我可以尝试另一个版本的 OpenCV,但我没有足够的时间来更改所有内容。我也不熟悉 OpenCV,这是我第一次使用它。也许问题出在 c++ 文件或头文件中。

C++ 文件:

#include "com_ryu_musicreader_OpencvClass.h"

JNIEXPORT void JNICALL Java_com_ryu_musicreader_OpencvClass_musicDetection
(JNIEnv *, jclass, jlong addrRgba){
Mat& frame = *(Mat*)addrRgba;

find_lines(frame);
find_circles(frame);
}

void find_lines(Mat& src){

Mat dst, cdst;
Canny(src, dst, 50, 200, 3);

cvtColor(dst, cdst, COLOR_GRAY2BGR);

vector<Vec4i> lines;
HoughLinesP(dst, lines, 1, CV_PI/180, 50, 50, 10 );

for( size_t i = 0; i < lines.size(); i++ )
{
    Vec4i l = lines[i];
    line( cdst, Point(l[0], l[1]), Point(l[2], l[3]), Scalar(0,0,255), 3, 0);
}

imshow("detected lines", cdst);

}

int find_circles(Mat& src){

Mat src_gray;

cvtColor(src, src_gray, COLOR_BGR2GRAY);

GaussianBlur( src_gray, src_gray, Size(9, 9), 2, 2 );

vector<Vec3f> circles;

HoughCircles( src_gray, circles, CV_HOUGH_GRADIENT, 1, src_gray.rows/8, 200, 100, 0, 0 );

for( size_t i = 0; i < circles.size(); i++ )
{
    Point center(cvRound(circles[i][0]), cvRound(circles[i][1]));
    int radius = cvRound(circles[i][2]);
    circle( src, center, 3, Scalar(0,255,0), -1, 8, 0 );
    circle( src, center, radius, Scalar(0,0,255), 3, 8, 0 );
}

namedWindow( "Hough Circle Transform Demo", CV_WINDOW_AUTOSIZE );    
imshow( "Hough Circle Transform Demo", src );

waitKey(0);
return 0;

}

头文件:

#include <jni.h>
#include "opencv2/opencv.hpp"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include <iostream>

using namespace cv;
#ifndef _Included_com_ryu_musicreader_OpencvClass
#define _Included_com_ryu_musicreader_OpencvClass
#ifdef __cplusplus
extern "C" {
#endif
void detect(Mat& frame);

void find_lines(Mat& frame);

int find_circles(Mat& frame);

JNIEXPORT void JNICALL Java_com_ryu_musicreader_OpencvClass_musicDetection
(JNIEnv *, jclass, jlong);

#ifdef __cplusplus
}
#endif
#endif

很有可能代码有问题,因为我不完全确定霍夫变换是如何工作的,所以我尝试使用我在网上找到的一些实现。

非常感谢任何帮助。

我发现我很笨。我不知道这个实现是用于桌面目的,我试图在 Android 上使用它。我真的应该阅读我正在使用的库中的所有文档。