资源简介
相对于开源的Open CV来说商业化的MIL开发相对容易,只需要遵循特定的步骤即可以完成自己的开发。但是对于MIL中的一些基础概念还是要理解,不然可能在后面查看函数帮助时会混淆一些概念。
本资源演示了MIL开发基本步骤

代码片段和文件信息
#include
#include
#pragma comment(lib “mil.lib“)
int main(int argc char *argv[])
{
MIL_ID MilApplication /* Application identifier. */
MilSystem /* System identifier. */
MilDisplay /* Display identifier. */
MilImage; /* Image buffer identifier. */
//分配默认的应用
MappAllocDefault(M_SETUP &MilApplication &MilSystem &MilDisplay M_NULL M_NULL);
//分配显示的图像Buffer
MbufAlloc2d(MilSystem 500 500 M_DEF_IMAGE_TYPE M_IMAGE+M_DISP &MilImage);
/* 初始化Buffer内存中绘制相应图像 */
MbufClear(MilImage 0L);
MgraColor(M_DEFAULT 255L);
MgraArcFill(M_DEFAULT MilImage 200L 200L 10L 10L 0.0 360.0);
MgraText(M_DEFAULT MilImage 0L 0L “ MIL “);
/* 图像Buffer内容显示到相应Display上此后修改BufferDisplay自动刷新 */
MdispSelect(MilDisplay MilImage);
/* 打印提示信息. */
printf(“A circle was drawn in the displayed image buffer.\n“);
printf(“Press to end.\n“);
getchar();
/* 释放图像Buffer. */
MbufFree(MilImage);
/* 释放默认应用分配的资源. */
MappFreeDefault(MilApplication MilSystem MilDisplay M_NULL M_NULL);
return 0;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2013-10-18 21:41 MIL1_20130906始_VC6_CONSOLE_基础学习\
文件 1194 2013-10-18 21:28 MIL1_20130906始_VC6_CONSOLE_基础学习\Main.c
文件 4335 2013-09-06 19:36 MIL1_20130906始_VC6_CONSOLE_基础学习\MIL基础学习.dsp
文件 530 2013-09-06 19:23 MIL1_20130906始_VC6_CONSOLE_基础学习\MIL基础学习.dsw
相关资源
- The direction of synaptic plasticity mediated
- Homogenization of Monotone Systems of Non-coer
- powermill后处理大全
- 从非局部观测值的角度看Anti-de-Sitte
- AdS-Maxwell-power-Yang-Mills理论中的复杂性
- RP-LC快速稳定方法的开发和验证,用于
- MIL-STD-810F简体中文版本
- MIL-PRF-38535J微电路制造通用规范
- Molecular identification polymorphism and asso
- Catalytic Adsorptive Desulfurization Using TiO
- 1553B总线测试分析系统
- Coyote’s Guide To:Traditional IDL Graphics:U
- 840D Shopmill 操作手册
- 人工智能的军事应用 Military Applicati
- opensmile官方文档及对应语音特征的计
- Interest Rate Models – Theory and Practice W
- HYPERMILL五轴后处理构造器
- FSIM feature similarity论文
- 发送彩信如何生成smil文件
- Logic for mathematicians
- 西门子shopmill
- Graphical Models Exponential Families and Vari
- Matrox卡基于MIL采集
- wordnet::similarity
- smileview扫面电镜分析
- IO80211Family.kext
- matrox mil8 破解key带carckXP
- 从微分观点看拓扑Milnor.pdf
- The Space and Motion of Communicating Agents
- mil-std-202g
评论
共有 条评论