Advertisement
Guest User

Untitled

a guest
Mar 29th, 2015
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. threshold(Img, Img, t, 255, CV_THRESH_BINARY_INV);
  2. vector<vector<Point>> varName;
  3. findContours(Img, varName, CV_RETR_EXTERNAL, CV_CHAIN_APPROX_NONE);
  4.  
  5. D:OpencvWorkspace....|50|error: 'varName' was not declared in this scope|
  6.  
  7. vector<vector<Point>> varName;
  8.  
  9. vector<vector<Point> > varName;
  10. // ^ Note the space
  11.  
  12. vector<vector<Point>> varName;
  13.  
  14. vector<vector<Point> > varName;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement