Any one know how I can get number of edge found when using CANNY EDGES detection
Create a list to store the results of find.edges and then use “len” to count the total edges stored.
find_edges doesn’t actually return the edges, it just detects them in the image. Something you could try, call find_lines, after find_edges, and count the lines returned.