Deep Learning/Object Detection

Image Intensity, Canny

Naranjito 2024. 5. 28. 11:59

There is a sharp change in intensity a sharp change in color.

 


Image can be read as a matrix an array of pixels that contains the light intensity at some location.

 

0 : no intensity if something is completely black

255 : maximum intensity that something being completely white

 



a strong gradient : a steep change

a small gradient : a shallow change

 

 


  • cv2.Canny 

 

cv2.Canny(image, low_threshold, high_threshold)

 

Compute the derivative in all directions of the image.



And then traces the strongest gradients as a series of white pixels.

 

 

'Deep Learning > Object Detection' 카테고리의 다른 글

Object Detection, mAP(The Mean Average Precision)  (0) 2024.02.16
YOLO(You Only Look Once)  (0) 2024.02.12
(prerequisite-YOLO) One Stage Object Detection  (0) 2024.02.11
(prerequisite-YOLO) DarkNet  (0) 2024.02.11
Faster RCNN  (0) 2024.01.30