the cmd of OpenCV and C++

这个主要记录自己看到的OpenCV和MSDN函数:

OpenCV:

【1】BackgroundSubtractorMOG


MSDN and MFC:

【1】GetPrivateProfileInt

【2】std::max error C2780: “const _Ty &std::min(const _Ty &,const _Ty &,_Pr)” : 应输入 3 个参数,却提供了 2 个,是因为两输入量的类型不一致。

【3】How do I declare a 2d array in C++ using new? http://stackoverflow.com/questions/936687/how-do-i-declare-a-2d-array-in-c-using-new auto array = new double[M][N]();可以自动的初始化为0.

【4】不存在从CString到const char*的转换 http://blog.csdn.net/futurewu/article/details/11835461 (将项目属性的字符集设置从"使用Unicode字符集“转换为”使用多字字符集“, 然后用(char *)(LPTSTR)(LPCTSTR)dlg.GetPathName())

【5】nafxcw.lib与LIBCMT.lib在vs2008中链接冲突解决方案 http://hi.baidu.com/dyqq1234/item/e124228c441b05814514cf2f(具体操作方法: 工程属性 "连接器"->"输入"->"附加依赖项"里面输入"nafxcw.lib",这样VC2008编译时会先链接nafxcw.lib,问题就解决了。补充一句:这是在使用静态MFC库时, 常常出现的错误。 一般要么是通过改为使用动态MFC库,要么通过上面的方法来解决。)


C++:

【1】std::swap

【2】std::max_element

【3】std::find

【4】std::set_intersection

【5】std::map

【6】std::pair

你可能感兴趣的:(the cmd of OpenCV and C++)