patrick.xu
2021-05-24 c585dd8ddbbdc5dece1033bd6a1201493ed610a0
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
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
using Bro.UI.HalconDisplay.ViewROI;
using HalconDotNet;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.Drawing;
using System.Windows.Forms;
 
/// <summary>
/// The class HDisplayControl is a User Interface .NET Control
/// and is responsible for the visualization of iconic obejcts. The 
/// implementation of this class is based on the HWindowControl class 
/// and the adapted version of HWndCtrl class. 
/// Using the mouse interaction you can move and zoom the visible 
/// image part. If this interaction is available or not is configurable
/// through HDisplayControl properties. 
/// The images can be displayed in two modes. In default mode 
/// the image is zoomed to the window size in correct aspect ratio. 
/// The second mode displays the image in its real size.If the image is larger 
/// than the graphic window, the scroll bars will be displayed so 
/// you can scroll to view the remainder of the image.
/// The class provides also a tool bar for drawing and defining 
/// the region(s) of interest in displayed image. If the interaction 
/// with the tool bar is not desired, then the tool bar can be disabled.
/// The HDisplayControl can be resized during the execution. In this
/// case the size of graphical display and the displayed objects
/// will be adapted to the new size of the control.
/// The class HDisplayControl uses a graphics stack 
/// to manage the iconic objects for the display. Each object is 
/// linked to a graphical context, which determines how the object 
/// is to be drawn. 
/// The context can be changed by calling changeGraphicSettings(). 
/// The graphical "modes" are defined by the class GraphicsContext 
/// and map most of the dev_set_* operators provided in HDevelop.
/// </summary>
namespace Bro.UI.HalconDisplay
{
 
    // delegate as type definition for ROI events 
    public delegate void OnROIChangedHandler(object sender, ROI NewROI);
 
    public enum ImageViewStates
    {
        fitToWindow = 1,
        fullSizeImage = 2
    }
 
    public partial class HalconDisplay : UserControl
    {
 
        #region Events and Variables for ROI Handling 
 
        /// <summary>
        /// This flag enables or disables the 
        /// functionality for defining the region of interest
        /// using draw operators.
        /// In default case this functionality is activated.
        /// If the property is set to "false" the the toolbar
        /// for ROI handling is deactivated and invisible
        /// </summary>
        /// [true,false]
        bool enabledROISetup;
        private bool showROI;
        /// <summary>
        /// Instance of ROIController, which manages the interactions
        /// user ROIs(regions)
        /// </summary>
        public ROIController roiController;
        
        /// <summary>
        /// The event OnROIChanged is fired, when the activated
        /// ROI (region) is changed. These changes can be 
        /// position changes, size changes or/and orientation
        /// changes.
        /// </summary>
        public event OnROIChangedHandler OnROIChanged;
        /// <summary>
        /// The event OnROICreated is fired, when an user
        /// draw a new ROI (region) in HDisplayControl. 
        /// </summary>
        public event OnROIChangedHandler OnROICreated;
        /// <summary>
        /// The event OnROISignChanged is fired, when the
        /// the sign of activated ROI (region) is changed. 
        /// </summary>
        public event OnROIChangedHandler OnROISignChanged;
        /// <summary>
        /// The event OnActiveROIDeleted is fired, when 
        /// an activated ROI (region) is deleted.
        /// </summary>
        public event OnROIChangedHandler OnActiveROIDeleted;
 
        #endregion
        
        public List<HObjectEntry> hObjectEntries
        {
            get
            {
                return hWndControl.HObjList;
            }
        }
 
        #region Definition of private class members
 
        /*********************************************************************
         * Definition of private class members
         *********************************************************************/
 
        // a wrapper class for the HALCON window HWindow
        private HWndCtrl hWndControl;
 
        // The coordinates of HWindow in HDisplayControl
        private Rectangle windowExtents;
 
        // Currently displayed HALCON Image 
        private HImage hImage;
 
        // The region that is calculated from the 
        // all drawn ROIs 
        // Or the region of interest set manually by 
        // assigment a new region to the property (CurrentROI)
        private HRegion regionOfInterest;
 
        // The dimensions of HALCON Image
        // If any image is currently displayed, the imageWidth
        // and imageHeight are set to 0
        private int imageWidth, imageHeight;
 
        // This object is used to lock the code that the accesses 
        // the HALCON image and graphic stack. These prevents
        // That the image acquisition thread and GUI Thread
        // acess the graphic stack at the same time
        private readonly object locker;
 
        /*----------- Zoom --------------------------------*/
        // Coordinates of the point in the image, that is 
        // defined by the current mouse position in the image.
        // These coordinates are used as the zoom center.
        private Point zoomCenter;
 
        // The current value of the zoom state of the image 
        // given in per cent (%)
        private int   displayZoomValue;
 
        // The flag that signalize if the option for zooming
        // with mouse wheel is swithed on (true) or switched off
        private bool  zoomOnMouseWheel;
 
