Python

[Python] openCV : Moments

SangRok Jung 2022. 11. 17. 12:20
반응형

Moments


윤곽선(contour)이나 이미지(array)의 0차 모멘트부터 3차 모멘트까지 계산하는 알고리즘입니다.

공간 모멘트(spatial moments), 중심 모멘트(central moments), 정규화된 중심 모멘트(normalized central moments), 질량 중심(mass center) 등을 계산할 수 있습니다.s

 

 

 

 

반응형

'Python' 카테고리의 다른 글

[Python] PCA, LDA  (0) 2022.11.17
[Python] openCV : Matching  (0) 2022.11.17
[Python] openCV : Hough Transformation  (0) 2022.11.17
[Python] openCV : Corner Detect  (0) 2022.11.17
[Python] openCV : Canny Edge Detection  (0) 2022.11.17