From eafdcc5ad6a55d3dfdec6c4787c3f3a9f32efc7f Mon Sep 17 00:00:00 2001 From: xcd <834800634@qq.com> Date: 星期二, 29 九月 2020 13:27:50 +0800 Subject: [PATCH] 1. M071B机台配置 2. GTS板卡添加回原点捕获模式和输入信号模式 3. CameraBase使用Dictionary类型做图片缓存 4. M071流程显式Copy,原来是为了避免内存泄漏,但目前来看不是这方面原因 5. Gocator驱动添加GoDataSet之类KObject资源显式回收,怀疑其中也有非托管对象资源,测试确实起到内存回收作用 --- M071B配置/Calculations/M071_CutImage1.hdvp | 57 + src/Bro.Device.GTSCard/GTSCardDriver.cs | 40 M071B配置/Calculations/M071_GetImageObjs3.hdvp | 64 + src/Bro.M071.Process/M071Process_MotionCard.cs | 3 M071B配置/Calculations/M071_RowAlignment.hdvp | 29 M071B配置/Configs/Config.json | 1 M071B配置/Calculations/Main.hdev | 23 src/Bro.M071.Process/M071Process.cs | 42 M071B配置/Calculations/temp.hdev | 28 M071B配置/Calculations/FilterValue.hdvp | 52 + src/Bro.Device.Gocator/GocatorDriver.cs | 32 src/Bro.M071.Process/UI/KeyIndicator.cs | 5 M071B配置/Calculations/M071_GetImageObjs2.hdvp | 64 + src/Bro.Common.Model/Model/MotionCardRelated.cs | 45 M071B配置/Configs/KeyBoard-小爱.bmp | 0 src/Bro.M071.Process/UI/M071_MainForm.cs | 21 M071B配置/Calculations/Test.hdev | 69 + M071B配置/Calculations/M071_GetImageObjs4.hdvp | 64 + M071B配置/Calculations/M071_GetImageObjs1.hdvp | 64 + M071B配置/Calculations/Mult_Test.hdev | 19 src/Bro.Common.Device/DeviceBase/CameraBase.cs | 44 M071B配置/Calculations/M071_GetResults.hdvp | 244 ++++++ src/Bro.UI.Device.Winform/MotionCard/CtrlMotionCardAxisStatus.cs | 2 M071B配置/Configs/0819.job | 0 M071B配置/Calculations/M071_GetImageObjs1_1.hdvp | 64 + M071B配置/Calculations/111111111111111111111111.hdev | 19 M071B配置/Calculations/M071_CutImage2.hdvp | 59 + src/Bro.M071.Process/M071Config.cs | 5 M071B配置/Calculations/Go2GenTL_ParseData.hdvp | 133 +++ M071B配置/Configs/M071B-GTS400-20200814.cfg | 734 ++++++++++++++++++ src/Bro.M071.Process/M071Models.cs | 52 + M071B配置/Calculations/Go2GenTLStamp.hdvp | 54 + M071B配置/Calculations/M071_GetImageObjs2_1.hdvp | 64 + M071B配置/Calculations/M071_GetImageObjs3_1.hdvp | 64 + M071B配置/Calculations/M071_Max_Min.hdvp | 33 35 files changed, 2,205 insertions(+), 88 deletions(-) diff --git "a/M071B\351\205\215\347\275\256/Calculations/111111111111111111111111.hdev" "b/M071B\351\205\215\347\275\256/Calculations/111111111111111111111111.hdev" new file mode 100644 index 0000000..c08f8e1 --- /dev/null +++ "b/M071B\351\205\215\347\275\256/Calculations/111111111111111111111111.hdev" @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="UTF-8"?> +<hdevelop file_version="1.1" halcon_version="12.0"> +<procedure name="main"> +<interface/> +<body> +<l>read_image (Image, 'C:/Users/admin/Desktop/113102242.tif')</l> +<l>gen_rectangle1 (ROI_0, 35.5082, 689.336, 53.5523, 706.658)</l> +<l>gen_rectangle1 (TMP_Region, 5137.27, 542, 5155.31, 562)</l> +<c></c> +<c></c> +<c></c> +<l>min_max_gray (TMP_Region, Image, 50, Min, Max, Range)</l> +<l>min_max_gray (ROI_0, Image, 50, Min, Max1, Range)</l> +</body> +<docu id="main"> +<parameters/> +</docu> +</procedure> +</hdevelop> diff --git "a/M071B\351\205\215\347\275\256/Calculations/FilterValue.hdvp" "b/M071B\351\205\215\347\275\256/Calculations/FilterValue.hdvp" new file mode 100644 index 0000000..5b04b6f --- /dev/null +++ "b/M071B\351\205\215\347\275\256/Calculations/FilterValue.hdvp" @@ -0,0 +1,52 @@ +<?xml version="1.0" encoding="UTF-8"?> +<hdevelop file_version="1.1" halcon_version="12.0"> +<procedure name="FilterValue"> +<interface> +<io> +<par name="ROI_calc" base_type="iconic" dimension="0"/> +<par name="ImagePart" base_type="iconic" dimension="0"/> +</io> +<ic> +<par name="Low" base_type="ctrl" dimension="0"/> +<par name="High" base_type="ctrl" dimension="0"/> +</ic> +<oc> +<par name="result" base_type="ctrl" dimension="0"/> +</oc> +</interface> +<body> +<c>*婊ゅ�煎嚱鏁�</c> +<l>if (Low + High > 100)</l> +<l> throw ('Filt is illegal')</l> +<l> return ()</l> +<l>endif</l> +<c></c> +<l>if (Low > 50)</l> +<l> min_max_gray (ROI_calc, ImagePart, 100 - Low, Min, LowGray, Range)</l> +<l> min_max_gray (ROI_calc, ImagePart, High, Min, HighGray, Range)</l> +<l>elseif (High > 50)</l> +<l> min_max_gray (ROI_calc, ImagePart, Low, LowGray, Max, Range)</l> +<l> min_max_gray (ROI_calc, ImagePart, 100 - High, HighGray, Max, Range)</l> +<l>else</l> +<l> min_max_gray (ROI_calc, ImagePart, Low, LowGray, Max, Range)</l> +<l> min_max_gray (ROI_calc, ImagePart, High, Min, HighGray, Range)</l> +<l>endif</l> +<c></c> +<l>reduce_domain (ImagePart, ROI_calc, ImageReduced) </l> +<l>threshold (ImageReduced, Region, LowGray, HighGray)</l> +<l>min_max_gray (Region, ImageReduced, 50, result, Max, Range)</l> +<c></c> +<l>return ()</l> +<c></c> +</body> +<docu id="FilterValue"> +<parameters> +<parameter id="High"/> +<parameter id="ImagePart"/> +<parameter id="Low"/> +<parameter id="ROI_calc"/> +<parameter id="result"/> +</parameters> +</docu> +</procedure> +</hdevelop> diff --git "a/M071B\351\205\215\347\275\256/Calculations/Go2GenTLStamp.hdvp" "b/M071B\351\205\215\347\275\256/Calculations/Go2GenTLStamp.hdvp" new file mode 100644 index 0000000..60ef1a3 --- /dev/null +++ "b/M071B\351\205\215\347\275\256/Calculations/Go2GenTLStamp.hdvp" @@ -0,0 +1,54 @@ +<?xml version="1.0" encoding="UTF-8"?> +<hdevelop file_version="1.1" halcon_version="12.0"> +<procedure name="Go2GenTLStamp"> +<interface> +<io> +<par name="Stamps" base_type="iconic" dimension="0"/> +</io> +<ic> +<par name="Index" base_type="ctrl" dimension="0"/> +</ic> +<oc> +<par name="Value" base_type="ctrl" dimension="0"/> +</oc> +</interface> +<body> +<c>* Check if we are on a 64-bit machine</c> +<l>test_value := 0xFFFFFFFF</l> +<l>if (test_value > 0)</l> +<l> is64bit := 1</l> +<l>else</l> +<l> is64bit := 0</l> +<l>endif</l> +<c>* </c> +<l>get_grayval (Stamps, 0, (Index * 4), tempvalue0)</l> +<l>get_grayval (Stamps, 0, (Index * 4) + 1, tempvalue1)</l> +<l>get_grayval (Stamps, 0, (Index * 4) + 2, tempvalue2)</l> +<l>get_grayval (Stamps, 0, (Index * 4) + 3, tempvalue3)</l> +<c>* </c> +<c>* The actual stamp from the Gocator is 64-bit. tempvalue0 is the most significant 16-bit (i.e. the top bit is the sign bit)</c> +<c>* The code below assumes we only need the bottom 32-bit information. User need to update this conversion function if they want to</c> +<c>* return 64-bit value.</c> +<c>* </c> +<l>if (is64bit = 1)</l> +<l> tuple_lsh (tempvalue0, 48, tempvalue0)</l> +<l> tuple_lsh (tempvalue1, 32, tempvalue1)</l> +<l> tuple_lsh (tempvalue2, 16, tempvalue2)</l> +<l> tuple_lsh (tempvalue3, 0, tempvalue3)</l> +<l> Value := tempvalue0 + tempvalue1 + tempvalue2 + tempvalue3</l> +<l>else</l> +<l> tuple_lsh (tempvalue2, 16, tempvalue2)</l> +<l> tuple_lsh (tempvalue3, 0, tempvalue3)</l> +<l> Value := tempvalue2 + tempvalue3</l> +<l>endif</l> +<l>return ()</l> +</body> +<docu id="Go2GenTLStamp"> +<parameters> +<parameter id="Index"/> +<parameter id="Stamps"/> +<parameter id="Value"/> +</parameters> +</docu> +</procedure> +</hdevelop> diff --git "a/M071B\351\205\215\347\275\256/Calculations/Go2GenTL_ParseData.hdvp" "b/M071B\351\205\215\347\275\256/Calculations/Go2GenTL_ParseData.hdvp" new file mode 100644 index 0000000..6e1d782 --- /dev/null +++ "b/M071B\351\205\215\347\275\256/Calculations/Go2GenTL_ParseData.hdvp" @@ -0,0 +1,133 @@ +<?xml version="1.0" encoding="UTF-8"?> +<hdevelop file_version="1.1" halcon_version="12.0"> +<procedure name="Go2GenTL_ParseData"> +<interface> +<io> +<par name="Image" base_type="iconic" dimension="0"/> +</io> +<oo> +<par name="HeightMap" base_type="iconic" dimension="0"/> +<par name="Intensity" base_type="iconic" dimension="0"/> +</oo> +<ic> +<par name="Index" base_type="ctrl" dimension="0"/> +</ic> +<oc> +<par name="FrameCount" base_type="ctrl" dimension="0"/> +<par name="Timestamp" base_type="ctrl" dimension="0"/> +<par name="EncoderPosition" base_type="ctrl" dimension="0"/> +<par name="EncoderIndex" base_type="ctrl" dimension="0"/> +<par name="Inputs" base_type="ctrl" dimension="0"/> +<par name="xOffset" base_type="ctrl" dimension="0"/> +<par name="xResolution" base_type="ctrl" dimension="0"/> +<par name="yOffset" base_type="ctrl" dimension="0"/> +<par name="yResolution" base_type="ctrl" dimension="0"/> +<par name="zOffset" base_type="ctrl" dimension="0"/> +<par name="zResolution" base_type="ctrl" dimension="0"/> +<par name="Width" base_type="ctrl" dimension="0"/> +<par name="Length" base_type="ctrl" dimension="0"/> +<par name="HasIntensity" base_type="ctrl" dimension="0"/> +<par name="NumScans" base_type="ctrl" dimension="0"/> +</oc> +</interface> +<body> +<l>count_channels (Image, channelCount)</l> +<c>* </c> +<l>if (channelCount = 1)</l> +<c> * </c> +<l> get_image_size (Image, monoImageWidth, monoImageHeight)</l> +<l> crop_rectangle1 (Image, Stamps, monoImageHeight - 1, 0, monoImageHeight-1, monoImageWidth)</l> +<c> * </c> +<l> Go2GenTLStamp (Stamps, 1, FrameCount)</l> +<l> Go2GenTLStamp (Stamps, 2, Timestamp)</l> +<l> Go2GenTLStamp (Stamps, 3, EncoderPosition)</l> +<l> Go2GenTLStamp (Stamps, 4, EncoderIndex)</l> +<l> Go2GenTLStamp (Stamps, 5, Inputs)</l> +<l> Go2GenTLStamp (Stamps, 6, xOffset)</l> +<l> Go2GenTLStamp (Stamps, 7, xResolution)</l> +<l> Go2GenTLStamp (Stamps, 8, yOffset)</l> +<l> Go2GenTLStamp (Stamps, 9, yResolution)</l> +<l> Go2GenTLStamp (Stamps, 10, zOffset)</l> +<l> Go2GenTLStamp (Stamps, 11, zResolution)</l> +<l> Go2GenTLStamp (Stamps, 12, Width)</l> +<l> Go2GenTLStamp (Stamps, 13, Length)</l> +<l> Go2GenTLStamp (Stamps, 14, HasIntensity)</l> +<l> Go2GenTLStamp (Stamps, 15, NumScans)</l> +<c> * </c> +<c> * * Mono output does not support multiple heightmaps, assuming index is 0</c> +<l> crop_rectangle1 (Image, HeightMap, 0, 0, Length - 1, Width)</l> +<l> if (HasIntensity = 1)</l> +<l> IntensityPosition := (monoImageHeight - 1)/2</l> +<l> crop_rectangle1 (Image, Intensity, IntensityPosition, 0, IntensityPosition + Length - 1, Width)</l> +<l> else</l> +<l> gen_image_const (Intensity, 'byte', Width, Length)</l> +<l> endif</l> +<c> * </c> +<l>elseif (channelCount = 3)</l> +<c> * </c> +<l> decompose3 (Image, HeightMap, Intensity, Stamps)</l> +<c> * </c> +<l> Go2GenTLStamp (Stamps, 1, FrameCount)</l> +<l> Go2GenTLStamp (Stamps, 2, Timestamp)</l> +<l> Go2GenTLStamp (Stamps, 3, EncoderPosition)</l> +<l> Go2GenTLStamp (Stamps, 4, EncoderIndex)</l> +<l> Go2GenTLStamp (Stamps, 5, Inputs)</l> +<l> Go2GenTLStamp (Stamps, 6, xOffset)</l> +<l> Go2GenTLStamp (Stamps, 7, xResolution)</l> +<l> Go2GenTLStamp (Stamps, 8, yOffset)</l> +<l> Go2GenTLStamp (Stamps, 9, yResolution)</l> +<l> Go2GenTLStamp (Stamps, 10, zOffset)</l> +<l> Go2GenTLStamp (Stamps, 11, zResolution)</l> +<l> Go2GenTLStamp (Stamps, 12, Width)</l> +<l> Go2GenTLStamp (Stamps, 13, Length)</l> +<l> Go2GenTLStamp (Stamps, 14, HasIntensity)</l> +<l> Go2GenTLStamp (Stamps, 15, NumScans)</l> +<c> * </c> +<c> * * Split Height Map</c> +<l> start := Index * (Length)</l> +<l> end := (Index+1) * (Length)</l> +<c> * </c> +<l> if (NumScans > Index)</l> +<l> crop_rectangle1 (HeightMap, HeightMap, start, 0, end, Width)</l> +<l> if (HasIntensity = 1)</l> +<l> crop_rectangle1 (Intensity, Intensity, start, 0, end, Width)</l> +<l> endif</l> +<l> endif</l> +<c> * </c> +<l>endif</l> +<c>* </c> +<c>* * Change Offset and resolution back to floating point and described in mm</c> +<l>xOffset := xOffset / 1000000.0</l> +<l>yOffset := yOffset / 1000000.0</l> +<l>zOffset := zOffset / 1000000.0</l> +<l>xResolution := xResolution / 1000000.0</l> +<l>yResolution := yResolution / 1000000.0</l> +<l>zResolution := zResolution / 1000000.0</l> +<c>* </c> +<l>return ()</l> +</body> +<docu id="Go2GenTL_ParseData"> +<parameters> +<parameter id="EncoderIndex"/> +<parameter id="EncoderPosition"/> +<parameter id="FrameCount"/> +<parameter id="HasIntensity"/> +<parameter id="HeightMap"/> +<parameter id="Image"/> +<parameter id="Index"/> +<parameter id="Inputs"/> +<parameter id="Intensity"/> +<parameter id="Length"/> +<parameter id="NumScans"/> +<parameter id="Timestamp"/> +<parameter id="Width"/> +<parameter id="xOffset"/> +<parameter id="xResolution"/> +<parameter id="yOffset"/> +<parameter id="yResolution"/> +<parameter id="zOffset"/> +<parameter id="zResolution"/> +</parameters> +</docu> +</procedure> +</hdevelop> diff --git "a/M071B\351\205\215\347\275\256/Calculations/M071_CutImage1.hdvp" "b/M071B\351\205\215\347\275\256/Calculations/M071_CutImage1.hdvp" new file mode 100644 index 0000000..a59bddf --- /dev/null +++ "b/M071B\351\205\215\347\275\256/Calculations/M071_CutImage1.hdvp" @@ -0,0 +1,57 @@ +<?xml version="1.0" encoding="UTF-8"?> +<hdevelop file_version="1.1" halcon_version="12.0"> +<procedure name="M071_CutImage1"> +<interface> +<io> +<par name="INPUT_Image" base_type="iconic" dimension="0"/> +</io> +<oo> +<par name="OUTPUT_Images" base_type="iconic" dimension="0"/> +</oo> +</interface> +<body> +<c>*闃堝�间慨鏀�</c> +<l>LowValue := 0</l> +<c></c> +<c>*绗竴鍒楀弬鏁�</c> +<l>Col1_begin := 110</l> +<l>Col1_end := 200</l> +<c>*绗簩鍒楀弬鏁�</c> +<l>Col2_begin := 250</l> +<l>Col2_end := 490</l> +<c>*绗笁鍒楀弬鏁�</c> +<l>Col3_begin := 530</l> +<l>Col3_end := 850</l> +<c></c> +<c>*浜屽�煎寲澶勭悊骞跺幓鍣�</c> +<l>threshold (INPUT_Image, Region, 3500 + LowValue, 12000)</l> +<l>dilation_rectangle1 (Region, RegionDilation, 3, 3)</l> +<l>connection (RegionDilation, ConnectedRegions)</l> +<l>select_shape (ConnectedRegions, SelectedRegions, 'area', 'and', 15000, 6000000)</l> +<c></c> +<c>*鎸夊垪鍒嗗壊</c> +<l>M071_GetImageObjs1_1 (SelectedRegions, INPUT_Image, ImageObjs1, Col1_begin, Col1_end)</l> +<l>M071_GetImageObjs2_1 (SelectedRegions, INPUT_Image, ImageObjs2, Col2_begin, Col2_end)</l> +<l>M071_GetImageObjs3_1 (SelectedRegions, INPUT_Image, ImageObjs3, Col3_begin, Col3_end)</l> +<c></c> +<c>*灏嗘墍鏈塐bjs鑱斿悎涓轰竴涓狾bjs杈撳嚭缁欎笂浣嶆満</c> +<l>concat_obj (ImageObjs1, ImageObjs2, OUTPUT_Images)</l> +<l>concat_obj (OUTPUT_Images, ImageObjs3, OUTPUT_Images)</l> +<l>count_obj (OUTPUT_Images, Number)</l> +<l>* if (Number < 43)</l> +<l>* select_obj (OUTPUT_Images, ObjectSelected, 1)</l> +<l>* for Index := 1 to 43 - Number by 1</l> +<l>* copy_image (ObjectSelected, DupImage)</l> +<l>* concat_obj (OUTPUT_Images, DupImage, OUTPUT_Images)</l> +<l>* endfor</l> +<l>* endif</l> +<l>return ()</l> +</body> +<docu id="M071_CutImage1"> +<parameters> +<parameter id="INPUT_Image"/> +<parameter id="OUTPUT_Images"/> +</parameters> +</docu> +</procedure> +</hdevelop> diff --git "a/M071B\351\205\215\347\275\256/Calculations/M071_CutImage2.hdvp" "b/M071B\351\205\215\347\275\256/Calculations/M071_CutImage2.hdvp" new file mode 100644 index 0000000..edc71e0 --- /dev/null +++ "b/M071B\351\205\215\347\275\256/Calculations/M071_CutImage2.hdvp" @@ -0,0 +1,59 @@ +<?xml version="1.0" encoding="UTF-8"?> +<hdevelop file_version="1.1" halcon_version="12.0"> +<procedure name="M071_CutImage2"> +<interface> +<io> +<par name="INPUT_Image" base_type="iconic" dimension="0"/> +</io> +<oo> +<par name="OUTPUT_Images" base_type="iconic" dimension="0"/> +</oo> +</interface> +<body> +<c>*闃堝�间慨鏀�</c> +<l>LowValue := 0</l> +<c></c> +<c>*绗竴鍒楀弬鏁�</c> +<l>Col1_begin := 0</l> +<l>Col1_end := 270</l> +<c>*绗簩鍒楀弬鏁�</c> +<l>Col2_begin := 290</l> +<l>Col2_end := 580</l> +<c>*绗笁鍒楀弬鏁�</c> +<l>Col3_begin := 600</l> +<l>Col3_end := 750</l> +<c>*绗洓鍒楀弬鏁�</c> +<l>Col4_begin := 770</l> +<l>Col4_end := 970</l> +<c></c> +<c></c> +<c>*浜屽�煎寲澶勭悊骞跺幓鍣�</c> +<l>threshold (INPUT_Image, Region, 3500 + LowValue, 12000)</l> +<l>dilation_rectangle1 (Region, RegionDilation, 5, 5)</l> +<c></c> +<c>*閫夋嫨杩為�氬煙</c> +<l>connection (RegionDilation, ConnectedRegions)</l> +<l>select_shape (ConnectedRegions, SelectedRegions, 'area', 'and', 25000, 600000)</l> +<c></c> +<c>*鎸夊垪鍒嗗壊</c> +<l>M071_GetImageObjs1 (SelectedRegions, INPUT_Image, ImageObjs1, Col1_begin, Col1_end)</l> +<l>M071_GetImageObjs2 (SelectedRegions, INPUT_Image, ImageObjs2, Col2_begin, Col2_end)</l> +<l>M071_GetImageObjs3 (SelectedRegions, INPUT_Image, ImageObjs3, Col3_begin, Col3_end)</l> +<c>*绗洓鍒椾粎鏈変竴涓狣own閿�</c> +<l>M071_GetImageObjs4 (SelectedRegions, INPUT_Image, ImageObjs4, Col4_begin, Col4_end)</l> +<c>*灏嗘墍鏈塐bjs鑱斿悎涓轰竴涓狾bjs杈撳嚭缁欎笂浣嶆満</c> +<l>concat_obj (ImageObjs1, ImageObjs2, OUTPUT_Images)</l> +<l>concat_obj (OUTPUT_Images, ImageObjs3, OUTPUT_Images)</l> +<l>concat_obj (OUTPUT_Images, ImageObjs4, OUTPUT_Images)</l> +<c></c> +<l>return ()</l> +<c></c> +</body> +<docu id="M071_CutImage2"> +<parameters> +<parameter id="INPUT_Image"/> +<parameter id="OUTPUT_Images"/> +</parameters> +</docu> +</procedure> +</hdevelop> diff --git "a/M071B\351\205\215\347\275\256/Calculations/M071_GetImageObjs1.hdvp" "b/M071B\351\205\215\347\275\256/Calculations/M071_GetImageObjs1.hdvp" new file mode 100644 index 0000000..f306ff6 --- /dev/null +++ "b/M071B\351\205\215\347\275\256/Calculations/M071_GetImageObjs1.hdvp" @@ -0,0 +1,64 @@ +<?xml version="1.0" encoding="UTF-8"?> +<hdevelop file_version="1.1" halcon_version="12.0"> +<procedure name="M071_GetImageObjs"> +<interface> +<io> +<par name="SelectedRegions" base_type="iconic" dimension="0"/> +<par name="Image" base_type="iconic" dimension="0"/> +</io> +<oo> +<par name="ImageObjs" base_type="iconic" dimension="0"/> +</oo> +<ic> +<par name="Col_begin" base_type="ctrl" dimension="0"/> +<par name="Col_end" base_type="ctrl" dimension="0"/> +</ic> +</interface> +<body> +<c>*閫夋嫨涓�鍒楅敭鐩�</c> +<l>select_shape (SelectedRegions, SelectedRegions_Col, 'column1', 'and', Col_begin, Col_end)</l> +<l>count_obj (SelectedRegions_Col, Number)</l> +<c></c> +<c>*鍒涘缓绌哄璞�</c> +<l>gen_empty_obj (RegionObjs)</l> +<l>gen_empty_obj (ImageObjs)</l> +<c></c> +<c>*閬嶅巻璇ュ垪閿洏鐨勬瘡涓�涓敭,灏嗘墍鏈夐敭鐨剅egion鏀惧叆涓�涓狾bjs</c> +<l>for Index := 1 to Number by 1</l> +<l> select_obj (SelectedRegions_Col, ObjectSelected, Index)</l> +<l> smallest_rectangle2 (ObjectSelected, Row, Column, Phi, Length1, Length2)</l> +<c> *灏嗗閫夊尯鍩熷鎵�</c> +<l> Length1 := Length1 + 40</l> +<l> Length2 := Length2 + 40</l> +<l> gen_rectangle2 (RegionObj, Row, Column, Phi, Length1, Length2)</l> +<c> *鎶婃墍鏈夐敭鐨勫浘鐗囨斁鍏ヤ竴涓狾bjs鍐�</c> +<l> concat_obj (RegionObjs, RegionObj, RegionObjs)</l> +<l> dev_clear_window ()</l> +<l> dev_display (Image)</l> +<l> dev_display (RegionObj)</l> +<l>endfor</l> +<c>*瀵箁egion杩涜鎺掑簭</c> +<l>sort_region (RegionObjs, RegionObjs, 'first_point', 'true', 'column')</l> +<l>sort_region (RegionObjs, RegionObjs, 'first_point', 'true', 'row')</l> +<c>*灏唕egion杞负image</c> +<l>for Index := 1 to Number by 1</l> +<l> select_obj (RegionObjs, Obj, Index)</l> +<l> reduce_domain (Image, Obj, ImageReduced)</l> +<l> crop_domain (ImageReduced, ImagePart)</l> +<l> concat_obj (ImageObjs, ImagePart, ImageObjs)</l> +<l>endfor</l> +<c></c> +<c></c> +<l>return ()</l> +</body> +<docu id="M071_GetImageObjs"> +<parameters> +<parameter id="Col_begin"/> +<parameter id="Col_end"/> +<parameter id="Image"/> +<parameter id="ImageObjs"/> +<parameter id="SelectedRegions"/> +</parameters> +</docu> +</procedure> +</hdevelop> diff --git "a/M071B\351\205\215\347\275\256/Calculations/M071_GetImageObjs1_1.hdvp" "b/M071B\351\205\215\347\275\256/Calculations/M071_GetImageObjs1_1.hdvp" new file mode 100644 index 0000000..f306ff6 --- /dev/null +++ "b/M071B\351\205\215\347\275\256/Calculations/M071_GetImageObjs1_1.hdvp" @@ -0,0 +1,64 @@ +<?xml version="1.0" encoding="UTF-8"?> +<hdevelop file_version="1.1" halcon_version="12.0"> +<procedure name="M071_GetImageObjs"> +<interface> +<io> +<par name="SelectedRegions" base_type="iconic" dimension="0"/> +<par name="Image" base_type="iconic" dimension="0"/> +</io> +<oo> +<par name="ImageObjs" base_type="iconic" dimension="0"/> +</oo> +<ic> +<par name="Col_begin" base_type="ctrl" dimension="0"/> +<par name="Col_end" base_type="ctrl" dimension="0"/> +</ic> +</interface> +<body> +<c>*閫夋嫨涓�鍒楅敭鐩�</c> +<l>select_shape (SelectedRegions, SelectedRegions_Col, 'column1', 'and', Col_begin, Col_end)</l> +<l>count_obj (SelectedRegions_Col, Number)</l> +<c></c> +<c>*鍒涘缓绌哄璞�</c> +<l>gen_empty_obj (RegionObjs)</l> +<l>gen_empty_obj (ImageObjs)</l> +<c></c> +<c>*閬嶅巻璇ュ垪閿洏鐨勬瘡涓�涓敭,灏嗘墍鏈夐敭鐨剅egion鏀惧叆涓�涓狾bjs</c> +<l>for Index := 1 to Number by 1</l> +<l> select_obj (SelectedRegions_Col, ObjectSelected, Index)</l> +<l> smallest_rectangle2 (ObjectSelected, Row, Column, Phi, Length1, Length2)</l> +<c> *灏嗗閫夊尯鍩熷鎵�</c> +<l> Length1 := Length1 + 40</l> +<l> Length2 := Length2 + 40</l> +<l> gen_rectangle2 (RegionObj, Row, Column, Phi, Length1, Length2)</l> +<c> *鎶婃墍鏈夐敭鐨勫浘鐗囨斁鍏ヤ竴涓狾bjs鍐�</c> +<l> concat_obj (RegionObjs, RegionObj, RegionObjs)</l> +<l> dev_clear_window ()</l> +<l> dev_display (Image)</l> +<l> dev_display (RegionObj)</l> +<l>endfor</l> +<c>*瀵箁egion杩涜鎺掑簭</c> +<l>sort_region (RegionObjs, RegionObjs, 'first_point', 'true', 'column')</l> +<l>sort_region (RegionObjs, RegionObjs, 'first_point', 'true', 'row')</l> +<c>*灏唕egion杞负image</c> +<l>for Index := 1 to Number by 1</l> +<l> select_obj (RegionObjs, Obj, Index)</l> +<l> reduce_domain (Image, Obj, ImageReduced)</l> +<l> crop_domain (ImageReduced, ImagePart)</l> +<l> concat_obj (ImageObjs, ImagePart, ImageObjs)</l> +<l>endfor</l> +<c></c> +<c></c> +<l>return ()</l> +</body> +<docu id="M071_GetImageObjs"> +<parameters> +<parameter id="Col_begin"/> +<parameter id="Col_end"/> +<parameter id="Image"/> +<parameter id="ImageObjs"/> +<parameter id="SelectedRegions"/> +</parameters> +</docu> +</procedure> +</hdevelop> diff --git "a/M071B\351\205\215\347\275\256/Calculations/M071_GetImageObjs2.hdvp" "b/M071B\351\205\215\347\275\256/Calculations/M071_GetImageObjs2.hdvp" new file mode 100644 index 0000000..f306ff6 --- /dev/null +++ "b/M071B\351\205\215\347\275\256/Calculations/M071_GetImageObjs2.hdvp" @@ -0,0 +1,64 @@ +<?xml version="1.0" encoding="UTF-8"?> +<hdevelop file_version="1.1" halcon_version="12.0"> +<procedure name="M071_GetImageObjs"> +<interface> +<io> +<par name="SelectedRegions" base_type="iconic" dimension="0"/> +<par name="Image" base_type="iconic" dimension="0"/> +</io> +<oo> +<par name="ImageObjs" base_type="iconic" dimension="0"/> +</oo> +<ic> +<par name="Col_begin" base_type="ctrl" dimension="0"/> +<par name="Col_end" base_type="ctrl" dimension="0"/> +</ic> +</interface> +<body> +<c>*閫夋嫨涓�鍒楅敭鐩�</c> +<l>select_shape (SelectedRegions, SelectedRegions_Col, 'column1', 'and', Col_begin, Col_end)</l> +<l>count_obj (SelectedRegions_Col, Number)</l> +<c></c> +<c>*鍒涘缓绌哄璞�</c> +<l>gen_empty_obj (RegionObjs)</l> +<l>gen_empty_obj (ImageObjs)</l> +<c></c> +<c>*閬嶅巻璇ュ垪閿洏鐨勬瘡涓�涓敭,灏嗘墍鏈夐敭鐨剅egion鏀惧叆涓�涓狾bjs</c> +<l>for Index := 1 to Number by 1</l> +<l> select_obj (SelectedRegions_Col, ObjectSelected, Index)</l> +<l> smallest_rectangle2 (ObjectSelected, Row, Column, Phi, Length1, Length2)</l> +<c> *灏嗗閫夊尯鍩熷鎵�</c> +<l> Length1 := Length1 + 40</l> +<l> Length2 := Length2 + 40</l> +<l> gen_rectangle2 (RegionObj, Row, Column, Phi, Length1, Length2)</l> +<c> *鎶婃墍鏈夐敭鐨勫浘鐗囨斁鍏ヤ竴涓狾bjs鍐�</c> +<l> concat_obj (RegionObjs, RegionObj, RegionObjs)</l> +<l> dev_clear_window ()</l> +<l> dev_display (Image)</l> +<l> dev_display (RegionObj)</l> +<l>endfor</l> +<c>*瀵箁egion杩涜鎺掑簭</c> +<l>sort_region (RegionObjs, RegionObjs, 'first_point', 'true', 'column')</l> +<l>sort_region (RegionObjs, RegionObjs, 'first_point', 'true', 'row')</l> +<c>*灏唕egion杞负image</c> +<l>for Index := 1 to Number by 1</l> +<l> select_obj (RegionObjs, Obj, Index)</l> +<l> reduce_domain (Image, Obj, ImageReduced)</l> +<l> crop_domain (ImageReduced, ImagePart)</l> +<l> concat_obj (ImageObjs, ImagePart, ImageObjs)</l> +<l>endfor</l> +<c></c> +<c></c> +<l>return ()</l> +</body> +<docu id="M071_GetImageObjs"> +<parameters> +<parameter id="Col_begin"/> +<parameter id="Col_end"/> +<parameter id="Image"/> +<parameter id="ImageObjs"/> +<parameter id="SelectedRegions"/> +</parameters> +</docu> +</procedure> +</hdevelop> diff --git "a/M071B\351\205\215\347\275\256/Calculations/M071_GetImageObjs2_1.hdvp" "b/M071B\351\205\215\347\275\256/Calculations/M071_GetImageObjs2_1.hdvp" new file mode 100644 index 0000000..f306ff6 --- /dev/null +++ "b/M071B\351\205\215\347\275\256/Calculations/M071_GetImageObjs2_1.hdvp" @@ -0,0 +1,64 @@ +<?xml version="1.0" encoding="UTF-8"?> +<hdevelop file_version="1.1" halcon_version="12.0"> +<procedure name="M071_GetImageObjs"> +<interface> +<io> +<par name="SelectedRegions" base_type="iconic" dimension="0"/> +<par name="Image" base_type="iconic" dimension="0"/> +</io> +<oo> +<par name="ImageObjs" base_type="iconic" dimension="0"/> +</oo> +<ic> +<par name="Col_begin" base_type="ctrl" dimension="0"/> +<par name="Col_end" base_type="ctrl" dimension="0"/> +</ic> +</interface> +<body> +<c>*閫夋嫨涓�鍒楅敭鐩�</c> +<l>select_shape (SelectedRegions, SelectedRegions_Col, 'column1', 'and', Col_begin, Col_end)</l> +<l>count_obj (SelectedRegions_Col, Number)</l> +<c></c> +<c>*鍒涘缓绌哄璞�</c> +<l>gen_empty_obj (RegionObjs)</l> +<l>gen_empty_obj (ImageObjs)</l> +<c></c> +<c>*閬嶅巻璇ュ垪閿洏鐨勬瘡涓�涓敭,灏嗘墍鏈夐敭鐨剅egion鏀惧叆涓�涓狾bjs</c> +<l>for Index := 1 to Number by 1</l> +<l> select_obj (SelectedRegions_Col, ObjectSelected, Index)</l> +<l> smallest_rectangle2 (ObjectSelected, Row, Column, Phi, Length1, Length2)</l> +<c> *灏嗗閫夊尯鍩熷鎵�</c> +<l> Length1 := Length1 + 40</l> +<l> Length2 := Length2 + 40</l> +<l> gen_rectangle2 (RegionObj, Row, Column, Phi, Length1, Length2)</l> +<c> *鎶婃墍鏈夐敭鐨勫浘鐗囨斁鍏ヤ竴涓狾bjs鍐�</c> +<l> concat_obj (RegionObjs, RegionObj, RegionObjs)</l> +<l> dev_clear_window ()</l> +<l> dev_display (Image)</l> +<l> dev_display (RegionObj)</l> +<l>endfor</l> +<c>*瀵箁egion杩涜鎺掑簭</c> +<l>sort_region (RegionObjs, RegionObjs, 'first_point', 'true', 'column')</l> +<l>sort_region (RegionObjs, RegionObjs, 'first_point', 'true', 'row')</l> +<c>*灏唕egion杞负image</c> +<l>for Index := 1 to Number by 1</l> +<l> select_obj (RegionObjs, Obj, Index)</l> +<l> reduce_domain (Image, Obj, ImageReduced)</l> +<l> crop_domain (ImageReduced, ImagePart)</l> +<l> concat_obj (ImageObjs, ImagePart, ImageObjs)</l> +<l>endfor</l> +<c></c> +<c></c> +<l>return ()</l> +</body> +<docu id="M071_GetImageObjs"> +<parameters> +<parameter id="Col_begin"/> +<parameter id="Col_end"/> +<parameter id="Image"/> +<parameter id="ImageObjs"/> +<parameter id="SelectedRegions"/> +</parameters> +</docu> +</procedure> +</hdevelop> diff --git "a/M071B\351\205\215\347\275\256/Calculations/M071_GetImageObjs3.hdvp" "b/M071B\351\205\215\347\275\256/Calculations/M071_GetImageObjs3.hdvp" new file mode 100644 index 0000000..f306ff6 --- /dev/null +++ "b/M071B\351\205\215\347\275\256/Calculations/M071_GetImageObjs3.hdvp" @@ -0,0 +1,64 @@ +<?xml version="1.0" encoding="UTF-8"?> +<hdevelop file_version="1.1" halcon_version="12.0"> +<procedure name="M071_GetImageObjs"> +<interface> +<io> +<par name="SelectedRegions" base_type="iconic" dimension="0"/> +<par name="Image" base_type="iconic" dimension="0"/> +</io> +<oo> +<par name="ImageObjs" base_type="iconic" dimension="0"/> +</oo> +<ic> +<par name="Col_begin" base_type="ctrl" dimension="0"/> +<par name="Col_end" base_type="ctrl" dimension="0"/> +</ic> +</interface> +<body> +<c>*閫夋嫨涓�鍒楅敭鐩�</c> +<l>select_shape (SelectedRegions, SelectedRegions_Col, 'column1', 'and', Col_begin, Col_end)</l> +<l>count_obj (SelectedRegions_Col, Number)</l> +<c></c> +<c>*鍒涘缓绌哄璞�</c> +<l>gen_empty_obj (RegionObjs)</l> +<l>gen_empty_obj (ImageObjs)</l> +<c></c> +<c>*閬嶅巻璇ュ垪閿洏鐨勬瘡涓�涓敭,灏嗘墍鏈夐敭鐨剅egion鏀惧叆涓�涓狾bjs</c> +<l>for Index := 1 to Number by 1</l> +<l> select_obj (SelectedRegions_Col, ObjectSelected, Index)</l> +<l> smallest_rectangle2 (ObjectSelected, Row, Column, Phi, Length1, Length2)</l> +<c> *灏嗗閫夊尯鍩熷鎵�</c> +<l> Length1 := Length1 + 40</l> +<l> Length2 := Length2 + 40</l> +<l> gen_rectangle2 (RegionObj, Row, Column, Phi, Length1, Length2)</l> +<c> *鎶婃墍鏈夐敭鐨勫浘鐗囨斁鍏ヤ竴涓狾bjs鍐�</c> +<l> concat_obj (RegionObjs, RegionObj, RegionObjs)</l> +<l> dev_clear_window ()</l> +<l> dev_display (Image)</l> +<l> dev_display (RegionObj)</l> +<l>endfor</l> +<c>*瀵箁egion杩涜鎺掑簭</c> +<l>sort_region (RegionObjs, RegionObjs, 'first_point', 'true', 'column')</l> +<l>sort_region (RegionObjs, RegionObjs, 'first_point', 'true', 'row')</l> +<c>*灏唕egion杞负image</c> +<l>for Index := 1 to Number by 1</l> +<l> select_obj (RegionObjs, Obj, Index)</l> +<l> reduce_domain (Image, Obj, ImageReduced)</l> +<l> crop_domain (ImageReduced, ImagePart)</l> +<l> concat_obj (ImageObjs, ImagePart, ImageObjs)</l> +<l>endfor</l> +<c></c> +<c></c> +<l>return ()</l> +</body> +<docu id="M071_GetImageObjs"> +<parameters> +<parameter id="Col_begin"/> +<parameter id="Col_end"/> +<parameter id="Image"/> +<parameter id="ImageObjs"/> +<parameter id="SelectedRegions"/> +</parameters> +</docu> +</procedure> +</hdevelop> diff --git "a/M071B\351\205\215\347\275\256/Calculations/M071_GetImageObjs3_1.hdvp" "b/M071B\351\205\215\347\275\256/Calculations/M071_GetImageObjs3_1.hdvp" new file mode 100644 index 0000000..f306ff6 --- /dev/null +++ "b/M071B\351\205\215\347\275\256/Calculations/M071_GetImageObjs3_1.hdvp" @@ -0,0 +1,64 @@ +<?xml version="1.0" encoding="UTF-8"?> +<hdevelop file_version="1.1" halcon_version="12.0"> +<procedure name="M071_GetImageObjs"> +<interface> +<io> +<par name="SelectedRegions" base_type="iconic" dimension="0"/> +<par name="Image" base_type="iconic" dimension="0"/> +</io> +<oo> +<par name="ImageObjs" base_type="iconic" dimension="0"/> +</oo> +<ic> +<par name="Col_begin" base_type="ctrl" dimension="0"/> +<par name="Col_end" base_type="ctrl" dimension="0"/> +</ic> +</interface> +<body> +<c>*閫夋嫨涓�鍒楅敭鐩�</c> +<l>select_shape (SelectedRegions, SelectedRegions_Col, 'column1', 'and', Col_begin, Col_end)</l> +<l>count_obj (SelectedRegions_Col, Number)</l> +<c></c> +<c>*鍒涘缓绌哄璞�</c> +<l>gen_empty_obj (RegionObjs)</l> +<l>gen_empty_obj (ImageObjs)</l> +<c></c> +<c>*閬嶅巻璇ュ垪閿洏鐨勬瘡涓�涓敭,灏嗘墍鏈夐敭鐨剅egion鏀惧叆涓�涓狾bjs</c> +<l>for Index := 1 to Number by 1</l> +<l> select_obj (SelectedRegions_Col, ObjectSelected, Index)</l> +<l> smallest_rectangle2 (ObjectSelected, Row, Column, Phi, Length1, Length2)</l> +<c> *灏嗗閫夊尯鍩熷鎵�</c> +<l> Length1 := Length1 + 40</l> +<l> Length2 := Length2 + 40</l> +<l> gen_rectangle2 (RegionObj, Row, Column, Phi, Length1, Length2)</l> +<c> *鎶婃墍鏈夐敭鐨勫浘鐗囨斁鍏ヤ竴涓狾bjs鍐�</c> +<l> concat_obj (RegionObjs, RegionObj, RegionObjs)</l> +<l> dev_clear_window ()</l> +<l> dev_display (Image)</l> +<l> dev_display (RegionObj)</l> +<l>endfor</l> +<c>*瀵箁egion杩涜鎺掑簭</c> +<l>sort_region (RegionObjs, RegionObjs, 'first_point', 'true', 'column')</l> +<l>sort_region (RegionObjs, RegionObjs, 'first_point', 'true', 'row')</l> +<c>*灏唕egion杞负image</c> +<l>for Index := 1 to Number by 1</l> +<l> select_obj (RegionObjs, Obj, Index)</l> +<l> reduce_domain (Image, Obj, ImageReduced)</l> +<l> crop_domain (ImageReduced, ImagePart)</l> +<l> concat_obj (ImageObjs, ImagePart, ImageObjs)</l> +<l>endfor</l> +<c></c> +<c></c> +<l>return ()</l> +</body> +<docu id="M071_GetImageObjs"> +<parameters> +<parameter id="Col_begin"/> +<parameter id="Col_end"/> +<parameter id="Image"/> +<parameter id="ImageObjs"/> +<parameter id="SelectedRegions"/> +</parameters> +</docu> +</procedure> +</hdevelop> diff --git "a/M071B\351\205\215\347\275\256/Calculations/M071_GetImageObjs4.hdvp" "b/M071B\351\205\215\347\275\256/Calculations/M071_GetImageObjs4.hdvp" new file mode 100644 index 0000000..f306ff6 --- /dev/null +++ "b/M071B\351\205\215\347\275\256/Calculations/M071_GetImageObjs4.hdvp" @@ -0,0 +1,64 @@ +<?xml version="1.0" encoding="UTF-8"?> +<hdevelop file_version="1.1" halcon_version="12.0"> +<procedure name="M071_GetImageObjs"> +<interface> +<io> +<par name="SelectedRegions" base_type="iconic" dimension="0"/> +<par name="Image" base_type="iconic" dimension="0"/> +</io> +<oo> +<par name="ImageObjs" base_type="iconic" dimension="0"/> +</oo> +<ic> +<par name="Col_begin" base_type="ctrl" dimension="0"/> +<par name="Col_end" base_type="ctrl" dimension="0"/> +</ic> +</interface> +<body> +<c>*閫夋嫨涓�鍒楅敭鐩�</c> +<l>select_shape (SelectedRegions, SelectedRegions_Col, 'column1', 'and', Col_begin, Col_end)</l> +<l>count_obj (SelectedRegions_Col, Number)</l> +<c></c> +<c>*鍒涘缓绌哄璞�</c> +<l>gen_empty_obj (RegionObjs)</l> +<l>gen_empty_obj (ImageObjs)</l> +<c></c> +<c>*閬嶅巻璇ュ垪閿洏鐨勬瘡涓�涓敭,灏嗘墍鏈夐敭鐨剅egion鏀惧叆涓�涓狾bjs</c> +<l>for Index := 1 to Number by 1</l> +<l> select_obj (SelectedRegions_Col, ObjectSelected, Index)</l> +<l> smallest_rectangle2 (ObjectSelected, Row, Column, Phi, Length1, Length2)</l> +<c> *灏嗗閫夊尯鍩熷鎵�</c> +<l> Length1 := Length1 + 40</l> +<l> Length2 := Length2 + 40</l> +<l> gen_rectangle2 (RegionObj, Row, Column, Phi, Length1, Length2)</l> +<c> *鎶婃墍鏈夐敭鐨勫浘鐗囨斁鍏ヤ竴涓狾bjs鍐�</c> +<l> concat_obj (RegionObjs, RegionObj, RegionObjs)</l> +<l> dev_clear_window ()</l> +<l> dev_display (Image)</l> +<l> dev_display (RegionObj)</l> +<l>endfor</l> +<c>*瀵箁egion杩涜鎺掑簭</c> +<l>sort_region (RegionObjs, RegionObjs, 'first_point', 'true', 'column')</l> +<l>sort_region (RegionObjs, RegionObjs, 'first_point', 'true', 'row')</l> +<c>*灏唕egion杞负image</c> +<l>for Index := 1 to Number by 1</l> +<l> select_obj (RegionObjs, Obj, Index)</l> +<l> reduce_domain (Image, Obj, ImageReduced)</l> +<l> crop_domain (ImageReduced, ImagePart)</l> +<l> concat_obj (ImageObjs, ImagePart, ImageObjs)</l> +<l>endfor</l> +<c></c> +<c></c> +<l>return ()</l> +</body> +<docu id="M071_GetImageObjs"> +<parameters> +<parameter id="Col_begin"/> +<parameter id="Col_end"/> +<parameter id="Image"/> +<parameter id="ImageObjs"/> +<parameter id="SelectedRegions"/> +</parameters> +</docu> +</procedure> +</hdevelop> diff --git "a/M071B\351\205\215\347\275\256/Calculations/M071_GetResults.hdvp" "b/M071B\351\205\215\347\275\256/Calculations/M071_GetResults.hdvp" new file mode 100644 index 0000000..a48eb37 --- /dev/null +++ "b/M071B\351\205\215\347\275\256/Calculations/M071_GetResults.hdvp" @@ -0,0 +1,244 @@ +<?xml version="1.0" encoding="UTF-8"?> +<hdevelop file_version="1.1" halcon_version="12.0"> +<procedure name="M071_GetResults"> +<interface> +<io> +<par name="INPUT_Image" base_type="iconic" dimension="0"/> +</io> +<ic> +<par name="INPUT_Resolution_X" base_type="ctrl" dimension="0"/> +<par name="INPUT_Resolution_Y" base_type="ctrl" dimension="0"/> +<par name="INPUT_Resolution_Z" base_type="ctrl" dimension="0"/> +<par name="INPUT_ImageId" base_type="ctrl" dimension="0"/> +</ic> +<oc> +<par name="OUTPUT_Results" base_type="ctrl" dimension="0"/> +</oc> +</interface> +<body> +<c>*闃堝�间慨鏀�</c> +<l>LowValue := 0</l> +<c>*鍙栧�煎崐寰�</c> +<l>resultRadius := 8</l> +<c>*婊ゅ�煎弬鏁�</c> +<l>Low := 5</l> +<l>High := 10</l> +<c></c> +<l>z1 := []</l> +<l>z2 := []</l> +<l>z3 := []</l> +<l>z4 := []</l> +<l>OUTPUT_Results := []</l> +<c></c> +<c>*棰勫鐞嗚幏鍙栨渶灏忓鎺ョ煩褰�</c> +<l>threshold (INPUT_Image, Region, 3500 + LowValue, 12000)</l> +<l>dilation_rectangle1 (Region, Region, 5, 5)</l> +<l>connection (Region, ConnectedRegions)</l> +<l>select_shape (ConnectedRegions, SelectedRegions, 'area', 'and', 20000, 600000)</l> +<l>smallest_rectangle2 (SelectedRegions, Row, Column, Phi, Length1, Length2)</l> +<l>gen_rectangle2 (Rectangle, Row, Column, Phi, Length1 - (1.9/INPUT_Resolution_X), Length2 - (1.9/INPUT_Resolution_X))</l> +<c></c> +<c>*璁$畻rectangle2鍥涗釜椤剁偣鍧愭爣</c> +<l>tuple_cos (Phi, Cos)</l> +<l>tuple_sin (Phi, Sin)</l> +<c>*宸︿笂</c> +<l>a := Length1*Cos - Length2*Sin</l> +<l>b := Length1*Sin + Length2*Cos</l> +<c>*鍙充笂</c> +<l>c := Length1*Cos + Length2*Sin</l> +<l>d := Length1*Sin - Length2*Cos</l> +<c>*鍙充笅</c> +<l>e := -Length1*Cos + Length2*Sin</l> +<l>f := -Length1*Sin - Length2*Cos</l> +<c>*宸︿笅</c> +<l>g := -Length1*Cos - Length2*Sin</l> +<l>h := -Length1*Sin + Length2*Cos</l> +<c></c> +<c>*鐭╁舰鍥涚偣鍧愭爣</c> +<l>A := [Row - h, Column + g]</l> +<l>B := [Row - b, Column + a]</l> +<l>C := [Row - f, Column + e]</l> +<l>D := [Row - d, Column + c]</l> +<c></c> +<c>*鍒ゆ柇鍧愭爣浣嶇疆骞舵帓搴�</c> +<l>if(A[1] < Column)</l> +<l> if (A[0] < Row)</l> +<l> z1[0] := A[0]</l> +<l> z1[1] := A[1]</l> +<l> else</l> +<l> z2[0] := A[0]</l> +<l> z2[1] := A[1]</l> +<l> endif</l> +<l>elseif (A[1] > Column)</l> +<l> if (A[0] < Row)</l> +<l> z3[0] := A[0]</l> +<l> z3[1] := A[1]</l> +<l> else</l> +<l> z4[0] := A[0]</l> +<l> z4[1] := A[1]</l> +<l> endif</l> +<l>endif</l> +<l>if(B[1] < Column)</l> +<l> if (B[0] < Row)</l> +<l> z1[0] := B[0]</l> +<l> z1[1] := B[1]</l> +<l> else</l> +<l> z2[0] := B[0]</l> +<l> z2[1] := B[1]</l> +<l> endif</l> +<l>elseif (B[1] > Column)</l> +<l> if (B[0] < Row)</l> +<l> z3[0] := B[0]</l> +<l> z3[1] := B[1]</l> +<l> else</l> +<l> z4[0] := B[0]</l> +<l> z4[1] := B[1]</l> +<l> endif</l> +<l>endif</l> +<l>if(C[1] < Column)</l> +<l> if (C[0] < Row)</l> +<l> z1[0] := C[0]</l> +<l> z1[1] := C[1]</l> +<l> else</l> +<l> z2[0] := C[0]</l> +<l> z2[1] := C[1]</l> +<l> endif</l> +<l>elseif (C[1] > Column)</l> +<l> if (C[0] < Row)</l> +<l> z3[0] := C[0]</l> +<l> z3[1] := C[1]</l> +<l> else</l> +<l> z4[0] := C[0]</l> +<l> z4[1] := C[1]</l> +<l> endif</l> +<l>endif</l> +<l>if(D[1] < Column)</l> +<l> if (D[0] < Row)</l> +<l> z1[0] := D[0]</l> +<l> z1[1] := D[1]</l> +<l> else</l> +<l> z2[0] := D[0]</l> +<l> z2[1] := D[1]</l> +<l> endif</l> +<l>elseif (D[1] > Column)</l> +<l> if (D[0] < Row)</l> +<l> z3[0] := D[0]</l> +<l> z3[1] := D[1]</l> +<l> else</l> +<l> z4[0] := D[0]</l> +<l> z4[1] := D[1]</l> +<l> endif</l> +<l>endif</l> +<c></c> +<c>*鎵�鏈夌偣鍚戝唴缂�1.9mm</c> +<l>z1[0] := z1[0] + (1.9/INPUT_Resolution_Y)</l> +<l>z1[1] := z1[1] + (1.9/INPUT_Resolution_X)</l> +<l>z2[0] := z2[0] - (1.9/INPUT_Resolution_Y)</l> +<l>z2[1] := z2[1] + (1.9/INPUT_Resolution_X)</l> +<l>z3[0] := z3[0] + (1.9/INPUT_Resolution_Y)</l> +<l>z3[1] := z3[1] - (1.9/INPUT_Resolution_X)</l> +<l>z4[0] := z4[0] - (1.9/INPUT_Resolution_Y)</l> +<l>z4[1] := z4[1] - (1.9/INPUT_Resolution_X)</l> +<c></c> +<c>*鏄剧ず鍙栫偣涓績</c> +<l>gen_cross_contour_xld(Cross, z1[0], z1[1], 6, Phi)</l> +<l>gen_cross_contour_xld(Cross, z2[0], z2[1], 6, Phi)</l> +<l>gen_cross_contour_xld(Cross, z3[0], z3[1], 6, Phi)</l> +<l>gen_cross_contour_xld(Cross, z4[0], z4[1], 6, Phi)</l> +<c></c> +<c></c> +<c>*鑾峰彇Z1鍊硷紝婊ゅ��</c> +<l>gen_circle (Circle, z1[0], z1[1], resultRadius)</l> +<l>if (Low > 50)</l> +<l> min_max_gray (Circle, INPUT_Image, 100 - Low, Min, LowGray, Range)</l> +<l> min_max_gray (Circle, INPUT_Image, High, Min, HighGray, Range)</l> +<l>elseif (High > 50)</l> +<l> min_max_gray (Circle, INPUT_Image, Low, LowGray, Max, Range)</l> +<l> min_max_gray (Circle, INPUT_Image, 100 - High, HighGray, Max, Range)</l> +<l>else</l> +<l> min_max_gray (Circle, INPUT_Image, 50, LowGray, HighGray, Range)</l> +<l>endif</l> +<c>*濡傛灉涓婁笅闄愮浉绛夛紝鍒欑洿鎺ュ彇涓綅鏁帮紝鍚﹀垯婊ゅ��</c> +<l>if(LowGray == HighGray)</l> +<l> result1 := LowGray</l> +<l>else</l> +<l> reduce_domain (INPUT_Image, Circle, ImageReduced) </l> +<l> threshold (ImageReduced, Region, LowGray, HighGray)</l> +<l> min_max_gray (Region, ImageReduced, 50, result1, Max, Range)</l> +<l>endif</l> +<c></c> +<c>*鑾峰彇Z2鍊硷紝婊ゅ��</c> +<l>gen_circle (Circle, z2[0], z2[1], resultRadius)</l> +<l>if (Low > 50)</l> +<l> min_max_gray (Circle, INPUT_Image, 100 - Low, Min, LowGray, Range)</l> +<l> min_max_gray (Circle, INPUT_Image, High, Min, HighGray, Range)</l> +<l>elseif (High > 50)</l> +<l> min_max_gray (Circle, INPUT_Image, Low, LowGray, Max, Range)</l> +<l> min_max_gray (Circle, INPUT_Image, 100 - High, HighGray, Max, Range)</l> +<l>else</l> +<l> min_max_gray (Circle, INPUT_Image, 50, LowGray, HighGray, Range)</l> +<l>endif</l> +<c>*濡傛灉涓婁笅闄愮浉绛夛紝鍒欑洿鎺ュ彇涓綅鏁帮紝鍚﹀垯婊ゅ��</c> +<l>if(LowGray == HighGray)</l> +<l> result2 := LowGray</l> +<l>else</l> +<l> reduce_domain (INPUT_Image, Circle, ImageReduced) </l> +<l> threshold (ImageReduced, Region, LowGray, HighGray)</l> +<l> min_max_gray (Region, ImageReduced, 50, result2, Max, Range)</l> +<l>endif</l> +<c></c> +<c>*鑾峰彇Z3鍊硷紝婊ゅ��</c> +<l>gen_circle (Circle, z3[0], z3[1], resultRadius)</l> +<l>if (Low > 50)</l> +<l> min_max_gray (Circle, INPUT_Image, 100 - Low, Min, LowGray, Range)</l> +<l> min_max_gray (Circle, INPUT_Image, High, Min, HighGray, Range)</l> +<l>elseif (High > 50)</l> +<l> min_max_gray (Circle, INPUT_Image, Low, LowGray, Max, Range)</l> +<l> min_max_gray (Circle, INPUT_Image, 100 - High, HighGray, Max, Range)</l> +<l>else</l> +<l> min_max_gray (Circle, INPUT_Image, 50, LowGray, HighGray, Range)</l> +<l>endif</l> +<c>*濡傛灉涓婁笅闄愮浉绛夛紝鍒欑洿鎺ュ彇涓綅鏁帮紝鍚﹀垯婊ゅ��</c> +<l>if(LowGray == HighGray)</l> +<l> result3 := LowGray</l> +<l>else</l> +<l> reduce_domain (INPUT_Image, Circle, ImageReduced) </l> +<l> threshold (ImageReduced, Region, LowGray, HighGray)</l> +<l> min_max_gray (Region, ImageReduced, 50, result3, Max, Range)</l> +<l>endif</l> +<c></c> +<c>*鑾峰彇Z4鍊硷紝婊ゅ��</c> +<l>gen_circle (Circle, z4[0], z4[1], resultRadius)</l> +<l>if (Low > 50)</l> +<l> min_max_gray (Circle, INPUT_Image, 100 - Low, Min, LowGray, Range)</l> +<l> min_max_gray (Circle, INPUT_Image, High, Min, HighGray, Range)</l> +<l>elseif (High > 50)</l> +<l> min_max_gray (Circle, INPUT_Image, Low, LowGray, Max, Range)</l> +<l> min_max_gray (Circle, INPUT_Image, 100 - High, HighGray, Max, Range)</l> +<l>else</l> +<l> min_max_gray (Circle, INPUT_Image, 50, LowGray, HighGray, Range)</l> +<l>endif</l> +<c>*濡傛灉涓婁笅闄愮浉绛夛紝鍒欑洿鎺ュ彇涓綅鏁帮紝鍚﹀垯婊ゅ��</c> +<l>if(LowGray == HighGray)</l> +<l> result4 := LowGray</l> +<l>else</l> +<l> reduce_domain (INPUT_Image, Circle, ImageReduced) </l> +<l> threshold (ImageReduced, Region, LowGray, HighGray)</l> +<l> min_max_gray (Region, ImageReduced, 50, result4, Max, Range)</l> +<l>endif</l> +<c></c> +<l>OUTPUT_Results := [result1*INPUT_Resolution_Z, result2*INPUT_Resolution_Z, result3*INPUT_Resolution_Z, result4*INPUT_Resolution_Z]</l> +<l>return ()</l> +</body> +<docu id="M071_GetResults"> +<parameters> +<parameter id="INPUT_Image"/> +<parameter id="INPUT_ImageId"/> +<parameter id="INPUT_Resolution_X"/> +<parameter id="INPUT_Resolution_Y"/> +<parameter id="INPUT_Resolution_Z"/> +<parameter id="OUTPUT_Results"/> +</parameters> +</docu> +</procedure> +</hdevelop> diff --git "a/M071B\351\205\215\347\275\256/Calculations/M071_Max_Min.hdvp" "b/M071B\351\205\215\347\275\256/Calculations/M071_Max_Min.hdvp" new file mode 100644 index 0000000..43d0f7b --- /dev/null +++ "b/M071B\351\205\215\347\275\256/Calculations/M071_Max_Min.hdvp" @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="UTF-8"?> +<hdevelop file_version="1.1" halcon_version="12.0"> +<procedure name="M071_Max_Min"> +<interface> +<ic> +<par name="INPUT_Params" base_type="ctrl" dimension="0"/> +</ic> +<oc> +<par name="OUTPUT_Result" base_type="ctrl" dimension="0"/> +</oc> +</interface> +<body> +<c>*鍒ゆ柇鏄惁鏈�-999</c> +<l>for Index := 0 to |INPUT_Params| - 1 by 1</l> +<l> if (INPUT_Params[Index] == -999)</l> +<l> OUTPUT_Result := -999</l> +<l> return ()</l> +<l> endif</l> +<l>endfor</l> +<c>*姹傚��</c> +<l>tuple_max (INPUT_Params, Max)</l> +<l>tuple_min (INPUT_Params, Min)</l> +<l>OUTPUT_Result := Max - Min</l> +<l>return ()</l> +</body> +<docu id="M071_Max_Min"> +<parameters> +<parameter id="INPUT_Params"/> +<parameter id="OUTPUT_Result"/> +</parameters> +</docu> +</procedure> +</hdevelop> diff --git "a/M071B\351\205\215\347\275\256/Calculations/M071_RowAlignment.hdvp" "b/M071B\351\205\215\347\275\256/Calculations/M071_RowAlignment.hdvp" new file mode 100644 index 0000000..37a4872 --- /dev/null +++ "b/M071B\351\205\215\347\275\256/Calculations/M071_RowAlignment.hdvp" @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="UTF-8"?> +<hdevelop file_version="1.1" halcon_version="12.0"> +<procedure name="M071_Max_Min2"> +<interface> +<ic> +<par name="INPUT_Params" base_type="ctrl" dimension="0"/> +</ic> +<oc> +<par name="OUTPUT_Result" base_type="ctrl" dimension="0"/> +</oc> +</interface> +<body> +<l>tempTuple := []</l> +<l>for Index := 0 to |INPUT_Params| - 1 by 2</l> +<l> tempTuple[Index] := abs(INPUT_Params[Index] - INPUT_Params[Index + 1])</l> +<l>endfor</l> +<l>tuple_max (tempTuple, Max)</l> +<l>tuple_min (tempTuple, Min)</l> +<l>OUTPUT_Result := Max - Min</l> +<l>return ()</l> +</body> +<docu id="M071_Max_Min2"> +<parameters> +<parameter id="INPUT_Params"/> +<parameter id="OUTPUT_Result"/> +</parameters> +</docu> +</procedure> +</hdevelop> diff --git "a/M071B\351\205\215\347\275\256/Calculations/Main.hdev" "b/M071B\351\205\215\347\275\256/Calculations/Main.hdev" new file mode 100644 index 0000000..a7c5ada --- /dev/null +++ "b/M071B\351\205\215\347\275\256/Calculations/Main.hdev" @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="UTF-8"?> +<hdevelop file_version="1.1" halcon_version="12.0"> +<procedure name="main"> +<interface/> +<body> +<l>read_image (Image, 'D:/PROJECTS/M071/Images/20200821/Origin/153757310.tif')</l> +<l>M071_CutImage2 (Image, ImageObjs)</l> +<l>select_obj (ImageObjs, ImageObj, 36)</l> +<c></c> +<c></c> +<l>M071_GetResults (ImageObj, 0.057, 0.07, 0.0003, 1, outputResults)</l> +<c></c> +<c></c> +<c></c> +<c></c> +<c></c> +<c></c> +</body> +<docu id="main"> +<parameters/> +</docu> +</procedure> +</hdevelop> diff --git "a/M071B\351\205\215\347\275\256/Calculations/Mult_Test.hdev" "b/M071B\351\205\215\347\275\256/Calculations/Mult_Test.hdev" new file mode 100644 index 0000000..1f8f1f2 --- /dev/null +++ "b/M071B\351\205\215\347\275\256/Calculations/Mult_Test.hdev" @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="UTF-8"?> +<hdevelop file_version="1.1" halcon_version="12.0"> +<procedure name="main"> +<interface/> +<body> +<l>read_image (Image, 'D:/PROJECTS/M071/Images/20200821/Origin/163126048.tif')</l> +<c></c> +<l>M071_CutImage1 (Image, OUTPUT_Images)</l> +<l>count_obj (OUTPUT_Images, Number)</l> +<l>for Index := 1 to Number by 1</l> +<l> select_obj (OUTPUT_Images, ObjectSelected, Index)</l> +<l> M071_GetResults (ObjectSelected, 0.057, 0.07, 0.0003, Index, OUTPUT_Results)</l> +<l>endfor</l> +</body> +<docu id="main"> +<parameters/> +</docu> +</procedure> +</hdevelop> diff --git "a/M071B\351\205\215\347\275\256/Calculations/Test.hdev" "b/M071B\351\205\215\347\275\256/Calculations/Test.hdev" new file mode 100644 index 0000000..928ac0e --- /dev/null +++ "b/M071B\351\205\215\347\275\256/Calculations/Test.hdev" @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8"?> +<hdevelop file_version="1.1" halcon_version="12.0"> +<procedure name="main"> +<interface/> +<body> +<c>*杈撳叆鍥剧墖璺緞锛屼緥濡傦細'D:/test/1.tif',娉ㄦ剰浣跨敤鍙嶆枩鏉�'/'</c> +<l>Path1 := ''</l> +<l>read_image (Image1, 'D:/PROJECTS/M071/Images/20200819/Origin/132913772.tif')</l> +<l>Path2 := ''</l> +<l>read_image (Image2, 'D:/PROJECTS/M071/Images/20200819/Origin/132917302.tif')</l> +<l>Number1 := 0</l> +<l>Number2 := 0</l> +<c></c> +<c>*绗嚑寮犲浘</c> +<l>Pic := 2</l> +<c>*绗嚑涓敭</c> +<l>KeyNum := 12</l> +<c></c> +<l>SinglePic := 0</l> +<l>if (SinglePic == 0)</l> +<l> if (KeyNum <= 0 or KeyNum > 43)</l> +<l> throw ('KeyNum is illegal!')</l> +<l> endif</l> +<c> </c> +<l> if (Pic == 1)</l> +<l> try</l> +<l> M071_CutImage1 (Image1, OUTPUT_Images)</l> +<l> count_obj (OUTPUT_Images, Number1)</l> +<l> select_obj (OUTPUT_Images, ObjectSelected, KeyNum)</l> +<l> catch (Exception)</l> +<l> throw ('鎴浘1寮傚父')</l> +<l> stop ()</l> +<l> endtry</l> +<c> </c> +<l> elseif (Pic == 2)</l> +<l> try</l> +<l> M071_CutImage2 (Image2, OUTPUT_Images)</l> +<l> count_obj (OUTPUT_Images, Number2)</l> +<l> select_obj (OUTPUT_Images, ObjectSelected, KeyNum)</l> +<l> catch (Exception)</l> +<l> throw ('鎴浘2寮傚父')</l> +<l> stop ()</l> +<l> endtry</l> +<c> </c> +<l> else</l> +<l> throw('Image number is illegal!')</l> +<l> endif</l> +<c> </c> +<l> if (Number1 == 43 or Number2 == 36)</l> +<l> try</l> +<l> M071_GetResults (ObjectSelected, 0.056, 0.0008,0, OUTPUT_Results)</l> +<l> catch (Exception)</l> +<l> throw ('鏁版嵁璁$畻寮傚父')</l> +<l> stop ()</l> +<l> endtry</l> +<l> endif</l> +<l>else</l> +<l> M071_GetResults (Image2, 0.056, 0.0008,0, OUTPUT_Results)</l> +<l>endif</l> +<c></c> +<c></c> +<c></c> +<c></c> +</body> +<docu id="main"> +<parameters/> +</docu> +</procedure> +</hdevelop> diff --git "a/M071B\351\205\215\347\275\256/Calculations/temp.hdev" "b/M071B\351\205\215\347\275\256/Calculations/temp.hdev" new file mode 100644 index 0000000..5c4d9ad --- /dev/null +++ "b/M071B\351\205\215\347\275\256/Calculations/temp.hdev" @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="UTF-8"?> +<hdevelop file_version="1.1" halcon_version="12.0"> +<procedure name="main"> +<interface/> +<body> +<c as_id="image_acquisition" as_name="Image Acquisition 01" as_grp="[1,1]" as_ord="1">* Image Acquisition 01: Code generated by Image Acquisition 01</c> +<l as_id="image_acquisition" as_name="Image Acquisition 01" as_grp="[1,2]" as_ord="1">list_files ('D:/niko.zhang/鏂板缓鏂囦欢澶�/Origin/Origin', ['files','follow_links'], ImageFiles)</l> +<l as_id="image_acquisition" as_name="Image Acquisition 01" as_grp="[1,3]" as_ord="1">tuple_regexp_select (ImageFiles, ['\\.(tif|tiff|gif|bmp|jpg|jpeg|jp2|png|pcx|pgm|ppm|pbm|xwd|ima|hobj)$','ignore_case'], ImageFiles)</l> +<l as_id="image_acquisition" as_name="Image Acquisition 01" as_grp="[2,2]" as_ord="1">for Index := 0 to |ImageFiles| - 1 by 1</l> +<l as_id="image_acquisition" as_name="Image Acquisition 01" as_grp="[2,3]" as_ord="1"> read_image (Image, ImageFiles[Index])</l> +<c as_id="image_acquisition" as_name="Image Acquisition 01" as_grp="[2,4]" as_ord="1"> * Image Acquisition 01: Do something</c> +<l> threshold (Image, Region, 9000, 12000)</l> +<l> reduce_domain (Image, Region, ImageReduced)</l> +<l> crop_domain (ImageReduced, ImagePart)</l> +<l> gen_rectangle1 (ROI_0, 80, 55, 289, 283)</l> +<l> gen_rectangle1 (TMP_Region, 5096, 55, 5305, 283)</l> +<c></c> +<l> min_max_gray (ROI_0, ImagePart, 0, Min, Max, Range)</l> +<l> min_max_gray (TMP_Region, ImagePart, 0, Min1, Max1, Range1)</l> +<l> result := Max - Max1</l> +<l as_id="image_acquisition" as_name="Image Acquisition 01" as_grp="[3,1]" as_ord="1">endfor</l> +<c></c> +</body> +<docu id="main"> +<parameters/> +</docu> +</procedure> +</hdevelop> diff --git "a/M071B\351\205\215\347\275\256/Configs/0819.job" "b/M071B\351\205\215\347\275\256/Configs/0819.job" new file mode 100644 index 0000000..2ab4932 --- /dev/null +++ "b/M071B\351\205\215\347\275\256/Configs/0819.job" Binary files differ diff --git "a/M071B\351\205\215\347\275\256/Configs/Config.json" "b/M071B\351\205\215\347\275\256/Configs/Config.json" new file mode 100644 index 0000000..fdf1ce8 --- /dev/null +++ "b/M071B\351\205\215\347\275\256/Configs/Config.json" @@ -0,0 +1 @@ +锘縶"$type":"Bro.M071.Process.M071Config, Bro.M071.Process","KeyNameCollection":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["ESC","F1","F2","F3","F4","F5","F6","F7","F8","F9","F10","F11","F12","Delete","Power","`","1","2","3","4","5","6","7","8","9","0","-","=","Backspace","Tab","Q","W","E","R","T","Y","U","I","O","P","[","]","BackSlash","CapsLock","A","S","D","F","G","H","J","K","L",";","'","Enter","ShiftLeft","Z","X","C","V","B","N","M","COMMA",".","Slash","ShiftRight","CtrlLeft","Fn","Win","AltLeft","Space","AltRight","CtrlRight","Left","Up","Down","Right"]},"MeasureTypeCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.MeasureType, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0},{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0},{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"RowAlignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_RowAlignment.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}]},"KeyAlgorithemCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyAlgorithem, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyAlgorithem, Bro.M071.Process","Id":"744bc4da-586d-4264-8a52-8c5e28c55de8","Name":"閫氱敤鍗曢敭","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp"}]},"KeyResultCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyResult, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyResult, Bro.M071.Process","Id":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b","Name":"閫氱敤","Results":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]}}]},"BackgroundImagePath":"D:\\PROJECTS\\M071\\Configs\\KeyBoard-灏忕埍.bmp","KeyLocationCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyLocation, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyLocation, Bro.M071.Process","Key":"ESC","KeyRect":"16, 18, 60, 30","IntervalRect":"0, 0, 8, 0"},{"$type":"Bro.M071.Process.KeyLocation, Bro.M071.Process","Key":"`","KeyRect":"16, 57, 62, 62","IntervalRect":"0, 0, 9, 62"},{"$type":"Bro.M071.Process.KeyLocation, Bro.M071.Process","Key":"Q","KeyRect":"108, 128, 62, 62","IntervalRect":"0, 0, 9, 62"},{"$type":"Bro.M071.Process.KeyLocation, Bro.M071.Process","Key":"A","KeyRect":"134, 198, 62, 62","IntervalRect":"0, 0, 9, 62"},{"$type":"Bro.M071.Process.KeyLocation, Bro.M071.Process","Key":"Z","KeyRect":"169, 268, 62, 62","IntervalRect":"0, 0, 9, 62"},{"$type":"Bro.M071.Process.KeyLocation, Bro.M071.Process","Key":"CtrlLeft","KeyRect":"16, 338, 62, 62","IntervalRect":"0, 0, 9, 62"},{"$type":"Bro.M071.Process.KeyLocation, Bro.M071.Process","Key":"AltRight","KeyRect":"667, 337, 62, 62","IntervalRect":"0, 0, 9, 62"},{"$type":"Bro.M071.Process.KeyLocation, Bro.M071.Process","Key":"Tab","KeyRect":"16, 128, 83, 62","IntervalRect":"0, 0, 9, 62"},{"$type":"Bro.M071.Process.KeyLocation, Bro.M071.Process","Key":"CapsLock","KeyRect":"16, 198, 109, 62","IntervalRect":"0, 0, 0, 0"},{"$type":"Bro.M071.Process.KeyLocation, Bro.M071.Process","Key":"ShiftLeft","KeyRect":"16, 268, 144, 62","IntervalRect":"0, 0, 0, 0"}]},"SnapshotPointCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.SnapshotPoint, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.SnapshotPoint, Bro.M071.Process","Id":"4876b14e-7fe2-41fc-a586-916fcad86a6a","Name":"鍑嗗鍔ㄤ綔","IsEnabled":true,"MotionOp":{"$type":"Bro.Common.Model.DeviceOpBind, Bro.Common.Model","Device":"332E52C9-8CD2-4B22-B2DA-C4125F93BF66","OpConfig":{"$type":"Bro.Device.GTSCard.GTSCardOperationConfig, Bro.Device.GTSCard","OperationCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Base.MotionCardOperationSet, Bro.Common.Device]], mscorlib","$values":[{"$type":"Bro.Common.Base.MotionCardOperationSet, Bro.Common.Device","MotionCardId":"332E52C9-8CD2-4B22-B2DA-C4125F93BF66","PreCheckIOCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[{"$type":"Bro.Common.Model.IORefrenceItem, Bro.Common.Model","IOItem":{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"浜у搧鏈夋棤1","Remark":null,"IONum":6,"IOType":0},"CheckValue":1},{"$type":"Bro.Common.Model.IORefrenceItem, Bro.Common.Model","IOItem":{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"浜у搧鏈夋棤2","Remark":null,"IONum":7,"IOType":0},"CheckValue":1},{"$type":"Bro.Common.Model.IORefrenceItem, Bro.Common.Model","IOItem":{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"浜у搧闃插憜","Remark":null,"IONum":8,"IOType":0},"CheckValue":1}]},"PreCheckIOTimeout":300,"IOOutputCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[]},"IOConfirmCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[]},"IOConfirmTimeout":0,"MovingOps":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.MovingOption, Bro.Common.Model]], mscorlib","$values":[]},"DelayBefore":0,"DelayAfter":0},{"$type":"Bro.Common.Base.MotionCardOperationSet, Bro.Common.Device","MotionCardId":"332E52C9-8CD2-4B22-B2DA-C4125F93BF66","PreCheckIOCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[]},"PreCheckIOTimeout":0,"IOOutputCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[{"$type":"Bro.Common.Model.IORefrenceItem, Bro.Common.Model","IOItem":{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"鍓嶅悗姘旂几鍒版娴嬩綅","Remark":null,"IONum":7,"IOType":1},"CheckValue":1},{"$type":"Bro.Common.Model.IORefrenceItem, Bro.Common.Model","IOItem":{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"鍓嶅悗姘旂几鍒板噯澶囦綅","Remark":null,"IONum":6,"IOType":1},"CheckValue":0}]},"IOConfirmCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[{"$type":"Bro.Common.Model.IORefrenceItem, Bro.Common.Model","IOItem":{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"鍓嶅悗姘旂几鍦ㄦ娴嬩綅","Remark":null,"IONum":13,"IOType":0},"CheckValue":1}]},"IOConfirmTimeout":0,"MovingOps":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.MovingOption, Bro.Common.Model]], mscorlib","$values":[]},"DelayBefore":0,"DelayAfter":1000},{"$type":"Bro.Common.Base.MotionCardOperationSet, Bro.Common.Device","MotionCardId":"332E52C9-8CD2-4B22-B2DA-C4125F93BF66","PreCheckIOCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[]},"PreCheckIOTimeout":0,"IOOutputCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[{"$type":"Bro.Common.Model.IORefrenceItem, Bro.Common.Model","IOItem":{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"澶圭揣姘旂几","Remark":"0锛氬噯澶囦綅 1锛氭娴嬩綅","IONum":5,"IOType":1},"CheckValue":1}]},"IOConfirmCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[{"$type":"Bro.Common.Model.IORefrenceItem, Bro.Common.Model","IOItem":{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"澶圭揣姘旂几鍦ㄦ娴嬩綅","Remark":null,"IONum":11,"IOType":0},"CheckValue":1},{"$type":"Bro.Common.Model.IORefrenceItem, Bro.Common.Model","IOItem":{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"澶圭揣姘旂几鍦ㄥ噯澶囦綅","Remark":null,"IONum":10,"IOType":0},"CheckValue":0}]},"IOConfirmTimeout":0,"MovingOps":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.MovingOption, Bro.Common.Model]], mscorlib","$values":[]},"DelayBefore":0,"DelayAfter":0}]},"ExceptionValue":0,"ReTryTimes":1,"MonitorSetId":""}},"CameraOp":{"$type":"Bro.Common.Model.DeviceOpBind, Bro.Common.Model","Device":null,"OpConfig":null}},{"$type":"Bro.M071.Process.SnapshotPoint, Bro.M071.Process","Id":"13b2acd2-a2c9-4ed5-96aa-e6793940736d","Name":"璧峰鐐�","IsEnabled":true,"MotionOp":{"$type":"Bro.Common.Model.DeviceOpBind, Bro.Common.Model","Device":"332E52C9-8CD2-4B22-B2DA-C4125F93BF66","OpConfig":{"$type":"Bro.Device.GTSCard.GTSCardOperationConfig, Bro.Device.GTSCard","OperationCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Base.MotionCardOperationSet, Bro.Common.Device]], mscorlib","$values":[{"$type":"Bro.Common.Base.MotionCardOperationSet, Bro.Common.Device","MotionCardId":"332E52C9-8CD2-4B22-B2DA-C4125F93BF66","PreCheckIOCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[]},"PreCheckIOTimeout":0,"IOOutputCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[]},"IOConfirmCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[]},"IOConfirmTimeout":0,"MovingOps":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.MovingOption, Bro.Common.Model]], mscorlib","$values":[{"$type":"Bro.Common.Model.MovingOption, Bro.Common.Model","AxisIndexStr":"1","MoveMode":1,"IsAbsolute":true,"Destination":609634,"VelocityPara":{"$type":"Bro.Common.Model.VelocityPara, Bro.Common.Model","Velocity":200.0,"Acc":800.0,"Dec":800.0},"MovingTimeout":0},{"$type":"Bro.Common.Model.MovingOption, Bro.Common.Model","AxisIndexStr":"2","MoveMode":1,"IsAbsolute":true,"Destination":148279,"VelocityPara":{"$type":"Bro.Common.Model.VelocityPara, Bro.Common.Model","Velocity":200.0,"Acc":1000.0,"Dec":1000.0},"MovingTimeout":0}]},"DelayBefore":0,"DelayAfter":0}]},"ExceptionValue":0,"ReTryTimes":1,"MonitorSetId":""}},"CameraOp":{"$type":"Bro.Common.Model.DeviceOpBind, Bro.Common.Model","Device":"31EEF8F6-225D-46CF-AE74-8EF5DD08CC53","OpConfig":{"$type":"Bro.Device.Gocator.GocatorOperationConfig, Bro.Device.Gocator","JobName":null,"IsSnapshotAction":false,"IsOpenConnection":true,"ExposureAfterSnap":0.0,"ExposureWaitTime":0,"Gain":0.0,"Exposure":0.0,"AlgorithemPath":"","ImageSaveOption":{"$type":"Bro.Common.Base.ImageSaveOption, Bro.Common.Device","ImageSaveSubDirectory":null,"IsSaveOriginImage":true,"ImageFormat":"Jpeg","IsSaveFitImage":false,"AddtionalSaveType":""},"DelayBefore":0,"DelayAfter":0,"ExceptionValue":0,"ReTryTimes":1,"MonitorSetId":""}}},{"$type":"Bro.M071.Process.SnapshotPoint, Bro.M071.Process","Id":"c357cffe-bc46-4ee9-976e-a727e3b23832","Name":"鍙栧儚鐐�1","IsEnabled":true,"MotionOp":{"$type":"Bro.Common.Model.DeviceOpBind, Bro.Common.Model","Device":"332E52C9-8CD2-4B22-B2DA-C4125F93BF66","OpConfig":{"$type":"Bro.Device.GTSCard.GTSCardOperationConfig, Bro.Device.GTSCard","OperationCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Base.MotionCardOperationSet, Bro.Common.Device]], mscorlib","$values":[{"$type":"Bro.Common.Base.MotionCardOperationSet, Bro.Common.Device","MotionCardId":"332E52C9-8CD2-4B22-B2DA-C4125F93BF66","PreCheckIOCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[]},"PreCheckIOTimeout":0,"IOOutputCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[]},"IOConfirmCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[]},"IOConfirmTimeout":0,"MovingOps":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.MovingOption, Bro.Common.Model]], mscorlib","$values":[{"$type":"Bro.Common.Model.MovingOption, Bro.Common.Model","AxisIndexStr":"1","MoveMode":1,"IsAbsolute":true,"Destination":-5000,"VelocityPara":{"$type":"Bro.Common.Model.VelocityPara, Bro.Common.Model","Velocity":200.0,"Acc":800.0,"Dec":800.0},"MovingTimeout":0}]},"DelayBefore":0,"DelayAfter":0}]},"ExceptionValue":0,"ReTryTimes":3,"MonitorSetId":""}},"CameraOp":{"$type":"Bro.Common.Model.DeviceOpBind, Bro.Common.Model","Device":"31EEF8F6-225D-46CF-AE74-8EF5DD08CC53","OpConfig":{"$type":"Bro.Device.Gocator.GocatorOperationConfig, Bro.Device.Gocator","JobName":null,"IsSnapshotAction":true,"IsOpenConnection":false,"ExposureAfterSnap":0.0,"ExposureWaitTime":0,"Gain":0.0,"Exposure":0.0,"AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_CutImage1.hdvp","ImageSaveOption":{"$type":"Bro.Common.Base.ImageSaveOption, Bro.Common.Device","ImageSaveSubDirectory":null,"IsSaveOriginImage":true,"ImageFormat":"Jpeg","IsSaveFitImage":false,"AddtionalSaveType":""},"DelayBefore":250,"DelayAfter":0,"ExceptionValue":0,"ReTryTimes":3,"MonitorSetId":""}}},{"$type":"Bro.M071.Process.SnapshotPoint, Bro.M071.Process","Id":"4651dd33-2ba7-4527-8bf6-ebd2c8784b21","Name":"浜岃璧风偣","IsEnabled":true,"MotionOp":{"$type":"Bro.Common.Model.DeviceOpBind, Bro.Common.Model","Device":"332E52C9-8CD2-4B22-B2DA-C4125F93BF66","OpConfig":{"$type":"Bro.Device.GTSCard.GTSCardOperationConfig, Bro.Device.GTSCard","OperationCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Base.MotionCardOperationSet, Bro.Common.Device]], mscorlib","$values":[{"$type":"Bro.Common.Base.MotionCardOperationSet, Bro.Common.Device","MotionCardId":"332E52C9-8CD2-4B22-B2DA-C4125F93BF66","PreCheckIOCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[]},"PreCheckIOTimeout":0,"IOOutputCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[]},"IOConfirmCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[]},"IOConfirmTimeout":0,"MovingOps":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.MovingOption, Bro.Common.Model]], mscorlib","$values":[{"$type":"Bro.Common.Model.MovingOption, Bro.Common.Model","AxisIndexStr":"2","MoveMode":1,"IsAbsolute":true,"Destination":96532,"VelocityPara":{"$type":"Bro.Common.Model.VelocityPara, Bro.Common.Model","Velocity":0.0,"Acc":0.0,"Dec":0.0},"MovingTimeout":0},{"$type":"Bro.Common.Model.MovingOption, Bro.Common.Model","AxisIndexStr":"1","MoveMode":1,"IsAbsolute":true,"Destination":32029,"VelocityPara":{"$type":"Bro.Common.Model.VelocityPara, Bro.Common.Model","Velocity":0.0,"Acc":0.0,"Dec":0.0},"MovingTimeout":0}]},"DelayBefore":0,"DelayAfter":0}]},"ExceptionValue":0,"ReTryTimes":1,"MonitorSetId":""}},"CameraOp":{"$type":"Bro.Common.Model.DeviceOpBind, Bro.Common.Model","Device":"31EEF8F6-225D-46CF-AE74-8EF5DD08CC53","OpConfig":{"$type":"Bro.Device.Gocator.GocatorOperationConfig, Bro.Device.Gocator","JobName":null,"IsSnapshotAction":false,"IsOpenConnection":true,"ExposureAfterSnap":0.0,"ExposureWaitTime":0,"Gain":0.0,"Exposure":0.0,"AlgorithemPath":"","ImageSaveOption":{"$type":"Bro.Common.Base.ImageSaveOption, Bro.Common.Device","ImageSaveSubDirectory":null,"IsSaveOriginImage":true,"ImageFormat":"Jpeg","IsSaveFitImage":false,"AddtionalSaveType":""},"DelayBefore":0,"DelayAfter":0,"ExceptionValue":0,"ReTryTimes":1,"MonitorSetId":""}}},{"$type":"Bro.M071.Process.SnapshotPoint, Bro.M071.Process","Id":"54a7db2a-c32e-4c60-a1b6-f9db8dd6bc51","Name":"鍙栧儚鐐�2","IsEnabled":true,"MotionOp":{"$type":"Bro.Common.Model.DeviceOpBind, Bro.Common.Model","Device":"332E52C9-8CD2-4B22-B2DA-C4125F93BF66","OpConfig":{"$type":"Bro.Device.GTSCard.GTSCardOperationConfig, Bro.Device.GTSCard","OperationCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Base.MotionCardOperationSet, Bro.Common.Device]], mscorlib","$values":[{"$type":"Bro.Common.Base.MotionCardOperationSet, Bro.Common.Device","MotionCardId":"332E52C9-8CD2-4B22-B2DA-C4125F93BF66","PreCheckIOCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[]},"PreCheckIOTimeout":0,"IOOutputCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[]},"IOConfirmCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[]},"IOConfirmTimeout":0,"MovingOps":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.MovingOption, Bro.Common.Model]], mscorlib","$values":[{"$type":"Bro.Common.Model.MovingOption, Bro.Common.Model","AxisIndexStr":"1","MoveMode":1,"IsAbsolute":true,"Destination":646364,"VelocityPara":{"$type":"Bro.Common.Model.VelocityPara, Bro.Common.Model","Velocity":200.0,"Acc":0.0,"Dec":0.0},"MovingTimeout":0}]},"DelayBefore":0,"DelayAfter":0}]},"ExceptionValue":0,"ReTryTimes":3,"MonitorSetId":""}},"CameraOp":{"$type":"Bro.Common.Model.DeviceOpBind, Bro.Common.Model","Device":"31EEF8F6-225D-46CF-AE74-8EF5DD08CC53","OpConfig":{"$type":"Bro.Device.Gocator.GocatorOperationConfig, Bro.Device.Gocator","JobName":null,"IsSnapshotAction":true,"IsOpenConnection":false,"ExposureAfterSnap":0.0,"ExposureWaitTime":0,"Gain":0.0,"Exposure":0.0,"AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_CutImage2.hdvp","ImageSaveOption":{"$type":"Bro.Common.Base.ImageSaveOption, Bro.Common.Device","ImageSaveSubDirectory":null,"IsSaveOriginImage":true,"ImageFormat":"Jpeg","IsSaveFitImage":false,"AddtionalSaveType":""},"DelayBefore":250,"DelayAfter":0,"ExceptionValue":0,"ReTryTimes":3,"MonitorSetId":""}}},{"$type":"Bro.M071.Process.SnapshotPoint, Bro.M071.Process","Id":"8ece298f-5fb9-4e90-a95c-f945b653598c","Name":"绛夊緟浣嶇疆","IsEnabled":true,"MotionOp":{"$type":"Bro.Common.Model.DeviceOpBind, Bro.Common.Model","Device":"332E52C9-8CD2-4B22-B2DA-C4125F93BF66","OpConfig":{"$type":"Bro.Device.GTSCard.GTSCardOperationConfig, Bro.Device.GTSCard","OperationCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Base.MotionCardOperationSet, Bro.Common.Device]], mscorlib","$values":[{"$type":"Bro.Common.Base.MotionCardOperationSet, Bro.Common.Device","MotionCardId":"332E52C9-8CD2-4B22-B2DA-C4125F93BF66","PreCheckIOCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[]},"PreCheckIOTimeout":0,"IOOutputCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[]},"IOConfirmCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[]},"IOConfirmTimeout":0,"MovingOps":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.MovingOption, Bro.Common.Model]], mscorlib","$values":[{"$type":"Bro.Common.Model.MovingOption, Bro.Common.Model","AxisIndexStr":"2","MoveMode":1,"IsAbsolute":true,"Destination":0,"VelocityPara":{"$type":"Bro.Common.Model.VelocityPara, Bro.Common.Model","Velocity":0.0,"Acc":0.0,"Dec":0.0},"MovingTimeout":0},{"$type":"Bro.Common.Model.MovingOption, Bro.Common.Model","AxisIndexStr":"1","MoveMode":1,"IsAbsolute":true,"Destination":609634,"VelocityPara":{"$type":"Bro.Common.Model.VelocityPara, Bro.Common.Model","Velocity":0.0,"Acc":0.0,"Dec":0.0},"MovingTimeout":0}]},"DelayBefore":0,"DelayAfter":0},{"$type":"Bro.Common.Base.MotionCardOperationSet, Bro.Common.Device","MotionCardId":"332E52C9-8CD2-4B22-B2DA-C4125F93BF66","PreCheckIOCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[]},"PreCheckIOTimeout":0,"IOOutputCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[{"$type":"Bro.Common.Model.IORefrenceItem, Bro.Common.Model","IOItem":{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"澶圭揣姘旂几","Remark":"0锛氬噯澶囦綅 1锛氭娴嬩綅","IONum":5,"IOType":1},"CheckValue":0}]},"IOConfirmCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[{"$type":"Bro.Common.Model.IORefrenceItem, Bro.Common.Model","IOItem":{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"澶圭揣姘旂几鍦ㄥ噯澶囦綅","Remark":null,"IONum":10,"IOType":0},"CheckValue":1},{"$type":"Bro.Common.Model.IORefrenceItem, Bro.Common.Model","IOItem":{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"澶圭揣姘旂几鍦ㄦ娴嬩綅","Remark":null,"IONum":11,"IOType":0},"CheckValue":0}]},"IOConfirmTimeout":0,"MovingOps":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.MovingOption, Bro.Common.Model]], mscorlib","$values":[]},"DelayBefore":0,"DelayAfter":1000},{"$type":"Bro.Common.Base.MotionCardOperationSet, Bro.Common.Device","MotionCardId":"332E52C9-8CD2-4B22-B2DA-C4125F93BF66","PreCheckIOCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[]},"PreCheckIOTimeout":0,"IOOutputCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[{"$type":"Bro.Common.Model.IORefrenceItem, Bro.Common.Model","IOItem":{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"鍓嶅悗姘旂几鍒板噯澶囦綅","Remark":null,"IONum":6,"IOType":1},"CheckValue":1},{"$type":"Bro.Common.Model.IORefrenceItem, Bro.Common.Model","IOItem":{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"鍓嶅悗姘旂几鍒版娴嬩綅","Remark":null,"IONum":7,"IOType":1},"CheckValue":0}]},"IOConfirmCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[{"$type":"Bro.Common.Model.IORefrenceItem, Bro.Common.Model","IOItem":{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"鍓嶅悗姘旂几鍦ㄥ噯澶囦綅","Remark":null,"IONum":12,"IOType":0},"CheckValue":1},{"$type":"Bro.Common.Model.IORefrenceItem, Bro.Common.Model","IOItem":{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"鍓嶅悗姘旂几鍦ㄦ娴嬩綅","Remark":null,"IONum":13,"IOType":0},"CheckValue":0}]},"IOConfirmTimeout":0,"MovingOps":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.MovingOption, Bro.Common.Model]], mscorlib","$values":[]},"DelayBefore":0,"DelayAfter":0}]},"ExceptionValue":0,"ReTryTimes":3,"MonitorSetId":""}},"CameraOp":{"$type":"Bro.Common.Model.DeviceOpBind, Bro.Common.Model","Device":null,"OpConfig":null}}]},"KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnit, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"ESC","AliasName":"ESC","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":1,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"F1","AliasName":"F1","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":2,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"F2","AliasName":"F2","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":3,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"F3","AliasName":"F3","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":4,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"F4","AliasName":"F4","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":5,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"F5","AliasName":"F5","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":6,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"F6","AliasName":"F6","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":7,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"F7","AliasName":"F7","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":8,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"F8","AliasName":"F8","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":9,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"F9","AliasName":"F9","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":10,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"F10","AliasName":"F10","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":11,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"F11","AliasName":"F11","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":12,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"F12","AliasName":"F12","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":13,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"Delete","AliasName":"Delete","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":14,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"Power","AliasName":"Power","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":15,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"`","AliasName":"`","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":16,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"1","AliasName":"1","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":17,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"2","AliasName":"2","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":18,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"3","AliasName":"3","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":19,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"4","AliasName":"4","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":20,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"5","AliasName":"5","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":21,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"6","AliasName":"6","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":22,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"7","AliasName":"7","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":23,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"8","AliasName":"8","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":24,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"9","AliasName":"9","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":25,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"0","AliasName":"0","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":26,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"-","AliasName":"-","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":27,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"=","AliasName":"=","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":28,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"Backspace","AliasName":"Backspace","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":29,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"Tab","AliasName":"Tab","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":30,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"Q","AliasName":"Q","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":31,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"W","AliasName":"W","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":32,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"E","AliasName":"E","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":33,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"R","AliasName":"R","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":34,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"T","AliasName":"T","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":35,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"Y","AliasName":"Y","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":36,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"U","AliasName":"U","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":37,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"I","AliasName":"I","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":38,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"O","AliasName":"O","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":39,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"P","AliasName":"P","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":40,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"[","AliasName":"[","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":41,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"]","AliasName":"]","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":42,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"BackSlash","AliasName":"BackSlash","IsEnabled":true,"SnapshotPointId":"c357cffe-bc46-4ee9-976e-a727e3b23832","ImageSeq":43,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"CapsLock","AliasName":"CapsLock","IsEnabled":true,"SnapshotPointId":"54a7db2a-c32e-4c60-a1b6-f9db8dd6bc51","ImageSeq":1,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"A","AliasName":"A","IsEnabled":true,"SnapshotPointId":"54a7db2a-c32e-4c60-a1b6-f9db8dd6bc51","ImageSeq":2,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"S","AliasName":"S","IsEnabled":true,"SnapshotPointId":"54a7db2a-c32e-4c60-a1b6-f9db8dd6bc51","ImageSeq":3,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"D","AliasName":"D","IsEnabled":true,"SnapshotPointId":"54a7db2a-c32e-4c60-a1b6-f9db8dd6bc51","ImageSeq":4,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"F","AliasName":"F","IsEnabled":true,"SnapshotPointId":"54a7db2a-c32e-4c60-a1b6-f9db8dd6bc51","ImageSeq":5,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"G","AliasName":"G","IsEnabled":true,"SnapshotPointId":"54a7db2a-c32e-4c60-a1b6-f9db8dd6bc51","ImageSeq":6,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"H","AliasName":"H","IsEnabled":true,"SnapshotPointId":"54a7db2a-c32e-4c60-a1b6-f9db8dd6bc51","ImageSeq":7,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"J","AliasName":"J","IsEnabled":true,"SnapshotPointId":"54a7db2a-c32e-4c60-a1b6-f9db8dd6bc51","ImageSeq":8,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"K","AliasName":"K","IsEnabled":true,"SnapshotPointId":"54a7db2a-c32e-4c60-a1b6-f9db8dd6bc51","ImageSeq":9,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"L","AliasName":"L","IsEnabled":true,"SnapshotPointId":"54a7db2a-c32e-4c60-a1b6-f9db8dd6bc51","ImageSeq":10,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":";","AliasName":";","IsEnabled":true,"SnapshotPointId":"54a7db2a-c32e-4c60-a1b6-f9db8dd6bc51","ImageSeq":11,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"'","AliasName":"'","IsEnabled":true,"SnapshotPointId":"54a7db2a-c32e-4c60-a1b6-f9db8dd6bc51","ImageSeq":12,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"Enter","AliasName":"Enter","IsEnabled":true,"SnapshotPointId":"54a7db2a-c32e-4c60-a1b6-f9db8dd6bc51","ImageSeq":13,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"ShiftLeft","AliasName":"ShiftLeft","IsEnabled":true,"SnapshotPointId":"54a7db2a-c32e-4c60-a1b6-f9db8dd6bc51","ImageSeq":14,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"Z","AliasName":"Z","IsEnabled":true,"SnapshotPointId":"54a7db2a-c32e-4c60-a1b6-f9db8dd6bc51","ImageSeq":15,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"X","AliasName":"X","IsEnabled":true,"SnapshotPointId":"54a7db2a-c32e-4c60-a1b6-f9db8dd6bc51","ImageSeq":16,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"C","AliasName":"C","IsEnabled":true,"SnapshotPointId":"54a7db2a-c32e-4c60-a1b6-f9db8dd6bc51","ImageSeq":17,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"V","AliasName":"V","IsEnabled":true,"SnapshotPointId":"54a7db2a-c32e-4c60-a1b6-f9db8dd6bc51","ImageSeq":18,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"B","AliasName":"B","IsEnabled":true,"SnapshotPointId":"54a7db2a-c32e-4c60-a1b6-f9db8dd6bc51","ImageSeq":19,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"N","AliasName":"N","IsEnabled":true,"SnapshotPointId":"54a7db2a-c32e-4c60-a1b6-f9db8dd6bc51","ImageSeq":20,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"M","AliasName":"M","IsEnabled":true,"SnapshotPointId":"54a7db2a-c32e-4c60-a1b6-f9db8dd6bc51","ImageSeq":21,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"COMMA","AliasName":"COMMA","IsEnabled":true,"SnapshotPointId":"54a7db2a-c32e-4c60-a1b6-f9db8dd6bc51","ImageSeq":22,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":".","AliasName":".","IsEnabled":true,"SnapshotPointId":"54a7db2a-c32e-4c60-a1b6-f9db8dd6bc51","ImageSeq":23,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"Slash","AliasName":"Slash","IsEnabled":true,"SnapshotPointId":"54a7db2a-c32e-4c60-a1b6-f9db8dd6bc51","ImageSeq":24,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"ShiftRight","AliasName":"ShiftRight","IsEnabled":true,"SnapshotPointId":"54a7db2a-c32e-4c60-a1b6-f9db8dd6bc51","ImageSeq":25,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"CtrlLeft","AliasName":"CtrlLeft","IsEnabled":true,"SnapshotPointId":"54a7db2a-c32e-4c60-a1b6-f9db8dd6bc51","ImageSeq":26,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"Fn","AliasName":"Fn","IsEnabled":true,"SnapshotPointId":"54a7db2a-c32e-4c60-a1b6-f9db8dd6bc51","ImageSeq":27,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"Win","AliasName":"Win","IsEnabled":true,"SnapshotPointId":"54a7db2a-c32e-4c60-a1b6-f9db8dd6bc51","ImageSeq":28,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"AltLeft","AliasName":"AltLeft","IsEnabled":true,"SnapshotPointId":"54a7db2a-c32e-4c60-a1b6-f9db8dd6bc51","ImageSeq":29,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"Space","AliasName":"Space","IsEnabled":true,"SnapshotPointId":"54a7db2a-c32e-4c60-a1b6-f9db8dd6bc51","ImageSeq":30,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"AltRight","AliasName":"AltRight","IsEnabled":true,"SnapshotPointId":"54a7db2a-c32e-4c60-a1b6-f9db8dd6bc51","ImageSeq":31,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"CtrlRight","AliasName":"CtrlRight","IsEnabled":true,"SnapshotPointId":"54a7db2a-c32e-4c60-a1b6-f9db8dd6bc51","ImageSeq":32,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"Left","AliasName":"Left","IsEnabled":true,"SnapshotPointId":"54a7db2a-c32e-4c60-a1b6-f9db8dd6bc51","ImageSeq":33,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"Up","AliasName":"Up","IsEnabled":true,"SnapshotPointId":"54a7db2a-c32e-4c60-a1b6-f9db8dd6bc51","ImageSeq":34,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"Down","AliasName":"Down","IsEnabled":true,"SnapshotPointId":"54a7db2a-c32e-4c60-a1b6-f9db8dd6bc51","ImageSeq":36,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"},{"$type":"Bro.M071.Process.KeyUnit, Bro.M071.Process","KeyValues":null,"KeyAlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_GetResults.hdvp","KeyResultList":{"$type":"System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib","$values":["Z1","Z2","Z3","Z4"]},"Key":"Right","AliasName":"Right","IsEnabled":true,"SnapshotPointId":"54a7db2a-c32e-4c60-a1b6-f9db8dd6bc51","ImageSeq":35,"KeyAlgorithemId":"744bc4da-586d-4264-8a52-8c5e28c55de8","KeyResultId":"139a9c8d-a6d6-4e15-b577-9c8b34294c9b"}]},"MeasurementUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.MeasurementUnit, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"f2887eda-8b3d-499e-8c58-4c5c108850b7","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"ESC","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"32, 27, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"49250a7d-f22d-4c7a-b6e0-53f4449bcd76","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F1","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"100, 27, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"7fc8e9e5-01bc-481d-8776-9a1c7ed91bf6","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F2","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"169, 28, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"b980250c-a626-4251-87c4-9ccd38eacbb6","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F3","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"239, 28, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"c0bcfb8a-0868-4e7f-af89-2126b6968a16","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F4","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"305, 27, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"f39473c4-1c09-48d3-a60d-1ea1d013f3dc","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F5","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"375, 28, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"d742808d-a988-48b4-bf6d-0ba6f821ad61","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F6","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"441, 27, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"73fe73a6-8d9d-4145-987a-9b4e05fb87e1","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F7","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"507, 28, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"2891f220-85b3-455e-a3ca-bc0adfd02a46","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F8","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"576, 27, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"ef045b22-ba5d-4ff4-b9b8-9a656c76d4f8","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F9","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"645, 27, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"b6e57616-3fbf-4e7a-898b-60fe68f9d26f","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F10","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"710, 28, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"61b1d304-a7c1-454c-8908-2c6a8d451f5c","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F11","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"778, 27, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"0ef9c12e-d1e9-4b70-83e3-942741b44870","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F12","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"846, 28, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"7908070f-2ec2-46b2-9cd8-e6580af66dcf","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Delete","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"914, 27, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"0b0e030a-811a-4946-935f-ba3b6aae8096","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Power","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"980, 26, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"f566be50-947d-4cd7-a374-1322a2db8da4","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"`","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"35, 74, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"e551e7e6-5c10-41a2-89e4-62f7ae4dd230","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"1","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"106, 75, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"7e31d9be-0156-45a5-b594-763936d21c0a","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"2","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"178, 76, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"09ae0f86-9dd6-401a-b454-20cf5e1536f1","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"3","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"250, 75, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"7c6ca5a0-eaa8-413d-bf22-2d5c4cbe228a","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"4","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"321, 76, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"c101c475-8c34-4722-8d08-8b91893d2589","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"5","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"391, 75, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"1d43569e-6933-472c-9254-aef57320e5c0","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"6","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"464, 76, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"6263e065-6872-471c-beb5-e41d87d62f6f","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"7","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"535, 77, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"18832880-0934-4391-8359-b032e07578e1","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"8","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"604, 72, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"6e487764-8856-484a-b051-f2516b835966","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"9","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"675, 71, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"8c5ea78b-6de0-4edb-ae96-e8645eb8ad88","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"0","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"746, 72, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"f889461e-04d9-4ff9-9b04-45674230642d","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"-","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"815, 73, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"e10f53cf-05c4-4852-b8da-c4f23c7a0290","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"=","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"887, 73, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"e3d0778f-58b7-42ec-afd7-41edf3a9c3ca","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Backspace","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"968, 75, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"13415d6c-beb7-4a18-8c6e-dbb324cdaa39","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Tab","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"41, 144, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"87344156-be35-48bd-a4e2-81953af6539b","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Q","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"126, 144, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"9c02616e-cc54-425c-8cb6-78f1a774f83f","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"W","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"196, 145, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"b059151b-2e7d-4899-abd6-978a480006e4","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"E","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"268, 145, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"d4e42e10-e74e-44ed-8bcc-0762111fec14","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"R","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"340, 145, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"ffe9c8da-cafc-4fcc-99e0-51a8bd326c09","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"T","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"410, 145, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"3a4bd1c2-3a0a-473e-8b38-b4c76e4ed33b","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Y","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"481, 143, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"44f70269-923d-4930-9ab8-5b0dfd497107","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"U","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"553, 145, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"309a4b6b-443d-4c86-8be5-0980a8838e87","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"I","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"623, 144, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"e381bc25-4d83-47c2-b580-7c70230911c1","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"O","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"695, 144, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"281ceb84-ac5a-4c5e-afff-4f83321abbcf","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"P","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"766, 144, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"71db3a8b-c8fc-41a4-b90d-afc81b41829f","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"[","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"837, 144, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"3f4cfc7e-3116-453b-bd43-4ea8e834ec18","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"]","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"907, 144, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"55797b6a-a633-467f-9e83-3af8b8030ea8","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"BackSlash","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"976, 145, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"6c2ba828-379a-4cef-8986-2b7db4c6cea4","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"CapsLock","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"55, 214, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"39c5a55c-fdc1-4d35-80ab-618eefcd9da5","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"A","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"152, 216, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"3054b914-c7dd-41bd-b95e-43c3fdf5eb49","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"S","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"223, 216, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"a08c8512-d45a-44a1-acbe-2bf5ccaaad32","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"D","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"293, 216, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"1429867a-ea60-4444-9d37-0abc342161b7","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"364, 214, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"2914c39e-8583-4187-9d63-8847cd3b751a","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"G","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"437, 214, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"61a14605-7f98-4969-a1bb-bf5bef5856f7","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"H","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"506, 213, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"eb2ef41d-f0c6-421f-a8a7-de55863e8758","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"J","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"577, 214, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"0f8d49d4-703e-4b2f-aba6-c05bf3149e08","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"K","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"649, 214, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"1416a853-6ac7-47d4-838a-4fc4265fde56","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"L","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"719, 214, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"75de2f26-8b34-41ce-aa4b-8423af60549d","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":";","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"792, 215, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"c8a309ef-469f-44c8-944c-4a697a26e0d6","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"'","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"862, 215, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"6dfb0983-f40d-42e3-92ce-c17892bf0f57","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Enter","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"954, 216, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"43803faa-7e70-4148-970b-67cf785617e5","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"ShiftLeft","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"78, 284, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"f3ce92e0-98b2-4d3a-9bd6-8059815a6524","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Z","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"187, 282, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"0126f463-76cd-45a7-9874-b5f0f92edf76","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"X","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"259, 283, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"bb8e30d1-2af9-4ff5-bbd5-79560a522a43","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"C","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"330, 283, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"ca39021f-2c23-4be3-8038-3aa905728ef8","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"V","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"401, 283, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"8bb929b6-370b-4ec2-bf52-b6f26be84578","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"B","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"472, 284, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"81d35334-fffe-447f-ae35-1228762a568f","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"N","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"542, 284, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"6fdffe24-7544-46a7-b011-c7c347445304","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"M","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"614, 285, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"3ed4fba3-ebd0-4c61-b3e3-4bcf6b115a21","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"COMMA","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"685, 285, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"c51240ec-bd22-4baf-b46b-66f7796a4517","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":".","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"757, 284, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"40c3c7a8-a47f-4164-86bf-7b0bfe23b220","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Slash","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"827, 285, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"f207b7ed-6832-401a-81ce-7e2eafcaeb9a","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"ShiftRight","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"934, 286, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"5b8e6593-89e8-485a-94b5-903553bf5e1a","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"CtrlLeft","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"36, 354, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"3266dac4-1485-4a64-9150-74dc43b214a0","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Fn","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"106, 353, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"7b3d2b67-48f4-4829-b1aa-a9e07e3e4543","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Win","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"176, 353, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"4fa28d54-1fd5-4bc3-a866-0c563f41767e","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"AltLeft","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"252, 354, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"11e18b87-8dac-4ab0-b3bb-d3f51b715ef3","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Space","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"471, 357, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"38149097-a6a8-4405-90a7-2fcc7782cf8e","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"AltRight","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"688, 354, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"e898c8c2-bf30-4b48-9326-9276a0379cf0","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"CtrlRight","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"768, 354, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"b347cf1a-641e-4403-81b3-e7d5e08f96d4","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Left","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"836, 354, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"26bdaa89-f378-429a-b10b-ad42f3ddd246","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Up","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"908, 330, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"e3f316f8-8f89-46bc-b502-f240263b1261","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Down","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"910, 379, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"d86b07cf-4188-4c81-bb1b-d45ecb346c83","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Slant","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Right","KeyResultId":"All","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null,"Z2":null,"Z3":null,"Z4":null}}]},"DisplayLocation":"977, 354, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Slant","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"249880ba-98fb-4b9d-95ac-343572f78ec1","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"ESC","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F1","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"67, 22, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"8c0215b4-fcef-4a1a-b8fb-f2042a2bcf03","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"ESC","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F1","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"67, 32, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"b193ebb2-fa20-411d-a8dd-7a0b1a58f005","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F1","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F2","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"135, 22, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"fbbe6009-5185-4ade-a818-596fd5e76fe0","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F1","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F2","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"135, 32, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"5e0192cf-c293-48da-9824-23cfef7ca084","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F2","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F3","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"203, 22, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"7ee44278-e92b-42c3-8e8f-5e8f2b235733","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F2","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F3","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"203, 32, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"e6f4089c-a7ff-4818-9644-d3926951ea36","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F3","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F4","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"271, 22, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"008e3fd2-eb58-4068-93a2-6e35f4afa484","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F3","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F4","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"271, 32, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"a7c02683-b27b-445a-9b24-902dc0ee960a","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F4","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F5","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"339, 22, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"eb529de7-e073-43e0-be2d-23303906457b","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F4","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F5","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"339, 32, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"050c8784-0593-4d4f-810d-7dc94ed1a071","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F5","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F6","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"407, 22, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"0919fdb5-439c-49ea-8189-5422d84fa14b","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F5","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F6","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"407, 32, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"b56c2a97-64db-413d-8ee9-5d71d25dbe9a","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F6","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F7","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"475, 22, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"371464ef-7430-4e27-b2fb-dce031030af7","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F6","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F7","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"475, 32, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"1002abc6-0b27-4878-a226-a96c136ae90d","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F7","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F8","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"543, 22, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"cdbb090c-d3fa-4afe-a6c9-34ed2f1b7b3b","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F7","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F8","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"543, 32, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"13463cc0-6332-49f6-a447-c003f054ba77","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F8","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F9","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"611, 22, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"ca32f549-4e87-4191-8cc5-72924f93ac58","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F8","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F9","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"611, 32, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"fa16110d-91b5-40c1-b030-98307a5ca1c1","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F9","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F10","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"679, 22, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"1ceba3ce-b1d3-4c9d-9094-211c1b2a143f","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F9","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F10","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"679, 32, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"d435c6b6-5561-4835-9841-6a29a4baf12a","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F10","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F11","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"747, 22, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"470d4cbf-7010-414f-972d-6a26a867058b","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F10","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F11","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"747, 32, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"eb6766de-0cad-4b63-ae47-213575da9a4b","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F11","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F12","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"815, 22, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"d7ccec77-c9d3-4890-8f8b-a8fbfc212c03","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F11","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F12","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"815, 32, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"17e4bdaf-2631-44ff-838d-dad1da530210","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F12","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Delete","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"883, 22, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"efa2012c-c3a9-4bbb-9c6e-1e05445883a5","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F12","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Delete","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"883, 32, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"7bc6f878-8338-4ea4-acd5-59c65deba5ce","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Delete","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Power","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"951, 22, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"8e768e30-b029-433a-a54b-16ecc7b97a39","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Delete","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Power","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"951, 32, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"ae038fa4-a921-4860-b63c-771d64c6225e","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"`","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"1","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"70, 61, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"8e167a29-9726-4849-9496-9fa4a1bf9192","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"`","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"1","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"70, 103, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"5c82b67e-e875-4ffb-8a99-55f0d127d31a","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"1","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"2","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"141, 61, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"5d3fa749-4a37-4dc5-b21b-4ee618f686d0","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"1","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"2","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"141, 103, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"d3f454f4-a70d-4f4a-8fa0-404b13322793","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"2","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"3","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"212, 61, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"7ca9cbf7-9cc7-4611-8985-90a56e1657df","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"2","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"3","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"212, 103, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"3f60398c-561a-44f1-90c0-3ccb06b5e0bb","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"3","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"4","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"283, 61, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"d7f3e6ec-b9be-4306-a737-e426e06324f3","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"3","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"4","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"283, 103, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"5de42e88-e6d1-4f2a-a250-c5d366d5e27c","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"4","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"5","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"354, 61, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"641727c5-de73-42eb-a5f6-07783b909b2d","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"4","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"5","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"354, 103, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"01b44b4c-9fb1-4474-b329-829061bc6d39","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"5","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"6","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"425, 61, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"0f1796d8-a09d-4d74-a0e7-071f3703983f","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"5","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"6","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"425, 103, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"c436c1ca-f9c6-4b55-bc3e-a97c7be9411f","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"6","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"7","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"496, 61, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"467ddbcd-f4cf-4f4e-88e6-9950b99dab3d","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"6","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"7","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"496, 103, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"524a9186-eaee-48ed-ba52-9490551e272d","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"7","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"8","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"567, 61, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"2aacfe34-3a17-4b7c-b851-2f6ea10c379c","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"7","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"8","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"567, 103, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"9dd49fc5-6d02-4c63-9f77-3ca75026ab01","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"8","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"9","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"638, 61, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"e28f750a-0830-4310-b900-2f92ffe9efc1","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"8","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"9","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"638, 103, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"7dc0fbfc-79c3-40c6-aeef-f12d238720f3","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"9","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"0","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"709, 61, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"ae20c994-ebfe-4de3-98db-234e6905f5f8","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"9","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"0","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"709, 103, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"cf98ede7-37c9-4b61-a286-400b6e2993f0","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"0","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"-","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"780, 61, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"55526bc8-2541-47ad-aee6-ee2c588c7ac2","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"0","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"-","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"780, 103, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"7c4e4118-d275-4491-aae2-af9a24beade9","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"-","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"=","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"851, 61, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"4e30df56-7517-4f84-98f6-917e20096c17","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"-","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"=","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"851, 103, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"44e77d54-8d66-4ff3-8cc1-00fdedc5b332","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"=","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Backspace","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"922, 61, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"94bb90ed-1abd-4aef-b99e-3db91b7085c5","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"=","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Backspace","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"922, 103, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"410f4d3c-7b00-4e5a-8514-9b14d1cd89fc","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Q","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"W","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"162, 132, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"0a5eb3fa-9686-4f7f-b195-19d1f5acdc39","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Q","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"W","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"162, 174, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"d0a7fbfc-5909-42ef-82fe-c69cc71c44c9","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"W","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"E","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"233, 132, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"0c8f14b9-6c90-4dbd-88be-8e075516a0ae","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"W","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"E","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"233, 174, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"0796e63d-81b2-48af-834d-4bd7fb409de1","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"E","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"R","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"304, 132, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"1e0a418f-5047-4926-a547-02a72e55fabc","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"E","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"R","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"304, 174, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"0c9d1711-c377-436a-9880-c50d355ea96d","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"R","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"T","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"375, 132, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"20708ce7-efaf-43f4-9935-f59961d28615","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"R","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"T","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"375, 174, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"05a28267-056a-4428-9763-248bb4cbb77f","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"T","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Y","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"446, 132, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"01a0159d-43d3-4e7c-bc17-ab594177a2c5","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"T","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Y","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"446, 174, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"43b07c99-0243-4ba6-acce-f37a30896d84","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Y","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"U","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"517, 132, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"8482a1c3-6bd6-4379-9a5e-4b2cc2056280","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Y","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"U","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"517, 174, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"226c8758-5dd4-4351-9fff-4a67455c041d","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"U","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"I","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"588, 132, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"449b8b2a-84a5-4917-a9ec-52747dbb9d52","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"U","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"I","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"588, 174, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"59af60ed-701c-4c9e-b2ff-d47b41ef18d3","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"I","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"O","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"659, 132, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"c3297ead-5071-4d33-9868-4ac064152c4b","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"I","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"O","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"659, 174, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"7607b173-b367-4f2d-a1e9-f2192b235e65","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"O","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"P","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"730, 132, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"76356c57-5de6-4f26-9810-bbec53e206d4","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"O","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"P","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"730, 174, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"1da2829f-1ee5-43d3-94b8-a56a946b9c9f","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"P","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"[","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"801, 132, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"678855f9-fa08-4cb5-85b8-297ff65fcb45","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"P","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"[","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"801, 174, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"e9f14e35-483e-424f-ba35-ea664b3c066a","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"[","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"]","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"872, 132, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"ebe74f0f-786e-4af0-aa62-b5e48461ee18","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"[","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"]","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"872, 174, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"30931191-590b-40cc-a90f-3b72bae4908d","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"]","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"BackSlash","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"943, 132, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"7a785a19-9e65-4fd5-8ec6-71e92e4902a1","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"]","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"BackSlash","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"943, 174, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"1e2bdb47-90d8-430f-9481-f130edbc6c36","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"A","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"S","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"188, 202, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"ecdbbc02-8472-42b8-bc52-0ecf5a965a6f","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"A","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"S","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"188, 244, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"53387086-f028-4ea3-ad42-43ebe14a42f1","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"S","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"D","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"259, 202, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"2d0e68d4-ce26-458b-ae59-1bcbbe7c2178","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"S","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"D","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"259, 244, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"3e38c87e-6a94-445d-991c-d1f536435372","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"D","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"330, 202, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"1c2ac015-12a2-425e-bf55-9d34e8242efb","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"D","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"330, 244, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"4d5bc82c-e802-4460-acc3-5abc22f62624","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"G","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"401, 202, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"74345847-1ce5-458a-9452-95e0ede62d1a","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"F","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"G","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"401, 244, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"d23bf896-b67f-4da3-bda8-9483550544ed","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"G","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"H","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"472, 202, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"6305f467-c6dd-477e-88c4-e697447adaaf","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"G","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"H","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"472, 244, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"93035036-3271-4af3-8d15-a0618fc3b513","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"H","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"J","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"543, 202, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"d5650e9e-b730-48f1-85fb-d4e29e6cf1fd","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"H","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"J","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"543, 244, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"c31f965d-f69f-4310-a674-1d439fa64dc9","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"J","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"K","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"614, 202, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"505fc381-c6cb-4b23-93ff-691988750a6b","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"J","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"K","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"614, 244, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"48205d60-03e0-4ede-aa2b-419546ab7363","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"K","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"L","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"685, 202, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"d10ed4d0-486d-4c39-ab7f-739b107f2967","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"K","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"L","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"685, 244, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"6d2e2d82-a740-4fa8-a45f-b3bb1cd8be2c","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"L","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":";","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"756, 202, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"d6784197-f45f-4c27-9649-e2e47ab5340a","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"L","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":";","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"756, 244, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"e9ab52db-d628-41b7-bd42-36d5ebda2f5b","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":";","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"'","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"827, 202, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"cf9ed736-9d98-4523-b7ce-8d9be4231f50","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":";","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"'","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"827, 244, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"0c48bf03-a983-4513-ac69-7fe81f35be3a","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"'","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Enter","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"898, 202, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"e98deca6-9978-40f5-8bca-7ea5256e8ef7","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"'","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Enter","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"898, 244, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"6719c336-c352-4141-a050-88244b19d24c","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Z","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"X","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"223, 272, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"813df7b1-89e2-4c7b-8438-4d93b6411600","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Z","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"X","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"223, 314, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"52bc404b-13a7-45d0-b285-7cb4fc17125b","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"X","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"C","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"294, 272, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"dc968065-3998-4b9c-a019-03c32a261b47","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"X","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"C","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"294, 314, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"b756e356-8602-4955-9331-5adb6014e6b8","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"C","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"V","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"365, 272, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"c0638b7e-537e-43b0-b1a7-fb48e54580be","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"C","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"V","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"365, 314, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"267c5b09-a737-4cf7-84e2-7e144574932e","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"V","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"B","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"436, 272, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"c27c0e85-f32f-4952-9887-ed08edd8c1d3","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"V","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"B","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"436, 314, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"f7de8ccb-bc4e-42b2-965a-9b54f5352b5e","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"B","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"N","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"507, 272, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"d32d79ed-0dce-449d-b346-9b205c127862","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"B","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"N","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"507, 314, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"e1e5c4ab-618e-405a-b2cc-17889958fab9","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"N","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"M","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"578, 272, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"34cae29e-7d16-4289-9465-129c174dc0a0","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"N","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"M","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"578, 314, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"b64ee4e8-6384-4644-ad87-ded2a1909449","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"M","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"COMMA","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"649, 272, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"59eba1e6-6d5c-41c8-9b26-da1a57debab6","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"M","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"COMMA","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"649, 314, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"c61dd0b5-7bbd-4d31-9f25-a74a0f7d7c16","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"COMMA","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":".","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"720, 272, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"6a8234b6-2bbb-4b81-9cff-7177483be03f","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"COMMA","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":".","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"720, 314, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"b7e589ce-f99f-4f06-8b94-8cf8a0acfb69","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":".","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Slash","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"791, 272, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"efa1147f-bd4d-4d8b-85b9-0829330fe97f","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":".","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Slash","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"791, 314, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"6e2637b0-a98b-44e8-a52a-a4a1068cc883","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Slash","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"ShiftRight","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"862, 272, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"13aded11-1d62-4a31-8361-81091148e71f","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Slash","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"ShiftRight","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"862, 314, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"81ad9865-9f8f-4a12-a2ea-e9b51414bf4b","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"CtrlLeft","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Fn","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"70, 342, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"5862b23f-877f-4c91-9359-a739c1b07edf","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"CtrlLeft","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Fn","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"70, 384, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"a3d98cc3-0f86-4132-8e4d-69549d87b960","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Fn","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Win","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"141, 342, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"5e7ee8ea-f1ee-4c1d-b11b-6638aca07ddf","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Fn","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Win","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"141, 384, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"d3b185c4-4517-40bb-a8ce-d1b6584d541b","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Win","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"AltLeft","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"212, 342, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"dd05ed6a-1a16-4f43-8c9f-dc4d5f07cb1a","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Win","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"AltLeft","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"212, 384, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"0169a542-b603-4185-ba36-ac21ebf1368e","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"AltLeft","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Space","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"293, 342, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"cd822e4e-d6bc-4d25-8550-db6d8218de49","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"AltLeft","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Space","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"293, 384, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"14a739f7-6486-4d7d-9008-b7aedb839be5","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Space","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"AltRight","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"649, 342, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"c213fa1d-a770-4023-8738-0933f02aee63","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Space","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"AltRight","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"648, 382, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"c97aa659-00d8-4a0b-86d5-1eae5fde6934","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"AltRight","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"CtrlRight","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"730, 341, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"69cc262b-ec1f-4c99-8a33-3aac8801cd90","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"AltRight","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"CtrlRight","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"730, 383, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"ef1cf4a5-613f-48bf-93fc-548710e76939","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"CtrlRight","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Left","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"800, 341, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"f145261b-f592-4e5f-b576-1a6e2308d30f","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"CtrlRight","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Left","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"800, 383, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"8a23f0d2-a9de-43c5-be10-2806aea82c56","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Left","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Up","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"872, 341, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"e86b1854-e123-4d15-899e-57bef193f041","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Left","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Down","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"872, 383, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"6fbcfd86-2912-424c-8741-01472ace02e3","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Up","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Right","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"942, 341, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"2f56d166-6a88-4b5e-8587-4cfc35d93f29","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Down","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Right","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"942, 383, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"83f362f7-472c-475e-a613-b2feba0d6e80","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Tab","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Q","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"91, 132, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"06a8398a-726c-4e12-acc9-89bb1482b0a5","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Tab","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Q","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"91, 174, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"8df57e7e-161d-41f9-bc8c-5377bac62328","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"CapsLock","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"A","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"116, 202, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"f214d5b3-bdd4-4494-870b-2b57b0dca93c","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"CapsLock","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"A","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"116, 244, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"7f41d571-6816-4f64-9db6-bafaa4eac456","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"ShiftLeft","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Z","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"150, 272, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"93194158-1044-44a8-a203-10a27a993fd5","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"ShiftLeft","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Z","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}}]},"DisplayLocation":"150, 314, 25, 12","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"47e4eaac-9a95-4c3e-ae8f-1eaad7a1de5f","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"ESC","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"`","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"25, 39, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"03f3e513-3ced-49b6-a9cc-9b6a06e4d31d","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"`","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Tab","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"25, 110, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"b2ebf69c-f762-4bf4-8227-f79d33d7b797","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Tab","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"CapsLock","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"25, 180, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"bd66a2c7-8ef5-40a6-a33b-ffc726b6dcc5","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"CapsLock","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"ShiftLeft","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"25, 250, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"871b30ba-4a16-42c1-a18c-38967992ac3f","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"ShiftLeft","KeyResultId":"Z3","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z3":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"CtrlLeft","KeyResultId":"Z1","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z1":null}}]},"DisplayLocation":"25, 321, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"f6fb1ed7-ca22-4e2c-ba58-b04fc73b45e1","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Power","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Backspace","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}}]},"DisplayLocation":"990, 40, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"1f55ff23-b3b0-4026-9eee-cd70b86b913d","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Backspace","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"BackSlash","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}}]},"DisplayLocation":"990, 110, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"7a996f83-6f9c-4a7a-8294-e906a1adefbb","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"BackSlash","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Enter","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}}]},"DisplayLocation":"990, 180, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"3d6b23f2-495e-4f38-8de1-7dc7160b1043","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Enter","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"ShiftRight","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}}]},"DisplayLocation":"990, 249, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}},{"$type":"Bro.M071.Process.MeasurementUnit, Bro.M071.Process","Id":"677ccef1-9ca6-4b3c-b476-eb2960cda1d5","IsUpdated":false,"Name":"","IsEnabled":true,"MeasureType":"Alignment","KeyUnitCollection":{"$type":"System.Collections.Generic.List`1[[Bro.M071.Process.KeyUnitBind, Bro.M071.Process]], mscorlib","$values":[{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"ShiftRight","KeyResultId":"Z4","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z4":null}},{"$type":"Bro.M071.Process.KeyUnitBind, Bro.M071.Process","KeyImages":{"$type":"System.Collections.Generic.List`1[[HalconDotNet.HImage, halcondotnet]], mscorlib","$values":[]},"ImageSaveStatus":0,"IsDone":null,"Key":"Right","KeyResultId":"Z2","MeasureValueDict":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Nullable`1[[System.Double, mscorlib]], mscorlib]], mscorlib","Z2":null}}]},"DisplayLocation":"990, 321, 25, 25","Spec":{"$type":"Bro.M071.Process.MeasureType, Bro.M071.Process","Code":"Alignment","AlgorithemPath":"D:\\PROJECTS\\M071\\Calculations\\M071_Max_Min.hdvp","IsEnabled":true,"StandardValue":0.0,"Tolrenance_Positive":0.4,"Tolrenance_Negative":0.0}}]},"PlanCompensation":-1.9,"Precision":3,"ImageSaveOption":{"$type":"Bro.Common.Base.ImageSaveOption, Bro.Common.Device","ImageSaveSubDirectory":null,"IsSaveOriginImage":true,"ImageFormat":"Jpeg","IsSaveFitImage":true,"AddtionalSaveType":""},"ImageSaveFolder":"D:\\PROJECTS\\M071\\Images","IsSafetyDoorBlocked":true,"IsSafetyBeamBlocked":false,"IsBeepBlocked":true,"IsBarcodeManualInputBlocked":false,"IsEnableMESUpload":false,"FullResetRequiredDuration":3,"CameraConfigCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Interface.IInitialConfig, Bro.Common.Model]], mscorlib","$values":[{"$type":"Bro.Device.Gocator.GocatorInitialConfig, Bro.Device.Gocator","SerialNum":null,"ComputerIP":null,"IsUseAccelerator":false,"DefaultJob":"","SnapshotTimeout":5000,"IsHardwareTrigger":false,"IsAsyncMode":false,"DriverType":"Gocator","CameraIP":"192.168.1.10","ImgDirectory":"D:\\PROJECTS\\M071\\Images","SaveImageDayLimit":0,"ImageSaveOption":{"$type":"Bro.Common.Base.ImageSaveOption, Bro.Common.Device","ImageSaveSubDirectory":null,"IsSaveOriginImage":true,"ImageFormat":"Jpeg","IsSaveFitImage":false,"AddtionalSaveType":""},"DefaultExposure":0.0,"Id":"31EEF8F6-225D-46CF-AE74-8EF5DD08CC53","Name":"Gocator","IsEnabled":true,"LogPath":"D:\\PROJECTS\\M071\\Logs","IsEnableLog":true}]},"PLCConfigCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Interface.IInitialConfig, Bro.Common.Model]], mscorlib","$values":[]},"DeviceConfigs":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Interface.IInitialConfig, Bro.Common.Model]], mscorlib","$values":[{"$type":"Bro.Device.GTSCard.GTSCardInitialConfig, Bro.Device.GTSCard","CardNum":0,"InitialConfigFilePath":"D:\\PROJECTS\\M071\\Configs\\M071B-GTS400-20200814.cfg","AxisNum":4,"AxisSettings":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.AxisSetting, Bro.Common.Model]], mscorlib","$values":[{"$type":"Bro.Common.Model.AxisSetting, Bro.Common.Model","AxisIndex":1,"AxisName":"X","IsAxisEnabled":true,"AxisRatio":1000,"GoHomePara":{"$type":"Bro.Common.Model.GoHomePara, Bro.Common.Model","HomeVelocity":50.0,"HomeOffset":10000,"IsHomeDirPositive":false,"IsCaptureDirPositive":true,"GoHomeTimeOut":60,"IsCaptureMode":false},"IsImmediatePause":true},{"$type":"Bro.Common.Model.AxisSetting, Bro.Common.Model","AxisIndex":2,"AxisName":"Y","IsAxisEnabled":true,"AxisRatio":1000,"GoHomePara":{"$type":"Bro.Common.Model.GoHomePara, Bro.Common.Model","HomeVelocity":50.0,"HomeOffset":0,"IsHomeDirPositive":true,"IsCaptureDirPositive":false,"GoHomeTimeOut":60,"IsCaptureMode":false},"IsImmediatePause":true}]},"AxisVelocityRatio":1.0,"WarningSetCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Interface.IWarningSet, Bro.Common.Model]], mscorlib","$values":[]},"IODefinitionCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IODefinition, Bro.Common.Model]], mscorlib","$values":[{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"宸﹀惎鍔�","Remark":null,"IONum":0,"IOType":0},{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"鍙冲惎鍔�","Remark":null,"IONum":1,"IOType":0},{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"澶嶄綅","Remark":null,"IONum":2,"IOType":0},{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"鎬ュ仠","Remark":null,"IONum":3,"IOType":0},{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"瀹夊叏闂�","Remark":null,"IONum":4,"IOType":0},{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"瀹夊叏鍏夊箷","Remark":null,"IONum":5,"IOType":0},{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"浜у搧鏈夋棤1","Remark":null,"IONum":6,"IOType":0},{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"浜у搧鏈夋棤2","Remark":null,"IONum":7,"IOType":0},{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"浜у搧闃插憜","Remark":null,"IONum":8,"IOType":0},{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"澶圭揣姘旂几鍦ㄥ噯澶囦綅","Remark":null,"IONum":10,"IOType":0},{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"澶圭揣姘旂几鍦ㄦ娴嬩綅","Remark":null,"IONum":11,"IOType":0},{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"鍓嶅悗姘旂几鍦ㄥ噯澶囦綅","Remark":null,"IONum":12,"IOType":0},{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"鍓嶅悗姘旂几鍦ㄦ娴嬩綅","Remark":null,"IONum":13,"IOType":0},{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"澶圭揣姘旂几","Remark":"0锛氬噯澶囦綅 1锛氭娴嬩綅","IONum":5,"IOType":1},{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":5,"IODesc":null,"Remark":null,"IONum":4,"IOType":1},{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":3,"IODesc":null,"Remark":null,"IONum":0,"IOType":1},{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":1,"IODesc":null,"Remark":null,"IONum":1,"IOType":1},{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":2,"IODesc":null,"Remark":null,"IONum":2,"IOType":1},{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":4,"IODesc":null,"Remark":null,"IONum":3,"IOType":1},{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"鍓嶅悗姘旂几鍒版娴嬩綅","Remark":null,"IONum":7,"IOType":1},{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"鍓嶅悗姘旂几鍒板噯澶囦綅","Remark":null,"IONum":6,"IOType":1}]},"IsOutputReversed":true,"MonitorSetCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Interface.IMonitorSet, Bro.Common.Model]], mscorlib","$values":[{"$type":"Bro.Common.Model.MotionCardMonitorSet, Bro.Common.Model","MonitorIOModel":0,"TriggerIndex":0,"TriggerValue":-999,"Id":"9305bc12-39a0-48f4-b219-df565391e536","InvokeDevice":"332E52C9-8CD2-4B22-B2DA-C4125F93BF66","SourceDevice":"332E52C9-8CD2-4B22-B2DA-C4125F93BF66","MethodCode":"Start_Left","MethodDesc":"宸︽墜鍚姩","OpConfig":{"$type":"Bro.Common.Base.OperationConfigBase, Bro.Common.Model","ExceptionValue":0,"ReTryTimes":1,"MonitorSetId":"9305bc12-39a0-48f4-b219-df565391e536"},"Name":"","DisplayText":"杩愬姩鏉垮崱 杩愬姩鏉垮崱 Start_Left-宸︽墜鍚姩"},{"$type":"Bro.Common.Model.MotionCardMonitorSet, Bro.Common.Model","MonitorIOModel":0,"TriggerIndex":1,"TriggerValue":-999,"Id":"195f4d59-b99c-4bdb-b8c1-35667d08ee76","InvokeDevice":"332E52C9-8CD2-4B22-B2DA-C4125F93BF66","SourceDevice":"332E52C9-8CD2-4B22-B2DA-C4125F93BF66","MethodCode":"Start_Right","MethodDesc":"鍙虫墜鍚姩","OpConfig":{"$type":"Bro.Common.Base.OperationConfigBase, Bro.Common.Model","ExceptionValue":0,"ReTryTimes":1,"MonitorSetId":"195f4d59-b99c-4bdb-b8c1-35667d08ee76"},"Name":"","DisplayText":"杩愬姩鏉垮崱 杩愬姩鏉垮崱 Start_Right-鍙虫墜鍚姩"},{"$type":"Bro.Common.Model.MotionCardMonitorSet, Bro.Common.Model","MonitorIOModel":0,"TriggerIndex":2,"TriggerValue":-999,"Id":"2ed522f7-8e5d-4fe8-8979-bf02e1109060","InvokeDevice":"332E52C9-8CD2-4B22-B2DA-C4125F93BF66","SourceDevice":"332E52C9-8CD2-4B22-B2DA-C4125F93BF66","MethodCode":"Reset","MethodDesc":"绠�鍗曞浣嶆搷浣�","OpConfig":{"$type":"Bro.Common.Base.OperationConfigBase, Bro.Common.Model","ExceptionValue":0,"ReTryTimes":1,"MonitorSetId":"2ed522f7-8e5d-4fe8-8979-bf02e1109060"},"Name":"","DisplayText":"杩愬姩鏉垮崱 杩愬姩鏉垮崱 Reset-绠�鍗曞浣嶆搷浣�"},{"$type":"Bro.Common.Model.MotionCardMonitorSet, Bro.Common.Model","MonitorIOModel":0,"TriggerIndex":4,"TriggerValue":-999,"Id":"d31f156b-b0fd-49c9-b21c-256166e0dd9e","InvokeDevice":"332E52C9-8CD2-4B22-B2DA-C4125F93BF66","SourceDevice":"332E52C9-8CD2-4B22-B2DA-C4125F93BF66","MethodCode":"SafetyDoorSignal","MethodDesc":"瀹夊叏闂ㄤ俊鍙风洃鎺э紝姝e父ON锛孫FF鏃舵姤璀�","OpConfig":{"$type":"Bro.Common.Base.OperationConfigBase, Bro.Common.Model","ExceptionValue":0,"ReTryTimes":1,"MonitorSetId":"d31f156b-b0fd-49c9-b21c-256166e0dd9e"},"Name":"","DisplayText":"杩愬姩鏉垮崱 杩愬姩鏉垮崱 SafetyDoorSignal-瀹夊叏闂ㄤ俊鍙风洃鎺э紝姝e父ON锛孫FF鏃舵姤璀�"},{"$type":"Bro.Common.Model.MotionCardMonitorSet, Bro.Common.Model","MonitorIOModel":0,"TriggerIndex":5,"TriggerValue":-999,"Id":"3a5d4e4e-98cf-49f9-b212-54d5c10b7d61","InvokeDevice":"332E52C9-8CD2-4B22-B2DA-C4125F93BF66","SourceDevice":"332E52C9-8CD2-4B22-B2DA-C4125F93BF66","MethodCode":"SafetyBeamSignal","MethodDesc":"瀹夊叏鍏夊箷淇″彿鐩戞帶锛屾甯窸N锛孫FF鏃舵姤璀�","OpConfig":{"$type":"Bro.Common.Base.OperationConfigBase, Bro.Common.Model","ExceptionValue":0,"ReTryTimes":1,"MonitorSetId":"3a5d4e4e-98cf-49f9-b212-54d5c10b7d61"},"Name":"","DisplayText":"杩愬姩鏉垮崱 杩愬姩鏉垮崱 SafetyBeamSignal-瀹夊叏鍏夊箷淇″彿鐩戞帶锛屾甯窸N锛孫FF鏃舵姤璀�"},{"$type":"Bro.Common.Model.MotionCardMonitorSet, Bro.Common.Model","MonitorIOModel":0,"TriggerIndex":-1,"TriggerValue":1,"Id":"74fc0d7d-c433-468a-b373-8c8060172252","InvokeDevice":"332E52C9-8CD2-4B22-B2DA-C4125F93BF66","SourceDevice":"332E52C9-8CD2-4B22-B2DA-C4125F93BF66","MethodCode":"SwitchJobStatus","MethodDesc":"娴佺▼鐘舵�佸垏鎹�","OpConfig":{"$type":"Bro.Common.Base.OperationConfigBase, Bro.Common.Model","ExceptionValue":0,"ReTryTimes":1,"MonitorSetId":"74fc0d7d-c433-468a-b373-8c8060172252"},"Name":"","DisplayText":"杩愬姩鏉垮崱 杩愬姩鏉垮崱 SwitchJobStatus-娴佺▼鐘舵�佸垏鎹�"},{"$type":"Bro.Common.Model.MotionCardMonitorSet, Bro.Common.Model","MonitorIOModel":0,"TriggerIndex":3,"TriggerValue":-999,"Id":"b118162a-df27-4d6d-8075-ee8a3bd11185","InvokeDevice":"332E52C9-8CD2-4B22-B2DA-C4125F93BF66","SourceDevice":"332E52C9-8CD2-4B22-B2DA-C4125F93BF66","MethodCode":"EmergencyStop","MethodDesc":"鎬ュ仠鎸夐挳琚媿涓�","OpConfig":{"$type":"Bro.Common.Base.OperationConfigBase, Bro.Common.Model","ExceptionValue":0,"ReTryTimes":1,"MonitorSetId":"b118162a-df27-4d6d-8075-ee8a3bd11185"},"Name":"","DisplayText":"杩愬姩鏉垮崱 杩愬姩鏉垮崱 EmergencyStop-鎬ュ仠鎸夐挳琚媿涓�"}]},"IsEnableMonitor":true,"MonitorInterval":10,"MonitorTimeout":300,"Id":"332E52C9-8CD2-4B22-B2DA-C4125F93BF66","Name":"杩愬姩鏉垮崱","IsEnabled":true,"DriverType":"GTSCard","LogPath":"","IsEnableLog":false}]},"IsImageOffline":false,"IsDemoMode":false,"IsLogEnabled":true,"IsCSVOutputEnabled":true,"LogPath":"D:\\PROJECTS\\M071\\Logs","MonitorSetCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Interface.IMonitorSet, Bro.Common.Model]], mscorlib","$values":[{"$type":"Bro.Common.Model.MonitorSetBase, Bro.Common.Model","Id":"0c96625c-a801-432d-a03f-2547f02b0aef","InvokeDevice":"332E52C9-8CD2-4B22-B2DA-C4125F93BF66","SourceDevice":"","MethodCode":"Reset","MethodDesc":"绠�鍗曞浣嶆搷浣�","OpConfig":{"$type":"Bro.Device.GTSCard.GTSCardOperationConfig, Bro.Device.GTSCard","OperationCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Base.MotionCardOperationSet, Bro.Common.Device]], mscorlib","$values":[]},"ExceptionValue":0,"ReTryTimes":3,"MonitorSetId":"0c96625c-a801-432d-a03f-2547f02b0aef"},"Name":"","DisplayText":"杩愬姩鏉垮崱 Reset-绠�鍗曞浣嶆搷浣�"},{"$type":"Bro.Common.Model.MonitorSetBase, Bro.Common.Model","Id":"3ae0f151-8d3f-45c3-acd1-3fc14e422ba7","InvokeDevice":"332E52C9-8CD2-4B22-B2DA-C4125F93BF66","SourceDevice":"","MethodCode":"FullReset","MethodDesc":"澶у浣嶆搷浣�","OpConfig":{"$type":"Bro.Device.GTSCard.GTSCardOperationConfig, Bro.Device.GTSCard","OperationCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Base.MotionCardOperationSet, Bro.Common.Device]], mscorlib","$values":[{"$type":"Bro.Common.Base.MotionCardOperationSet, Bro.Common.Device","MotionCardId":"332E52C9-8CD2-4B22-B2DA-C4125F93BF66","PreCheckIOCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[]},"PreCheckIOTimeout":0,"IOOutputCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[{"$type":"Bro.Common.Model.IORefrenceItem, Bro.Common.Model","IOItem":{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"澶圭揣姘旂几","Remark":"0锛氬噯澶囦綅 1锛氭娴嬩綅","IONum":5,"IOType":1},"CheckValue":0}]},"IOConfirmCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[{"$type":"Bro.Common.Model.IORefrenceItem, Bro.Common.Model","IOItem":{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"澶圭揣姘旂几鍦ㄥ噯澶囦綅","Remark":null,"IONum":10,"IOType":0},"CheckValue":1},{"$type":"Bro.Common.Model.IORefrenceItem, Bro.Common.Model","IOItem":{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"澶圭揣姘旂几鍦ㄦ娴嬩綅","Remark":null,"IONum":11,"IOType":0},"CheckValue":0}]},"IOConfirmTimeout":0,"MovingOps":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.MovingOption, Bro.Common.Model]], mscorlib","$values":[]},"DelayBefore":0,"DelayAfter":1000},{"$type":"Bro.Common.Base.MotionCardOperationSet, Bro.Common.Device","MotionCardId":"332E52C9-8CD2-4B22-B2DA-C4125F93BF66","PreCheckIOCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[]},"PreCheckIOTimeout":0,"IOOutputCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[{"$type":"Bro.Common.Model.IORefrenceItem, Bro.Common.Model","IOItem":{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"鍓嶅悗姘旂几鍒版娴嬩綅","Remark":null,"IONum":9,"IOType":1},"CheckValue":0},{"$type":"Bro.Common.Model.IORefrenceItem, Bro.Common.Model","IOItem":{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"鍓嶅悗姘旂几鍒板噯澶囦綅","Remark":null,"IONum":8,"IOType":1},"CheckValue":1}]},"IOConfirmCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[{"$type":"Bro.Common.Model.IORefrenceItem, Bro.Common.Model","IOItem":{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"鍓嶅悗姘旂几鍦ㄦ娴嬩綅","Remark":null,"IONum":11,"IOType":0},"CheckValue":0},{"$type":"Bro.Common.Model.IORefrenceItem, Bro.Common.Model","IOItem":{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"鍓嶅悗姘旂几鍦ㄥ噯澶囦綅","Remark":null,"IONum":10,"IOType":0},"CheckValue":1}]},"IOConfirmTimeout":0,"MovingOps":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.MovingOption, Bro.Common.Model]], mscorlib","$values":[]},"DelayBefore":0,"DelayAfter":0},{"$type":"Bro.Common.Base.MotionCardOperationSet, Bro.Common.Device","MotionCardId":"332E52C9-8CD2-4B22-B2DA-C4125F93BF66","PreCheckIOCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[]},"PreCheckIOTimeout":0,"IOOutputCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[]},"IOConfirmCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[]},"IOConfirmTimeout":0,"MovingOps":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.MovingOption, Bro.Common.Model]], mscorlib","$values":[{"$type":"Bro.Common.Model.MovingOption, Bro.Common.Model","AxisIndexStr":"1","MoveMode":8,"IsAbsolute":true,"Destination":0,"VelocityPara":{"$type":"Bro.Common.Model.VelocityPara, Bro.Common.Model","Velocity":0.0,"Acc":1.0,"Dec":1.0},"MovingTimeout":0},{"$type":"Bro.Common.Model.MovingOption, Bro.Common.Model","AxisIndexStr":"2","MoveMode":8,"IsAbsolute":true,"Destination":0,"VelocityPara":{"$type":"Bro.Common.Model.VelocityPara, Bro.Common.Model","Velocity":0.0,"Acc":1.0,"Dec":1.0},"MovingTimeout":0}]},"DelayBefore":0,"DelayAfter":0}]},"ExceptionValue":0,"ReTryTimes":3,"MonitorSetId":"3ae0f151-8d3f-45c3-acd1-3fc14e422ba7"},"Name":"","DisplayText":"杩愬姩鏉垮崱 FullReset-澶у浣嶆搷浣�"},{"$type":"Bro.Common.Model.MonitorSetBase, Bro.Common.Model","Id":"2aaaaff3-1be1-489c-8603-7cbb08ca017f","InvokeDevice":"332E52C9-8CD2-4B22-B2DA-C4125F93BF66","SourceDevice":"","MethodCode":"GotoReadyPosition","MethodDesc":"杩愬姩鍒伴澶囦綅缃�","OpConfig":{"$type":"Bro.Device.GTSCard.GTSCardOperationConfig, Bro.Device.GTSCard","OperationCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Base.MotionCardOperationSet, Bro.Common.Device]], mscorlib","$values":[{"$type":"Bro.Common.Base.MotionCardOperationSet, Bro.Common.Device","MotionCardId":"332E52C9-8CD2-4B22-B2DA-C4125F93BF66","PreCheckIOCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[]},"PreCheckIOTimeout":0,"IOOutputCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[{"$type":"Bro.Common.Model.IORefrenceItem, Bro.Common.Model","IOItem":{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"澶圭揣姘旂几","Remark":"0锛氬噯澶囦綅 1锛氭娴嬩綅","IONum":5,"IOType":1},"CheckValue":0}]},"IOConfirmCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[{"$type":"Bro.Common.Model.IORefrenceItem, Bro.Common.Model","IOItem":{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"澶圭揣姘旂几鍦ㄥ噯澶囦綅","Remark":null,"IONum":10,"IOType":0},"CheckValue":1},{"$type":"Bro.Common.Model.IORefrenceItem, Bro.Common.Model","IOItem":{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"澶圭揣姘旂几鍦ㄦ娴嬩綅","Remark":null,"IONum":11,"IOType":0},"CheckValue":0}]},"IOConfirmTimeout":0,"MovingOps":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.MovingOption, Bro.Common.Model]], mscorlib","$values":[]},"DelayBefore":0,"DelayAfter":1000},{"$type":"Bro.Common.Base.MotionCardOperationSet, Bro.Common.Device","MotionCardId":"332E52C9-8CD2-4B22-B2DA-C4125F93BF66","PreCheckIOCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[]},"PreCheckIOTimeout":0,"IOOutputCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[{"$type":"Bro.Common.Model.IORefrenceItem, Bro.Common.Model","IOItem":{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"鍓嶅悗姘旂几鍒板噯澶囦綅","Remark":null,"IONum":6,"IOType":1},"CheckValue":1},{"$type":"Bro.Common.Model.IORefrenceItem, Bro.Common.Model","IOItem":{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"鍓嶅悗姘旂几鍒版娴嬩綅","Remark":null,"IONum":7,"IOType":1},"CheckValue":0}]},"IOConfirmCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[{"$type":"Bro.Common.Model.IORefrenceItem, Bro.Common.Model","IOItem":{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"鍓嶅悗姘旂几鍦ㄥ噯澶囦綅","Remark":null,"IONum":12,"IOType":0},"CheckValue":1},{"$type":"Bro.Common.Model.IORefrenceItem, Bro.Common.Model","IOItem":{"$type":"Bro.Common.Model.IODefinition, Bro.Common.Model","IOPreStatement":0,"IODesc":"鍓嶅悗姘旂几鍦ㄦ娴嬩綅","Remark":null,"IONum":13,"IOType":0},"CheckValue":0}]},"IOConfirmTimeout":0,"MovingOps":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.MovingOption, Bro.Common.Model]], mscorlib","$values":[]},"DelayBefore":0,"DelayAfter":0},{"$type":"Bro.Common.Base.MotionCardOperationSet, Bro.Common.Device","MotionCardId":"332E52C9-8CD2-4B22-B2DA-C4125F93BF66","PreCheckIOCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[]},"PreCheckIOTimeout":0,"IOOutputCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[]},"IOConfirmCollection":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.IORefrenceItem, Bro.Common.Model]], mscorlib","$values":[]},"IOConfirmTimeout":0,"MovingOps":{"$type":"System.Collections.Generic.List`1[[Bro.Common.Model.MovingOption, Bro.Common.Model]], mscorlib","$values":[{"$type":"Bro.Common.Model.MovingOption, Bro.Common.Model","AxisIndexStr":"1","MoveMode":1,"IsAbsolute":true,"Destination":609634,"VelocityPara":{"$type":"Bro.Common.Model.VelocityPara, Bro.Common.Model","Velocity":200.0,"Acc":0.0,"Dec":0.0},"MovingTimeout":0},{"$type":"Bro.Common.Model.MovingOption, Bro.Common.Model","AxisIndexStr":"2","MoveMode":1,"IsAbsolute":true,"Destination":0,"VelocityPara":{"$type":"Bro.Common.Model.VelocityPara, Bro.Common.Model","Velocity":200.0,"Acc":0.0,"Dec":0.0},"MovingTimeout":0}]},"DelayBefore":0,"DelayAfter":0}]},"ExceptionValue":0,"ReTryTimes":3,"MonitorSetId":"2aaaaff3-1be1-489c-8603-7cbb08ca017f"},"Name":"","DisplayText":"杩愬姩鏉垮崱 GotoReadyPosition-杩愬姩鍒伴澶囦綅缃�"}]}} \ No newline at end of file diff --git "a/M071B\351\205\215\347\275\256/Configs/KeyBoard-\345\260\217\347\210\261.bmp" "b/M071B\351\205\215\347\275\256/Configs/KeyBoard-\345\260\217\347\210\261.bmp" new file mode 100644 index 0000000..ebbf2d2 --- /dev/null +++ "b/M071B\351\205\215\347\275\256/Configs/KeyBoard-\345\260\217\347\210\261.bmp" Binary files differ diff --git "a/M071B\351\205\215\347\275\256/Configs/M071B-GTS400-20200814.cfg" "b/M071B\351\205\215\347\275\256/Configs/M071B-GTS400-20200814.cfg" new file mode 100644 index 0000000..6df8bb3 --- /dev/null +++ "b/M071B\351\205\215\347\275\256/Configs/M071B-GTS400-20200814.cfg" @@ -0,0 +1,734 @@ +[profile1] +active=1 +decSmoothStop=1.000000 +decAbruptStop=1000.000000 +[profile2] +active=1 +decSmoothStop=1.000000 +decAbruptStop=1000.000000 +[profile3] +active=1 +decSmoothStop=1.000000 +decAbruptStop=1000.000000 +[profile4] +active=1 +decSmoothStop=1.000000 +decAbruptStop=1000.000000 +[profile5] +active=1 +decSmoothStop=1.000000 +decAbruptStop=1000.000000 +[profile6] +active=1 +decSmoothStop=1.000000 +decAbruptStop=1000.000000 +[profile7] +active=1 +decSmoothStop=1.000000 +decAbruptStop=1000.000000 +[profile8] +active=1 +decSmoothStop=1.000000 +decAbruptStop=1000.000000 +[axis1] +active=1 +alarmType=2 +alarmIndex=1 +limitPositiveType=0 +limitPositiveIndex=1 +limitNegativeType=1 +limitNegativeIndex=1 +smoothStopType=4 +smoothStopIndex=-1 +abruptStopType=4 +abruptStopIndex=4 +prfMap=0x1 +encMap=0x1 +prfMapAlpha1=1 +prfMapBeta1=1 +prfMapAlpha2=1 +prfMapBeta2=1 +encMapAlpha1=1 +encMapBeta1=1 +encMapAlpha2=1 +encMapBeta2=1 +[axis2] +active=1 +alarmType=2 +alarmIndex=2 +limitPositiveType=0 +limitPositiveIndex=2 +limitNegativeType=1 +limitNegativeIndex=2 +smoothStopType=4 +smoothStopIndex=-1 +abruptStopType=4 +abruptStopIndex=4 +prfMap=0x2 +encMap=0x2 +prfMapAlpha1=1 +prfMapBeta1=1 +prfMapAlpha2=1 +prfMapBeta2=1 +encMapAlpha1=1 +encMapBeta1=1 +encMapAlpha2=1 +encMapBeta2=1 +[axis3] +active=1 +alarmType=2 +alarmIndex=3 +limitPositiveType=0 +limitPositiveIndex=3 +limitNegativeType=1 +limitNegativeIndex=3 +smoothStopType=4 +smoothStopIndex=-1 +abruptStopType=4 +abruptStopIndex=-1 +prfMap=0x4 +encMap=0x4 +prfMapAlpha1=1 +prfMapBeta1=1 +prfMapAlpha2=1 +prfMapBeta2=1 +encMapAlpha1=1 +encMapBeta1=1 +encMapAlpha2=1 +encMapBeta2=1 +[axis4] +active=1 +alarmType=2 +alarmIndex=4 +limitPositiveType=0 +limitPositiveIndex=4 +limitNegativeType=1 +limitNegativeIndex=4 +smoothStopType=4 +smoothStopIndex=-1 +abruptStopType=4 +abruptStopIndex=-1 +prfMap=0x8 +encMap=0x8 +prfMapAlpha1=1 +prfMapBeta1=1 +prfMapAlpha2=1 +prfMapBeta2=1 +encMapAlpha1=1 +encMapBeta1=1 +encMapAlpha2=1 +encMapBeta2=1 +[axis5] +active=1 +alarmType=2 +alarmIndex=5 +limitPositiveType=0 +limitPositiveIndex=5 +limitNegativeType=1 +limitNegativeIndex=5 +smoothStopType=4 +smoothStopIndex=-1 +abruptStopType=4 +abruptStopIndex=-1 +prfMap=0x10 +encMap=0x10 +prfMapAlpha1=1 +prfMapBeta1=1 +prfMapAlpha2=1 +prfMapBeta2=1 +encMapAlpha1=1 +encMapBeta1=1 +encMapAlpha2=1 +encMapBeta2=1 +[axis6] +active=1 +alarmType=2 +alarmIndex=6 +limitPositiveType=0 +limitPositiveIndex=6 +limitNegativeType=1 +limitNegativeIndex=6 +smoothStopType=4 +smoothStopIndex=-1 +abruptStopType=4 +abruptStopIndex=-1 +prfMap=0x20 +encMap=0x20 +prfMapAlpha1=1 +prfMapBeta1=1 +prfMapAlpha2=1 +prfMapBeta2=1 +encMapAlpha1=1 +encMapBeta1=1 +encMapAlpha2=1 +encMapBeta2=1 +[axis7] +active=1 +alarmType=2 +alarmIndex=7 +limitPositiveType=0 +limitPositiveIndex=7 +limitNegativeType=1 +limitNegativeIndex=7 +smoothStopType=4 +smoothStopIndex=-1 +abruptStopType=4 +abruptStopIndex=-1 +prfMap=0x40 +encMap=0x40 +prfMapAlpha1=1 +prfMapBeta1=1 +prfMapAlpha2=1 +prfMapBeta2=1 +encMapAlpha1=1 +encMapBeta1=1 +encMapAlpha2=1 +encMapBeta2=1 +[axis8] +active=1 +alarmType=2 +alarmIndex=8 +limitPositiveType=0 +limitPositiveIndex=8 +limitNegativeType=1 +limitNegativeIndex=8 +smoothStopType=4 +smoothStopIndex=-1 +abruptStopType=4 +abruptStopIndex=-1 +prfMap=0x80 +encMap=0x80 +prfMapAlpha1=1 +prfMapBeta1=1 +prfMapAlpha2=1 +prfMapBeta2=1 +encMapAlpha1=1 +encMapBeta1=1 +encMapAlpha2=1 +encMapBeta2=1 +[dac1] +active=1 +control=-1 +reverse=0 +bias=0 +limit=32767 +[dac2] +active=1 +control=-1 +reverse=0 +bias=0 +limit=32767 +[dac3] +active=1 +control=-1 +reverse=0 +bias=0 +limit=32767 +[dac4] +active=1 +control=-1 +reverse=0 +bias=0 +limit=32767 +[dac5] +active=1 +control=-1 +reverse=0 +bias=0 +limit=32767 +[dac6] +active=1 +control=-1 +reverse=0 +bias=0 +limit=32767 +[dac7] +active=1 +control=-1 +reverse=0 +bias=0 +limit=32767 +[dac8] +active=1 +control=-1 +reverse=0 +bias=0 +limit=32767 +[step1] +active=1 +axis=1 +mode=1 +parameter=0 +reverse=0 +[step2] +active=1 +axis=2 +mode=1 +parameter=0 +reverse=0 +[step3] +active=1 +axis=3 +mode=0 +parameter=0 +reverse=0 +[step4] +active=1 +axis=4 +mode=0 +parameter=0 +reverse=0 +[encoder1] +active=1 +reverse=0 +filterType=0 +captureSource=0 +captureHomeSense=0 +captureIndexSense=0 +[encoder2] +active=1 +reverse=0 +filterType=0 +captureSource=0 +captureHomeSense=0 +captureIndexSense=0 +[encoder3] +active=1 +reverse=1 +filterType=0 +captureSource=0 +captureHomeSense=0 +captureIndexSense=0 +[encoder4] +active=1 +reverse=1 +filterType=0 +captureSource=0 +captureHomeSense=0 +captureIndexSense=0 +[encoder5] +active=1 +reverse=1 +filterType=0 +captureSource=0 +captureHomeSense=0 +captureIndexSense=0 +[encoder6] +active=1 +reverse=1 +filterType=0 +captureSource=0 +captureHomeSense=0 +captureIndexSense=0 +[encoder7] +active=1 +reverse=1 +filterType=0 +captureSource=0 +captureHomeSense=0 +captureIndexSense=0 +[encoder8] +active=1 +reverse=1 +filterType=0 +captureSource=0 +captureHomeSense=0 +captureIndexSense=0 +[encoder9] +active=1 +reverse=1 +filterType=0 +captureSource=0 +captureHomeSense=0 +captureIndexSense=0 +[encoder10] +active=1 +reverse=1 +filterType=0 +captureSource=0 +captureHomeSense=0 +captureIndexSense=0 +[enable1] +active=1 +axis=1 +axisItem=-1 +reverse=1 +[enable2] +active=1 +axis=2 +axisItem=-1 +reverse=1 +[enable3] +active=1 +axis=3 +axisItem=-1 +reverse=1 +[enable4] +active=1 +axis=4 +axisItem=-1 +reverse=1 +[enable5] +active=1 +axis=5 +axisItem=-1 +reverse=1 +[enable6] +active=1 +axis=6 +axisItem=-1 +reverse=1 +[enable7] +active=1 +axis=7 +axisItem=-1 +reverse=1 +[enable8] +active=1 +axis=8 +axisItem=-1 +reverse=1 +[clear1] +active=1 +axis=-1 +axisItem=-1 +reverse=0 +[clear2] +active=1 +axis=-1 +axisItem=-1 +reverse=0 +[clear3] +active=1 +axis=-1 +axisItem=-1 +reverse=0 +[clear4] +active=1 +axis=-1 +axisItem=-1 +reverse=0 +[clear5] +active=1 +axis=-1 +axisItem=-1 +reverse=0 +[clear6] +active=1 +axis=-1 +axisItem=-1 +reverse=0 +[clear7] +active=1 +axis=-1 +axisItem=-1 +reverse=0 +[clear8] +active=1 +axis=-1 +axisItem=-1 +reverse=0 +[gpo1] +active=1 +axis=-1 +axisItem=-1 +reverse=0 +[gpo2] +active=1 +axis=-1 +axisItem=-1 +reverse=0 +[gpo3] +active=1 +axis=-1 +axisItem=-1 +reverse=0 +[gpo4] +active=1 +axis=-1 +axisItem=-1 +reverse=0 +[gpo5] +active=1 +axis=-1 +axisItem=-1 +reverse=0 +[gpo6] +active=1 +axis=-1 +axisItem=-1 +reverse=0 +[gpo7] +active=1 +axis=-1 +axisItem=-1 +reverse=0 +[gpo8] +active=1 +axis=-1 +axisItem=-1 +reverse=0 +[gpo9] +active=1 +axis=-1 +axisItem=-1 +reverse=0 +[gpo10] +active=1 +axis=-1 +axisItem=-1 +reverse=0 +[gpo11] +active=1 +axis=-1 +axisItem=-1 +reverse=0 +[gpo12] +active=1 +axis=-1 +axisItem=-1 +reverse=0 +[gpo13] +active=1 +axis=-1 +axisItem=-1 +reverse=0 +[gpo14] +active=1 +axis=-1 +axisItem=-1 +reverse=0 +[gpo15] +active=1 +axis=-1 +axisItem=-1 +reverse=0 +[gpo16] +active=1 +axis=-1 +axisItem=-1 +reverse=0 +[limitPositive1] +active=1 +reverse=0 +filterTime=3 +[limitPositive2] +active=1 +reverse=0 +filterTime=3 +[limitPositive3] +active=1 +reverse=0 +filterTime=3 +[limitPositive4] +active=1 +reverse=0 +filterTime=3 +[limitPositive5] +active=1 +reverse=0 +filterTime=3 +[limitPositive6] +active=1 +reverse=0 +filterTime=3 +[limitPositive7] +active=1 +reverse=0 +filterTime=3 +[limitPositive8] +active=1 +reverse=0 +filterTime=3 +[limitNegative1] +active=1 +reverse=0 +filterTime=3 +[limitNegative2] +active=1 +reverse=0 +filterTime=3 +[limitNegative3] +active=1 +reverse=0 +filterTime=3 +[limitNegative4] +active=1 +reverse=0 +filterTime=3 +[limitNegative5] +active=1 +reverse=0 +filterTime=3 +[limitNegative6] +active=1 +reverse=0 +filterTime=3 +[limitNegative7] +active=1 +reverse=0 +filterTime=3 +[limitNegative8] +active=1 +reverse=0 +filterTime=3 +[alarm1] +active=1 +reverse=0 +filterTime=3 +[alarm2] +active=1 +reverse=0 +filterTime=3 +[alarm3] +active=1 +reverse=0 +filterTime=3 +[alarm4] +active=1 +reverse=0 +filterTime=3 +[alarm5] +active=1 +reverse=0 +filterTime=3 +[alarm6] +active=1 +reverse=0 +filterTime=3 +[alarm7] +active=1 +reverse=0 +filterTime=3 +[alarm8] +active=1 +reverse=0 +filterTime=3 +[home1] +active=1 +reverse=0 +filterTime=300 +[home2] +active=1 +reverse=0 +filterTime=300 +[home3] +active=1 +reverse=0 +filterTime=3 +[home4] +active=1 +reverse=0 +filterTime=3 +[home5] +active=1 +reverse=0 +filterTime=3 +[home6] +active=1 +reverse=0 +filterTime=3 +[home7] +active=1 +reverse=0 +filterTime=3 +[home8] +active=1 +reverse=0 +filterTime=3 +[gpi1] +active=1 +reverse=0 +filterTime=3 +[gpi2] +active=1 +reverse=0 +filterTime=3 +[gpi3] +active=1 +reverse=0 +filterTime=3 +[gpi4] +active=1 +reverse=0 +filterTime=3 +[gpi5] +active=1 +reverse=0 +filterTime=3 +[gpi6] +active=1 +reverse=0 +filterTime=3 +[gpi7] +active=1 +reverse=0 +filterTime=3 +[gpi8] +active=1 +reverse=0 +filterTime=3 +[gpi9] +active=1 +reverse=0 +filterTime=3 +[gpi10] +active=1 +reverse=0 +filterTime=3 +[gpi11] +active=1 +reverse=0 +filterTime=3 +[gpi12] +active=1 +reverse=0 +filterTime=3 +[gpi13] +active=1 +reverse=0 +filterTime=3 +[gpi14] +active=1 +reverse=0 +filterTime=3 +[gpi15] +active=1 +reverse=0 +filterTime=3 +[gpi16] +active=1 +reverse=0 +filterTime=3 +[arrive1] +active=1 +reverse=0 +filterTime=3 +[arrive2] +active=1 +reverse=0 +filterTime=3 +[arrive3] +active=1 +reverse=0 +filterTime=3 +[arrive4] +active=1 +reverse=0 +filterTime=3 +[arrive5] +active=1 +reverse=0 +filterTime=3 +[arrive6] +active=1 +reverse=0 +filterTime=3 +[arrive7] +active=1 +reverse=0 +filterTime=3 +[arrive8] +active=1 +reverse=0 +filterTime=3 diff --git a/src/Bro.Common.Device/DeviceBase/CameraBase.cs b/src/Bro.Common.Device/DeviceBase/CameraBase.cs index 82b529d..85b5458 100644 --- a/src/Bro.Common.Device/DeviceBase/CameraBase.cs +++ b/src/Bro.Common.Device/DeviceBase/CameraBase.cs @@ -155,7 +155,7 @@ set.IsAddtionalSaved = string.IsNullOrWhiteSpace(set.ImageSaveOption.AddtionalSaveType); set.OnImageSetTimeout += ImageSet_OnImageSetTimeout; - _imageSetList.Add(set); + _imageSetList[set.Id] = set; } /// <summary> @@ -175,7 +175,8 @@ #endregion #region 鍥剧墖缂撳瓨/淇濆瓨 - public readonly ConcurrentBag<IImageSet> _imageSetList = new ConcurrentBag<IImageSet>(); + //public readonly ConcurrentBag<IImageSet> _imageSetList = new ConcurrentBag<IImageSet>(); + protected Dictionary<string, IImageSet> _imageSetList = new Dictionary<string, IImageSet>(); public void NewImageSet(IImageSet set) { @@ -183,7 +184,7 @@ set.IsFitSaved = !set.ImageSaveOption.IsSaveFitImage; set.IsAddtionalSaved = string.IsNullOrWhiteSpace(set.ImageSaveOption.AddtionalSaveType); set.OnImageSetTimeout += ImageSet_OnImageSetTimeout; - _imageSetList.Add(set); + _imageSetList[set.Id] = set; } //public virtual async void UpdateFitElements(List<IShapeElement> eleList, string imgSetId) @@ -201,7 +202,7 @@ OnImageUpdated?.Invoke(this, showImage, imgSetId); }); - IImageSet set = _imageSetList.FirstOrDefault(u => u.Id == imgSetId); + IImageSet set = _imageSetList[imgSetId]; if (set == null) return; @@ -236,7 +237,7 @@ if (eleList.Count > 0) OnElementsUpdated?.BeginInvoke(this, eleList, imgSetId, null, null); - IImageSet set = _imageSetList.FirstOrDefault(u => u.Id == imgSetId); + IImageSet set = _imageSetList[imgSetId]; if (set == null) return; @@ -300,7 +301,7 @@ { await Task.Run(() => { - IImageSet set = _imageSetList.FirstOrDefault(u => u.Id == imgSetId); + IImageSet set = _imageSetList[imgSetId]; if (set == null) return; @@ -366,7 +367,7 @@ //private Timer clearImageSetTimer = null; - public void ClearImageSet(IImageSet set) + public virtual void ClearImageSet(IImageSet set) { try { @@ -375,9 +376,8 @@ // && (!set.ImageSaveOption.IsSaveNGImage || set.IsNGSaved)) if (set.IsOriginSaved && set.IsFitSaved && set.IsAddtionalSaved) { - _imageSetList.TryTake(out set); - set.Dispose(); - //LogAsync(DateTime.Now, $"绉婚櫎鍥剧墖淇℃伅锛屽綋鍓嶇紦瀛樻暟閲忥細{_imageSetList.Count}", ""); + _imageSetList.Remove(set.Id); + LogAsync(DateTime.Now, $"绉婚櫎鍥剧墖淇℃伅锛屽綋鍓嶇紦瀛樻暟閲忥細{_imageSetList.Count}", ""); } //bool flag = false; @@ -397,7 +397,7 @@ public void ClearImageSet(string imgSetId) { - IImageSet set = _imageSetList.First(u => u.Id == imgSetId); + IImageSet set = _imageSetList[imgSetId]; if (set != null) ClearImageSet(set); } @@ -833,7 +833,7 @@ } } - public interface IImageSet : IDisposable + public interface IImageSet:IDisposable { DateTime InitialTime { get; set; } string Id { get; } @@ -897,26 +897,22 @@ public event Action<ImageSet> OnImageSetTimeout; private Timer autoDisposeTimer = null; - private void OnAutoDispose(object state) + public void Dispose(object state) { OnImageSetTimeout?.Invoke(this); - } - public ImageSet() - { - autoDisposeTimer = new Timer(OnAutoDispose, null, 10 * 1000, -1); + autoDisposeTimer.Change(-1, -1); + autoDisposeTimer.Dispose(); } public virtual void Dispose() { - autoDisposeTimer.Change(-1, -1); - autoDisposeTimer.Dispose(); + Dispose(null); + } - //Image?.Dispose(); - //Image = null; - - //HImage?.Dispose(); - //HImage = null; + public ImageSet() + { + autoDisposeTimer = new Timer(Dispose, null, 10 * 1000, -1); } #endregion } diff --git a/src/Bro.Common.Model/Model/MotionCardRelated.cs b/src/Bro.Common.Model/Model/MotionCardRelated.cs index 8d9ce6b..7cb2221 100644 --- a/src/Bro.Common.Model/Model/MotionCardRelated.cs +++ b/src/Bro.Common.Model/Model/MotionCardRelated.cs @@ -158,25 +158,25 @@ /// </summary> public class GoHomePara { - [Category("鍥炲師鐐瑰弬鏁�")] - [DisplayName("鍥炲師鐐规柟寮�")] - [Description("HomeMode锛氬洖鍘熺偣鏂瑰紡 锛圚OME_MODE_LIMIT = 10; HOME_MODE_LIMIT_HOME = 11; HOME_MODE_LIMIT_INDEX = 12; HOME_MODE_LIMIT_HOME_INDEX = 13;HOME_MODE_HOME = 20;HOME_MODE_HOME_INDEX = 22;HOME_MODE_INDEX = 30;")] - public short HomeMode { get; set; } = 11; + //[Category("鍥炲師鐐瑰弬鏁�")] + //[DisplayName("鍥炲師鐐规柟寮�")] + //[Description("HomeMode锛氬洖鍘熺偣鏂瑰紡 锛圚OME_MODE_LIMIT = 10; HOME_MODE_LIMIT_HOME = 11; HOME_MODE_LIMIT_INDEX = 12; HOME_MODE_LIMIT_HOME_INDEX = 13;HOME_MODE_HOME = 20;HOME_MODE_HOME_INDEX = 22;HOME_MODE_INDEX = 30;")] + //public short HomeMode { get; set; } = 11; - [Category("鍥炲師鐐瑰弬鏁�")] - [DisplayName("杈圭紭")] - [Description("edge锛氳竟缂�")] - public short Edge { get; set; } = 0; + //[Category("鍥炲師鐐瑰弬鏁�")] + //[DisplayName("杈圭紭")] + //[Description("edge锛氳竟缂�")] + //public short Edge { get; set; } = 0; + + //[Category("鍥炲師鐐归�熷害")] + //[DisplayName("鍥炲師鐐规渶浣庨�熷害")] + //[Description("LowVelocity锛氶�熷害,涓�0鏃惰〃绀轰笉淇敼褰撳墠璁剧疆")] + //public double LowVelocity { get; set; } = 50; [Category("鍥炲師鐐归�熷害")] - [DisplayName("鍥炲師鐐规渶浣庨�熷害")] - [Description("LowVelocity锛氶�熷害,涓�0鏃惰〃绀轰笉淇敼褰撳墠璁剧疆")] - public double LowVelocity { get; set; } = 50; - - [Category("鍥炲師鐐归�熷害")] - [DisplayName("鍥炲師鐐规渶楂橀�熷害")] - [Description("HighVelocity锛氶�熷害,涓�0鏃惰〃绀轰笉淇敼褰撳墠璁剧疆")] - public double HighVelocity { get; set; } = 50; + [DisplayName("鍥炲師鐐归�熷害")] + [Description("HomeVelocity锛氶�熷害,涓�0鏃惰〃绀轰笉淇敼褰撳墠璁剧疆")] + public double HomeVelocity { get; set; } = 50; //[Category("鍥炲師鐐瑰弬鏁�")] //[DisplayName("鎼滅储璺濈")] @@ -188,10 +188,10 @@ [Description("HomeOffset锛氬亸绉昏窛绂�")] public int HomeOffset { get; set; } = 0; - [Category("鍥炲師鐐瑰亸绉�")] - [DisplayName("璺宠繃姝ラ暱")] - [Description("EscapeStep锛氳烦杩囨闀�")] - public int EscapeStep { get; set; } = 1000; + //[Category("鍥炲師鐐瑰亸绉�")] + //[DisplayName("璺宠繃姝ラ暱")] + //[Description("EscapeStep锛氳烦杩囨闀�")] + //public int EscapeStep { get; set; } = 1000; [Category("鍥炲師鐐规柟鍚�")] [DisplayName("璧峰杩愬姩鏂瑰悜")] @@ -207,6 +207,11 @@ [DisplayName("鍥炲師鐐硅秴鏃�")] [Description("鍥炲師鐐硅秴鏃讹紝鍗曚綅绉�")] public int GoHomeTimeOut { get; set; } = 60; + + [Category("鍘熺偣鎹曡幏妯″紡")] + [Description("鍘熺偣鎹曡幏妯″紡锛宼rue锛氫娇鐢ㄦ崟鑾锋ā寮忥紝false锛氫娇鐢ㄥ師鐐硅緭鍏ヤ俊鍙�")] + [DisplayName("鍘熺偣鎹曡幏妯″紡")] + public bool IsCaptureMode { get; set; } = true; } /// <summary> diff --git a/src/Bro.Device.GTSCard/GTSCardDriver.cs b/src/Bro.Device.GTSCard/GTSCardDriver.cs index a721273..d0c3dff 100644 --- a/src/Bro.Device.GTSCard/GTSCardDriver.cs +++ b/src/Bro.Device.GTSCard/GTSCardDriver.cs @@ -907,16 +907,19 @@ // 璁剧疆鐐逛綅妯″紡杩愬姩鍙傛暟 sRtn = GTSCardAPI.GT_SetTrapPrm((short)IConfig.CardNum, (short)movingOption.AxisIndex, ref trapPrm); // 璁剧疆鐐逛綅妯″紡鐩爣閫熷害锛屽嵆鍥炲師鐐归�熷害 - sRtn = GTSCardAPI.GT_SetVel((short)IConfig.CardNum, (short)movingOption.AxisIndex, goHomePara.HighVelocity); + sRtn = GTSCardAPI.GT_SetVel((short)IConfig.CardNum, (short)movingOption.AxisIndex, goHomePara.HomeVelocity); do { PositionReset(movingOption.AxisIndex, 1); ClearStatus(movingOption.AxisIndex, 1); - //鎼滅储璺濈 闃舵1 - // 鍚姩Home鎹曡幏 - sRtn = GTSCardAPI.GT_SetCaptureMode((short)IConfig.CardNum, (short)movingOption.AxisIndex, GTSCardAPI.CAPTURE_HOME); + if (goHomePara.IsCaptureMode) + { + //鎼滅储璺濈 闃舵1 + // 鍚姩Home鎹曡幏 + sRtn = GTSCardAPI.GT_SetCaptureMode((short)IConfig.CardNum, (short)movingOption.AxisIndex, GTSCardAPI.CAPTURE_HOME); + } // 璁剧疆鐐逛綅妯″紡鐩爣浣嶇疆锛屽嵆鍘熺偣鎼滅储璺濈 sRtn = GTSCardAPI.GT_SetPos((short)IConfig.CardNum, (short)movingOption.AxisIndex, homeDirection ? 99999999 : -99999999); @@ -926,15 +929,32 @@ int repeatTime = goHomePara.GoHomeTimeOut * 1000; bool isStop = false; - int pos; + int pos = 0; uint clk;//鏃堕挓鍙傛暟 + + int checkInterval = IConfig.MonitorInterval; + if (IConfig.MonitorInterval <= 0) + { + checkInterval = 10; + } + do { - Thread.Sleep(IConfig.MonitorInterval * 5); - // 璇诲彇鎹曡幏鐘舵�� - GTSCardAPI.GT_GetCaptureStatus((short)IConfig.CardNum, (short)movingOption.AxisIndex, out capture, out pos, 1, out clk); + Thread.Sleep(checkInterval * 2); + + if (goHomePara.IsCaptureMode) + { + // 璇诲彇鎹曡幏鐘舵�� + GTSCardAPI.GT_GetCaptureStatus((short)IConfig.CardNum, (short)movingOption.AxisIndex, out capture, out pos, 1, out clk); + } + else + { + GTSCardAPI.GT_GetDi((short)IConfig.CardNum, GTSCardAPI.MC_HOME, out int pValue); + + capture = (short)((pValue & (1 << (movingOption.AxisIndex - 1))) == 0 ? 1 : 0); + } isStop = IsStop((short)movingOption.AxisIndex); - repeatTime -= IConfig.MonitorInterval * 5; + repeatTime -= checkInterval * 2; } while (!(isStop || capture == 1 || repeatTime <= 0)); if (repeatTime <= 0) @@ -1253,7 +1273,7 @@ var newValues = GetMonitorValues(); //var newAxisMovingStatus = GetAxisMovingStatus(); - if (newValues == null || newValues.Count == 0 ) + if (newValues == null || newValues.Count == 0) continue; //Stopwatch sw = new Stopwatch(); diff --git a/src/Bro.Device.Gocator/GocatorDriver.cs b/src/Bro.Device.Gocator/GocatorDriver.cs index ae21a3f..15f801a 100644 --- a/src/Bro.Device.Gocator/GocatorDriver.cs +++ b/src/Bro.Device.Gocator/GocatorDriver.cs @@ -66,6 +66,8 @@ } HandleGoData(dataSet); + + dataSet.Dispose(); } private void HandleGoData(GoDataSet dataSet, GoImageSet imgSet = null) @@ -181,6 +183,8 @@ // } // break; } + + dataObj.Dispose(); } } @@ -238,6 +242,9 @@ } HandleGoData(dataSet, imgSet); + + dataSet.Dispose(); + if (imgSet.HImage == null) { LogAsync(DateTime.Now, $"{Name}鏈兘鑾峰彇HImage鍥惧儚", ""); @@ -412,6 +419,8 @@ _snapHandle.Set(); } } + + dataSet.Dispose(); } #region 閲嶅啓鍥剧墖淇濆瓨鎿嶄綔 @@ -422,7 +431,7 @@ OnImageUpdated?.Invoke(this, showImage, imgSetId); }); - GoImageSet set = _imageSetList.FirstOrDefault(u => u.Id == imgSetId) as GoImageSet; + GoImageSet set = _imageSetList[imgSetId] as GoImageSet; if (set == null) return; @@ -463,7 +472,7 @@ { await Task.Run(() => { - GoImageSet set = _imageSetList.FirstOrDefault(u => u.Id == imgSetId) as GoImageSet; + GoImageSet set = _imageSetList[imgSetId] as GoImageSet; if (set == null) return; @@ -493,19 +502,22 @@ } }); } + + public override void ClearImageSet(IImageSet set) + { + if (set.IsOriginSaved && set.IsFitSaved && set.IsAddtionalSaved) + { + (set as GoImageSet).HImage_2?.Dispose(); + (set as GoImageSet).HImage_2 = null; + } + + base.ClearImageSet(set); + } #endregion } public class GoImageSet : ImageSet { public HImage HImage_2 { get; set; } - - public override void Dispose() - { - base.Dispose(); - - HImage_2?.Dispose(); - HImage_2 = null; - } } } diff --git a/src/Bro.M071.Process/M071Config.cs b/src/Bro.M071.Process/M071Config.cs index 08a33a7..df1dacb 100644 --- a/src/Bro.M071.Process/M071Config.cs +++ b/src/Bro.M071.Process/M071Config.cs @@ -134,5 +134,10 @@ [Description("true锛氭暟鎹笂浼犺嚦MES false锛氭暟鎹笉涓婁紶")] [ReadOnly(true)] public bool IsEnableMESUpload { get; set; } = false; + + [Category("澶嶄綅璁剧疆")] + [Description("澶у浣嶉渶瑕佷俊鍙锋寔缁椂闂达紝澶嶄綅淇″彿鎸佺画瓒呭嚭璇ユ椂闂存墽琛屽ぇ澶嶄綅锛屽崟浣嶏細s")] + [DisplayName("澶у浣嶆寔缁俊鍙烽暱搴�")] + public int FullResetRequiredDuration { get; set; } = 3; } } diff --git a/src/Bro.M071.Process/M071Models.cs b/src/Bro.M071.Process/M071Models.cs index a56f47c..2e9b2db 100644 --- a/src/Bro.M071.Process/M071Models.cs +++ b/src/Bro.M071.Process/M071Models.cs @@ -257,7 +257,7 @@ { Measurements?.ForEach(m => m?.Dispose()); Measurements = null; - + ElementList = null; Barcode = null; GC.Collect(); } @@ -342,6 +342,39 @@ { PropertyChanged?.Invoke(this, new PropertyChangedEventArgs("KeyUnitCollection")); } + + public MeasurementUnit Copy() + { + MeasurementUnit mUnit = new MeasurementUnit(); + + mUnit.Id = this.Id; + mUnit.Name = this.Name; + mUnit.IsEnabled = this.IsEnabled; + mUnit.MeasureType = this.MeasureType; + + mUnit.DisplayLocation = new Rectangle(this.DisplayLocation.Location, this.DisplayLocation.Size); + + if (this.Spec == null) + { + mUnit.Spec = null; + } + else + { + mUnit.Spec = new MeasureType(); + mUnit.Spec.Code = this.Spec.Code; + mUnit.Spec.AlgorithemPath = this.Spec.AlgorithemPath; + mUnit.Spec.StandardValue = this.Spec.StandardValue; + mUnit.Spec.Tolrenance_Positive = this.Spec.Tolrenance_Positive; + mUnit.Spec.Tolrenance_Negative = this.Spec.Tolrenance_Negative; + } + + this.KeyUnitCollection.ForEach(k => + { + mUnit.KeyUnitCollection.Add(k.Copy()); + }); + + return mUnit; + } } public class KeyUnitBind : IComplexDisplay, INotifyPropertyChanged, IDisposable @@ -391,10 +424,9 @@ public void Dispose() { - SpinWait wait = new SpinWait(); while (ImageSaveStatus != 0) { - wait.SpinOnce(); + Thread.Sleep(10); } KeyImages?.ForEach(i => @@ -437,6 +469,20 @@ } } } + + public KeyUnitBind Copy() + { + KeyUnitBind clone = new KeyUnitBind(); + clone.Key = this.Key; + clone.KeyResultId = this.KeyResultId; + + this.MeasureValueDict.Keys.ToList().ForEach(k => + { + clone.MeasureValueDict[k] = null; + }); + + return clone; + } } //public class NoticedDictionary<T1, T2> : Dictionary<T1, T2>, INotifyPropertyChanged diff --git a/src/Bro.M071.Process/M071Process.cs b/src/Bro.M071.Process/M071Process.cs index 155f253..a382503 100644 --- a/src/Bro.M071.Process/M071Process.cs +++ b/src/Bro.M071.Process/M071Process.cs @@ -207,10 +207,18 @@ MachineState = MachineState.Running; OnMeasureStart?.Invoke(); - var measurements = Config.MeasurementUnitCollection.Where(u => u.IsEnabled).ToList().DeepSerializeClone(); - measurements.ForEach(m => + //var measurements = Config.MeasurementUnitCollection.Where(u => u.IsEnabled).ToList().DeepSerializeClone(); + //measurements.ForEach(m => + //{ + // m.InitialKeyUnitMeasureChanged(); + //}); + + List<MeasurementUnit> measurements = new List<MeasurementUnit>(); + Config.MeasurementUnitCollection.Where(u => u.IsEnabled).ToList().ForEach(u => { + var m = u.Copy(); m.InitialKeyUnitMeasureChanged(); + measurements.Add(m); }); var pMeasure = new ProductionMeasurement() @@ -219,6 +227,8 @@ Measurements = measurements, StartTime = DateTime.Now, }; + + BarCode = ""; var existedProduction = productionList.FirstOrDefault(u => u.Barcode == pMeasure.Barcode); if (existedProduction != null) @@ -283,8 +293,9 @@ RunImageHandle(s.CameraOp.OpConfig, set, s.Id, s.Name, pMeasure.Measurements); }); - BarCode = ""; LogAsync(DateTime.Now, $"{pMeasure.Barcode}娴嬮噺鍔ㄤ綔瀹屾垚", ""); + + GC.Collect(0, GCCollectionMode.Optimized); return new ProcessResponse(true); } @@ -452,6 +463,7 @@ productionList.RemoveAll(p => p.Barcode == pMeasure.Barcode); pMeasure.Dispose(); + //LogAsync(DateTime.Now, $"{pMeasure.Barcode}浜у搧淇℃伅閲婃斁瀹屾垚", JsonConvert.SerializeObject(pMeasure)); } } @@ -729,8 +741,6 @@ #region RawData { - //rawDataSheet = package.Workbook.Worksheets["RawData"]; - int rowDataStartCol = rawDataSheet.Dimension.Columns; var barcodeCell = rawDataSheet.Cells[1, rowDataStartCol + 1, 1, rowDataStartCol + 4]; barcodeCell.Merge = true; @@ -776,12 +786,7 @@ if (slantMeasures.Count > 0) { int slantStartCol = slantSheet.Dimension.Columns; - - //var barcodeCell = slantSheet.Cells[1, slantStartCol + 1, 1, slantStartCol + 2]; - //barcodeCell.Merge = true; - //barcodeCell.Value = exportData.ProductionMeasurementRecord.ProductionBarcode; - //SetTitleCell(barcodeCell); - + var barcodeCell = slantSheet.Cells[1, slantStartCol + 1]; barcodeCell.Value = exportData.ProductionMeasurementRecord.ProductionBarcode; SetTitleCell(barcodeCell); @@ -789,10 +794,6 @@ var valueCell = slantSheet.Cells[2, slantStartCol + 1]; valueCell.Value = "Value"; SetTitleCell(valueCell); - - //var resultCell = slantSheet.Cells[2, slantStartCol + 2]; - //resultCell.Value = "Result"; - //SetTitleCell(resultCell); slantMeasures.ForEach(m => { @@ -937,6 +938,11 @@ #endregion package.Save(); + + rawDataSheet.Dispose(); + slantSheet.Dispose(); + alignmentSheet.Dispose(); + rowAlignmentSheet.Dispose(); }; } }); @@ -1191,11 +1197,17 @@ }); image.Dispose(); + image = null; } //); imgSet.HImage.Dispose(); + imgSet.HImage = null; + imgSet.Dispose(); + images.Dispose(); + images = null; + //if (count.I != 1) //{ // hImage?.Dispose(); diff --git a/src/Bro.M071.Process/M071Process_MotionCard.cs b/src/Bro.M071.Process/M071Process_MotionCard.cs index c85443d..5423b8f 100644 --- a/src/Bro.M071.Process/M071Process_MotionCard.cs +++ b/src/Bro.M071.Process/M071Process_MotionCard.cs @@ -17,7 +17,6 @@ public partial class M071Process { public Timer ResetTimer = null; - const int FULLRESETTIME = 5; object machineStateLock = new object(); //MachineState _machineStatePre = MachineState.Unknown; @@ -233,7 +232,7 @@ if (opConfig?.InputPara != null && opConfig.InputPara.Count > 0) { //澶у浣嶄俊鍙� - ResetTimer.Change(opConfig.InputPara[0] == 1 ? FULLRESETTIME * 1000 : -1, -1); + ResetTimer.Change(opConfig.InputPara[0] == 1 ? Config.FullResetRequiredDuration * 1000 : -1, -1); if (opConfig.InputPara[0] == 0) return new ProcessResponse(true); diff --git a/src/Bro.M071.Process/UI/KeyIndicator.cs b/src/Bro.M071.Process/UI/KeyIndicator.cs index 24967a5..1d71891 100644 --- a/src/Bro.M071.Process/UI/KeyIndicator.cs +++ b/src/Bro.M071.Process/UI/KeyIndicator.cs @@ -20,7 +20,7 @@ [Browsable(false)] public override string Name { get => base.Name; set => base.Name = value; } [Browsable(false)] - public override Font Font { get => base.Font; set => base.Font = value; } + public override Font Font { get; set; } = new Font(new FontFamily("Tahoma"), 12, GraphicsUnit.World); [Browsable(false)] public override int FontDistance { get => base.FontDistance; set => base.FontDistance = value; } [Browsable(false)] @@ -81,7 +81,8 @@ } g.FillRectangle(new SolidBrush(Color.FromArgb(85, backColor)), rectFill); - g.DrawString(Text, Font, new SolidBrush(foreColor), (float)(DisplayRect.X + DisplayRect.Width / 2.0 - txtSize.Width / 2.0), (float)(DisplayRect.Y + DisplayRect.Height)); + + g.DrawString(Text, Font, new SolidBrush(foreColor), (float)(DisplayRect.X + DisplayRect.Width / 2.0 - txtSize.Width / 2.0), (float)(DisplayRect.Y + DisplayRect.Height / 2.0 - txtSize.Height / 2.0)); } } diff --git a/src/Bro.M071.Process/UI/M071_MainForm.cs b/src/Bro.M071.Process/UI/M071_MainForm.cs index 0ed4652..7035785 100644 --- a/src/Bro.M071.Process/UI/M071_MainForm.cs +++ b/src/Bro.M071.Process/UI/M071_MainForm.cs @@ -42,6 +42,8 @@ cvImage.OnElementChangedHandle += CvImage_OnElementChangedHandle; timer1.Enabled = true; + + btnReset.Text = $"澶嶄綅锛堥暱鎸墈Config.FullResetRequiredDuration}绉掑ぇ澶嶄綅锛�"; }; } @@ -258,6 +260,23 @@ #region 鏍囩缁撴灉鏄剧ず private async void Process_M071_OnElementUpdated(Common.Interface.IShapeElement obj) { + //this.Invoke(new Action(() => + //{ + // if (obj is KeyIndicator keyIndicator) + // { + // var ele = cvImage.Elements.FirstOrDefault(u => u.ID == keyIndicator.ID); + + // //(ele as KeyIndicator).Text = keyIndicator.Text; + // //(ele as KeyIndicator).ResultState = keyIndicator.ResultState; + // if (ele != null) + // { + // ele = keyIndicator; + // } + + // this.Invalidate(); + // } + //})); + if (obj is KeyIndicator keyIndicator) { this.Invoke(new Action(() => @@ -472,7 +491,7 @@ Process_M071.Reset(null, null, null); } - Process_M071.ResetTimer.Change(1000 * 5, -1); + Process_M071.ResetTimer.Change(1000 * Config.FullResetRequiredDuration, -1); } private void btnReset_MouseUp(object sender, MouseEventArgs e) diff --git a/src/Bro.UI.Device.Winform/MotionCard/CtrlMotionCardAxisStatus.cs b/src/Bro.UI.Device.Winform/MotionCard/CtrlMotionCardAxisStatus.cs index df1f1b2..a3e774e 100644 --- a/src/Bro.UI.Device.Winform/MotionCard/CtrlMotionCardAxisStatus.cs +++ b/src/Bro.UI.Device.Winform/MotionCard/CtrlMotionCardAxisStatus.cs @@ -39,7 +39,7 @@ _axisMovingStatus = MotionCard.AxisStatusList.FirstOrDefault(u => u.AxisIndex == _axisIndex); if (_axisMovingStatus != null) { - textBoxPrfPositon.Text = _axisMovingStatus.Destination.ToString(); + textBoxPrfPositon.Text = _axisMovingStatus.CurPosition.ToString(); textBoxPrfVel.Text = _axisMovingStatus.PrfVelocity.ToString(); textBoxCurVel.Text = _axisMovingStatus.CurVelocity.ToString(); int axis_sts = _axisMovingStatus.AxisStatus; -- Gitblit v1.8.0