본문 바로가기

반응형

Data-science/deep learning

(87)
detection 복습 Faster R-CNN 알고리즘 feature_maps = process(image) # deep CNN으로 피쳐맵 추출 ROIs = region_proposal(feature_maps) # 피쳐맵에서 RPN으로 ROI 추출 for ROI in ROIs # 각 ROI에 대해서 patch = roi_pooling(feature_maps, ROI) # ROI 풀링 class_scores, box = detector(patch) # Expensive! # ROI에 대해 class score/ box regression class_probabilities = softmax(class_scores) # class score에 대한 확률값 cf0) Anchors? - 처음 물체 위치를 예측할 때 reference로..
detection 연구 Anchor box ? region proposal 자세한 원리 training RPNs, we assign a binary class label (of being an object or not) to each anchor. We assign a positive label to two kinds of anchors: (i) the anchor/anchors with the highest Intersection-overUnion (IoU) overlap with a ground-truth box, or (ii) an anchor that has an IoU overlap higher than 0.7 with 5 any ground-truth box. 각각의 anchor마다 이진 분류 label을 할당하고 anchor의 positive label을 두 종류로 판단한다!!..
convent,detection에서 translatioan invariant 하다는 의미에 관한 고찰 1. 딥러닝에서 Convolution network가 translation invariant 하다는 의미 think there is some confusion about what is meant by translational invariance. Convolution provides translation equivariance meaning if an object in an image is at area A and through convolution a feature is detected at the output at area B, then the same feature would be detected when the object in the image is translated to A'. The pos..
Detection using deep learning study Object Detection: Identify the object category and locate the position using a bounding box for every known object within an image.Semantic Segmentation: Identify the object category of each pixel for every known object within an image. Labels are class-aware.Instance Segmentation: Identify each object instance of each pixel for every known object within an image. Labels are instance-aware. 차례대로..
object detection 공부 object localization vs object detection - localization은 이미지 당 하나의 object에 대해 bounding box를 얻는 문제 - 2 stage Object Detector - Region proposal / detection 순차적으로 수행하는 방법 - 1 stage에 비해 비교적 느리지만 정확하다 - Region proposal -> classification -> multi-class classification, bounding box regression - Fast R-CNN, Faster R-CNN- 1 stage Object Detector - 두 가지 과정을 한번에 처리하는 방법론 - Conv Layers -> Feature Maps -> mul..
detection research review paper review 2 지난 번에 적던 포스트가 다 날라가버림,,, SPP-net이랑, Faste R-CNN과 Faster R-CNN에 대해 적었는데...ㅠㅠㅠ 대충 다시 정리하겠다. R-CNN에서 FC layer로 인해 고정된 input이 요구됐음, 그래서 region proposal 단계에서 계속 같은 크기로 잘라야 했다. 근데 이게 문제가 될 수도 있다! 물체가 잘려나갈수도 있는거임. 왜곡이 일어날 수도있고 (특히 물체의 스케일이 다양할 때 문제가 됨), 이문제를 해결하기 위해 SPP-net이 나왔다. SPP-net conv5를 재활용한다. 이걸 다시 region proposal에 쓴다. (피쳐맵은 로컬한 반응의 세기나 공간상의 위치와 연관된 게 이를 재활용한다는 건 어느정도 말이된다.) SPP layer는 마지막 spa..
detection research review paper review 1 detection Informative region selectionFeature extractionClassification (Supported Vector Machine (SVM), AdaBoost, Deformable Part-based Model (DPM))R-CNN improvementsFast R-CNNjointly optimizes classification and bounding box regression tasksFaster R-CNN takes an additional subnetwork to generate region proposalYOLOaccomplishes object detection via a fixed-grid regressiongeneric object detection..

728x90
반응형