使用Accord.Video.DirectShow获取相机分辨率



我正在评估Accord.NET框架(https://github.com/accord-net/framework/)用于成像应用中。目前,我有一些基本要求——从USB相机捕捉视频,以显示在UI上,并查看/更改所有相机属性。

Accord.Video.DirectShow.VideoCaptureDevice.DisplayPropertyPage适用于显示相机属性,如亮度、对比度、色调等,但不显示可用的相机分辨率。

Accord.Video.DirectShow.VideoCaptureDevice.VideoCabilities只返回一个分辨率,但我预计还会返回几个。

我试过VideoCapx(http://videocapx.com/)ActiveX控件,并使用其ShowVideoFormatDlg方法,我可以显示一个对话框,其中显示所有可用的分辨率、帧速率等。我知道这是制造商提供的对话框,可通过OLE\COM访问。我正在寻找的是一种通过.NET访问的方式,希望通过Accord框架。

我知道额外的分辨率可能是转换筛选器的属性,但我对.NET中的DirectShow和COM接口不熟悉,所以我正在寻找一些指针。

我用来包装.NET的DirectShow代码。当然,使用DirectShow可以获取、设置和检索a/v源功能。您是否尝试过使用IAMStreamConfig视频接口设置某些捕获和压缩过滤器的输出格式?

我使用此代码来获取分辨率,并将其设置在不同的源上。其中m_pVCap:源过滤器

hr = m_pBuilder->FindInterface(&PIN_CATEGORY_CAPTURE,&MEDIATYPE_Interleaved,
m_pVCap, IID_IAMVideoCompression,(void **)&m_pVC);
if (hr != S_OK)
hr = m_pBuilder->FindInterface(&PIN_CATEGORY_CAPTURE, &MEDIATYPE_Video,
m_pVCap,IID_IAMVideoCompression,(void **)&m_pVC);
// !!! What if this interface isn't supported?
// we use this interface to set the frame rate and get the capture size
hr = m_pBuilder->FindInterface(&PIN_CATEGORY_CAPTURE,&MEDIATYPE_Interleaved,
m_pVCap, IID_IAMStreamConfig, (void **)&m_pVSC);
if (hr != NOERROR) 
{
hr = m_pBuilder->FindInterface(&PIN_CATEGORY_CAPTURE, &MEDIATYPE_Video, 
m_pVCap, IID_IAMStreamConfig,(void **)&m_pVSC);
if (hr != NOERROR) 
{
LogDXError(hr, false, FILELINE);
}
}

获取当前源格式

hr = m_pVSC->GetFormat(&pmt);
// DV capture does not use a VIDEOINFOHEADER
if (hr == NOERROR) 
{
if (pmt->formattype == FORMAT_VideoInfo) 
{   
VIDEOINFOHEADER *pvi = (VIDEOINFOHEADER *)pmt->pbFormat;
pvi->AvgTimePerFrame = (LONGLONG)(10000000 / m_FrameRate);
hr = m_pVSC->SetFormat(pmt);
if (hr != NOERROR)
(NotifyNewError) (FILELINE, "", LOG_ALL, ERR_GRAVE, false,
"Cannot set frame rate for capture");
hr = m_pVSC->GetFormat(&pmt);
pvi = (VIDEOINFOHEADER *)pmt->pbFormat;
pvi->bmiHeader.biWidth = g_SizeOutput.cx;
pvi->bmiHeader.biHeight = g_SizeOutput.cy;
pvi->bmiHeader.biSizeImage = DIBSIZE(pvi->bmiHeader);
hr = m_pVSC->SetFormat(pmt);
if (hr != NOERROR)
{
char ErrTxt[MAX_ERROR_TEXT_LEN];                           
AMGetErrorText(hr, ErrTxt,MAX_ERROR_TEXT_LEN);
wsprintf(szError, "Error %x: %snCannot set frame rate (%d)for 
prev", hr, ErrTxt,m_FrameRate);
(NotifyNewError)(FILELINE, "", LOG_ALL, ERR_GRAVE, false, szError);                 
}
DeleteMediaType(pmt);
}

要获得源功能,您可以使用:

IAMStreamConfig::GetNumberOfCapabilities and then IAMStreamConfig::GetStreamCaps

相关内容

  • 没有找到相关文章

最新更新