박민혀기
CELLON II(FindContours, minRect) 본문
1. 객체 인식
2. 객체 기준점 추출
3. 객체 기준점을 기준으로 회전 각도 획득
4. 회전 -각도만큼 회전
Image Contour Reference
https://dsbook.tistory.com/227 (Very Good)
[OpenCV Practice 15-3] 이미지 컨투어 feature (Image Contour - feature 2)
import cv2 import numpy as np import matplotlib.pyplot as plt Contour Features 1. Contour Approximation (Contour 근사) cv2.findContours 함수를 통해 찾은 Contours line에는 각각의 Contours point를 가지고 있다. 보통은 이 Point를 drawC
dsbook.tistory.com
https://3001ssw.tistory.com/279 (Good)
[OpenCV] 1. 외곽선 응용
이전 글에서 findContours 함수를 이용하여 외곽선을 검출하였습니다. 이렇게 검출한 외곽선 정보에서 객체의 위치, 크기 등의 정보를 추출하는 방법에 대해서 알아보겠습니다. 객체를 감싸는 사각
3001ssw.tistory.com
https://docs.opencv.org/3.4/df/dee/samples_2cpp_2minarea_8cpp-example.html (Good)
OpenCV: samples/cpp/minarea.cpp
#include static void help() { cout << "This program demonstrates finding the minimum enclosing box, triangle or circle of a set\n" << "of points using functions: minAreaRect() minEnclosingTriangle() minEnclosingCircle().\n" << "Random points are generated
docs.opencv.org
'CELLON II > Ref' 카테고리의 다른 글
CELLON II(Video Reference) (0) | 2023.01.21 |
---|---|
CELLON II(Simple Blob Detector) (0) | 2023.01.13 |
CELLON II(Feature matching) (0) | 2023.01.13 |