본문 바로가기
  • AI 개발자가 될래요

컴퓨터비전15

[Python/OpenCV] Affine Transform ● Affine Transform - 영상을 평행 이동시키거나 회전, 크기 변환, 전단 변환 등을 통해 만들 수 있는 변환을 통칭한다. - 직선은 그대로 직선으로 나타나고, 직선 간의 길이 비율과 평행 관계는 그대로 유지된다. * 전단 변환: 직사각형 형태의 영상을 한쪽 방향으로 밀어서 평행사변형 모양으로 변형되는 변환 가로, 세로 방향 정의 가능 (a)는 y 좌표가 증가함에 따라 영상이 조금씩 가로 방향으로 이동하는 가로 방향 전단 변환 (b)는 x 좌표가 증가함에 따라 영상이 조금씩 세로 방향으로 이동하는 세로 방향 전단 변환 출처: https://thebook.io/006939/ch08/01/03/ 아래 그림은 어파인 변환의 예를 나타낸다. (a): 입력으로 사용한 원본 영상 (b): 입력 영상을 .. 2022. 5. 6.
[C++/OpenCV] 허프 변환 https://github.com/SanhoLee/opencvFuntion/blob/master/HoughLines_complex.cpp GitHub - SanhoLee/opencvFuntion Contribute to SanhoLee/opencvFuntion development by creating an account on GitHub. github.com https://docs.opencv.org/3.4/d9/db0/tutorial_hough_lines.html OpenCV: Hough Line Transform Prev Tutorial: Canny Edge Detector Next Tutorial: Hough Circle Transform Goal In this tutorial you will l.. 2022. 3. 10.
[C++/Opencv] Equilvalence table Labeling 동차테이블을 이용한 라벨링 프로그래밍중이다.공부하면서 중요한거 정리할 예정 관련 논문: SparseCCL: Connected Components Labeling and Analysis for sparse images 참고 페이지- Connected-component labelinghttps://en.wikipedia.org/wiki/Connected-component_labeling#Algorithms Connected-component labeling - WikipediaConnected-component labeling (CCL), connected-component analysis (CCA), blob extraction, region labeling, blob discovery, or region.. 2022. 3. 7.