Image Processing/Feature Extraction (2) 썸네일형 리스트형 [논문 읽기/2004] A Linear-Time Component-Labeling Algorithm Using Contour Tracing Technique link: https://www.sciencedirect.com/science/article/pii/S1077314203001401 Abstract ~ 1.Introduction: 제안하는 방법의 이점: 1. 이미지에 대해 1-pass만 필요함. 본 논문에서 제안한 contour tracing 절차로 인해서 contour point들은 한번 이상 방문이 되지만, 단지 일정한 시간에 불과함. 2. 어떠한 re-labeling 메커니즘도 필요로 하지 않음. 일단 하나의 pixel에 labeling index가 할당되면, 해당 값은 변하지 않음. 3. 모든 contour들과 sequential order의 contour pixel들을 product함으로써 얻을 수 있음. 4. 실험 결과 전통적인 compone.. [구현(c)/no ref.] fast and approximated HOG(Histogram of Oriented Gradients) using Integral Image link: no #define RESIZED_SAMPLE_X_SIZE64 #define RESIZED_SAMPLE_Y_SIZE128 #define CELL_SIZE8 #define BLOCK_SIZE2 #define ORIENTATION_NUM9 #define FEAT_DIM(BLOCK_SIZE*BLOCK_SIZE*ORIENTATION_NUM)*(BLOCK_NUM_IN_X)*(BLOCK_NUM_IN_Y) #define CELL_NUM_IN_X(RESIZED_SAMPLE_X_SIZE/CELL_SIZE) #define CELL_NUM_IN_Y(RESIZED_SAMPLE_Y_SIZE/CELL_SIZE) #define BLOCK_NUM_IN_X(CELL_NUM_IN_X-BLOCK_SIZE+1) #define B.. 이전 1 다음