patrick.xu
2021-03-31 7510e9f80bbcb4d2c21d7a31f1e0b306c5dac8ec
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
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
using System;
using System.Collections;
using HalconDotNet;
using System.ComponentModel;
 
namespace HalconTools
{
    public delegate void MatchingDelegate(int value);
    public delegate void AutoParamDelegate(string value);
    public delegate void FindShapeModelDelegate(object sender,HImage image, MatchingResult result);
 
    [DefaultEvent("SetImageDone")]
    /// <summary>
    /// This is a controller class, which receives the
    /// GUI component changes made by the user and forwards 
    /// the actions according to the internal settings.
    /// To notify the GUI about semantic changes, we use two delegates. One
    /// notifies about changes regarding the display objects
    /// (like a change of image or change in model or contour). It is also used
    /// to forward errors to the user, which might occur during a processing step.
    /// The second delegate notifies the GUI to correct its sliders and trackbars
    /// according to the new parameter setting, computed along with the 
    /// 'auto'-mechanism. 
    /// </summary>
    public class MatchingAssistant
    {
        /// <summary>
        /// Constant indicating that the model contour display should be
        /// updated.
        /// </summary>
        public const int UPDATE_XLD                = 0;
        /// <summary>
        /// Constant indicating that the pyramid (display-)level should be
        /// updated.
        /// </summary>
        public const int UPDATE_DISPLEVEL        = 1;
        /// <summary>
        /// Constant indicating that the pyramid should be updated.
        /// </summary>
        public const int UPDATE_PYRAMID            = 2;
        /// <summary>
        /// Constant indicating that the detection results should be updated.
        /// </summary>
        public const int UPDATE_DETECTION_RESULT= 3;
        /// <summary>
        /// Constant indicating that the test image display should be updated.
        /// </summary>
        public const int UPDATE_TESTVIEW        = 4;
 
        /// <summary>
        /// Constant indicating an error if a wrong file extension is used for
        /// a model file.
        /// </summary>
        public const int ERR_NO_VALID_FILE        = 5; 
        /// <summary>
        /// Constant indicating an error when writing a model file 
        /// </summary>
        public const int ERR_WRITE_SHAPEMODEL    = 6; 
        /// <summary>
        /// Constant indicating an error when reading from model file
        /// </summary>
        public const int ERR_READ_SHAPEMODEL    = 7; 
        /// <summary>
        /// Constant indicating an error if operations are performed that 
        /// need a shape-based model, though no model has been created, yet
        /// </summary>
        public const int ERR_NO_MODEL_DEFINED    = 8; 
        /// <summary>
        /// Constant indicating an error if operations are performed that 
        /// need a model image, though no model image has been loaded, yet
        /// </summary>
        public const int ERR_NO_IMAGE            = 9;  
        /// <summary> 
        /// Constant indicating an error if operations are performed that
        /// need test images, though no test image has been loaded, yet
        /// </summary>
        public const int ERR_NO_TESTIMAGE        = 10; 
        /// <summary>
        /// Constant indicating an error when reading an image file.
        /// </summary>
        public const int ERR_READING_IMG        = 11;
        /// <summary>
        /// Ö¸Ê¾²éÕÒ´íÎó
        /// </summary>
        public const int ERR_FINDSHAPEMODEL = 12;
        /// <summary>
        /// ´íÎóµÄ²ÎÊý
        /// </summary>
        public const int ERR_PARAMSET = 13;
 
        /// <summary>
        /// Region of interest defined by the sum of
        /// the positive and negative ROIs
        /// </summary>
        private HRegion         mROIModel; 
        
        /// <summary>Training image with full domain</summary>
        private HImage            oImage;
 
        /// <summary>
        /// ¸øFindShapeModelʹÓÃ
        /// </summary>
        private HImage OriginalImage;
 
        readonly object someEventLock;
 
        /// <summary> 
        /// The model image is the training image with  
        /// a domain reduced by the region mROIModel
        /// </summary>
        public HImage            mImage;
 
        /// <summary> 
        /// Test image in which the model is searched.
        /// </summary>
        public HImage            tImage;    
        
        /// <summary>List of test images</summary>
        public    Hashtable    TestImages;
        
        //matching parameters
        public MatchingParam   parameterSet;
 
        public MatchingParam getParameterSet 
        { 
            get
            {
                return parameterSet;
            } 
            //set; 
        }
 
        //matching result
        public MatchingResult    tResult;
        //model handle
        private HShapeModel        ModelID;
        //model handle FindShapeModelʹÓÃ
        private HShapeModel[] FindShapeModelID;
        //
        public MatchingResult  findShapeResult { get; set; }
 
        // flags to control processing
        private bool    findAlways;
        private bool    createNewModelID;
 
        //flags to control the inspection and recognition process
        public  bool    onExternalModelID;
        public  bool    onTimer = false;
        
        // display purposes 
        private int        oWidth;
        private int        oHeight;
        private double    scaleW = 1.0;
        private double    scaleH = 1.0;
 
        private HImage        PyramidImages;  
        private HRegion        PyramidROIs;   
        private int            currentImgLevel = 1;    //mNumLevel
        private int            maxPyramidLevel = 6;
        private HHomMat2D    homSc2D;
 
        /// <summary>Stores exception message for display</summary>
        public string        exceptionText = "";
        
        
        // upper and lower range
        private int        contrastLowB;
        private int        contrastUpB;
        private double    scaleStepLowB;
        private double    scaleStepUpB;
        private double    angleStepLowB;
        private double  angleStepUpB;
        private int        pyramLevLowB;
        private int        pyramLevUpB;
        private int        minContrastLowB;
        private int        minContrastUpB;
 
