嵌入VISION的cvi程序
更新时间:2023-08-14 13:13:01 阅读量: 人文社科 文档下载
- 嵌入式推荐度:
- 相关推荐
#include <windows.h>
#include <cvirte.h>
#include <userint.h>
#include <ansi_c.h>
#include "mil.h"
#include <utility.h>
#include "nivision.h"
#include "video_test.h"
#define Image_X 768
#define Image_Y 576
#define WINDOW_TO_USE 0
static int panelHandle;
static int ImaqHandle; // will contain the handle to the imaq window
static int windHandle; // will contain the handle to the CVI window
Image *image;
unsigned char myArray[Image_Y][Image_X];
int windowHandle,disp,x,y;
Point position;
MIL_ID MilApplication, /* Application identifier. */
MilSystem, /* System identifier. */
MilDisplay, /* Display identifier. */
MilDigitizer, /* Digitizer identifier. */
MilImage; /* Image buffer identifier. */
int main (int argc, char *argv[])
{
if (InitCVIRTE (0, argv, 0) == 0)
return -1; /* out of memory */
if ((panelHandle = LoadPanel (0, "video_test.uir", PANEL)) < 0)
return -1;
DisplayPanel (panelHandle); //显示面板
imaqSetupWindow(WINDOW_TO_USE,0);//设置窗口的性质;窗口号,定义窗口的行为 //imaqSetWindowPalette(WINDOW_TO_USE,2,NULL,0);
position.x=1;position.y=1;
imaqMoveWindow(WINDOW_TO_USE,position);//移动图像窗口,窗口号,窗口左上角的位置
image = imaqCreateImage (IMAQ_IMAGE_U8, 0);//创建一个图像
/*set the image window to be one part of the CVI window*/ //设置图像窗口的CVI窗口 windHandle = (int) FindWindow (NULL, "Video Test"); // get CVI window handle
ImaqHandle = (int) imaqGetSystemWindowHandle(0); //返回一个窗口句柄
} /* SetParent will set he CVI window as the parent of the imaq window. */ SetParent( (HWND) ImaqHandle, (HWND)windHandle); //改变某个子窗口的父窗口 MappAllocDefault(M_SETUP, &MilApplication, &MilSystem, M_NULL, &MilDigitizer, &MilImage); RunUserInterface (); DiscardPanel (panelHandle); return 0;
正在阅读:
嵌入VISION的cvi程序08-14
最新中国邮政小包资费表03-29
基于Cuk变换器的开关电源设计10-09
烧不坏的手帕作文450字07-12
1.2.2建设工程安全生产技术标准、规范清单 - 图文11-30
信息论与编码考试试卷11-02
吉大18年9月《行政法学》作业考核试题03-10
高一化学必修一知识归纳:物质的量在化学实验中的应用03-21
暮光之城五部中文介绍08-09
社团外联部工作计划(最新8篇)03-28
- 粮油储藏基础知识
- 论文范文(包括统一封面和内容的格式)
- 经典解题方法
- 综合部后勤办公用品管理办法+领用表
- 学生宿舍突发事件应急预案
- 16秋浙大《生理学及病理生理学》在线作业
- 四分比丘尼戒本(诵戒专用)
- 浙江财经大学高财题库第一章习题
- 九大员岗位职责(项目经理、技术负责人、施工员、安全员、质检员、资料员、材料员、造价员、机管员)
- 旅游财务管理习题(学生版)
- 德阳外国语高二秋期入学考试题
- 投资学 精要版 第九版 第11章 期权市场
- 控制性详细规划城市设计认识
- bl03海运提单3国际贸易答案
- 2010-2011学年湖北省武汉市武珞路中学七年级(上)期中数学试卷
- VB程序填空改错设计题库全
- 教师心理健康案例分析 - 年轻班主任的心理困惑
- 民间借贷司法解释溯及力是否适用?
- 三联书店推荐的100本好书
- 《化工原理》(第三版)复习思考题及解答
- 嵌入
- 程序
- VISION
- cvi