使用OpenCv和多线程从IP摄像机直播视频

时间:2013-12-18 09:53:09

标签: c++ multithreading opencv mfc video-streaming

感谢您花时间阅读我的帖子。 我有一个应用程序,它接受IP摄像机的用户名,密码和IP地址,并显示视频输入(这是通过使用计时器完成),我也有一个名为“捕获”的按钮,单击该按钮将图像保存到我的磁盘。此外,我已经同时尝试了两个IP摄像头相同,但是当添加另一个摄像头时,第一个摄像头的流慢。所以我的问题是“他们是否可以通过在我的应用程序中使用线程来解决这个减速问题”。我是MFC,C ++和OpenCV的新手。我正在使用OpenCV来显示来自IP cam的视频。专家请帮助我找到正确的解决方案。 以下是我为获取视频Feed而实施的代码。

void CStaticEx::OnPaint()
{
CPaintDC dc(this); // device context for painting

CRect rect;
GetClientRect(&rect);

m_pFrameImg = cvQueryFrame(m_pCamera);
//If camera is disconnected, control goes
//in if condition and displays message in 
//picture control
if(m_pFrameImg == NULL){
    KillTimer( ONE);
    CString sCamName;
    sCamName.Format(_T(CAM_ID_TXT),m_IpAddr);
    CString sDviceLost = _T(CONNECTION_LOST_TXT);
    sCamName.Append(sDviceLost);
    dc.SetBkMode(OPAQUE);
    dc.SetBkColor(BACKBRND_COLOR_TXTOUT);
    dc.SetTextColor(ERR_TXT_COLOR);// BGR(0xbbggrr);
    dc.TextOut(ERR_TXT_XAXIS,ERR_TXT_YAXIS,sCamName,sCamName.GetLength());
    return;//check after removinf return;
}
BITMAPINFO bitmapInfo;
bitmapInfo.bmiHeader.biSize             =   sizeof(BITMAPINFOHEADER);
bitmapInfo.bmiHeader.biPlanes           =   ONE;
bitmapInfo.bmiHeader.biCompression      =   BI_RGB;
bitmapInfo.bmiHeader.biXPelsPerMeter    =   PELSPERMETER;
bitmapInfo.bmiHeader.biYPelsPerMeter    =   PELSPERMETER;
bitmapInfo.bmiHeader.biClrUsed          =   ZERO;
bitmapInfo.bmiHeader.biClrImportant     =   ZERO;
bitmapInfo.bmiHeader.biSizeImage        =   ZERO;
bitmapInfo.bmiHeader.biWidth            =   m_pFrameImg->width;
bitmapInfo.bmiHeader.biHeight           =   -m_pFrameImg->height;
IplImage* tempImage;

if(m_pFrameImg->nChannels == THREE) //Number of color channels (1,2,3,4)
{
    tempImage = (IplImage*)cvClone(m_pFrameImg);
    bitmapInfo.bmiHeader.biBitCount=tempImage->depth * tempImage->nChannels;
}
else if(m_pFrameImg->nChannels ==  ONE) //Number of color channels (1,2,3,4)
{
    tempImage =  cvCreateImage(cvGetSize(m_pFrameImg), IPL_DEPTH_8U, THREE);
    cvCvtColor(m_pFrameImg, tempImage, CV_GRAY2BGR);
    bitmapInfo.bmiHeader.biBitCount=tempImage->depth * tempImage->nChannels;
    }
dc.SetStretchBltMode(COLORONCOLOR);
::StretchDIBits(dc.GetSafeHdc(), rect.left, rect.top, rect.right, rect.bottom,
    ZERO, ZERO, tempImage->width, tempImage->height, tempImage->imageData, &bitmapInfo,
    DIB_RGB_COLORS, SRCCOPY);
cvReleaseImage(&tempImage);
//String for giving Camera name
CString sCamName;
sCamName.Format(_T("Video Stream IP Cam-%s"), m_IpAddr);
dc.SetBkMode(OPAQUE);
dc.SetBkColor(MSG_BGCOLOR);
dc.SetTextColor(WHITE);// BGR(0xbbggrr);
dc.TextOut(MSG_TXT_XAXIS, MSG_TXT_YAXIS, sCamName, sCamName.GetLength());
ReleaseDC(&dc);
SetTimer( ONE,30, NULL);

 }
void CStaticEx::OnTimer(UINT_PTR nIDEvent)
{
// TODO: Add your message handler code here and/or call default
if(nIDEvent =  ONE){

    Invalidate();
}

 CStatic::OnTimer(nIDEvent);
}

先谢谢。祝你有美好的一天。

1 个答案:

答案 0 :(得分:-1)

请参阅以下内容以捕捉实时相机中的帧。 的 http://www.codeproject.com/Questions/442770/Connect-to-IP-Camera-in-Cplusplus