问题描述
- 关于C中for循环卡顿问题
-
m_Capture=cvCreateFileCapture((LPSTR)(LPCTSTR)m_AllName);
for (int j=0;j<m_number;j++)
{
m_LoadImg=cvQueryFrame(m_Capture);
m_Frame=cvCloneImage(m_LoadImg);}
Draw_Picture(m_Frame);
一旦m_number大于200+时候运行明显变慢,m_number再大就会崩溃,怎么解决啊?
解决方案
cvCloneImage有内存泄露。
参见
http://www.360doc.com/content/11/0621/16/6408986_128481830.shtml
时间: 2024-09-28 03:25:00