        /*-------------------------------------------------*/
        // This flag swithes the option for movement of the displayed image
        // by pressing the left mouse button and moving the mouse cursor in
        // HDisplayControl
        private bool moveOnPressedMouseButton;
 
        /*----------- Options for displaying the halcon image -------------*/
        /// <summary>If the state is set to true, then the image view 
        /// is adapted to the size of the window with correct aspect ration
        /// </summary>
        /// [fitToWindow,fullSizeImage]
        private ImageViewStates imageViewState;
 
 
        #endregion
 
        #region Construction and Deconstruction
 
        public HalconDisplay()
        {
 
            InitializeComponent();
            hWndControl = new HWndCtrl(viewPort);
            
 
            viewPort.MouseEnter += new EventHandler((s, e) => { viewPort.HMouseWheel -= new HalconDotNet.HMouseEventHandler(hWndControl.mouseWheel); });
            viewPort.MouseLeave += new EventHandler((s, e) => { viewPort.HMouseWheel += new HalconDotNet.HMouseEventHandler(hWndControl.mouseWheel); });
 
            //DoubleBuffer: 
            //UserPaint: 
            //AllPaintingInWmPaint: 
            //ResizeRedraw:
            this.SetStyle(ControlStyles.DoubleBuffer |
                          ControlStyles.OptimizedDoubleBuffer |
                          ControlStyles.AllPaintingInWmPaint |
                          ControlStyles.ResizeRedraw, true);
 
            //HSystem.SetSystem("clip_region", "false");
 
            locker = new object();
            this.ImageViewState = ImageViewStates.fitToWindow;
 
            // Intialize ScrollBars and display modus of image
            hScrollBar1.Enabled = false;
            hScrollBar1.Value = 0;
            vScrollBar1.Enabled = false;
            vScrollBar1.Value = 0;
 
 
            // Initialize ToolBar
            toolStrip1.Width = viewPort.Location.X + viewPort.Width;
            toolStrip1.Visible = true;
            // Region interaction
            this.EnabledROISetup = true;
 
        }
        
        public double Row1, Col1, Row2, Col2;
 
        #endregion
 
        #region Definition of HDisplayControl properties
        
        [Browsable(false)]
        public HWndCtrl HWndCtrl
        {
            get
            {
                return this.hWndControl;
            }         
        }
 
        [Browsable(true)]
        public bool ShowROI
        {
            get
            {
                return showROI;
            }
            set
            {
                if (hWndControl != null)
                {
                    showROI = value;
                    if (showROI)
                    {
                        hWndControl.ShowROI = HWndCtrl.MODE_INCLUDE_ROI;
                        this.Invalidate();
                    }
                    else
                    {
                        hWndControl.ShowROI = HWndCtrl.MODE_EXCLUDE_ROI;
                        this.Invalidate();
                    }
                }
            }
        }
 
        /// <summary>
        /// Gets or sets the current size of the graphical display,
        /// (not the whole control!)
        /// </summary>
        [Browsable(true)]
        [Description("Gets the current size of the graphical display,"+
                     "(not the whole control!)")]
        [DesignerSerializationVisibility
         (DesignerSerializationVisibility.Visible)]
        public Size WindowSize
        {
          get
          {
            return this.viewPort.WindowSize;
          }
          set
          {
            this.viewPort.WindowSize = value;
          }
        }
 
        /// <summary>
        /// Gets the current window to display.
        /// </summary>
        [Browsable(false)]
        [Description("Get the reference to HWindow.")]
        public HWindow HalconWindow
        {
            get
            {
                return this.viewPort.HalconWindow;                
            }
        }
 
 
        /// <summary>
        /// Gets the current image to display.
        /// </summary>
        [Browsable(false)]
        [Description("Gets the current image to display.")]
        [DesignerSerializationVisibility
         (DesignerSerializationVisibility.Hidden)]
        public HImage Image
        {
            get
            {
                lock (locker)
                {
                    return hImage;
                }
            }
            set
            {
                lock (locker)
                {
                    hImage = value;
                    if (hImage != null)
                    {
                        try
                        {
                            hImage.GetImageSize(out imageWidth, out imageHeight);
                        }
                        catch
                        {
                            imageWidth = 0;
                            imageHeight = 0;
                        }
                    }
                }
                this.AddObjectToGraphicStack(hImage);
            }
        }
 
 
        /// <summary>
        /// Gets or sets the state of the image view. The state impacts the 
        /// image view in graphic window. The values are fitToWindow 
        /// (the image is scaled so the whole image is displayed in 
        /// the graphic window), fullSizeImage (the image is dispalyed in 
        /// current image size. The Scorllbars apear, if the image exceeds the 
        /// limits of graphical window.)
        /// </summary>
        [Browsable(true)]
        [Description("Gets or sets the state of the image" + 
                     " view in graphic window.")]
        [DesignerSerializationVisibility(
            DesignerSerializationVisibility.Visible)] 
        public ImageViewStates ImageViewState
        {
            get
            {
                return imageViewState;
            }
            set
            {
                if (value == ImageViewStates.fitToWindow)
                {
                    imageViewState = value;
 
                    if (!this.DesignMode)
                    {
                        if (hWndControl != null)
                            hWndControl.adaptSize = true;
                        if (this.Image != null)
                        {
                            // set the image of the Halcon window 
                            // to the size of current image
                            hWndControl.resetImagePart(imageWidth, imageHeight);
                            this.Invalidate();
                        }
                    }
                }
                else if (value == ImageViewStates.fullSizeImage)
                {
                    imageViewState = value;
                    hWndControl.adaptSize = false;
                    if (!this.DesignMode)
                    {
                        if (this.Image != null)
                            setFullImageSize();
                    }
                }
                else
                    throw new InvalidEnumArgumentException("Invalid value of Property " +
                                                           "ImageViewState. " +
                                                           "The property can have to " +
                                                           "different values \"fitToWindow\"" +
                                                           "\"fullSizeImage\".");
            }
        }
 