        // auxiliary value table to store intermediate states
        private int    mCachedNumLevel;
        private double mCachedStartAng;
        private double mCachedAngExt;
        private double mCachedAngStep;
        private double mCachedMinScale;
        private double mCachedMaxScale;
        private double mCachedScaleStep;
        private string mCachedMetric;
        private int    mCachedMinCont;
        
      
 
        /// <summary>
        /// Delegate to forward changes for the display, which means changes 
        /// in the model contour, image level etc.
        /// </summary>
        public MatchingDelegate   NotifyIconObserver;
        /// <summary>
        /// Delegate to forward changes in the matching parameters determined 
        /// with the 'auto-' mechanism
        /// </summary>
        public AutoParamDelegate  NotifyParamObserver;
 
        private MatchingDelegate NotifyIconObserverMessage;
 
        /// <summary>
        /// Í¼ÏñÉ趨Íê³Éʼþ
        /// </summary>
        public event SetImageDelegate SetImageDone;
 
        /// <summary>
        /// Æ¥ÅäÍê³Éʼþ
        /// </summary>
        public event FindShapeModelDelegate FindShapeModelDone;
 
        /// <summary>
        /// Initializes flags, lists, and delegates to have a valid
        /// starting point to start the assistant.
        /// </summary>
           public MatchingAssistant(MatchingParam  parSet)
        {
            parameterSet    = parSet;
            NotifyIconObserver  = new MatchingDelegate(dummy);
            NotifyParamObserver = new AutoParamDelegate(dummyS);
            homSc2D    = new HHomMat2D();
            TestImages = new Hashtable(10);
            tResult       = new MatchingResult();
 
            contrastLowB    = 0;
            contrastUpB        = 255;
            scaleStepLowB    = 0.0;
            scaleStepUpB    = (double)19.0/1000.0;
            angleStepLowB    = 0.0;
            angleStepUpB    = (double)(112.0/10.0)*Math.PI/180.0;
            pyramLevLowB    = 1;
            pyramLevUpB        = 6;
            minContrastLowB = 0;
            minContrastUpB    = 30;
 
            findAlways         = false;
            createNewModelID = true;
            ModelID              = new HShapeModel();
            onExternalModelID = false;
        }
 
        public MatchingAssistant(int num)
        {
            someEventLock = new object();
            FindShapeModelID = new HShapeModel[num];
            NotifyIconObserverMessage = new MatchingDelegate(UpdateMessage);
 
            initMatch();
        }
 
        public MatchingAssistant()
        {
            someEventLock = new object();
            FindShapeModelID = new HShapeModel[1];
            NotifyIconObserverMessage = new MatchingDelegate(UpdateMessage);
 
            initMatch();
        }
 
        private void initMatch()
        {
            tResult = new MatchingResult();
            ModelID = new HShapeModel();
        }
 
        public void UpdateMessage(int val)
        {
            switch (val)
            {
                case MatchingAssistant.ERR_NO_MODEL_DEFINED:
                    System.Windows.Forms.MessageBox.Show("Please define a Model!",
                        "Matching Wizard",
                        System.Windows.Forms.MessageBoxButtons.OK,
                        System.Windows.Forms.MessageBoxIcon.Information);
                    break;
                case MatchingAssistant.ERR_NO_IMAGE:
                    System.Windows.Forms.MessageBox.Show("Please load an image",
                        "Matching Wizard",
                        System.Windows.Forms.MessageBoxButtons.OK,
                        System.Windows.Forms.MessageBoxIcon.Information);
                    break;
                case MatchingAssistant.ERR_NO_VALID_FILE:
                    System.Windows.Forms.MessageBox.Show("Selected file is not a HALCON ShapeModel file .shm",
                        "Matching Wizard",
                        System.Windows.Forms.MessageBoxButtons.OK,
                        System.Windows.Forms.MessageBoxIcon.Information);
                    break;
                case MatchingAssistant.ERR_FINDSHAPEMODEL:
                    System.Windows.Forms.MessageBox.Show("Ä£°åÆ¥Åäʧ°Ü",
                        "Matching Wizard",
                        System.Windows.Forms.MessageBoxButtons.OK,
                        System.Windows.Forms.MessageBoxIcon.Information);
                    break;
                case MatchingAssistant.ERR_PARAMSET:
                    System.Windows.Forms.MessageBox.Show("´íÎóµÄ²ÎÊýÉèÖÃ",
                        "Matching Wizard",
                        System.Windows.Forms.MessageBoxButtons.OK,
                        System.Windows.Forms.MessageBoxIcon.Information);
                    break;
                default:
                    break;
            }
        }
 
        /// <summary>Sets <c>image</c> to be the training image <c>oImage</c> </summary>
        public void setImage(HImage image)
        {
            string tmp;
            image.GetImagePointer1(out tmp, 
                                   out oWidth, 
                                   out oHeight);
 
            oImage    = image;
            reset();
        }
       
        /// <summary>
        /// Loads the training image from the file supplied by <c>filename</c>
        /// </summary>
        public bool setImage(string filename)
        {
            HImage image;
 
            try
            {
                image   = new HImage(filename);
                setImage(image);
            }
            catch(HOperatorException e)
            {
                exceptionText = e.Message;
                NotifyIconObserver(MatchingAssistant.ERR_READING_IMG);
                return false;
            }
 
            return true;
        }
        
        /// <summary>
        /// Compute the model image and the model contour for the applied ROI.
        /// </summary>
        public void setModelROI(HRegion roi)
        {
            mROIModel    = roi;
            PyramidROIs = null;
            createNewModelID = true;
            
            if(mROIModel==null)
            {    
                mImage = null;
                return;
            }
 
            mImage = oImage.ReduceDomain(mROIModel);
            
            determineStepRanges();
 
            if(parameterSet.isOnAuto())
                determineShapeParameter();
 
            inspectShapeModel();
        }
 
        /********************************************************************/
        /*                    methods for test image                          */
        /********************************************************************/
 
        /// <summary>
        /// Loads and adds test image files to the list of test images
        /// </summary>
        public bool addTestImages(string fileKey)
        {
            if(TestImages.ContainsKey(fileKey))
                return false;
            
            try
            {
                HImage image   = new HImage(fileKey);
                TestImages.Add(fileKey, image);
            }
            catch(HOperatorException e)
            {
                exceptionText = e.Message;
                NotifyIconObserver(MatchingAssistant.ERR_READING_IMG);
                return false;
            }
            return true;
        }
 
        /// <summary>
        /// Sets an image from the list of test images to be the current
        /// test image. The filename is given by the value fileKey.
        /// </summary>
        public void setTestImage(string fileKey)
        {
            tImage = (HImage)TestImages[fileKey];
            NotifyIconObserver(MatchingAssistant.UPDATE_TESTVIEW);
        }
 
        /// <summary>
        /// Removes an image from the list of test images, 
        /// using the file name
        /// </summary>
        public void removeTestImage(string fileName)
        {
            if(TestImages.ContainsKey(fileName))
                TestImages.Remove(fileName);
 
            if(TestImages.Count==0)
                tImage = null;
        }
 
        /// <summary>
        /// Removes all images from the list of test images
        /// </summary>
        public void removeTestImage()
        {
              TestImages.Clear();
            tImage = null;
        }
        
        /// <summary>
        /// Sets the current test image to the image defined by 
        /// <c>fileName</c> and return it
        /// </summary>
        public HImage getTestImage(string fileName)
        {
            if((tImage == null) && (TestImages.ContainsKey(fileName)))
                tImage = (HImage)TestImages[fileName]; 
            
            return tImage;
        }
 
        /// <summary>
        /// Returns the current test image
        /// </summary>
        public HImage getCurrTestImage() 
        {
            return tImage;
        }
        
 
        /******************************************************************/
        /*                              auto options                          */
        /******************************************************************/
 
        /// <summary>
        /// Adds the parameter name given by <c>mode</c> 
        /// to the list of matching parameters that are 
        /// set to be determined automatically
        /// </summary>
        public void setAuto(string mode)
        {
            if(parameterSet.setAuto(mode))
                determineShapeParameter();
        }
        
        /// <summary>
        /// Removes the parameter name given by <c>mode</c> from the
        /// list of matching parameters that are determined 
        /// automatically
        /// </summary>
        public bool removeAuto(string mode)
        {
            return parameterSet.removeAuto(mode);
        }
        
 
        /************************  set matching values ********************/
        /******************************************************************/
        
        /// <summary>
        /// Sets Contrast to the input value <c>val</c> 
        /// and recreates the model.
        /// </summary>
        public void setContrast(int val)
        {
            parameterSet.setContrast(val);
            minContrastUpB = (int)val;
            
            inspectShapeModel();
 
            if(parameterSet.isOnAuto())
                determineShapeParameter();
 
            createNewModelID = true;
        }
        
        /// <summary>
        /// Sets ScaleStep to the input value <c>val</c> 
        /// </summary>
        public void setScaleStep(double val)
        {
            parameterSet.setScaleStep(val);
 
            if(parameterSet.isOnAuto())
                determineShapeParameter();
 
            createNewModelID = true;
        }
 
        /// <summary>
        /// Sets AngleStep to the input value <c>val</c> 
        /// </summary>
        public void setAngleStep(double val)
        {
            parameterSet.setAngleStep(val);
 
            if(parameterSet.isOnAuto())
                determineShapeParameter();
 
            createNewModelID = true;
        }
 
        /// <summary>
        /// Sets PyramidLevel to the input value <c>val</c> 
        /// </summary>
        public void setPyramidLevel(double val)
        {
            parameterSet.setNumLevel(val);
 
            if(parameterSet.isOnAuto())
                determineShapeParameter();
 
            createNewModelID = true;
        }
 
        /// <summary>
        /// Sets Optimization to the input value <c>val</c> 
        /// </summary>
           public void setOptimization(string val)
        {
            parameterSet.setOptimization(val);
 
            if(parameterSet.isOnAuto())
                determineShapeParameter();
 
            createNewModelID = true;
        }
 
        /// <summary>
        /// Sets MinContrast to the input value <c>val</c> 
        /// </summary>
        public void setMinContrast(int val)
        {
            parameterSet.setMinContrast(val);
 
            if(parameterSet.isOnAuto())
                determineShapeParameter();
 
            createNewModelID = true;
        }
 
        /*******************************************************/
  
        /// <summary>
        /// Sets Metric to the input value <c>val</c> 
        /// </summary>
        public void setMetric(string val)
        {
            parameterSet.setMetric(val);
            createNewModelID = true;
        }
 
        /// <summary>
        /// Sets MinScale to the input value <c>val</c> 
        /// </summary>
        public void setMinScale(double val)
        {
            parameterSet.setMinScale(val);
            createNewModelID = true;
        }
        
        /// <summary>
        /// Sets MaxScale to the input value <c>val</c> 
        /// </summary>
        public void setMaxScale(double val)
        {
            parameterSet.setMaxScale(val);
            createNewModelID = true;
        }
 
        /// <summary>
        /// Sets StartingAngle to the input value <c>val</c> 
        /// </summary>
        public void setStartingAngle(double val)
        {
            parameterSet.setStartingAngle(val);
            createNewModelID = true;
        }
 
        /// <summary>
        /// Sets AngleExtent to the input value <c>val</c> 
        /// </summary>
        public void setAngleExtent(double val)
        {
            parameterSet.setAngleExtent(val);
            createNewModelID = true;
        }
 
