我試圖找到圖像上的角落,我不需要輪廓,只需要四個角落。我會用4個角來改變視角。如何使用OpenCv在圖像上找到角落
我使用Opencv,但我需要知道步驟來找到角落和我將使用的功能。
我的圖片會是這樣:(無紅點,我會後搽點)
編輯:
後建議的步驟,我所著的代碼(注:I'm不使用純OpenCv,我使用javaCV,但它的邏輯是一樣的)。
// Load two images and allocate other structures (I´m using other image)
IplImage colored = cvLoadImage(
"res/scanteste.jpg",
CV_LOAD_IMAGE_UNCHANGED);
IplImage gray = cvCreateImage(cvGetSize(colored), IPL_DEPTH_8U, 1);
IplImage smooth = cvCreateImage(cvGetSize(colored), IPL_DEPTH_8U, 1);
//Step 1 - Convert from RGB to grayscale (cvCvtColor)
cvCvtColor(colored, gray, CV_RGB2GRAY);
//2 Smooth (cvSmooth)
cvSmooth(gray, smooth, CV_BLUR, 9, 9, 2, 2);
//3 - cvThreshold - What values?
cvThreshold(gray,gray, 155, 255, CV_THRESH_BINARY);
//4 - Detect edges (cvCanny) -What values?
int N = 7;
int aperature_size = N;
double lowThresh = 20;
double highThresh = 40;
cvCanny(gray, gray, lowThresh*N*N, highThresh*N*N, aperature_size);
//5 - Find contours (cvFindContours)
int total = 0;
CvSeq contour2 = new CvSeq(null);
CvMemStorage storage2 = cvCreateMemStorage(0);
CvMemStorage storageHull = cvCreateMemStorage(0);
total = cvFindContours(gray, storage2, contour2, Loader.sizeof(CvContour.class), CV_RETR_CCOMP, CV_CHAIN_APPROX_NONE);
if(total > 1){
while (contour2 != null && !contour2.isNull()) {
if (contour2.elem_size() > 0) {
//6 - Approximate contours with linear features (cvApproxPoly)
CvSeq points = cvApproxPoly(contour2,Loader.sizeof(CvContour.class), storage2, CV_POLY_APPROX_DP,cvContourPerimeter(contour2)*0.005, 0);
cvDrawContours(gray, points,CvScalar.BLUE, CvScalar.BLUE, -1, 1, CV_AA);
}
contour2 = contour2.h_next();
}
}
所以,我想找到了Cornes,但我不知道如何使用的角落的功能類似cvCornerHarris等。
的OpenCV的「角」功能中沒有發現你的思維方式角落 - 大致來說,他們發現橫向和縱向變化很大的區域。 OpenCV中角點函數的目標是找到圖像中與視覺跟蹤有關的特殊部分,這不一定是我們通常認爲的角點。 –
http://stackoverflow.com/a/14368605/1832154上的確切代碼(除了調整大小的部分,因爲您的圖片已經足夠小)給出了http://i.imgur.com/hMdAlHX.png – mmgp