xcd
2020-03-29 9a6d8dd28192132ea38f537ad29c410bccfac3be
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using HalconDotNet;
 
namespace HalconTools
{
    public class ContourResult
    {
        public ContourResult()
        {
            mContours  = new HXLDCont();
            mContLine = new HXLDCont();
            mContPoints = new HXLDCont();
 
            HOperatorSet.GenEmptyObj(out mObject);
         //   mObject.Dispose();
        }
 
        /// <summary>
        /// Model contour applied for model detection
        /// </summary>
        public HXLDCont mContours;
 
        public HXLDCont mContLine;
 
        public HXLDCont mContPoints;
 
        public HTuple hv_Rows;
 
        public HTuple hv_Columns;
 
        public HTuple center_Row;
 
        public HTuple center_Column;
 
        public HTuple mArea;
 
        public HObject mObject;
 
    }
}