        /// <summary>
        /// Changes the currentImgLevel to the input parameter
        /// <c>val</c> and triggers an update in the GUI display
        /// </summary>
        public void setDispLevel(int val)
        {
            this.currentImgLevel = val;
            NotifyIconObserver(MatchingAssistant.UPDATE_DISPLEVEL);
        }
 
        /******************  set findmodel parameters *****************/
        /**************************************************************/
        /// <summary>
        /// Sets MinScore to the input value and starts model detection
        /// if the flag <c>findAlways</c> is checked
        /// </summary>
        public void setMinScore(double val)
        {
            parameterSet.setMinScore(val);
            
            if(findAlways)
                detectShapeModel();
        }
        
        /// <summary>
        /// Sets NumMatches to the input value and starts model detection
        /// if the flag <c>findAlways</c> is checked
        /// </summary>
        public void setNumMatches(int val)
        {
            parameterSet.setNumMatches(val);
            
            if(findAlways)
                detectShapeModel();
        }
 
        /// <summary>
        /// Sets Greediness to the input value and starts model detection
        /// if the flag <c>findAlways</c> is checked
        /// </summary>
        public void setGreediness(double val)
        {
            parameterSet.setGreediness(val);
            
            if(findAlways)
                detectShapeModel();
        }
 
        /// <summary>
        /// Sets MaxOverlap to the input value and starts model detection
        /// if the flag <c>findAlways</c> is checked
        /// </summary>
        public void setMaxOverlap(double val)
        {
            parameterSet.setMaxOverlap(val);
            
            if(findAlways)
                detectShapeModel();
        }
 
        /// <summary>
        /// Sets SubPixel to the input value and starts model detection
        /// if the flag <c>findAlways</c> is checked
        /// </summary>
        public void setSubPixel(string val)
        {
            parameterSet.setSubPixel(val);
            
            if(findAlways)
                detectShapeModel();
        }
 
        /// <summary>
        /// Sets LastPyramLevel to the input value and starts model detection
        /// if the flag <c>findAlways</c> is checked
        /// </summary>
        public void setLastPyramLevel(int val)
        {
            parameterSet.setLastPyramLevel(val);
            
            if(findAlways)
                detectShapeModel();
        }
 
        /// <summary>
        /// Sets the flag <c>findAlways</c> to the input value <c>flag</c>
        /// </summary>
        public void setFindAlways(bool flag)
        {
            findAlways = flag;
 
            if(findAlways && tImage != null)
                detectShapeModel();
        }
 
        /// <summary>
        /// Triggers model detection, if a test image is defined
        /// </summary>
        public bool applyFindModel()
        {
            bool success = false;
 
            if(tImage != null)
                success = detectShapeModel();
            else
                NotifyIconObserver(MatchingAssistant.ERR_NO_TESTIMAGE);
 
            return success;
        }
 
        /// <summary>
        /// Gets detected model contours
        /// </summary>
        public HXLD getDetectionResults()
        {
            return tResult.getDetectionResults();
        }
 
        /// <summary>
        /// Gets matching results
        /// </summary>
        public MatchingResult getMatchingResults()
        {
            return tResult;
        }
        
        /********************  optimize recognition speed *****************/
        /******************************************************************/
 
        /// <summary>
        /// Sets the RecognitionRateOption to the input  
        /// value <c>idx</c>
        /// </summary>
        public void setRecogRateOption(int idx)
        {
            parameterSet.setRecogRateOption(idx);
        }
 
        /// <summary>
        /// Sets the RecognitionRate to the input value <c>val</c>
        /// </summary>
        public void setRecogitionRate(int val)
        {
            parameterSet.setRecogitionRate(val);
        }
 
        /// <summary>
        /// Sets the RecognitionSpeedMode to the input 
        /// value <c>val</c>
        /// </summary>
        public void setRecogSpeedMode(string val)
        {
            parameterSet.setRecogSpeedMode(val);
        }
 
        /// <summary>
        /// Sets the RecognitionManualSelection to the input  .
        /// value <c>val</c>
        /// </summary>
        public void setRecogManualSelection(int val)
        {    
            parameterSet.setRecogManualSelection(val);
        }
        
 
        /********************************************************************/
        /*                        getter methods                            */
        /********************************************************************/
 
        /// <summary>
        /// Gets the model for the current image level
        /// </summary>
        public HXLD getModelContour()
        {
            if(PyramidROIs==null)
                return null;
 
            homSc2D.HomMat2dIdentity();
            homSc2D = homSc2D.HomMat2dScaleLocal(scaleW, scaleH);
            
            return ((PyramidROIs.SelectObj(currentImgLevel)).
                                           GenContourRegionXld("center")).
                                           AffineTransContourXld(homSc2D); 
        }
 
        /// <summary>
        /// Gets the model supplied by a loaded shapebased model file (.shm)
        /// </summary>
        public HXLD getLoadedModelContour()
        {
            HTuple row1, col1, row2, col2, row, col;
            HHomMat2D homMat2D = new HHomMat2D();
 
            try
            {
                tResult.mContour.SmallestRectangle1Xld(out row1, out col1, out row2, out col2);
                row2 = row1.TupleMin();     
                col2 = col1.TupleMin();     
                row  = row2.TupleFloor()-5; 
                col  = col2.TupleFloor()-5; 
                homMat2D.HomMat2dIdentity();
                homMat2D = homMat2D.HomMat2dTranslate(-row,-col);
                
                return homMat2D.AffineTransContourXld(tResult.mContour);
            }
            catch(HOperatorException e)
            {
                exceptionText = e.Message;
                NotifyIconObserver(MatchingAssistant.ERR_READ_SHAPEMODEL);
                return null;
            }
        }
 
