我正在开发一个使用 C API 的 OpenCV 应用程序。我试图让我的cvLine
函数具有随机厚度,所以第一次绘制时它的厚度为 3,第二次可能为 10。现在每次绘制时它的厚度都是均匀的。我已经尝试过实施cvRandInt
,但即使通过研究,我也无法理解如何使用此功能。
CvRNG rng;
int thickness=cvRandInt(&rng);
IplImage* imgScribble = NULL;
while(true )
{
IplImage *frame=0;
frame=cvQueryFrame(capture);
if( !frame ) break;
if(imgScribble == NULL)
{
imgScribble = cvCreateImage(cvGetSize(frame), 8, 3);
}
// Holds the yellow thresholded image
IplImage* imgYellowThresh1 = GetThresholdedImage1(frame,1);
double moment10 = cvGetSpatialMoment(moments_yellow, 1, 0);
double moment01 = cvGetSpatialMoment(moments_yellow, 0, 1);
double area = cvGetCentralMoment(moments_yellow, 0, 0);
int lastX = posX;
int lastY = posY;
posX = moment10/area;
posY = moment01/area;
if(lastX>0 && lastY>0 && posX>0 && posY>0)
{
cvLine(imgScribble, cvPoint(posX, posY), cvPoint(lastX, lastY), cvScalar(10,255,255), thickness,CV_AA, 0);
}