forked from rtigithub/HalconExamples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHalcon.cs
More file actions
438 lines (388 loc) · 14.6 KB
/
Halcon.cs
File metadata and controls
438 lines (388 loc) · 14.6 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
// ***********************************************************************
// Assembly : Rti.Core.dll
// Author : Resolution Technology, Inc.
// Created : 03-10-2017
// Last Modified On : 04-26-2017
// ***********************************************************************
// <copyright file="Halcon.cs" company="Resolution Technology, Inc.">
// Copyright (c) 2016, 2017. All rights reserved.
// </copyright>
// <summary></summary>
// ***********************************************************************
namespace Rti.Halcon
{
using System;
using System.Diagnostics.Contracts;
using System.Drawing;
using System.Drawing.Imaging;
using HalconDotNet;
/// <summary>
/// A class containing a collection of extension methods for HALCON developed by RTI.
/// </summary>
public static class Halcon
{
#region Public Methods
/// <summary>
/// Returns the convex hull from a collection of XLD contours.
/// </summary>
/// <param name="from">The collection of XLD contours to be processed.</param>
/// <returns>An XLD contour that is the convex hull.</returns>
/// <example> HXLDCont convexHullXld = MyXldContours.ConvexHull (); .</example>
public static HXLDCont ConvexHull(this HXLDCont from)
{
HXLDCont tempContour = new HXLDCont(), convexHull = new HXLDCont();
HTuple cumulativeRows = new HTuple(), cumulativeColumns = new HTuple();
try
{
if (@from != null && @from.IsValid())
{
int count = @from.CountObj();
if (count > 1)
{
for (int i = 1; i <= count; i++)
{
@from[i].GetContourXld(out HTuple rows, out HTuple columns);
cumulativeRows = cumulativeRows.TupleConcat(rows);
cumulativeColumns = cumulativeColumns.TupleConcat(columns);
}
tempContour.GenContourPolygonXld(
cumulativeRows,
cumulativeColumns);
convexHull = tempContour.ShapeTransXld("convex");
}
else
{
convexHull = @from.ShapeTransXld("convex");
}
}
if (convexHull.IsInitialized())
{
return convexHull.CopyObj(1, -1);
}
else
{
return new HXLDCont();
}
}
finally
{
tempContour.Dispose();
convexHull.Dispose();
}
}
/// <summary>
/// A helper method to ensure that a HALCON HImage is correctly disposed when assigned a new value.
/// </summary>
/// <param name="from">The source HImage.</param>
/// <param name="to">The destination HImage.</param>
/// <exception cref="ArgumentNullException">from must not be null.</exception>
/// <exception cref="System.ArgumentNullException"></exception>
public static void HCopy(this HImage from, ref HImage to)
{
try
{
if (@from == null)
{
throw new ArgumentNullException(nameof(from));
}
if (to == null)
{
to = new HImage();
}
to.Dispose();
to = @from.CopyObj(1, -1);
}
finally
{
if (@from != null)
{
@from.Dispose();
}
}
}
/// <summary>
/// A helper method to ensure that a HALCON HRegion is correctly disposed when assigned a
/// new value.
/// </summary>
/// <param name="from">The source HRegion.</param>
/// <param name="to">The destination HRegion.</param>
/// <exception cref="ArgumentNullException">from must not be null.</exception>
/// <exception cref="System.ArgumentNullException"></exception>
public static void HCopy(this HRegion from, ref HRegion to)
{
try
{
if (@from == null)
{
throw new ArgumentNullException(nameof(from));
}
if (to == null)
{
to = new HRegion();
}
to.Dispose();
to = @from.CopyObj(1, -1);
}
finally
{
if (@from != null)
{
@from.Dispose();
}
}
}
/// <summary>
/// A helper method to ensure that a HALCON HXLD is correctly disposed when assigned a new value.
/// </summary>
/// <param name="from">The source HXLD.</param>
/// <param name="to">The destination HXLD.</param>
/// <exception cref="ArgumentNullException">from must not be null.</exception>
/// <exception cref="System.ArgumentNullException"></exception>
public static void HCopy(this HXLD from, ref HXLD to)
{
try
{
if (@from == null)
{
throw new ArgumentNullException(nameof(from));
}
if (to == null)
{
to = new HXLD();
}
to.Dispose();
to = @from.CopyObj(1, -1);
}
finally
{
if (@from != null)
{
@from.Dispose();
}
}
}
/// <summary>
/// A helper method to ensure that a HALCON XLD Contour is correctly disposed when assigned a
/// new value.
/// </summary>
/// <param name="from">The source HXLDCont.</param>
/// <param name="to">The destination HXLDCont.</param>
/// <exception cref="ArgumentNullException">from must not be null.</exception>
/// <exception cref="System.ArgumentNullException"></exception>
public static void HCopy(this HXLDCont from, ref HXLDCont to)
{
try
{
if (@from == null)
{
throw new ArgumentNullException(nameof(from));
}
if (to == null)
{
to = new HXLDCont();
}
to.Dispose();
to = @from.CopyObj(1, -1);
}
finally
{
if (@from != null)
{
@from.Dispose();
}
}
}
/// <summary>
/// Determines whether the specified halcon object, image, xld or region is not null and is initialized.
/// </summary>
/// <param name="from">Any Halcon object.</param>
/// <returns><c>true</c> if the specified from is valid; otherwise, <c>false</c>.</returns>
/// <example> if (myRegion.IsValid()) myRegion.Connection(); .</example>
public static bool IsValid(this HObject from)
{
bool result = false;
if (@from != null)
{
if (@from.IsInitialized())
{
result = @from.CountObj() > 0;
}
}
return result;
}
/// <summary>
/// Converts a bitmap to a Halcon image.
/// </summary>
/// <param name="from">A bitmap to be converted to an HImage.</param>
/// <returns>An HImage converted from a Windows Bitmap.</returns>
/// <example> HImage imageFromBitmap = myBitmap.ToHImage(); .</example>
public static HImage ToHimage(this Bitmap from)
{
Contract.Requires(from != null);
Rectangle rectangle = new Rectangle(0, 0, from.Width, from.Height);
HImage interleavedHalconImage = new HImage();
// Convert 24 bit bitmap to 32 bit bitmap in order to ensure
// that the bit width of the image (the Stride) is divisible by four.
// Otherwise, one might obtain skewed conversions.
Bitmap image32 = new Bitmap(from.Width, from.Height, PixelFormat.Format32bppRgb);
image32.SetResolution(from.HorizontalResolution, from.VerticalResolution);
using (Graphics g = Graphics.FromImage(image32))
{
g.DrawImage(from, new Point(0, 0));
}
// Obtain the image pointer.
BitmapData bitmapData = image32.LockBits(rectangle, ImageLockMode.ReadOnly, PixelFormat.Format32bppRgb);
IntPtr pointerToBitmap = bitmapData.Scan0;
IntPtr pointerToPixels = pointerToBitmap;
// Create HALCON image from the pointer.
interleavedHalconImage.GenImageInterleaved(pointerToPixels, "bgrx", from.Width, from.Height, -1, "byte", from.Width, from.Height, 0, 0, -1, 0);
// Don't forget to unlock the bits again. ;-)
image32.UnlockBits(bitmapData);
HImage outputHalconImage = interleavedHalconImage.CopyImage();
// Release memory by dereferencing and garbage collection
interleavedHalconImage.Dispose();
image32.Dispose();
GC.Collect();
GC.WaitForPendingFinalizers();
return outputHalconImage;
}
/// <summary>
/// A helper method to convert an HObject containing an image to an HImage.
/// </summary>
/// <param name="from">The HObject.</param>
/// <returns>The HImage.</returns>
/// <example> HImage imageFromHalconObject = myHObject.ToHImage(); .</example>
public static HImage ToHImage(this HObject from)
{
HImage newImage = new HImage();
if (from.IsValid())
{
if (from.GetObjClass().S == "image")
{
newImage.Dispose();
newImage = new HImage(from);
}
}
return newImage;
}
/// <summary>
/// A helper method to convert an HObject containing a region to an HRegion.
/// </summary>
/// <param name="from">A Halcon HObject to convert to an HRegion.</param>
/// <returns>HRegion.</returns>
/// <example> HRegion regionFromHalconObject = myHObject.ToHRegion(); .</example>
public static HRegion ToHRegion(this HObject from)
{
HRegion newRegion = new HRegion();
if (from.IsValid())
{
if (from.GetObjClass().S == "region")
{
newRegion.Dispose();
newRegion = new HRegion(from);
}
}
return newRegion;
}
/// <summary>
/// A helper method to convert an HObject containing an XLD contour to an HXLDCont.
/// </summary>
/// <param name="from">From.</param>
/// <returns>HXLDCont.</returns>
/// <exception cref="NotImplementedException"></exception>
public static HXLDCont ToHXLDCont(this HObject from)
{
HXLDCont newXldCont = new HXLDCont();
if (from.IsValid())
{
if (from.GetObjClass().S == "xld_cont")
{
newXldCont.Dispose();
newXldCont = new HXLDCont(from);
}
}
return newXldCont;
}
/// <summary>
/// A helper method to convert an HObject containing parallel polygons to an HXLDPara.
/// </summary>
/// <param name="from">From.</param>
/// <returns>HXLDPara.</returns>
/// <exception cref="NotImplementedException"></exception>
public static HXLDPara ToHXLDPara(this HObject from)
{
HXLDPara newXldPara = new HXLDPara();
if (from.IsValid())
{
if (from.GetObjClass().S == "xld_parallel")
{
newXldPara.Dispose();
newXldPara = new HXLDPara(from);
}
}
return newXldPara;
}
/// <summary>
/// A helper method to convert an HObject containing a polygon to an HXLDPoly.
/// </summary>
/// <param name="from">From.</param>
/// <returns>HXLDPoly.</returns>
/// <exception cref="NotImplementedException"></exception>
public static HXLDPoly ToHXLDPoly(this HObject from)
{
HXLDPoly newXldPoly = new HXLDPoly();
if (from.IsValid())
{
if (from.GetObjClass().S == "xld_poly")
{
newXldPoly.Dispose();
newXldPoly = new HXLDPoly(from);
}
}
return newXldPoly;
}
/// <summary>
/// A helper method to convert an HTuple to an appropriate string format.
/// </summary>
/// <param name="from">From.</param>
/// <returns>System.String.</returns>
public static string ToTypedString(this HTuple from)
{
switch (from.Type)
{
case HTupleType.INTEGER:
return from.I.ToString();
case HTupleType.LONG:
return from.L.ToString();
case HTupleType.DOUBLE:
return from.D.ToString("G");
case HTupleType.STRING:
return from;
default:
return string.Empty;
}
}
/// <summary>
/// A helper method to convert an HTupleElements to an appropriate string format.
/// </summary>
/// <param name="from">From.</param>
/// <returns>System.String.</returns>
public static string ToTypedString(this HTupleElements from)
{
switch (from.Type)
{
case HTupleType.INTEGER:
return from.I.ToString();
case HTupleType.LONG:
return from.L.ToString();
case HTupleType.DOUBLE:
return from.D.ToString("G");
case HTupleType.STRING:
return from;
default:
return string.Empty;
}
}
#endregion Public Methods
}
}