English 中文(简体)
如何在 c++ 和 Opencv 中写入 gaussian 混合物模型
原标题:How to write gaussian mixture model in c++ and Opencv

我想在视频中跟踪一个对象。 所以我想在 Opencv 和 C++ 中使用“ 坚固的” Gausian Mixture 模型

最佳回答

抱歉没有直接回答问题,但:

阅读研究论文是一件伟大的事情, 但坦率地说, 通过尝试你自己对具体数据的想法, 并更好地了解问题, 你会得到更多的知识。

如果您知道形状, 使用通用的 Hough 变换或匹配的过滤器来估计位置, 加上 Kalman 过滤器来跟踪这些形状, 比较容易执行 。 或者您可以找到现有的执行 。

另外,如果你不是一个很好的 C++ 程序程序员,我就先在 Matlab 或 Octave 或 C++ 中 建立你的想法原型,而不是 C++,因为当你真正想要关注的问题本身时,你会在 C++ 中浪费你大部分的时间。

正如我在评论中所说,我暂不使用GMM系统,直到你更好地了解问题以及如何使用。 (当然,除非你已经很好地知道如何使用它。 )

问题回答

暂无回答




相关问题
Undefined reference

I m getting this linker error. I know a way around it, but it s bugging me because another part of the project s linking fine and it s designed almost identically. First, I have namespace LCD. Then I ...

C++ Equivalent of Tidy

Is there an equivalent to tidy for HTML code for C++? I have searched on the internet, but I find nothing but C++ wrappers for tidy, etc... I think the keyword tidy is what has me hung up. I am ...

Template Classes in C++ ... a required skill set?

I m new to C++ and am wondering how much time I should invest in learning how to implement template classes. Are they widely used in industry, or is this something I should move through quickly?

Print possible strings created from a Number

Given a 10 digit Telephone Number, we have to print all possible strings created from that. The mapping of the numbers is the one as exactly on a phone s keypad. i.e. for 1,0-> No Letter for 2->...

typedef ing STL wstring

Why is it when i do the following i get errors when relating to with wchar_t? namespace Foo { typedef std::wstring String; } Now i declare all my strings as Foo::String through out the program, ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

Window iconification status via Xlib

Is it possible to check with the means of pure X11/Xlib only whether the given window is iconified/minimized, and, if it is, how?

热门标签