본문 바로가기
딥러닝관련/Detection

Exhaustive search

by 머리올리자 2021. 6. 15.

 

초기의 detection 방법

 

Sliding Window (Exhaustive search)

 

다양한 scale을 가진 window를 이미지 전체를 sliding하며 score를 얻는 방식

 

     (하나의 이미지에서 여러 번 score를 계산해야 하므로 효율성 측면에서 떨어진다)

 

     (아래와 같은 gif를 보면 이미지의 scale이 달라지고 박스의 scale 및 size가 달라지면,

그에 따른 sliding window의 연산량이 많이 증가한다는 걸 알 수 있다.)

 

Sliding Window 방법(출처 : https://pyimagesearch.com/wp-content/uploads/2014/10/sliding_window_example.gif)

 

Image Pyramid와 결합한 Sliding Window 방법 (출처 : https://pyimagesearch.com/wp-content/uploads/2015/03/sliding-window-animated-adrian.gif)

 

 

 

'딥러닝관련 > Detection' 카테고리의 다른 글

Detectron2 (1) 환경 세팅 및 데모  (0) 2021.09.29
Fast R-CNN 정리  (0) 2021.06.28
Bounding box regression  (0) 2021.06.28
Non-maximum Suppression  (0) 2021.06.24
Detection metrics 정리 (IOU, Precision, Recall, mAP...)  (0) 2021.06.18