在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → HALCON实现鼠标画AOI功能

HALCON实现鼠标画AOI功能

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:0.41M
  • 下载次数:130
  • 浏览次数:990
  • 发布时间:2020-03-01
  • 实例类别:C#语言基础
  • 发 布 人:czx1989
  • 文件格式:.rar
  • 所需积分:5
 相关标签: Halcon AOI/c#

实例介绍

【实例简介】

【实例截图】

from clipboard

【核心代码】

using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using HalconDotNet;
using ViewROI;


namespace InteractiveROI
{	
    
    /// <summary>
    /// This project shows how to implement interactive ROIs using
    /// HALCON. It uses the classes HWndCtrl, ROI and ROIController will take
    /// care of the graphical output and the event handling of the mouse. You
    /// must assure that your HALCON window as well as your 
    /// ROIController instance are registered to the HWndCtrl instance.  
    /// You can use any kind of implementation for your graphical user
    /// interface. To create ROIs you must pass the GUI events to the
    /// ROIController. To add a new ROI shape, for example a circular
    /// interactive ROI, you must create a new class ROICircular, which
    /// inherits from ROI. The button for circular objects must then forward
    /// the request to the ROIController, similar to the way it is done for
    /// Rectangle1 and Rectangle2. 
    /// </summary>
    public class InteractiveForm : System.Windows.Forms.Form
	{
		private System.Windows.Forms.GroupBox groupBox1;
        public System.Windows.Forms.Button Rect2Button;
        public System.Windows.Forms.Button Rect1Button;
		
		private System.Windows.Forms.GroupBox groupBox2;
		private System.Windows.Forms.RadioButton radioButtonNone;
        private System.Windows.Forms.RadioButton radioButtonZoom;
		private System.Windows.Forms.RadioButton radioButtonMove;
        public System.Windows.Forms.Button ResetButton;
        public System.Windows.Forms.Button DelActROIButton;
		private System.Windows.Forms.Button ExitApplButton;
        private System.ComponentModel.Container components = null;

        
        /// <summary>HALCON window</summary>
        public HWindowControl   viewPort;
        /// <summary>Instance of HWndCtrl, which handles relevant view tasks</summary>
        public HWndCtrl     viewController;
        private System.Windows.Forms.Button CircleButton;
        private System.Windows.Forms.Button LineButton;
        private System.Windows.Forms.Button CircArcButton;
        /// <summary>
        /// Instance of ROIController, which manages the ROI interactions
        /// </summary>
        public ROIController    roiController;
       

        
        /// <summary>Constructor</summary>
        public InteractiveForm()
		{
			InitializeComponent();
			
		}

        /*******************************************************************/
        protected override void Dispose( bool disposing )
		{
			if (disposing)
			{
				if (components != null) 
				{
					components.Dispose();
				}
			}
			base.Dispose( disposing );
		}

