Mil学习之 MimStatCalculate 图片信息统计
Posted Thomas会写字
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mil学习之 MimStatCalculate 图片信息统计相关的知识,希望对你有一定的参考价值。
统计图片的数据信息
MimStatCalculate 模块
// This code was generated by MIL CoPilot 10.40.881
// on Thursday, August 19, 2021
// Compiling and running generated code will require :
// MIL 10 with Service Pack 4
using System;
using System.Text;
using Matrox.MatroxImagingLibrary;
namespace MilCoPilot_Untitled
{
class Program
{
private const string IMAGE_FILE = @"C:\\Users\\kakie\\Desktop\\无标题2.bmp";
static void Main(string[] args)
{
MIL_ID MilApplication = MIL.M_NULL;
double StatMean = 0.0;
MIL_ID MilSystem = MIL.M_NULL;
MIL_ID 无标题2 = MIL.M_NULL;
MIL_ID ProcessingContext = MIL.M_NULL;
MIL_ID StatResult = MIL.M_NULL;
MIL.MappAlloc(MIL.M_NULL, MIL.M_DEFAULT, ref MilApplication);
MIL.MsysAlloc(MIL.M_DEFAULT, "M_SYSTEM_HOST", MIL.M_DEFAULT, MIL.M_DEFAULT, ref MilSystem);
MIL.MbufImport(IMAGE_FILE, MIL.M_DEFAULT, MIL.M_RESTORE + MIL.M_NO_GRAB + MIL.M_NO_COMPRESS, MilSystem, ref 无标题2);
MIL.MimAlloc(MilSystem, MIL.M_STATISTICS_CONTEXT, MIL.M_DEFAULT, ref ProcessingContext);
MIL.MimAllocResult(MilSystem, MIL.M_DEFAULT, MIL.M_STATISTICS_RESULT, ref StatResult);
MIL.MimControl(ProcessingContext, MIL.M_STAT_MEAN, MIL.M_ENABLE);
MIL.MimStatCalculate(ProcessingContext, 无标题2, StatResult, MIL.M_DEFAULT);
MIL.MimGetResult(StatResult, MIL.M_STAT_MEAN, ref StatMean);
Console.WriteLine("Press <ENTER> to continue");
Console.ReadKey();
MIL.MimFree(StatResult);
MIL.MimFree(ProcessingContext);
MIL.MbufFree(无标题2);
MIL.MsysFree(MilSystem);
MIL.MappFree(MilApplication);
}
}
}
以上是关于Mil学习之 MimStatCalculate 图片信息统计的主要内容,如果未能解决你的问题,请参考以下文章