opencv 호프 변환 검사 원 cvHoughCircles
CVAPI(CvSeq*) cvHoughCircles( CvArr* image, void* circle_storage,
int method, double dp, double min_dist,
double param1 CV_DEFAULT(100),
double param2 CV_DEFAULT(100),
int min_radius CV_DEFAULT(0),
int max_radius CV_DEFAULT(0));
image The 8-bit, single-channel, grayscale input image
circles The output vector of found circles. Each vector is encoded as 3-element floating-point
vector
method Currently, the only implemented method is CV HOUGH GRADIENT, which is basically 21HT,
described in [25].
dp The inverse ratio of the accumulator resolution to the image resolution. For example, if dp=1,
the accumulator will have the same resolution as the input image, if dp=2 - accumulator will
have half as big width and height, etc
minDist Minimum distance between the centers of the detected circles. If the parameter is too
small, multiple neighbor circles may be falsely detected in addition to a true one. If it is too
large, some circles may be missed
param1 The first method-specific parameter. in the case of CV HOUGH GRADIENT it is the higher threshold of the two passed to cv::Canny edge detector (the lower one will be twice smaller) param2 The second method-specific parameter. in the case of CV HOUGH GRADIENT it is the accumulator threshold at the center detection stage. The smaller it is, the more false circles may be detected. Circles, corresponding to the larger accumulator values, will be returned first minRadius Minimum circle radius maxRadius Maximum circle radius
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Vector & Matrix스칼라 : 하나의 숫자로만 이루어진 데이터 (크기만 있고 방향이 없는 물리량) 벡터 : 여러 숫자로 이루어진 데이터 레코드. 매트릭스 : 벡터가 여럿인 데이터집합 벡터의 크기는 스칼라배를 통해 표현할 수 있다. *내...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.