我有一个程序,当前显示usb网络摄像头的预览,然后在按下按钮时在图片框中显示一个框架。这是通过使用directshow DxSnap样本使用ISampleGrabberCB接口完成的。
是否可以在不使用按钮的情况下自动扫描每个帧?
我尝试使用计时器执行此操作,但结果是预览和捕获图像的图像质量不佳。
这是通过使用IsampleGrabberCB.BufferCB函数来实现的吗?
我目前使用框架的方式是按钮包含:
int ISampleGrabberCB.BufferCB(double sampleTime, IntPtr buffer, int bufferLength)
{
Debug.Assert(bufferLength == Math.Abs(pitch) * videoHeight, "Wrong Buffer Length");
if (gotFrame)
{
gotFrame = false;
Debug.Assert(imageBuffer != IntPtr.Zero, "Remove Buffer");
CopyMemory(imageBuffer, buffer, bufferLength);
pictureReady.Set();
}
return 0;
}
public void getFrameFromWebcam()
{
if (iPtr != IntPtr.Zero)
{
Marshal.FreeCoTaskMem(iPtr);
iPtr = IntPtr.Zero;
}
//Get Image
iPtr = sampleGrabberCallBack.getFrame();
Bitmap bitmapOfFrame = new Bitmap(sampleGrabberCallBack.width, sampleGrabberCallBack.height, sampleGrabberCallBack.capturePitch, PixelFormat.Format32bppRgb, iPtr);
bitmapOfFrame.RotateFlip(RotateFlipType.RotateNoneFlipY);
pictureBox3.Image = bitmapOfFrame;
barcodeReader(bitmapOfFrame);
}
public IntPtr getFrame()
{
int hr;
pictureReady.Reset();
imageBuffer = Marshal.AllocCoTaskMem(Math.Abs(pitch) * videoHeight);
try
{
gotFrame = true;
if (videoControl != null)
{
hr = videoControl.SetMode(stillPin, VideoControlFlags.Trigger);
DsError.ThrowExceptionForHR(hr);
}
if (!pictureReady.WaitOne(9000, false))
{
throw new Exception("Timeout waiting to get picture");
}
}
catch
{
Marshal.FreeCoTaskMem(imageBuffer);
imageBuffer = IntPtr.Zero;
}
return imageBuffer;
}
答案 0 :(得分:2)
DirectShow为您设置视频流,因此您拥有一组帧,而不是按下按钮时获得的单个图像(事实上,对按钮的响应对于DirectShow来说是非典型的,并且可能需要某些特定于摄像头的集成) 。 ISampleGrabberCB::SampleCB
因此可以顺序为您捕获每个捕获的视频帧。你不用计时器轮询它,而是每个帧都有一个回调函数。
因为听起来你没有得到这个,我想你错过了这两件事中的一件,或两者兼而有之:
另请注意,某些消费级相机具有较高的快照分辨率和较低的视频流分辨率,因此在视频处理方面,您无法达到相机规格的最高声明分辨率。