본문 바로가기

Programming/openCV

cvCircle

  • 목적

    원을 그린다.
     

  • 함수 원형
    void cvCircle(
    		CvArr* img,
    		CvPoint center,
    		int radius,
    		CvScalar color,
    		int thickness=1,
    		int lineType=8,
    		int shift=0);
    

       

  • 인자
    • img : 원이 그려질 이미지
    • center : 원의 중점
    • radius : 원의 반지름
    • color : 원의 색상
    • thickness : 원의 두께
    • lineType : 선의 종류
    • shift : Number of fractional bits in the center coordinates and radius value. The function draws a simple of filled circle with a given center and radius.(정확히 모르겠음)
       
  • 반환값

    void

       

  • 실행예시
     

    본래 이미지

       

    점 찍은 이미지(2px)

       

'Programming > openCV' 카테고리의 다른 글

cvGetRotationMatrix2D  (0) 2011.02.09
비쥬얼스튜디오10에서 openCV2.2 사용하기  (2) 2011.02.01