OpenCV畫圓 點函式circle

2021-09-29 09:58:09 字數 806 閱讀 7583

畫乙個圓

c++:

void

circle

( inputoutputarray img,

point center,

int radius,

const scalar& color,

int thickness=1,

int linetype=

line_8

, int shift=

0)

引數說明

img- 畫圓的影象

center- 圓心,如point點型別

radius- 圓的半徑

color- 圓的顏色

thickness- 圓輪廓的厚度,如果是正的,表示組成圓的線條的粗細程度。負值意味著要畫乙個填充圓。

linetype- 圓邊界的型別

8 (or omitted) - 8連線線.

4 - 4連線線.

cv_aa - 反鋸齒線.

shift- 中心座標和半徑值中的小數字數。

在灰度影象上畫圓/點

circle

(image, point,10,

scalar

(255),

1,cv_aa

);

C 程式入口點函式

cui控制台程式 不是dos,沒有介面的 main 其中處理unicode字元和字串的cui應用程式是 tmain main 處理 字元和字串的cui應用程式是 tamin wmain gui使用者介面程式 winmain 其中處理unicode字元和字串的gui應用程式是 twinmain wwi...

OpenCV的circle函式畫圓的小技巧

在特徵點檢測的時候,通常需要畫圓來表示特徵點的強度,opencv很方便的提供了circle函式來畫圓,函式簽名 cv exports w void circle cv in out mat img,point center,int radius,const scalar color,int thic...

最全C 知識點 函式

1 函式操作 int fact int val int main 4 陣列引用形參 int k 10 print k void print int arr 10 for auto elem arr cout elem endl 5 傳遞多維陣列 int matrix 10 10個指標構成的陣列 in...