        /// <summary>
        /// Gets the model region for the current image level.
        /// </summary>
        public HRegion getModelRegion()
        {
            if(PyramidROIs==null)
                return null;
 
            HRegion reg = PyramidROIs.SelectObj(currentImgLevel);
            return reg.ZoomRegion(scaleW, scaleH);
        }
 
        /// <summary>
        /// Gets the model image for the current image level.
        /// </summary>
        public HImage getDispImage()
        {
            int fW, fH;
            string tmp;
            
            if (PyramidImages ==null)
                return oImage;
            
            HImage img = PyramidImages.SelectObj(currentImgLevel);
            img.GetImagePointer1(out tmp, out fW, out fH);
 
            scaleW = (double)oWidth/fW;
            scaleH = (double)oHeight/fH;
 
            return img.ZoomImageFactor(scaleW, scaleH, "nearest_neighbor");
        }
 
        /// <summary>
        /// Clears all model creation and detection results 
        /// and resets flags to their initial values.
        /// </summary>
        public void reset()
        {
            mROIModel    = null;
            currentImgLevel = 1;
            PyramidROIs = null;
            PyramidImages = null;
            mImage = null;
            scaleH = 1;
            scaleW = 1;
            createNewModelID = true;
 
            tResult.reset();
            NotifyIconObserver(MatchingAssistant.UPDATE_XLD);
        }
 
 
        /********************************************************************/
        /********************************************************************/
 
        /// <summary>
        /// Writes model to the file specified by <c>fileName</c>.
        /// </summary>
        public void saveShapeModel(string fileName)
        {
            if(mImage == null)
            {
                NotifyIconObserver(MatchingAssistant.ERR_NO_MODEL_DEFINED);
                return;
            }
                
            if (createNewModelID)
                if (!createShapeModel())    
                    return;                    
            try
            {
                ModelID.WriteShapeModel(fileName);
            }
            catch(HOperatorException e)
            {
                exceptionText = e.Message;
                NotifyIconObserver(MatchingAssistant.ERR_WRITE_SHAPEMODEL);
            }    
        }
        
        /// <summary>
        /// Loads model from the file specified by <c>fileName</c>
        /// </summary>
        public bool loadShapeModel(string fileName)
        {
            onExternalModelID = false;
 
            try
            {
                ModelID.ReadShapeModel(fileName);
            }
            catch(HOperatorException e)
            {
                exceptionText = e.Message;
                NotifyIconObserver(MatchingAssistant.ERR_READ_SHAPEMODEL);
                return false;
            }
            
            onExternalModelID = true;
            tResult.mContour  = ModelID.GetShapeModelContours(1);
            
            cacheModelParams();
            
            parameterSet.mNumLevel = ModelID.GetShapeModelParams(out parameterSet.mStartingAngle, 
                                                                 out parameterSet.mAngleExtent, 
                                                                 out parameterSet.mAngleStep,
                                                                 out parameterSet.mMinScale,
                                                                 out parameterSet.mMaxScale,
                                                                  out parameterSet.mScaleStep, 
                                                                 out parameterSet.mMetric,       
                                                                 out parameterSet.mMinContrast);             
            return true;
        }
        
        /***************************************************************/
        /***************************************************************/
        private void cacheModelParams()
        {        
            mCachedNumLevel  = parameterSet.mNumLevel;
            mCachedStartAng  = parameterSet.mStartingAngle;
            mCachedAngExt    = parameterSet.mAngleExtent;
            mCachedAngStep   = parameterSet.mAngleStep;
            mCachedMinScale  = parameterSet.mMinScale;
            mCachedMaxScale  = parameterSet.mMaxScale;
            mCachedScaleStep = parameterSet.mScaleStep;
            mCachedMetric    = parameterSet.mMetric;
            mCachedMinCont   = parameterSet.mMinContrast;
        }
 
 
        public void resetCachedModelParams()
        {
            parameterSet.mNumLevel      = mCachedNumLevel;
            parameterSet.mStartingAngle = mCachedStartAng;
            parameterSet.mAngleExtent   = mCachedAngExt;
            parameterSet.mAngleStep     = mCachedAngStep;
            parameterSet.mMinScale      = mCachedMinScale;
            parameterSet.mMaxScale      = mCachedMaxScale;
            parameterSet.mScaleStep     = mCachedScaleStep;
            parameterSet.mMetric        = mCachedMetric;
            parameterSet.mMinContrast   = mCachedMinCont;
            createNewModelID            = true;
        }
        
        /// <summary>
        /// Creates the shape-based model. If the region of interest 
        /// <c>mROIModel</c> is missing or not well defined using the 
        /// interactive ROIs, then an error message is returned.
        /// </summary>
        public bool createShapeModel()
        {
            if(mImage==null)
            {
                if(!onTimer)
                    NotifyIconObserver(MatchingAssistant.ERR_NO_MODEL_DEFINED);
                return false;
            }
 
            try
            {
                ModelID = mImage.CreateScaledShapeModel(parameterSet.mNumLevel,
                                                        parameterSet.mStartingAngle,
                                                        parameterSet.mAngleExtent,
                                                        parameterSet.mAngleStep,
                                                        parameterSet.mMinScale,
                                                        parameterSet.mMaxScale,
                                                        parameterSet.mScaleStep,
                                                        parameterSet.mOptimization,
                                                        parameterSet.mMetric,
                                                        parameterSet.mContrast,
                                                        parameterSet.mMinContrast);
            }
            catch(HOperatorException e)
            {
                
                if(!onTimer)
                {
                    exceptionText = e.Message;
                    NotifyParamObserver(MatchingParam.H_ERR_MESSAGE);
                }
                return false;
            }
 
            tResult.mContour = ModelID.GetShapeModelContours(1);
            
            createNewModelID = false;
            return true;
        }
 