		#region Windows Form Designer generated code
		
		
		/********************************************************************/
		/*  Required method for Designer support - do not modify
			the contents of this method with the code editor.            
		/********************************************************************/
		private void InitializeComponent()
		{
            this.viewPort = new HalconDotNet.HWindowControl();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.CircArcButton = new System.Windows.Forms.Button();
            this.LineButton = new System.Windows.Forms.Button();
            this.CircleButton = new System.Windows.Forms.Button();
            this.DelActROIButton = new System.Windows.Forms.Button();
            this.Rect2Button = new System.Windows.Forms.Button();
            this.Rect1Button = new System.Windows.Forms.Button();
            this.ResetButton = new System.Windows.Forms.Button();
            this.groupBox2 = new System.Windows.Forms.GroupBox();
            this.radioButtonNone = new System.Windows.Forms.RadioButton();
            this.radioButtonZoom = new System.Windows.Forms.RadioButton();
            this.radioButtonMove = new System.Windows.Forms.RadioButton();
            this.ExitApplButton = new System.Windows.Forms.Button();
            this.groupBox1.SuspendLayout();
            this.groupBox2.SuspendLayout();
            this.SuspendLayout();
            // 
            // viewPort
            // 
            this.viewPort.BackColor = System.Drawing.Color.Black;
            this.viewPort.BorderColor = System.Drawing.Color.Black;
            this.viewPort.ImagePart = new System.Drawing.Rectangle(0, 0, 640, 480);
            this.viewPort.Location = new System.Drawing.Point(48, 43);
            this.viewPort.Name = "viewPort";
            this.viewPort.Size = new System.Drawing.Size(768, 517);
            this.viewPort.TabIndex = 0;
            this.viewPort.WindowSize = new System.Drawing.Size(768, 517);
            // 
            // groupBox1
            // 
            this.groupBox1.BackColor = System.Drawing.SystemColors.Control;
            this.groupBox1.Controls.Add(this.CircArcButton);
            this.groupBox1.Controls.Add(this.LineButton);
            this.groupBox1.Controls.Add(this.CircleButton);
            this.groupBox1.Controls.Add(this.DelActROIButton);
            this.groupBox1.Controls.Add(this.Rect2Button);
            this.groupBox1.Controls.Add(this.Rect1Button);
            this.groupBox1.Location = new System.Drawing.Point(864, 198);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(154, 259);
            this.groupBox1.TabIndex = 1;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "Create ROI";
            // 
            // CircArcButton
            // 
            this.CircArcButton.Location = new System.Drawing.Point(29, 129);
            this.CircArcButton.Name = "CircArcButton";
            this.CircArcButton.Size = new System.Drawing.Size(96, 35);
            this.CircArcButton.TabIndex = 10;
            this.CircArcButton.Text = "Circular Arc";
            this.CircArcButton.Click  = new System.EventHandler(this.CircArcButton_Click);
            // 
            // LineButton
            // 
            this.LineButton.Location = new System.Drawing.Point(29, 164);
            this.LineButton.Name = "LineButton";
            this.LineButton.Size = new System.Drawing.Size(96, 34);
            this.LineButton.TabIndex = 9;
            this.LineButton.Text = "Line";
            this.LineButton.Click  = new System.EventHandler(this.LineButton_Click);
            // 
            // CircleButton
            // 
            this.CircleButton.Location = new System.Drawing.Point(29, 95);
            this.CircleButton.Name = "CircleButton";
            this.CircleButton.Size = new System.Drawing.Size(96, 34);
            this.CircleButton.TabIndex = 8;
            this.CircleButton.Text = "Circle";
            this.CircleButton.Click  = new System.EventHandler(this.CircleButton_Click);
            // 
            // DelActROIButton
            // 
            this.DelActROIButton.Location = new System.Drawing.Point(29, 215);
            this.DelActROIButton.Name = "DelActROIButton";
            this.DelActROIButton.Size = new System.Drawing.Size(96, 35);
            this.DelActROIButton.TabIndex = 7;
            this.DelActROIButton.Text = "Delete Active ROI";
            this.DelActROIButton.Click  = new System.EventHandler(this.DelActROIButton_Click);
            // 
            // Rect2Button
            // 
            this.Rect2Button.Location = new System.Drawing.Point(29, 60);
            this.Rect2Button.Name = "Rect2Button";
            this.Rect2Button.Size = new System.Drawing.Size(96, 35);
            this.Rect2Button.TabIndex = 1;
            this.Rect2Button.Text = "Rectangle2";
            this.Rect2Button.Click  = new System.EventHandler(this.Rect2Button_Click);
            // 
            // Rect1Button
            // 
            this.Rect1Button.Location = new System.Drawing.Point(29, 26);
            this.Rect1Button.Name = "Rect1Button";
            this.Rect1Button.Size = new System.Drawing.Size(96, 34);
            this.Rect1Button.TabIndex = 0;
            this.Rect1Button.Text = "Rectangle1";
            this.Rect1Button.Click  = new System.EventHandler(this.Rect1Button_Click);
            // 
            // ResetButton
            // 
            this.ResetButton.Location = new System.Drawing.Point(893, 474);
            this.ResetButton.Name = "ResetButton";
            this.ResetButton.Size = new System.Drawing.Size(96, 43);
            this.ResetButton.TabIndex = 6;
            this.ResetButton.Text = "Reset All";
            this.ResetButton.Click  = new System.EventHandler(this.resetButton_Click);
            // 
            // groupBox2
            // 
            this.groupBox2.BackColor = System.Drawing.SystemColors.Control;
            this.groupBox2.Controls.Add(this.radioButtonNone);
            this.groupBox2.Controls.Add(this.radioButtonZoom);
            this.groupBox2.Controls.Add(this.radioButtonMove);
            this.groupBox2.Location = new System.Drawing.Point(864, 43);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.Size = new System.Drawing.Size(154, 147);
            this.groupBox2.TabIndex = 5;
            this.groupBox2.TabStop = false;
            this.groupBox2.Text = "View Interaction";
            // 
            // radioButtonNone
            // 
            this.radioButtonNone.Checked = true;
            this.radioButtonNone.Location = new System.Drawing.Point(29, 112);
            this.radioButtonNone.Name = "radioButtonNone";
            this.radioButtonNone.Size = new System.Drawing.Size(96, 17);
            this.radioButtonNone.TabIndex = 2;
            this.radioButtonNone.TabStop = true;
            this.radioButtonNone.Text = "none";
            this.radioButtonNone.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            this.radioButtonNone.CheckedChanged  = new System.EventHandler(this.noneButton_Click);
            // 
            // radioButtonZoom
            // 
            this.radioButtonZoom.Location = new System.Drawing.Point(29, 69);
            this.radioButtonZoom.Name = "radioButtonZoom";
            this.radioButtonZoom.Size = new System.Drawing.Size(96, 26);
            this.radioButtonZoom.TabIndex = 1;
            this.radioButtonZoom.Text = "zoom";
            this.radioButtonZoom.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            this.radioButtonZoom.CheckedChanged  = new System.EventHandler(this.zoomButton_Click);
            // 
            // radioButtonMove
            // 
            this.radioButtonMove.Location = new System.Drawing.Point(29, 26);
            this.radioButtonMove.Name = "radioButtonMove";
            this.radioButtonMove.Size = new System.Drawing.Size(96, 26);
            this.radioButtonMove.TabIndex = 0;
            this.radioButtonMove.Text = "move";
            this.radioButtonMove.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            this.radioButtonMove.CheckedChanged  = new System.EventHandler(this.moveButton_Click);
            // 
            // ExitApplButton
            // 
            this.ExitApplButton.Location = new System.Drawing.Point(893, 517);
            this.ExitApplButton.Name = "ExitApplButton";
            this.ExitApplButton.Size = new System.Drawing.Size(96, 43);
            this.ExitApplButton.TabIndex = 6;
            this.ExitApplButton.Text = "Exit Application";
            this.ExitApplButton.Click  = new System.EventHandler(this.ExitApplButton_Click);
            // 
            // InteractiveForm
            // 
            this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
            this.ClientSize = new System.Drawing.Size(1048, 570);
            this.Controls.Add(this.ExitApplButton);
            this.Controls.Add(this.groupBox2);
            this.Controls.Add(this.groupBox1);
            this.Controls.Add(this.viewPort);
            this.Controls.Add(this.ResetButton);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.MaximizeBox = false;
            this.Name = "InteractiveForm";
            this.Text = "Interactive ROI";
            this.Load  = new System.EventHandler(this.InteractiveForm_Load);
            this.groupBox1.ResumeLayout(false);
            this.groupBox2.ResumeLayout(false);
            this.ResumeLayout(false);

        }
		#endregion