        /// <summary>
        /// Coordinates of the image marked as zoom center. Initial value is 
        /// the center of the image. X-coordinate corresponds the column 
        /// coordinate and Y-coodrinate to the row coordinate of image. The 
        /// zoom center is changed if you click with the left mouse button 
        /// in the display image and then scroll the mouse wheel.
        /// </summary>
        [Browsable(false)]
        [Description("Coordinates of the image marked as zoom center. " +
                     "Initial value is the center of the image. X-coordinate" +
                     " corresponds the column coordinate and Y-coodrinate to" +
                     " the row coordinate of image. The zoom center is " +
                     " changed if you click with the left mouse button" +
                     " in the display image and then scroll the mouse wheel")]
        [EditorBrowsable(EditorBrowsableState.Always)]
        [CategoryAttribute("Zoom")]
        public Point ZoomCenter
        {
            get
            {
                return zoomCenter;
            }
            set
            {
                if (value.IsEmpty)
                {
                    zoomCenter = new Point((imageWidth / 2), imageHeight / 2);
                }
                else
                {
                    if ((imageWidth > 0) && (imageHeight > 0))
                    {
                        if ((value.X <= imageWidth) && (value.X >= 0) &&
                            (value.Y <= imageHeight) && (value.Y >= 0))
                            this.zoomCenter = value;
                        else
                        {
                            //string excString = "The coordinates of ZoomCenter should " +
                            //                   "be within image.";
                            //MessageBox.Show(excString);
                            //throw new ArgumentOutOfRangeException(excString,
                            //                                      "ZoomCenter");
                        }
                    }
                    else
                    {
                        zoomCenter = value;
                    }
                }
            }
        }
 
 
         /// <summary>
        /// Gets the current zoom value of display expressed as a 
        /// percentage of original image size.
        /// </summary>
        [Browsable(false)]
        [Description("Gets the current zoom value of display expressed as a " +
                     "percentage of original image size.")]
        [EditorBrowsable(EditorBrowsableState.Advanced)]
        [RefreshProperties(System.ComponentModel.RefreshProperties.Repaint)]
        [CategoryAttribute("Zoom")]
        [DefaultValue(100)]
        public int DisplayZoomValue
        {
            get
            {
                return this.displayZoomValue;
            }
        }
 
 
        /// <summary>
        /// Gets or sets the property to zoom the image by 
        /// scrolling the mouse wheel. The center of zoom is 
        /// set to the current image position of the mouse.
        /// </summary>
        [Browsable(true)]
        [DesignerSerializationVisibility
         (DesignerSerializationVisibility.Visible)]
        [Description("Specifies, if the zoom with mouse wheel is activated " +
                     "or not. The center of zoom is set to the current " +
                     "image position of the mouse.")]
        [EditorBrowsable(EditorBrowsableState.Always)]
        [CategoryAttribute("Zoom")]
        [DefaultValue(true)]
        public bool ZoomOnMouseWheel
        {
          get
          {
            return this.zoomOnMouseWheel;
          }
          set
          {
            this.zoomOnMouseWheel = value;
          }
        }
 
 
        /// <summary>
        /// Specifies, if the moving of displayed objects
        /// by pressed mouse button is activated or not.
        /// </summary>
        [Browsable(true)]
        [DesignerSerializationVisibility
         (DesignerSerializationVisibility.Visible)]
        [Description("Specifies, if the moving of displayed objects" +
                      "by pressed mouse button is activated or not.")]
        [EditorBrowsable(EditorBrowsableState.Always)]
        [CategoryAttribute("Move")]
        [DefaultValue(false)]
        public bool MoveOnPressedMouseButton
        {
            get
            {
                return this.moveOnPressedMouseButton;
            }
            set
            {
                this.moveOnPressedMouseButton = value;
                if (this.moveOnPressedMouseButton && hWndControl != null)
                  hWndControl.setViewState(HWndCtrl.MODE_VIEW_MOVE);
            }
        }
 
 
        /// <summary>
        /// Specifies, if the toolbar for setup of roi
        /// is activated and visible or not.
        /// </summary>
        [Browsable(true)]
        [Description("Specifies, if the toolbar for setup of roi"+
                     " is activated and visible or not.")]
        [DefaultValue(true)]
        public bool EnabledROISetup
        {
            get
            {
                return this.enabledROISetup;
            }
            set
            {
                this.enabledROISetup = value;
                if (this.enabledROISetup)
                {
                    toolStrip1.Enabled = true;
                    toolStrip1.Visible = true;
                }
                else
                {
                    toolStrip1.Enabled = true;
                    toolStrip1.Visible = false;
                }
            }
        }
 
 
        
