1 | initial version |
look at this:
/// Using Canny's output as a mask, we display our result dst = Scalar::all(0);
src.copyTo( dst, detected_edges);
2 | No.2 Revision |
look at this:
/// Using Canny's output as a mask, we display our result
src.copyTo( dst, detected_edges);so, the "color" is only a result of the visualization.
3 | No.3 Revision |
look at this:
/// Using Canny's output as a mask, we display our result
dst = Scalar::all(0);
src.copyTo( dst, detected_edges);
so, the "color" is only a result of the visualization.
4 | No.4 Revision |
look at this:
/// Using Canny's output as a mask, we display our result
dst = Scalar::all(0);
src.copyTo( dst, detected_edges);
so, the "color" is only a result of the visualization.visualization. if you want the "raw" Canny output, just display that instead:
imshow("canny", detected_edges);
5 | No.5 Revision |
look at this:
/// Using Canny's output as a mask, we display our result
dst = Scalar::all(0);
src.copyTo( dst, detected_edges);
so, the "color" is only a result of the visualization. if you want the "raw" Canny output, just display that instead:
imshow("canny", detected_edges);
6 | No.6 Revision |
look at this:
/// Using Canny's output as a mask, we display our result
dst = Scalar::all(0);
src.copyTo( dst, detected_edges);
imshow( window_name, dst );
so, the "color" is only a result of the visualization. if you want the "raw" Canny output, just display that instead:
imshow("canny", detected_edges);