• 大小: 26.92M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: 多线程  线程  C#  c  图像  

资源简介

初学c#与halcon联合编程的人比较实用

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using HalconDotNet;
using System.Threading;

namespace Demo
{
    public partial class Form1 : Form
    {
        private HTuple WindowID;
        private Hobject image;

        private Hobject[] ImageArry = new Hobject[7];   //存放图像的数组

        //线程对象
        private Thread Threadobject;                    //正常测试线程

        //控制线程的状态
        private bool Thread_Stop = false;               //正常测试线程停止标志

        public Form1()
        {
            InitializeComponent();
            image = new Hobject();

            CreateWindow();
            //Loadimage();
            LoadB

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2019-03-25 10:50  Demo\
     目录           0  2019-03-25 11:03  Demo\Demo\
     文件         854  2019-03-25 10:50  Demo\Demo.sln
     文件       19968  2019-03-26 15:03  Demo\Demo.suo
     文件         144  2019-03-25 11:03  Demo\Demo\app.config
     目录           0  2019-03-25 10:50  Demo\Demo\bin\
     目录           0  2019-03-25 15:21  Demo\Demo\bin\Debug\
     文件      212007  2016-10-12 03:23  Demo\Demo\bin\Debug\0.png
     文件      210584  2016-10-12 03:23  Demo\Demo\bin\Debug\1.png
     文件      210209  2016-10-12 03:23  Demo\Demo\bin\Debug\2.png
     文件      207732  2016-10-12 03:23  Demo\Demo\bin\Debug\3.png
     文件      211735  2016-10-12 03:23  Demo\Demo\bin\Debug\4.png
     文件      212124  2016-10-12 03:23  Demo\Demo\bin\Debug\5.png
     文件      213379  2016-10-12 03:23  Demo\Demo\bin\Debug\6.png
     文件       11264  2019-03-28 09:44  Demo\Demo\bin\Debug\Demo.exe
     文件         144  2019-03-25 11:03  Demo\Demo\bin\Debug\Demo.exe.config
     文件       26112  2019-03-28 09:44  Demo\Demo\bin\Debug\Demo.pdb
     文件       11592  2019-03-28 09:44  Demo\Demo\bin\Debug\Demo.vshost.exe
     文件         144  2019-03-25 11:03  Demo\Demo\bin\Debug\Demo.vshost.exe.config
     文件         490  2018-09-15 15:29  Demo\Demo\bin\Debug\Demo.vshost.exe.manifest
     文件    60576912  2017-09-25 16:07  Demo\Demo\bin\Debug\halcon.dll
     文件     1413776  2017-05-25 20:27  Demo\Demo\bin\Debug\halcondotnet.dll
     文件     4361570  2017-05-25 16:41  Demo\Demo\bin\Debug\halcondotnet.xml
     文件        3874  2019-03-25 11:03  Demo\Demo\Demo.csproj
     文件        4487  2019-03-25 16:26  Demo\Demo\Form1.cs
     文件        6828  2019-03-25 16:26  Demo\Demo\Form1.Designer.cs
     文件        5817  2019-03-25 16:26  Demo\Demo\Form1.resx
     目录           0  2019-03-25 10:50  Demo\Demo\obj\
     目录           0  2019-03-25 10:50  Demo\Demo\obj\x86\
     目录           0  2019-03-28 09:44  Demo\Demo\obj\x86\Debug\
     文件         739  2019-03-28 09:44  Demo\Demo\obj\x86\Debug\Demo.csproj.FileListAbsolute.txt
............此处省略17个文件信息

评论

共有 条评论