        /*******************************************************************/
       	[STAThread]
		static void Main() 
		{
			Application.Run(new InteractiveForm());
		}
               
        
        /// <summary>Creates a ROI of the shape Rectangle1; invoked by the corresponding button.</summary>
        private void Rect1Button_Click(object sender, System.EventArgs e)
		{
			roiController.setROIShape(new ROIRectangle1());            
		}
		
        /// <summary>Creates a ROI of the shape Rectangle2; invoked by the corresponding button.</summary>
        private void Rect2Button_Click(object sender, System.EventArgs e)
		{
			roiController.setROIShape(new ROIRectangle2());            
		}

        /// <summary>Creates a ROI of a circle shape; invoked by the corresponding button.</summary>
        private void CircleButton_Click(object sender, System.EventArgs e)
        {
            roiController.setROIShape(new ROICircle());
        }

        /// <summary>Creates a ROI of a circular arc shape; invoked by the corresponding button.</summary>
        private void CircArcButton_Click(object sender, System.EventArgs e)
        {
            roiController.setROIShape(new ROICircularArc());
        }

        /// <summary>Creates a ROI of a linear shape; invoked by the corresponding button.</summary>
        private void LineButton_Click(object sender, System.EventArgs e)
        {
            roiController.setROIShape(new ROILine());
        }
		      

        /// <summary>Resets the application; invoked by the corresponding button.</summary>
        private void resetButton_Click(object sender, System.EventArgs e)
		{		
			viewController.resetAll();
			viewController.repaint();
		}
		
        /// <summary>When the corresponding radio button is checked, mouse events trigger more actions.</summary>
       	private void moveButton_Click(object sender, System.EventArgs e)
		{
			viewController.setViewState(HWndCtrl.MODE_VIEW_MOVE);
		}
		
        /// <summary>When the corresponding radio button is checked, mouse events trigger zoom actions.</summary>
       	private void zoomButton_Click(object sender, System.EventArgs e)
		{
			viewController.setViewState(HWndCtrl.MODE_VIEW_ZOOM);
		}
		
        /// <summary>When the corresponding radio button is checked, mouse events don't trigger any action.</summary>
        private void noneButton_Click(object sender, System.EventArgs e)
        {
            viewController.setViewState(HWndCtrl.MODE_VIEW_NONE);
		}
		
        /// <summary>Deletes the active ROI; invoked by the corresponding button.</summary>
       	private void DelActROIButton_Click(object sender, System.EventArgs e)
		{
			roiController.removeActive();
		}

	    /// <summary>Executes the program; invoked by the corresponding button.</summary>
        private void ExitApplButton_Click(object sender, System.EventArgs e)
		{
			this.Close();
		}

        /// <summary> 
        /// Defines the initial settings for the window 
        /// control. In the very beginning, the window control needs 
        /// to know the view mode of the application form to perform 
        /// the right behavior for incoming mouse events on the 
        /// HALCON window.
        /// </summary>
        private void InteractiveForm_Load(object sender, System.EventArgs e)
		{
            String fileName = "patras";
            HImage image;

			viewController = new HWndCtrl(viewPort);
			roiController  = new ROIController();
			viewController.useROIController(roiController);
			viewController.setViewState(HWndCtrl.MODE_VIEW_NONE);			
           
            try
            {
                image   = new HImage(fileName);
            }
            catch(HOperatorException)
            {
                MessageBox.Show("Problem occured while reading file!", 
                    "InteractROIForm",
                    MessageBoxButtons.OK, 
                    MessageBoxIcon.Information);
                return;
            }

            viewController.addIconicVar(image);
            viewController.repaint();
		}

        

          
	}//end of class
}//end of namespace

标签: Halcon AOI/c#

实例下载地址

HALCON实现鼠标画AOI功能

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警