<< cv_calchist ComputerVision cv_circle >>

ComputerVision >> ComputerVision > cv_cannyedge

cv_cannyedge

Detecting Edges

Calling Sequence

image=cv_cannyedge(input_image,thresh1,thresh2)

Arguments

input_image

Input Image must be an np.darray

thresh1

minimum value of threshold, must be an integer

thresh2

maximum value of threshold, must be an integer

image

Output Image

Description

To Detect edges

It is an efficient way of detecting . Hysteresis Thresholding decides which are all edges are really edges and which are not. For this, we need two threshold values, minimum threshold and max threshold.

Examples

img = cv_cannyedge(input_image,100,200)

See Also


Report an issue
<< cv_calchist ComputerVision cv_circle >>