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(); } /// /// Model contour applied for model detection /// 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; } }