        /// <summary>
        /// Finds the model in the test image. If the model
        /// hasn't been created or needs to be recreated (due to 
        /// user changes made to the GUI components), 
        /// then the model is created first.
        /// </summary>
           public bool detectShapeModel()
        {    
            HTuple levels, rtmp;
            rtmp = new HTuple();
            double t2, t1;
 
            if(tImage == null)
                return false;
            
            if(createNewModelID && !onExternalModelID)
                if(!createShapeModel()) 
                    return false;        
 
            try
            {    
                levels = new HTuple(new int [] {parameterSet.mNumLevel, 
                                                parameterSet.mLastPyramidLevel});
                t1 = HSystem.CountSeconds();
                tImage.FindScaledShapeModel(ModelID,
                                            parameterSet.mStartingAngle,
                                            parameterSet.mAngleExtent,
                                            parameterSet.mMinScale,
                                            parameterSet.mMaxScale,
                                            parameterSet.mMinScore,
                                            parameterSet.mNumMatches,
                                            parameterSet.mMaxOverlap,
                                            new HTuple(parameterSet.mSubpixel),
                                            levels, 
                                            parameterSet.mGreediness,
                                            out tResult.mRow,
                                            out tResult.mCol,
                                            out tResult.mAngle,
                                            out tResult.mScaleRow,
                                            out tResult.mScore);
                t2 = HSystem.CountSeconds();
                tResult.mTime = 1000.0 * (t2 - t1);
                tResult.count = tResult.mRow.Length;
                tResult.mScaleCol = tResult.mScaleRow;
            }    
            catch(HOperatorException e)
            {    
                if(!onTimer)
                {
                    exceptionText = e.Message;
                    NotifyParamObserver(MatchingParam.H_ERR_MESSAGE);
                }
                    
                return false;
            }
 
            if (NotifyIconObserver != null) NotifyIconObserver(MatchingAssistant.UPDATE_DETECTION_RESULT);
            if (FindShapeModelDone != null)FindShapeModelDone(this, tImage, tResult);
            
            return true;
        }
 
        /// <summary>
        /// É趨ͼÏñ,ºóÐøFindShapeModelʹÓÃ
        /// </summary>
        /// <param name="image"></param>
        /// <returns></returns>
        public bool SetImage_FindShapeModel(HImage image)
        {
            lock (someEventLock)
            {
                if (image != null)
                {
                    OriginalImage = image;
 
                    if (SetImageDone != null)
                    {
                        SetImageDone(this,OriginalImage);
                    }
 
                    return OriginalImage.IsInitialized();
                }
                else
                {
                    NotifyIconObserver(MatchingAssistant.ERR_NO_IMAGE);
                    return false;
                }
            }
        }
 
        /// <summary>
        /// Ê¹ÓÃÖ¸¶¨µÄÄ£°åIDÔÚSetImage_FindShapeModelÉ趨µÄͼÏñÖвéÕÒÄ¿±ê
        /// </summary>
        /// <param name="IDindext">Ö¸¶¨Ä£°åID±àºÅ</param>
        /// <param name="parameterSet">²ÎÊý</param>
        /// <returns></returns>
        public MatchingResult FindShapeModel(int IDindext, MatchingParamSave parameterSet)
        {
            HTuple levels;
            double t2, t1;
            MatchingResult result = new MatchingResult();
 
            if (OriginalImage == null)
            {
                if (NotifyIconObserverMessage != null)
                {
                    NotifyIconObserverMessage(MatchingAssistant.ERR_NO_IMAGE);
                }
 
                if (NotifyIconObserver != null)
                {
                    NotifyIconObserver(MatchingAssistant.ERR_NO_IMAGE);
                }
 
                return result;
            }
 
            if (parameterSet == null)
            {
                if (NotifyIconObserverMessage != null)
                {
                    NotifyIconObserverMessage(MatchingAssistant.ERR_PARAMSET);
                }
 
                if (NotifyIconObserver != null)
                {
                    NotifyIconObserver(MatchingAssistant.ERR_PARAMSET);
                }
                return result;
            }
 
            if (FindShapeModelID[IDindext] == null)
            {
                if (NotifyIconObserverMessage != null)
                {
                    NotifyIconObserverMessage(MatchingAssistant.ERR_NO_MODEL_DEFINED);
                }
 
                if (NotifyIconObserver != null)
                {
                    NotifyIconObserver(MatchingAssistant.ERR_NO_MODEL_DEFINED);
                }
 
                return result;
            }
 
            try
            {
                lock (someEventLock)
                {
                    result.mContour = FindShapeModelID[IDindext].GetShapeModelContours(1);
 
                    levels = new HTuple(new int[] {parameterSet.NumLevel, 
                                                parameterSet.LastPyramidLevel});
                    t1 = HSystem.CountSeconds();
                    OriginalImage.FindScaledShapeModel(FindShapeModelID[IDindext],
                                                parameterSet.StartingAngle,
                                                parameterSet.AngleExtent,
                                                parameterSet.MinScale,
                                                parameterSet.MaxScale,
                                                parameterSet.MinScore,
                                                parameterSet.NumMatches,
                                                parameterSet.MaxOverlap,
                                                new HTuple(parameterSet.Subpixel),
                                                levels,
                                                parameterSet.Greediness,
                                                out result.mRow,
                                                out result.mCol,
                                                out result.mAngle,
                                                out result.mScaleRow,
                                                out result.mScore);
 
                    t2 = HSystem.CountSeconds();
                    result.mTime = 1000.0 * (t2 - t1);
                    result.count = result.mRow.Length;
                    result.mScaleCol = result.mScaleRow;
                }
 
                if (FindShapeModelDone != null)
                {
                    FindShapeModelDone(this, OriginalImage,result);
                }
            }
            catch (HOperatorException e)
            {
                if (NotifyIconObserverMessage != null)
                {
                    NotifyIconObserverMessage(MatchingAssistant.ERR_FINDSHAPEMODEL);
                }
 
                if (NotifyIconObserver != null)
                {
                    NotifyIconObserver(MatchingAssistant.ERR_FINDSHAPEMODEL);
                }
                return result;
            }
 
            return result;
        }
        
