Detecting Edges
image=cv_cannyedge(input_image,thresh1,thresh2)
Input Image must be an np.darray
minimum value of threshold, must be an integer
maximum value of threshold, must be an integer
Output Image
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.