-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mask R-CNN #8
Comments
Faster R-CNN까지는 2-stage에 기초한 특히 2) Object detection 를 위해 고안된 모델들이였다. Mask R-CNN
Equivariance : input이 바뀌면 output도 바뀌어야 한다. Fully-Connected layer를 Segmentation에 사용할 때의 문제점
따라서 Fully-Connected layer를 1*1 Convolution layer로 대체 --> Convolutionalization |
FPN에서는 위 그림과 같이 마지막 layer의 feature map에서 점점 이전의 중간 feature map들을 더하면서 이전 정보까지 유지할 수 있도록 한다. 이렇게 함으로써 더이상 여러 scale값으로 anchor를 생성할 필요가 없게됐고 모두 동일한 scale의 anchor를 생성한다. 따라서 작은 feature map에서는 큰 anchor를 생성하여 큰 object를, 큰 feature map에서는 다소 작은 anchor를 생성하여 작은 object를 detect할 수 있도록 설계되었다.
수천개의 anchor box가 생성되면 NMS알고리즘을 통해 anchor의 개수를 줄인다.
RoI가 소수점 좌표를 가지면 좌표를 반올림하는 식으로 이동시킨후 pooling을 했는데 |
논문 리뷰영상 : PR-057: Mask R-CNN
논문 링크 : https://arxiv.org/abs/1703.06870
The text was updated successfully, but these errors were encountered: