Ask Your Question
0

debug assertion failed vc\include\vector vector iterator + offset out of range in chamferMatching Opencv

asked 2013-10-04 08:33:42 -0600

prakashjoshi gravatar image

updated 2013-10-05 01:13:16 -0600

I am stuck with the problem while implementing chamfer matching program in OpenCV

https://code.ros.org/trac/opencv/browser/trunk/opencv/samples/cpp/chamfer.cpp?rev=4194

Following is the code it is reading template image

http://img593.imageshack.us/img593/6391/5klx.png

and test image http://img5.imageshack.us/img5/6619/u76z.png

, I am using VS 2008 and OpenCV2.4.6

#include "stdafx.h"
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/contrib/contrib.hpp>
#include <iostream>
using namespace cv;
using namespace std;

int main( int argc, char** argv )
 {    
IplImage *src;
src = cvLoadImage("C:\\Users\\JOSHI\\Desktop\\Images\\logo_in_clutter.png",1);      
Mat img=cvarrToMat(src);  
imshow("Mat",img); 

src = cvLoadImage("C:\\Users\\JOSHI\\Desktop\\Images\\logo.png",1);  
Mat tpl=cvarrToMat(src);  
imshow("Mat",tpl); 
Mat cimg;

// if the image and the template are not edge maps but normal grayscale images,
// you might want to uncomment the lines below to produce the maps. You can also
// run Sobel instead of Canny.    
 Canny(img, img, 5, 50, 3);
 Canny(tpl, tpl, 5, 50, 3);    
vector<vector<Point> > results;
vector<float> costs;
int best = chamerMatching( img, tpl, results, costs );
if( best < 0 )
{
    cout << "not found;\n";
    return 0;
}    
size_t i, n = results[best].size();
for( i = 0; i < n; i++ )
{
    Point pt = results[best][i];
    if( pt.inside(Rect(0, 0, cimg.cols, cimg.rows)) )
       cimg.at<Vec3b>(pt) = Vec3b(0, 255, 0);
}
imshow("result", cimg);

waitKey();
return 0;
}

this is the error image http://img138.imageshack.us/img138/7339/m1d.png

can you suggest me why I am getting this error as I am new to OpenCV and Image Processing

edit retag flag offensive close merge delete

1 answer

Sort by ยป oldest newest most voted
1

answered 2013-10-05 06:12:04 -0600

Guanta gravatar image

I guess the reason is that you load your images as color images, not as grayscale. I also suggest you to use the newer C++ interface (i.e. imread instead of loadImage) as also used in the example, see also http://docs.opencv.org/modules/highgui/doc/reading_and_writing_images_and_video.html?highlight=loadimage#imread

edit flag offensive delete link more

Comments

Hi Guanta, Can you look into http://answers.opencv.org/question/34104/chamermatching-giving-error-debug-assertion-failed/ ? I hit this issue with OpenCV 2.4.9 with the sample program: chamfer.cpp. I also used logo_in_clutter.png and logo.png.

unixer gravatar imageunixer ( 2014-07-20 08:28:32 -0600 )edit

ping... please help me..

unixer gravatar imageunixer ( 2014-07-21 03:06:14 -0600 )edit

Question Tools

1 follower

Stats

Asked: 2013-10-04 08:33:42 -0600

Seen: 1,987 times

Last updated: Oct 05 '13