1. 画矩形

MyRect rect;
rect.left = 5;
rect.top = 5;
rect.right = 100;
rect.bottom = 100;
IplImage * pColorImage = cvCreateImage(cvSize(width, height), , );
cvRectangle(pColorImage, cvPoint(rect.left, rect.top), cvPoint(rect.right, rect.bottom), cvScalar(, , ), , , );
cv::Rect rect;
rect.x = ;
rect.y = ;
rect.width = ;
rect.height = ;
cv::Mat dst(rows, cols, CV_8UC1);
cv::rectangle(dst, rect, cv::Scalar(, , ), , , );
string text = "rectangel1";
cv::putText(dst, text, cv::Point(rect.x, rect.y), cv::FONT_HERSHEY_COMPLEX, , cv::Scalar(, , ), , , );

putText属性:

第一个参数是:需要写字的原图像,

第二个:需要写的内容,string类型的;

第三个:需要写的内容的左下角的坐标

第五个:字体大小

第六个:颜色

第七个:字体的厚度

第八个:默认8

05-11 11:13