키워드 : Region Proposal Network, Region of Interest Pooling, Bounding Box Regression, Non Maximum Suppression
Faster R-CNN은 다음과 같은 순서로 진행된다
CNN을 통해 이미지로 부터 feature map을 추출한다.
feature map에 Fully Convolution을 적용하여 classification layer와 box-regression layer를 계산한다.
위에서 도출된 값을 이용하여 Region of Interest (RoI)를 계산한다.
Classification을 통해 얻은 확률 값을 높은 순서로 정렬하고 상위 K개를 선택한다.
K개의 앵커들에 각각 Bounding Box Regression을 적용한다.
중복을 값을 없애주기 위해 Non-Maximum-Suppresion (NMS) 을 통해 RoI를 구한다.
Loss function의 경우 classification loss와 regression loss로 구분된다.
Classification loss의 경우 각 앵커 박스에 대해서 먼저 positive와 negative label로 구분한다.