1 stage Detector
regional proposal와 classification이 동시에 이루어진다.
-> classification과 localization문제를 동시에 해결하는 방법
1-stage detector는 비교적 빠르지만 정확도가 낮다.
2 stage Detector
Regional Proposal과 Classification을 순차적으로 진행
-> classification과 localization문제를 순차적으로 해결하는 방법
- Region Proposal
기존에는 image에서 object detection을 위해 sliding window 방식을 이용
Sliding window 방식: 이미지에서 모든 영역을 다양한 크기의 window(differenct scale & ratio)로 탐색하는 것
Region Proposal 방식: 비효율성을 개선하기 위해 '물체가 있을만한' 영역을 빠르게 찾아내는 알고리즘
ex) Selective search, Edge boxes 등
2-stage detector는 비교적 느리지만 정확도가 높다.
빨간색 글씨로 된 model은 Hoya님이 이것만은 읽으면 좋겠다고 생각한 것이다.
출처: https://ganghee-lee.tistory.com/34
1-Stage detector와 2-Stage detector란?
직선을 기준으로 위가 2-Stage Detector들이고 아래가 1-Stage Detector들이다. Regional Proposal과 Classification이 순차적으로 이루어진다. Regional Proposal 이란? 기존에는 이미지에서 object detection을 위해 sliding w
ganghee-lee.tistory.com
Tutorials of Object Detection using Deep Learning [1] What is object detection?
Deep Learning을 이용한 Object detection Tutorial - [1] What is object detection?
hoya012.github.io
'computer vision > object detection' 카테고리의 다른 글
M2Det: A Single-Shot Object Detector based on Multi-Level Feature PyramidNetwork (0) | 2024.06.11 |
---|---|
2 stage detector 주요 model 정리 (0) | 2024.05.20 |
mAP(mean Average Precision) (0) | 2024.05.17 |
Single-Shot Refinement Neural Network for Object Detection (0) | 2024.04.09 |
YOLOv3: An Incremental Improvement (0) | 2024.04.03 |