Ask Your Question

Revision history [back]

click to hide/show revision 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);

look at this:

/// Using Canny's output as a mask, we display our result
 dst = Scalar::all(0);

Scalar::all(0); src.copyTo( dst, detected_edges);

src.copyTo( dst, detected_edges);so, the "color" is only a result of the visualization.

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.

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);

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);

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);