Object detection이란?
classification + Box localization
과정
→ region proposal을 selective search와 같은 것을 사용하는 것이 단점이다.
region proposal을 개선하여 selective search에서 Neural Nets 기반으로 대체
→ 처음부터 끝까지 neural net으로 구성됨
특징
one stage의 특징: 정확도가 떨어지더라도 real time detection이 가능하도록 한다
one stage detector는 region proposal 기반으로 한 roi pooling을 사용하지 않는다
{(4개의 좌표)Bounding box, confidence score} + (각 위치마다)Class probability map을 이용하여 object detection을 한다.
여러 scale의 feature map에서 나온 결과물을 이용해서 여러 possible box shapes를 갖는다. → 각 scale마다 object detection에 결과를 출력하도록 디자인 되어있다. 그리고 각 scale마다 bounding box를 구하고 각 layer에서 parsing된 detection bound box들의 총합을 계산한다.