본문 바로가기

전체 글27

[논문 리뷰] Mask R-CNN https://arxiv.org/pdf/1703.06870.pdf : Mask R-CNN 논문을 바탕으로 작성하였다. Mask R-CNN Instanace Segmentation은 이미지 내에 존재하나는 모든 객체를 탐지하는 동시에 각각의 경우를 정확하게 픽셀 단위로 분류하는 task이다. Preview Faster R-CNN의 RPN에서 얻은 RoI에 대하여 객체의 class를 예측하는 classification branch, bbox regression을 수행하는 box regression branch와 평행으로 segmentation mask를 예측하는 mask branch를 추가한 구조를 가진다. → Mask branch는 각각 RoI에 작은 크기의 FCN이 추가된 형태이다. Segmentatio.. 2022. 4. 4.
[논문 리뷰] R-CNN 시리즈 https://arxiv.org/pdf/1311.2524.pdf : Rich feature hierarchies for accurate object detection and semantic segmentation Tech report (v5) https://arxiv.org/pdf/1504.08083.pdf : Fast R-CNN https://arxiv.org/pdf/1506.01497.pdf : Faster R-CNN: Towards Real-Time Object Detection with Region Proposal Networks 위 논문들을 참고하여 작성하였다. Input 이미지 속 사물, 사람, 동물 등을 detect 하는 Detection 분야에 한 획을 그은 R-CNN 시리즈에 대해 리뷰하.. 2022. 4. 4.
[알고리즘] 6가지 Sorting Basic Sorting problems 총 6가지를 알아보자. Insertion Sort Merge Sort Bubble Sort Selection Sort Heap Sort Quick Sort 1. Insertion sort 2번째 index 부터 비교를 시작한다. 자신보다 낮은 index 값에 있는 value가 자신의 value 보다 크다면 자리를 바꿔주는 알고리즘이다. 아래 그림과 같이 insertion sort가 진행된다. 이를 python으로 작성하면 다음과 같다. def insertionSort(A,n): # A list, n length of list for i in range(1,n): # from index 1 to n-1 key = A[i] # keep value A[i] in key.. 2022. 4. 4.
[논문 리뷰] Higher HRNet https://arxiv.org/pdf/1908.10357.pdf HigherHRNet: Scale-Aware Representation Learning for Bottom-Up Human Pose Estimation 논문을 참고하여 작성하였다. Abstract 기존 Bottom Up 의 어려운 점은 scale variation을 해결하지 못하여 small person의 pose Acc가 낮다는 점이었다. 이를 해결할, 본 논문에서는 HigherHRNet, 새로운 bottom-up human pose estimation method을 제공한다. High-resolution feature pyramid를 이용하여 scale-aware representation들을 학습하고, 학습동안 multi-resolu.. 2022. 4. 2.
[논문 리뷰] HRNet https://arxiv.org/pdf/1902.09212.pdf Deep High-Resolution Representation Learning for Human Pose Estimation 논문을 참고하여 작성하였다. Abstract HRNet은 single person의 pose를 예측하는 모델이고, 본 논문에서 제공하는 network는 높은 해상도를 전체 프로세스 동안 유지하는 특징을 가지고 있다. : maintains high reoslution representations through whole process High resolution subnetwork를 시작으로 점점 stage 추가를 위해 high-to-low resolution subnetwork를 추가하며, multi resolut.. 2022. 4. 2.