Home | History | Annotate | Download | only in src

Lines Matching refs:edges

1009     cv::Ptr<CvMat> edges, accum, dist_buf;
1023 edges.reset(cvCreateMat( img->rows, img->cols, CV_8UC1 ));
1025 // Use the Canny Edge Detector to detect all the edges in the image.
1026 cvCanny( img, edges, MAX(canny_threshold/2,1), canny_threshold, 3 );
1056 const uchar* edges_row = edges->data.ptr + y*edges->step;