Non maximum suppression output from raw edgemap. [closed]
Problem I have a program which gives the edgemap of an image without non maximum suppression of edge pixels. I am trying to apply NMS on this edgemap. So Is there any opencv c++ implemetation of NMS online ? Please provide any link if any. I have searched but haven't found any suitable for my requirements.
The representation of image is different in my case. Its data type is float and every pixel value lies in [0...1] . If the value of a pixel is large, it means higher chance of that pixel be in some edge in the original image.
Thanks
Use Canny: see this, it contains the NMS; you can see also in the OpenCV doc