Ask Your Question
0

vector<vector<Point> > contours 'Unable to read memory error'

asked 2013-06-11 03:31:03 -0600

Binny gravatar image

updated 2013-06-11 03:50:31 -0600

Vladislav Vinogradov gravatar image

Hi,

i'm developing on win 64bit, windows 7. OpenCV Version: opencv 2.4.3 C:\fakepath\contour.png

My contour points after running findContours function, the some vector points in the contours have a 'unable to read memory error'.

The code below is a sample code obtained from opencv samples.

Please help?

Mat src; Mat src_gray;
 int thresh = 100;
 int max_thresh = 255;
 RNG rng(12345);

 /// Function header
 void thresh_callback(int, void* );

int _tmain(int argc, _TCHAR* argv[])
{

    /// Load source image and convert it to gray
   src = imread( "D://Download - Software//1//1.2.840.113619.2.135.2025.1616282.5237.1221046207.476.jpg", 1 );

   /// Convert image to gray and blur it
   cvtColor( src, src_gray, CV_BGR2GRAY );
   blur( src_gray, src_gray, Size(3,3) );

   /// Create Window
   char* source_window = "Source";
   namedWindow( source_window, CV_WINDOW_AUTOSIZE );
   imshow( source_window, src );

   createTrackbar( " Threshold:", "Source", &thresh, max_thresh, thresh_callback );
   thresh_callback( 0, 0 );

   waitKey(0);
   return(0);
}

/** @function thresh_callback */
 void thresh_callback(int, void* )
 {
   Mat src_copy = src.clone();
   Mat threshold_output;
   vector<vector<Point> > contours;
   vector<Vec4i> hierarchy;

   /// Detect edges using Threshold
   threshold( src_gray, threshold_output, thresh, 255, THRESH_BINARY );

   /// Find contours
   findContours( threshold_output, contours, hierarchy, CV_RETR_TREE, CV_CHAIN_APPROX_SIMPLE, Point(0, 0) );

   /// Find the convex hull object for each contour
   vector<vector<Point> >hull(contours.size() );
   for( int i = 0; i < contours.size(); i++ )
      {  convexHull( Mat(contours[i]), hull[i], false ); }

   /// Draw contours + hull results
   Mat drawing = Mat::zeros( threshold_output.size(), CV_8UC3 );
   for( int i = 0; i< contours.size(); i++ )
      {
        Scalar color = Scalar( rng.uniform(0, 255), rng.uniform(0,255), rng.uniform(0,255) );
        drawContours( drawing, contours, i, color, 1, 8, vector<Vec4i>(), 0, Point() );
        drawContours( drawing, hull, i, color, 1, 8, vector<Vec4i>(), 0, Point() );
      }

   /// Show in a window
   namedWindow( "Hull demo", CV_WINDOW_AUTOSIZE );
   imshow( "Hull demo", drawing );
 }
edit retag flag offensive close merge delete

1 answer

Sort by ยป oldest newest most voted
0

answered 2013-06-11 07:36:39 -0600

berak gravatar image

updated 2013-06-11 07:39:20 -0600

have a look here, and try the 3rd answer, (linking against the multi-threaded system libs).

[should be in the c++ settings, runtime-lib or similar]

edit flag offensive delete link more

Comments

Hi, I checked the link and changed runtime library to (/MD). And now it produces this error error LNK2019: unresolved external symbol __imp___CrtDbgReportW referenced in function "public: class cv::Point_<int> const & __thiscall std::vector<class cv::Point_<int>,class std::allocator<class cv::Point_<int> > >::operatorconst " (??A?$vector@V?$Point_@H@cv@@V?$allocator@V?$Point_@H@cv@@@std@@@std@@QBEABV?$Point_@H@cv@@I@Z)

Binny gravatar imageBinny ( 2013-06-11 20:21:42 -0600 )edit

Hi, i have a similar problem (getting unreadable memory in the contour vector), however i already had the runtime libraries flag set to /MD while this was happening. Did you manage to solve the problem? Thanks.

Alejandro gravatar imageAlejandro ( 2013-11-20 08:34:54 -0600 )edit

I have a similar problem with the /MD c runtime.

heres my problem on findcontours

Any update on how this can be solved?

thevinci gravatar imagethevinci ( 2015-12-08 09:44:59 -0600 )edit

Question Tools

Stats

Asked: 2013-06-11 03:31:03 -0600

Seen: 2,775 times

Last updated: Jun 11 '13