gpt4 book ai didi

c# - 使用 Matrox 命令捕获帧

转载 作者:行者123 更新时间:2023-11-30 16:55:11 29 4
gpt4 key购买 nike

我正在做一个项目,我必须设置来自摄像机的视频流的 fps(为 10)并每 5 帧抓取一帧。我正在开发一个已经由其他人编写了一半的程序。问题是,他们使用了 Matrox Framegrabber dll。设备上还有 Matrox Frame Grabber。但是我在 C# 中找不到 framegrab 的任何命令。我找到了以下 C++ 代码。

MIL_ID MdispAlloc(SystemId, DispNum, DispFormat, InitFlag,
DisplayIdPtr)

在哪里

MIL_ID SystemId; System identifier
long DispNum; Display number
char *DispFormat; Display format name or file name
long InitFlag; Initialization flag
MIL_ID *DisplayIdPtr; Storage location for the display identifier

上面的命令分配了一个显示。有人可以帮我用 C# 编写程序吗?另外,任何有 Matrox dll 经验的人请告诉我如何处理帧捕获和 fps 设置。谢谢。

最佳答案

这是为所有刚接触 matrox framegrabber 的人准备的。您应该做的第一件事是添加 matrox dll 作为引用。请注意,目前有两个超出 Matrox 版本的 Matrox 9 和 Matrox 10。根据安装在用户系统 dll 中的 matrox 版本,应添加。 (这可以通过在系统目录中查找“MIL_PATH”来检查。然后,声明一些将在matrox抓取中使用的变量。

我的一些如下:

 public static MIL_ID MilApplication = MIL.M_NULL;       // Application identifier.
public static MIL_ID MilSystem = MIL.M_NULL; // System identifier.
public static MIL_ID MilDisplay = MIL.M_NULL; // Display identifier.
public static MIL_ID MilDigitizer = MIL.M_NULL; // Digitizer identifier.
public static MIL_ID MilImage = MIL.M_NULL; // Image identifier.
public static MIL_ID MilRecord = MIL.M_NULL; // 8 bit Pointer only for Video Recording.
public MIL_INT MilINT = MIL.M_NULL;
public MIL_INT NbPixelsPtr = MIL.M_NULL;
MIL_ID MilImageDisp = MIL.M_NULL;
MIL_ID[] MilGrabBufferList = new MIL_ID[BUFFERING_SIZE_MAX];

然后运行下面的代码

string MilSystemDet = "";
MilSystemDet = Environment.GetEnvironmentVariable("Mil_Path");
if (MilSystemDet != null)
{
string dcfFilePath = "";
FileDialog OpenFile = new OpenFileDialog();
OpenFile.Filter = "File Formats(*.dcf)|*.DCF;";
if (OpenFile.ShowDialog() == DialogResult.OK)
{
dcfFilePath = OpenFile.FileName;
MIL.MdigAlloc(MilSystem, MIL.M_DEFAULT, dcfFilePath, MIL.M_DEFAULT, ref MilDigitizer);
MIL.MbufAlloc2d(
MilSystem,
MIL.MdigInquire(MilDigitizer, MIL.M_SIZE_X, MIL.M_NULL),
MIL.MdigInquire(MilDigitizer, MIL.M_SIZE_Y, MIL.M_NULL),
8 + MIL.M_UNSIGNED,
MIL.M_IMAGE + MIL.M_DISP + MIL.M_GRAB,
ref MilImage);
MIL.MdispAlloc(MilSystem, MIL.M_DEFAULT, ("M_DEFAULT"), MIL.M_DEFAULT, ref MilDisplay);
MIL.MdigHalt(MilDigitizer);
}
}

当你想开始捕获时,运行以下命令

 MIL.MbufClear(MilImage, 0);
MIL.MdigGrabContinuous(MilDigitizer, MilImage);
MIL.MdispControl(MilDisplay, MIL.M_VIEW_MODE, MIL.M_AUTO_SCALE);
MIL.MdispControl(MilDisplay, MIL.M_SCALE_DISPLAY, MIL.M_ENABLE);

要将当前图像复制到缓冲区,请使用

MIL.MbufGet(MilImage, myBuffer);

其中 myBuffer 是一个 ushort 缓冲区,其大小等于图像中的像素总数。

要将当前图像保存到文件,请使用

MIL.MbufSave(address,MilImage);

如果您没有 .dcf 文件,您可以从 matrox 安装光盘免费获得一个默认文件。或者只需安装 matrox viewer 并在程序文件中安装一个。图像的宽度、高度和位深度等参数是从dcf文件中获取的。但是如果你愿意,你可以在上面的 Mbufalloc2d 函数中分配它们。

我会尝试定期检查此答案。如果有人有任何问题问我。我会尽我所知回答这些问题。

关于c# - 使用 Matrox 命令捕获帧,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29817092/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com