- Canny Edge Detection
- Image Thresholding ( Binary , Adaptive )
- Bitwise Operations ( AND , OR , NOT )
It actually gives us the outline of objects from an image. Like if there is a circle we will get an outline of circle , if someone's face is there we get a outline of it also.
Detects border , separates objects , feature extraction.
Threshold 1 -> lower boundary ~ weak edges Threshold 2 -> upper boundary ~ strong edges It is basically stating if any pixel is bright take it to b rightest value , same with dark -> darkest.
thresh_value -> 0 - 255 max_value -> 255 method -> generally used is binary(if value more the threshold then it set its under 255 else set to 0)
Basically used if we want to merger 2 images , cut 1 image using 2nd image , flip or remove pixels. AND -> to cut overlap OR -> to merge NOT -> to invert