        /// <summary>
        /// ÔÚÖ¸¶¨´°ÌåÖÐÏÔʾƥÅäµ½µÄ½á¹û
        /// </summary>
        /// <param name="viewPort">ͼÏñÏÔʾ´°Ìå</param>
        /// <param name="CurrentImg">ͼÏñ</param>
        /// <param name="result">Æ¥Åä½á¹û</param>
        public void FindModelGraphics(HalconDotNet.HWindowControl viewPort, HImage CurrentImg,MatchingResult result)
        {
            //Window control that manages visualization
            HWndCtrl mView = new HWndCtrl(viewPort);
 
            mView.resetAll();
            mView.repaint();
 
            mView.clearList();
            mView.changeGraphicSettings(GraphicsContext.GC_LINESTYLE, new HTuple());
            mView.addIconicVar(CurrentImg);
            HXLD DetectionContour = result.getDetectionResults();
            if (DetectionContour != null)
            {
                mView.changeGraphicSettings(GraphicsContext.GC_COLOR, "green");
                mView.changeGraphicSettings(GraphicsContext.GC_LINEWIDTH, 2);
                mView.addIconicVar(DetectionContour);
                mView.repaint();
            }
        }
 
        public void FindModelGraphics_1(HalconDotNet.HWindowControl hDisplayControl, HImage CurrentImg, MatchingResult result)
        {
            hDisplayControl.HalconWindow.ClearWindow();
 
            hDisplayControl.HalconWindow.DispImage(CurrentImg);
 
            HXLD DetectionContour = result.getDetectionResults();
            if (DetectionContour != null)
            {
                hDisplayControl.HalconWindow.SetColor("green");
                hDisplayControl.HalconWindow.SetLineWidth(1);
                hDisplayControl.HalconWindow.DispXld(DetectionContour);
                //hDisplayControl.HalconWindow.DispObj(DetectionContour);
            }
 
 
            //ViewROI.HWndCtrl mView = new HWndCtrl(viewPort);
 
            //mView.resetAll();
            //mView.repaint();
 
            //mView.clearList();
            //mView.changeGraphicSettings(GraphicsContext.GC_LINESTYLE, new HTuple());
            //mView.addIconicVar(CurrentImg);
            //HXLD DetectionContour = result.getDetectionResults();
            //if (DetectionContour != null)
            //{
            //    mView.changeGraphicSettings(GraphicsContext.GC_COLOR, "green");
            //    mView.changeGraphicSettings(GraphicsContext.GC_LINEWIDTH, 2);
            //    mView.addIconicVar(DetectionContour);
            //    mView.repaint();
            //}
        }
 
 
        /// <summary>
        /// ¶Áȡģ°åÎļþ
        /// </summary>
        /// <param name="indext">Ä£°å±àºÅ</param>
        /// <param name="fileName">Ä£°åÎļþÍêÕû·¾¶</param>
        /// <returns></returns>
        public bool ReadShapeModel(int indext,string fileName)
        {
            FindShapeModelID[indext] = null;
            try
            {
                FindShapeModelID[indext] = new HShapeModel();
                FindShapeModelID[indext].ReadShapeModel(fileName);
            }
            catch (HOperatorException e)
            {
                if (NotifyIconObserverMessage != null)
                {
                    NotifyIconObserverMessage(MatchingAssistant.ERR_READ_SHAPEMODEL);
                }
 
                if (NotifyIconObserver != null)
                {
                    NotifyIconObserver(MatchingAssistant.ERR_READ_SHAPEMODEL);
                }
 
                return false;
            }
            
            return true;
        }
 
 
        /// <summary>
        /// Creates the model contour.
        /// </summary>
        public void inspectShapeModel()
        {
            HRegion tmpReg;
            HImage  tmpImg;
 
            if(mImage == null)
            {
                NotifyIconObserver(MatchingAssistant.ERR_NO_MODEL_DEFINED);
                return;
            }
 
            PyramidImages  = oImage.InspectShapeModel(out tmpReg, 
                                                     (int)maxPyramidLevel, 
                                                      parameterSet.mContrast);
            tmpImg  = mImage.InspectShapeModel(out PyramidROIs, 
                                              (int)maxPyramidLevel, 
                                               parameterSet.mContrast);
 
            NotifyIconObserver(MatchingAssistant.UPDATE_XLD);
            NotifyIconObserver(MatchingAssistant.UPDATE_PYRAMID);
        }
        
