您好,登錄后才能下訂單哦!
[-]
相關函數介紹
Point
Scalar
Rectangle
Line
Ellipse
PolyLine
PutText
示例代碼
實驗結果
該數據結構表示了由其圖像坐標 和 指定的2D點。可定義為:
Point pt;
pt.x = 10;
pt.y = 8;
或者
Point pt = Point(10, 8);
表示了具有4個元素的數組。次類型在OpenCV中被大量用于傳遞像素值。
本節中,我們將進一步用它來表示RGB顏色值(三個參數)。如果用不到第四個參數,則無需定義。
我們來看個例子,如果給出以下顏色參數表達式:
Scalar( a, b, c )
那么定義的RGB顏色值為:Red = c, Green = b and Blue= a
C++: void rectangle(Mat& img,Point pt1, Pointpt2, const Scalar&color, intthickness=1,intlineType=8, intshift=0)
C++: void rectangle(Mat& img,Rect rec, const Scalar&color, intthickness=1, intlineType=8,intshift=0 )
Parameters:
img – 畫矩形的對象
pt1 – 矩形的一個頂點,左上角的.
pt2 – 另一個頂點,右下角的.
rec – 確定矩形的另一種方式,給左上角坐標和長寬
color – 指定矩形的顏色或亮度(灰度圖像),scalar(255,0,255)既可指定.
thickness – 矩形邊框的粗細. 負值(like CV_FILLED)表示要畫一個填充的矩形
lineType – 邊框線型. (
8 (or 0) - 8-connected line(8鄰接)連接 線。
4 - 4-connected line(4鄰接)連接線。
CV_AA - antialiased 線條。)
shift –坐標點的小數點位數
C++: void line(Mat& img, Point pt1,Point pt2, const Scalar& color, int thickness=1, int lineType=8,int shift=0)
Parameters:
img – 圖像.
pt1 – 線條起點.
pt2 – 線條終點.
color – 線條顏色.
thickness – 線條寬度.
lineType – 線型
Type of the line:
8 (or omitted) - 8-connected line.
4 - 4-connected line.
CV_AA - antialiased line.
shift – 坐標點小數點位數.
Circle
C++: void circle(Mat&img, Point center, intradius, const Scalar&color,intthickness=1, intlineType=8, intshift=0)
Parameters:
img – 要畫圓的那個矩形.
center – 圓心坐標.
radius – 半徑.
color – 圓邊框顏色,scalar類型的
thickness – 正值表示圓邊框寬度. 負值表示畫一個填充圓形
lineType – 圓邊框線型
shift – 圓心坐標和半徑的小數點位數
C++: void ellipse(Mat& img, Point center,Size axes, double angle, double startAngle, double endAngle, const Scalar& color,int thickness=1, int lineType=8, int shift=0)
C++: void ellipse(Mat& img, constRotatedRect& box, const Scalar& color, int thickness=1, int lineType=8)
Parameters:
img – 橢圓所在圖像.
center – 橢圓中心.
axes – 橢圓主軸一半的長度
angle – 橢圓旋轉角度
startAngle – 橢圓弧起始角度
endAngle –橢圓弧終止角度
box – 指定橢圓中心和旋轉角度的信息,通過 RotatedRect 或 CvBox2D. 這表示橢圓畫在旋轉矩形上(矩形是不可見的,只是指定了一個框而已)
color – 橢圓邊框顏色.
thickness – 正值代表橢圓邊框寬度,負值代表填充的橢圓
lineType – 線型
shift – 橢圓中心坐標和坐標軸的小數點位數
C++: void polylines(Mat& img, const Point** pts, const int* npts, int ncontours, bool isClosed, const Scalar& color, int thickness=1, int lineType=8, int shift=0 )
C++: void polylines(InputOutputArray img, InputArrayOfArrays pts, bool isClosed, const Scalar& color, int thickness=1, int lineType=8, int shift=0 )
Parameters:
img – 折線所在圖像.
pts – 折線中拐點坐標指針.
npts – 折線拐點個數指針.
ncontours – 折線線段數量.
isClosed – 折線是否閉合.
color – 折線顏色.
thickness – 折線寬度.
lineType – 線型.
shift – 頂點坐標小數點位數.
C++: void putText(Mat& img, const string& text, Point org, int fontFace, double fontScale, Scalar color, int thickness=1, int lineType=8, bool bottomLeftOrigin=false )
Parameters:
img – 顯示文字所在圖像.
text – 待顯示的文字.
org – 文字在圖像中的左下角 坐標.
font – 字體結構體.
fontFace – 字體類型, 可選擇字體:FONT_HERSHEY_SIMPLEX, FONT_HERSHEY_PLAIN, FONT_HERSHEY_DUPLEX,FONT_HERSHEY_COMPLEX, FONT_HERSHEY_TRIPLEX, FONT_HERSHEY_COMPLEX_SMALL, FONT_HERSHEY_SCRIPT_SIMPLEX, orFONT_HERSHEY_SCRIPT_COMPLEX,以上所有類型都可以配合 FONT_HERSHEY_ITALIC使用,產生斜體效果。
fontScale – 字體大小,該值和字體內置大小相乘得到字體大小
color – 文本顏色
thickness – 寫字的線的粗細,類似于0.38的筆尖和0.5的筆尖
lineType – 線性.
bottomLeftOrigin – true, 圖像數據原點在左下角. Otherwise, 圖像數據原點在左上角.
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。