我正在尝试使用 opencv 自动查找并定位空停车场中的所有停车位。
目前,我有一个对图像进行阈值处理的代码,应用精明的边缘检测,然后使用概率霍夫线来找到标记每个停车位的线。
然后程序绘制线条和构成线条的点
这是代码:
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include <iostream>
using namespace cv;
using namespace std;
int threshold_value = 150;
int threshold_type = 0;;
int const max_value = 255;
int const max_type = 4;
int const max_BINARY_value = 255;
int houghthresh = 50;
char* trackbar_value = "Value";
char* window_name = "Find Lines";
int main(int argc, char** argv)
{
const char* filename = argc >= 2 ? argv[1] : "pic1.jpg";
VideoCapture cap(0);
Mat src, dst, cdst, tdst, bgrdst;
namedWindow( window_name, CV_WINDOW_AUTOSIZE );
createTrackbar( trackbar_value,
window_name, &threshold_value,
max_value);
while(1)
{
cap >> src;
cvtColor(src, dst, CV_RGB2GRAY);
threshold( dst, tdst, threshold_value, max_BINARY_value,threshold_type );
Canny(tdst, cdst, 50, 200, 3);
cvtColor(tdst, bgrdst, CV_GRAY2BGR);
vector<Vec4i> lines;
HoughLinesP(cdst, lines, 1, CV_PI/180, houghthresh, 50, 10 );
for( size_t i = 0; i < lines.size(); i++ )
{
Vec4i l = lines[i];
line( bgrdst, Point(l[0], l[1]), Point(l[2], l[3]), Scalar(0,255,0), 2, CV_AA);
circle( bgrdst,
Point(l[0], l[1]),
5,
Scalar( 0, 0, 255 ),
-1,
8 );
circle( bgrdst,
Point(l[2], l[3]),
5,
Scalar( 0, 0, 255 ),
-1,
8 );
}
imshow("source", src);
imshow(window_name, bgrdst);
waitKey(1);
}
return 0;
}
目前,我的主要问题是弄清楚如何推断线数据以找到每个停车位的位置。我的目标是让 opencv 找到停车位,并在每个停车位上画出矩形,并用数字标记停车位。
我认为我目前使用的方法存在一些主要问题,因为如输出图像所示,opencv 正在检测线上除了 2 个端点之外的多个点。这可能会使使用 opencv 连接 2 个相邻端点变得非常困难。
我读过一些关于使用凸包的内容,但我不确定它的作用以及它是如何工作的。
任何帮助将不胜感激。这是我的程序的输出图像:http: //imageshack.us/photo/my-images/22/test1hl.png/