        /// <summary>
        /// Adjusts the range of ScaleStep and AngleStep according to the
        /// current set of matching parameters.
        /// </summary>
        public void determineStepRanges()
        {
            double vald = 0.0;
            HTuple paramValue = new HTuple();
            HTuple paramList  = new HTuple();
            string [] paramRange = {"scale_step", "angle_step"};
            
            if(mImage == null)
            {
                NotifyIconObserver(MatchingAssistant.ERR_NO_MODEL_DEFINED);
                return;
            }
 
            try
            {
                paramList = mImage.DetermineShapeModelParams(parameterSet.mNumLevel,                
                                                            (double)parameterSet.mStartingAngle,
                                                            (double)parameterSet.mAngleExtent,    
                                                            parameterSet.mMinScale,                
                                                            parameterSet.mMaxScale,                
                                                            parameterSet.mOptimization,            
                                                            parameterSet.mMetric,                
                                                            (int)parameterSet.mContrast,        
                                                            (int)parameterSet.mMinContrast,        
                                                            paramRange,        
                                                            out paramValue);
            }
            catch(HOperatorException e)
            {
                exceptionText = e.Message;
                NotifyParamObserver(MatchingParam.H_ERR_MESSAGE);
                return;
            }
 
            for(int i =0; i<paramList.Length; i++) 
            {
                switch ((string)paramList[i])
                {
                    case MatchingParam.AUTO_ANGLE_STEP: 
                        vald =  (double)paramValue[i];        
 
                        angleStepUpB  = vald * 3.0;
                        angleStepLowB = vald / 3.0;
                        parameterSet.mAngleStep = vald;
                        NotifyParamObserver(MatchingParam.RANGE_ANGLE_STEP);
                        break;
                    case MatchingParam.AUTO_SCALE_STEP: 
                        vald = (double)paramValue[i];
 
                        scaleStepUpB  = vald * 3.0;
                        scaleStepLowB = vald / 3.0;
                        parameterSet.mScaleStep = vald; 
                        NotifyParamObserver(MatchingParam.RANGE_SCALE_STEP);
                        break;
                    default: 
                        break;
                }//end of switch
            }//end of for
        }
 
        
        /// <summary>
        /// Determines the values for the matching parameters
        /// contained in the auto-list automatically.
        /// </summary>
        public void determineShapeParameter()
        {
            double    vald;
            int        vali, count;
            HTuple paramValue = new HTuple();
            HTuple paramList = new HTuple();
            
            if(mImage == null)
            {
                NotifyIconObserver(MatchingAssistant.ERR_NO_MODEL_DEFINED);
                return;
            }
            
            try
            {
                paramList = mImage.DetermineShapeModelParams(parameterSet.mNumLevel,                
                                                             (double)parameterSet.mStartingAngle,
                                                             (double)parameterSet.mAngleExtent,    
                                                             parameterSet.mMinScale,                
                                                             parameterSet.mMaxScale,                
                                                             parameterSet.mOptimization,            
                                                             parameterSet.mMetric,                
                                                             (int)parameterSet.mContrast,        
                                                             (int)parameterSet.mMinContrast,        
                                                             parameterSet.getAutoParList(),        
                                                             out paramValue);
            }
            catch(HOperatorException e)
            {
                exceptionText = e.Message;
                NotifyParamObserver(MatchingParam.H_ERR_MESSAGE);
                return;
            }
 
            count = paramList.Length;
            
            for(int i =0; i<count; i++)
            {
                switch ((string)paramList[i])
                {
                    case MatchingParam.AUTO_ANGLE_STEP: 
                        vald =  (double)paramValue[i];            
 
                        if(vald > angleStepUpB)
                            vald = angleStepUpB;
                        else if(vald < angleStepLowB)
                            vald = angleStepLowB;
 
                        parameterSet.mAngleStep = vald;
                        break;
                    case MatchingParam.AUTO_CONTRAST: 
                        vali = (int)paramValue[i];
            
                        if(vali > contrastUpB)
                            vali = contrastUpB;
                        else if (vali < contrastLowB)
                            vali = contrastLowB;
 
                        minContrastUpB = vali;
                        parameterSet.mContrast= vali;
                        
                        inspectShapeModel();
                        break;
                    case MatchingParam.AUTO_MIN_CONTRAST: 
                        vali = (int)paramValue[i];
 
                        if(vali > minContrastUpB)
                            vali = minContrastUpB;
                        else if(vali < minContrastLowB)
                            vali = minContrastLowB;
 
                        parameterSet.mMinContrast = vali;
                        break;
                    case MatchingParam.AUTO_NUM_LEVEL: 
                        vali = (int)paramValue[i];
 
                        if(vali > pyramLevUpB)
                            vali = pyramLevUpB;
                        else if(vali < pyramLevLowB)
                            vali = pyramLevLowB;
 
                        parameterSet.mNumLevel = vali;
                        break;
                    case MatchingParam.AUTO_OPTIMIZATION: 
                        parameterSet.mOptimization = (string)paramValue[i];
                        break;
                    case MatchingParam.AUTO_SCALE_STEP: 
                        vald = (double)paramValue[i];
 
                        if(vald > scaleStepUpB)
                            vald = scaleStepUpB;
                        else if (vald < scaleStepLowB)
                            vald = scaleStepLowB;
 
                        parameterSet.mScaleStep = vald; 
                        break;
                    default: 
                        break;
                }
                NotifyParamObserver((string)paramList[i]);
            }//end of for
 
            if (count!=0)
                createNewModelID = true;
        }
 
        /// <summary>
        /// Gets the range of either one of the parameters  
        /// AngleStep and ScaleStep, defined by <c>param</c>
        /// </summary>
        public int [] getStepRange(string param)
        {
            int [] range = new int[2];
        
            switch (param)
            {
                case MatchingParam.RANGE_ANGLE_STEP:
                    range [0] = (int)(angleStepLowB * 10.0 *180.0/Math.PI); //low
                    range [1] = (int)(angleStepUpB * 10.0 *180.0/Math.PI);  //up
                    break;
                case MatchingParam.RANGE_SCALE_STEP:
                    range [0] = (int) (scaleStepLowB * 1000.0); //low
                    range [1] = (int) (scaleStepUpB * 1000.0);  //up
                    break;
                default:
                    break;
            }
            return range;
        }
 
        /********************************************************************/
        /********************************************************************/
        private void dummy(int val)
        {
            return;
        }
        private void dummyS(string val)
        {
            return;
        }
 
        public void LoadPara(string path)
        {
            MatchingParamSave paraSave = new MatchingParamSave();
            paraSave = paraSave.Load(path);
            this.parameterSet = paraSave.TranParam(paraSave);
        }
 
    }//end of class
}//end of namespace