将 2D 点序列作为参数传递给 cvFitLine

发布于 2024-12-05 04:59:21 字数 450 浏览 4 评论 0原文

我有以下代码片段:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半寸时光 2024-12-12 04:59:21

引用cvCreateSeq有关第一个参数的文档:

seqFlags – 创建序列的标志。如果序列未传递给任何处理特定类型序列的函数,则序列值可以设置为 0,否则必须从预定义序列类型列表中选择适当的类型。

并查看 cvFitLine

points – 具有 32 位整数或浮点坐标的 2D 或 3D 点的序列或数组

,因此您必须指定添加到序列中的点的类型。

CvSeq* seq = cvCreateSeq(CV_32FC2, sizeof(CvSeq), sizeof(CvPoint2D32f), memStorage);

应该做到这一点。

Quoting from the documentation of cvCreateSeq concerning the first parameter:

seqFlags – Flags of the created sequence. If the sequence is not passed to any function working with a specific type of sequences, the sequence value may be set to 0, otherwise the appropriate type must be selected from the list of predefined sequence types.

And looking at cvFitLine:

points – Sequence or array of 2D or 3D points with 32-bit integer or floating-point coordinates

So you have to specify the type of points added to the seqeuence.

CvSeq* seq = cvCreateSeq(CV_32FC2, sizeof(CvSeq), sizeof(CvPoint2D32f), memStorage);

Should do the trick.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文