将 2D 点序列作为参数传递给 cvFitLine
我有以下代码片段:
int count = (int)sizes.size();
CvSeq* seq = cvCreateSeq(0, sizeof(CvSeq), sizeof(CvPoint2D32f), memStorage);
float line[4];
for (int i=0;i<count;i++) {
CvPoint2D32f p;
p.x = sizes[i];
p.y = depths[i];
cvSeqPush(seq, &p);
}
cvFitLine( seq, CV_DIST_L1, 1, 0.001, 0.001, line );
但此代码引发异常:cvFitLine 中不支持的格式或格式组合(输入序列必须由 2d 点或 3d 点组成) 我的代码哪里有问题? (我是 OpenCV 的新手)
I have the following code fragment:
int count = (int)sizes.size();
CvSeq* seq = cvCreateSeq(0, sizeof(CvSeq), sizeof(CvPoint2D32f), memStorage);
float line[4];
for (int i=0;i<count;i++) {
CvPoint2D32f p;
p.x = sizes[i];
p.y = depths[i];
cvSeqPush(seq, &p);
}
cvFitLine( seq, CV_DIST_L1, 1, 0.001, 0.001, line );
but this code throws an exception: Unsupported format or combination of formats (Input sequence must consist of 2d points or 3d points) in cvFitLine
Where's the problem in my code? (I'm new in OpenCV)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
引用
cvCreateSeq
有关第一个参数的文档:并查看
cvFitLine
:,因此您必须指定添加到序列中的点的类型。
应该做到这一点。
Quoting from the documentation of
cvCreateSeq
concerning the first parameter:And looking at
cvFitLine
:So you have to specify the type of points added to the seqeuence.
Should do the trick.