我有一个程序,它当前显示 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;
}