        /// <summary>
        /// Gets or sets the current region of interest.
        /// </summary>
        [Browsable(false)]
        [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
        [Description("Gets or sets the current region of interest.")]
        public HRegion CurrentROI
        {
            get
            {
                if (!this.DesignMode)
                {
                    CalcCurrentROI();
                    return this.regionOfInterest;
                }
                else
                    return null;
            }
            set
            {
                if (!this.DesignMode)
                {
                    if (value != null)
                    {
                        this.regionOfInterest = value;
                        roiController.ModelROI = this.regionOfInterest;
                    }
                    else
                    {
                        if (roiController != null)
                        {
                            //Clears all variables managing ROI objects
                            roiController.getROIList().Clear();
                            roiController.defineModelROI();
                            this.regionOfInterest = roiController.getModelRegion();
                        }
                        else
                            this.regionOfInterest = null;
                        // set the image part to the whole image
                        if (this.Image != null)
                            hWndControl.resetImagePart(imageWidth, imageHeight);
                    }
                }
            }
        }
 
 
        /// <summary>
        /// Returns the reference to the object ROIController
        /// that is responsible for the management of the regions
        /// that belongs to region of interest.
        /// </summary>
        [Browsable(false)]
        [Description("Returns the reference to the object ROIController, "+
                     "that is responsible for the management of the regions "+
                     " that belongs to region of interest")]
        public ROIController ROIController
        {
            get
            {
                return this.roiController;
            }            
        }
 
        #endregion
 
        /// <summary>
        /// Reset window settings for zoom and pan 
        /// </summary>
        public void ResetDisplaySettings()
        {
            // clear all settings in graphic window
            //hWndControl.resetAll();
            hWndControl.resetWindow();
 
            // set the flag to display the full image 
            // in correct aspect ration in graphic window
            if (imageViewState == ImageViewStates.fitToWindow)
                hWndControl.adaptSize = true;
            else
                hWndControl.adaptSize = false;
            if ((imageWidth > 0) && (imageHeight > 0))
                hWndControl.resetImagePart(imageWidth, imageHeight);
 
            this.Invalidate();
        }
        
        /// <summary>
        /// Reset window settings including settings for drawing ROIs
        /// </summary>
        public void ResetDisplaySettingsInclROI()
        {
            // clear all settings in graphic window
            hWndControl.resetAll();
            // set the flag to display the full image 
            // in correct aspect ration in graphic window
            if (imageViewState == ImageViewStates.fitToWindow)
                hWndControl.adaptSize = true;
            else
                hWndControl.adaptSize = false;
 
            if ((imageWidth > 0) && (imageHeight > 0))
                hWndControl.resetImagePart(imageWidth, imageHeight);
 
            this.Invalidate();
        }
 
        /// <summary>
        /// Clears the content in the graphic stack 
        /// that is managed by HDisplayControl
        /// </summary>
        public void ClearGraphicStack()
        {
            hWndControl.ClearHObjList();
            // set the flag to display the full image 
            // in correct aspect ration in graphic window
            if (imageViewState == ImageViewStates.fitToWindow)
                hWndControl.adaptSize = true;
            else
                hWndControl.adaptSize = false;
 
            if ((imageWidth > 0) && (imageHeight > 0))
                hWndControl.resetImagePart(imageWidth, imageHeight);
 
            this.Invalidate();
        }
 
        /// <summary>
        /// Clears !only! the window
        /// </summary>
        public void ClearDisplay()
        {
            this.HalconWindow.ClearWindow();
        }
 
        /// <summary>
        /// Zooms the image around the image coordinate supplied 
        /// in [centerX, centerY] by value, that is provided
        /// by parameter zoomFactor. The zoomFactor describe the grade of zooming 
        /// in per cents.
        /// </summary>
        /// <param name="centerX"> Column coordinate of zoom center </param>
        /// <param name="centerY"> Row coordinate of zoom center </param>
        /// <param name="zoomFactor"> Zoom value in percenetage </param>
        public void ZoomImage(double centerX, double centerY, int zoomFactor)
        {
          this.displayZoomValue = zoomFactor;
 
          // zoom image 
          hWndControl.zoomByGUIHandle(displayZoomValue);
 
          // repaint the graphic window
          this.Invalidate();
        }
 
        /// <summary> 
        /// The object will be pushed to the graphic stack of image 
        /// display. The objects on the graphic stack will not be
        /// displayed automatically. To display the objects on the 
        /// graphic stack, please call method Refresh.
        /// </summary>
        /// <param name="obj"> HALCON iconic object </param>
        public void AddObjectToGraphicStack(HObject obj)
        {
            try
            {
                lock (locker)
                {
                    if (obj != null)
                    {
                        hWndControl.addIconicVarKeepSettings(obj);
                    }
                }
            }
            catch(Exception ex)
            {
                Trace.TraceError("HDisplay : AddObjectToGraphicStack error:{0}", ex);
            }
        }
 
        /// <summary>
        /// Changes the current graphical context by setting the specified mode
        /// (constant starting by GC_*) to the specified value.
        /// </summary>
        /// <param name="mode">
        /// Constant that is provided by the class GraphicsContext
        /// and describes the mode that has to be changed. Actually 
        /// you can set up following properties of graphical context 
        /// using this function: 
        /// GraphicsContext.GC_COLOR    (see dev_set_color)
        /// GraphicsContext.GC_DRAWMODE (see set_draw)
        /// GraphicsContext.GC_SHAPE    (see set_shape)
        /// GraphicsContext.GC_LUT      (see set_lut)
        /// GraphicsContext.GC_PAINT    (see set_paint)
        /// </param>
        /// <param name="val">
        /// Value, provided as a string, 
        /// the mode is to be changed to, e.g., "blue" 
        /// </param>       
        public void ChangeGraphicSettings(string mode, string val)
        {
            hWndControl.changeGraphicSettings(mode, val);
        }
        
        /// <summary>
        /// Changes the current graphical context by setting the specified mode
        /// (constant starting by GC_*) to the specified value.
        /// </summary>
        /// <param name="mode">
        /// Constant that is provided by the class GraphicsContext
        /// and describes the mode that has to be changed. Actually you can 
        /// set up following properties of graphical context using this 
        /// function: 
        /// GraphicsContext.GC_LINEWIDTH (see set_line_width)
        /// GraphicsContext.GC_COLORED   (see dev_set_colored)
        /// </param>
        /// <param name="val">
        /// Value, provided as an integer, the mode is to be changed to, 
        /// e.g., 5 
        /// </param>
        public void ChangeGraphicSettings(string mode, int val)
        {
            hWndControl.changeGraphicSettings(mode, val);
        }
        
        /// <summary>
        /// Changes the current graphical context by setting the specified mode
        /// (constant starting by GC_*) to the specified value.
        /// </summary>
        /// <param name="mode">
        /// Constant that is provided by the class GraphicsContext
        /// and describes the mode that has to be changed.Actually you can 
        /// set up following properties of graphical context using this 
        /// function: 
        /// GraphicsContext.GC_LINESTYLE (see set_line_style)
        /// </param>
        /// <param name="val">
        /// Value, provided as an HTuple instance, the mode is 
        /// to be changed to, e.g., new HTuple(new int[]{2,2})
        /// </param>
        public void ChangeGraphicSettings(string mode, HTuple val)
        {
            hWndControl.changeGraphicSettings(mode, val);
        }
        
        /// <summary> 
        /// Repaint the content of the graphic window
        /// </summary>
        public override void Refresh()
        {
            /*
             * repaint the graphic control including the 
             * actual graphic stack
            */
 
            hWndControl.repaint();
            this.Invalidate();
            
 
        }
 
        /// <summary> 
        /// Performs the initialization of the HDisplayControl
        /// during loading to the memory.
        /// </summary>
        private void HDisplayControl_Load(object sender, EventArgs e)
        {
 
            //hWndControl = new HWndCtrl(viewPort);
 
            // Initialization graphic window size
            windowExtents = new Rectangle(0, 0, this.viewPort.WindowSize.Width,
                                                this.viewPort.WindowSize.Height);
 
 
            imageWidth = imageHeight = 0;
 
            displayZoomValue = 100;
            zoomCenter = new Point(windowExtents.Width / 2, windowExtents.Height / 2);
 
 
            hWndControl.setViewState(HWndCtrl.MODE_VIEW_MOVE);
 
 
            viewPort.HMouseMove += ViewPort_HMouseMove;
 
            // add event handler after zooming the image
            hWndControl.OnImageZoomed += new OnIconicObjectZoomedHandler(
                                    this.hWndControl_IconicObjectZoomed);
            hWndControl.OnImageMoved  += new OnIconicObjectMovedHandler(
                                    this.hWndControl_IconicObjectMoved);
            // setup ROIController
            roiController = new ROIController();
            hWndControl.useROIController(roiController);
 
            // handle the changes of regions
            roiController.NotifyRCObserver = null;
            roiController.NotifyRCObserver = new IconicDelegate(UpdateViewData);
            hWndControl.ClearHObjList();
            //---------
 
            // set the sign of the draw region to the value "Add Region"
            roiController.setROISign(ROIController.MODE_ROI_NEG);
            this.ShowROI = true;
        }
        
        private void ViewPort_HMouseMove(object sender, HMouseEventArgs e)
        {
            if ((e.X > 0) && (e.Y > 0))
            {
                tsslRow.Text = e.Y.ToString("f2");
                tsslCol.Text = e.X.ToString("f2");
 
                try
                {
                    if (Image == null)
                        return;
 
                    HTuple channels = new HTuple();
                    HOperatorSet.CountChannels(Image, out channels);
 
                    HTuple data = new HTuple();
                    HTuple temp = new HTuple();
 
                    HObject image1 = new HObject();
                    HObject image2 = new HObject();
                    HObject image3 = new HObject();
 
                    switch(channels.I)
                    {
                        case 1:
                            HOperatorSet.GetGrayval(Image, e.Y, e.X, out temp);
                            data.Append(temp);
                            break;
                        case 2:
                            HOperatorSet.Decompose2(Image, out image1, out image2);
                            HOperatorSet.GetGrayval(image1, e.Y, e.X, out temp);
                            data.Append(temp);
                            HOperatorSet.GetGrayval(image2, e.Y, e.X, out temp);
                            data.Append(temp);
                            break;
                        case 3:
                            HOperatorSet.Decompose3(Image, out image1, out image2, out image3);
                            HOperatorSet.GetGrayval(image1, e.Y, e.X, out temp);
                            data.Append(temp);
                            HOperatorSet.GetGrayval(image2, e.Y, e.X, out temp);
                            data.Append(temp);
                            HOperatorSet.GetGrayval(image3, e.Y, e.X, out temp);
                            data.Append(temp);
                            break;
                        default:
                            break;
                    }
 
                    string str = "";
 
                    for (int i = 0; i < data.LArr.Length; i++)
                    {
                        str += data.LArr[i].ToString();
                        str += ",";
                    }
 
                    tsslGreyval.Text = str;
 
                    image1?.Dispose();
                    image2?.Dispose();
                    image3?.Dispose();
 
 
                }
                catch
                {
                    return;
                }
               
            }
        }
 
        /// <summary> 
        /// Performs event handling of the HMouseWheel event of
        /// HWindowControl, so that the dipslayed image  part and scroll bars 
        /// of HDisplayControl can be adapted to the current zoom value.
        /// </summary>
        private void viewPort_HMouseWheel(object sender, HMouseEventArgs e)
        {
          hWndControl.mouseWheel(sender, e);
          //ManageScrollBars();
          hWndControl.repaint();
 
          this.Invalidate();
        }
        
        /// <summary> 
        /// Event handling of paint event. The methods takes care, that the 
        /// image part is displayed correctly and the scroll bars appear 
        /// if they are necessary.
        /// </summary>
        private void HDisplayControl_Paint(object sender, PaintEventArgs e)
       {
           if (!this.DesignMode)
           {
               try
               {                  
                   displayZoomValue = (int)hWndControl.ZoomFactor;
                   //ManageScrollBars();
               }
               finally
               {
                   hWndControl.repaint();
                   HOperatorSet.SetSystem("flush_graphic", "true");
                   viewPort.HalconWindow.DispCircle(-100.0, -100.0, 1);
 
               }
           }
       }
 
        /// <summary>
       /// Event handling for zooming the displayed iconic objects 
       /// </summary>
        private void hWndControl_IconicObjectZoomed(object sender, 
                                                   double zoomCenterX,
                                                   double zoomCenterY,
                                                   double scaleFactor)
       {
           ZoomCenter = new Point((int)Math.Round(zoomCenterX),
                                  (int)Math.Round(zoomCenterY));
           displayZoomValue = (int)scaleFactor;
           this.Invalidate();
       }
 
 
        /// <summary>
       /// By resizing the controls the visualization of displayed iconic 
       /// objects should also be adapted to the new size of graphic window.
       /// </summary>
        new public void Resize(object sender, EventArgs e)
       {
           //hWndControl = new HWndCtrl(viewPort);
            Rectangle imagePart;
            imagePart = viewPort.ImagePart;
 
           // adapt the displayed image part 
           // to the new size of display
           if (hWndControl.adaptSize)
           {
               if (this.Image != null)
               {
                   // set the image part of the Halcon window 
                   // to the size of current image
                   if ((imagePart.Width >= imageWidth) &&
                       (imagePart.Height >= imageHeight))
                   {
                       hWndControl.resetImagePart(imageWidth, imageHeight);
                   }
                   else
                   {        
                       // The window is resized and this impacts that the 
                       // visible image part has to be changed. Adapt
                       // the image part to new window size.
                       imagePart.Width = viewPort.Width;
                       imagePart.Height = viewPort.Height;
                       viewPort.ImagePart = imagePart;
                   }
               }
           }
           else
               if (!hWndControl.adaptSize)
               {
                   if (this.Image != null)
                       setFullImageSize();
               }
 
           this.Invalidate();
       }
 
        /// <summary>
       /// Event handling for resizing the graphic window
       /// </summary>
        private void HDisplayControl_Resize(object sender, EventArgs e)
       {
         // update the size of the HALCON window if the 
         // the whole component is resized
 
           //hWndControl = new HWndCtrl(viewPort);
         UpdateHalconWindowExtents();
 
         //// set the position of ScrollBars
         //vScrollBar1.Location = new Point((viewPort.Location.X + 
         //                                  windowExtents.Width),
         //                                 viewPort.Location.Y);
 
 
         if (hWndControl.adaptSize)
         {
             if (this.Image != null)
                 // set the image of the Halcon window 
                 // to the size of current image
                 hWndControl.resetImagePart(imageWidth, imageHeight);
         }
         else
         {
             if (this.Image != null)
                setFullImageSize();
         }
 
         // this calls the Paint-Method
         this.Invalidate();
       }
 
        /// <summary>
       /// Event handling if the content of the graphic window is moved.
       /// </summary>
        private void hWndControl_IconicObjectMoved(object sender,
                                                  double moveX,
                                                  double moveY)
       {
           if (MoveOnPressedMouseButton)
            this.Invalidate();
       }
 
 
        /// <summary>
        /// Updates the size of HWindowControl during size changing of whole
        /// user control.
        /// </summary>
        private void UpdateHalconWindowExtents()
        {
            int windowWidth = this.ClientSize.Width - 
                            2 * this.viewPort.BorderWidth - 
                            vScrollBar1.Width - 2;
            int windowHeight = this.ClientSize.Height -
                            2 * this.viewPort.BorderWidth - 
                            hScrollBar1.Height - 2;
 
            windowExtents = new Rectangle(this.viewPort.BorderWidth, 
                                        this.viewPort.BorderWidth,
                                        windowWidth,
                                        windowHeight);
            // update extens of window
            this.viewPort.WindowSize = new Size(windowWidth, windowHeight);
        }
 
        /// <summary>
        /// Event handling for horizontal scroll bar. The image part will
        /// be adapted according to the position of horizontal scroll bar.
        /// </summary>
        private void hScrollBar1_Scroll(object sender, ScrollEventArgs e)
        {
            Rectangle rect = viewPort.ImagePart;
            rect.X = hScrollBar1.Value;
            hWndControl.setImagePart(rect.Y, rect.X, 
                                        rect.Y + rect.Height, 
                                        rect.X + rect.Width);
            hWndControl.repaint();  
        }
 
        /// <summary>
        /// Event handling for vertical scroll bar. The image part will
        /// be adapted according to the position of vertical scroll bar.
        /// </summary>
        private void vScrollBar1_Scroll(object sender, ScrollEventArgs e)
        {
        // set new image part during scrolling
        Rectangle rect = viewPort.ImagePart;
        rect.Y = vScrollBar1.Value;
        hWndControl.setImagePart(rect.Y, rect.X, 
                                    rect.Y + rect.Height, 
                                    rect.X + rect.Width);
        hWndControl.repaint();
        }
 
 
        /// <summary>
        /// Sets the mode of graphic window to display the 
        /// image in its full image size. If the image part
        /// of the displayed image is larger than the graphic
        /// window then the scroll bars appear. 
        /// </summary>
        private void setFullImageSize()
        {
        if (this.Image != null)
        {
            hWndControl.adaptSize = false;
            hWndControl.resetImagePart(imageWidth, imageHeight);
            this.Invalidate();
        }
        }
 
        /// <summary>
        /// Sets the shape of region to draw to axis-aligned rectangle
        /// </summary>
        private void toolStripButton1_Click(object sender, EventArgs e)
        {
            roiController.setROIShape(new ROIRectangle1());
            this.Invalidate();
        }
 
        /// <summary>
        /// Sets the shape of region to draw to rotated rectangle
        /// </summary>
        private void toolStripButton2_Click(object sender, EventArgs e)
        {
            roiController.setROIShape(new ROIRectangle2());
        }
 
        /// <summary>
        /// Sets the shape of region to draw to line
        /// </summary>
        private void toolStripButton3_Click(object sender, EventArgs e)
        {
            roiController.setROIShape(new ROILine());
        }
 
        /// <summary>
        /// Sets the shape of region to draw to circle
        /// </summary>
        private void toolStripButton4_Click(object sender, EventArgs e)
        {
            roiController.setROIShape(new ROICircle());
        }
 
        /// <summary>
        /// Sets the shape of region to draw to circular arc
        /// </summary>
        private void toolStripButton5_Click(object sender, EventArgs e)
        {
            try
            {
                roiController.setROIShape(new ROICircularArc());
            }
            catch (HOperatorException exception)
            {
                throw exception;
            }
        }
 
        private void ToolStripButton6_Click(object sender, EventArgs e)
        {
            try
            {
                roiController.setROIShape(ROIPolygon.GetCurrentInstance());
            }
            catch (HOperatorException exception)
            {
                throw exception;
            }
        }
        
        /// <summary>
        /// Update the current ROI (region of interest) according to 
        /// the changes that were performed through user interaction.
        /// </summary>
        private void toolStripDeleteSelectedRegion_Click(object sender, EventArgs e)
        {
            int activeROIIdx = roiController.getActiveROIIdx();
            if (activeROIIdx > -1)
                roiController.removeActive();
        }
        
        /// <summary>
        /// Update the current ROI (region of interest) according to 
        /// the changes that were performed through user interaction.
        /// </summary>
        public void UpdateViewData(int val)
        {
            switch (val)
            {
                case ROIController.EVENT_CHANGED_ROI_SIGN:
                    CalcCurrentROI();
                    OnROICreated?.Invoke(this, roiController.getActiveROI());
                    break;
                case ROIController.EVENT_DELETED_ACTROI:
                case ROIController.EVENT_DELETED_ALL_ROIS:
                    CalcCurrentROI();
                    // if activated ROI is deleted or all ROIs
                    // are deleted, the event parameter for ROI 
                    // is set NULL
                    OnActiveROIDeleted?.Invoke(this, null);
                    break;                        
                case ROIController.EVENT_CREATED_ROI:
                    CalcCurrentROI();
                    OnROICreated?.Invoke(this, roiController.getActiveROI());
                    break;
                case ROIController.EVENT_UPDATE_ROI:
                    CalcCurrentROI();
                    OnROIChanged?.Invoke(this, roiController.getActiveROI());
                    break;
                case ROIController.EVENT_REPAINT_ROI:
                    this.Invalidate();
                    break;
                default:
                    break;
            }
            this.Invalidate();
        }
        
        /// <summary>
       /// Update the current ROI (region of interest) according to 
       /// the changes that were performed through user interaction.
       /// </summary>
        private void CalcCurrentROI()
        {
            bool genROI = false;
            try
            {
                genROI = roiController.defineModelROI();
            }
            catch (HOperatorException exception)
            {
                MessageBox.Show("Error occured during calculating" +
                                " the region of interest:\n" +
                                exception.Message);
                hWndControl.repaint();
            }
            regionOfInterest = roiController.getModelRegion();
            if (!genROI)
                hWndControl.repaint();
        }
        
        /// <summary>
        /// Adds the new region to the region of interest (ROI)
        /// </summary>
        private void btnRegionFill_Click(object sender, EventArgs e)
        {
            roiController.setROISign(ROIController.MODE_ROI_POS);
        }
 
        /// <summary>
        /// Exludes the area defined by new region from the region of interest (ROI)
        /// </summary>
        private void btnRegionMargin_Click(object sender, EventArgs e)
        {
            roiController.setROISign(ROIController.MODE_ROI_NEG);
        }
 
        private void StatusBarVisbleMenuItem_Click(object sender, EventArgs e)
        {
            StatusBarVisbleMenuItem.Checked = !StatusBarVisbleMenuItem.Checked;
        }
 
        private void ToolBarVisbleMenuItem_Click(object sender, EventArgs e)
        {
            ToolBarVisbleMenuItem.Checked = !ToolBarVisbleMenuItem.Checked;
        }
 
        private void ToolBarVisbleMenuItem_CheckedChanged(object sender, EventArgs e)
        {
            toolStrip1.Visible = ToolBarVisbleMenuItem.Checked;
        }
 
        private void StatusBarVisbleMenuItem_CheckedChanged(object sender, EventArgs e)
        {
            statusStrip1.Visible = StatusBarVisbleMenuItem.Checked;
        }
 
 
        private void lineWidthMenuItem_Click(object sender, EventArgs e)
        {
            foreach(var item in lineWidthMenuItem.DropDownItems)
            {
                if (item == sender)
                    ((ToolStripMenuItem)item).Checked = true;
                else
                    ((ToolStripMenuItem)item).Checked = false;
 
            }
 
            for (int i = 0; i < lineWidthMenuItem.DropDownItems.Count; i++)
            {
                if(((ToolStripMenuItem)lineWidthMenuItem.DropDownItems[i]).Checked)
                {
                    HWndCtrl.SetLineWidth(i + 1);
                    Refresh();
                }
            }
        }
 
      
 
 
        /// <summary>
        /// Event handling for entering the Delete-Button.
        /// If one of the drawn regions is activated then 
        /// the activated region will be deleted.
        /// </summary>
        private void viewPort_KeyDown(object sender, KeyEventArgs e)
        {
            Keys button = e.KeyCode;
            // if the pressed button is "Del"
            if (e.KeyCode == Keys.Delete)
                // if one region is activated, then delete it
                if (roiController.activeROIidx > -1)
                    roiController.removeActive();                
        }
        
        private void viewPort_HInitWindow(object sender, EventArgs e)
        {
            hImage = null;
            regionOfInterest = new HRegion();
        }
 
        private void toolStripDeleteAllRegion_Click(object sender, EventArgs e)
        {
            hWndControl.ClearHObjListExceptImage();
            roiController.ROIList.Clear();
            Refresh();
        }
 
        private void toolStripResetDisp_Click(object sender, EventArgs e)
        {
            ResetDisplaySettings();
        }
 
    }
 
}