BorderSearch.cs 25 KB
Newer Older
潘栩锋's avatar
潘栩锋 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel;
using Misc;
using FLY.Thick.Base.Common;
using FLY.Thick.Base.IService;

namespace FLY.Thick.Base.Server
{

    /// <summary>
    /// 边界查找
    /// </summary>
    public class BorderSearch : IBorderSearchService, INotifyPropertyChanged, Misc.ISaveToXml
    {
        #region 延时执行,Markno
        public const int MARKNO_SAVE = 1;
        #endregion
        #region 属性,成员变量的代理

        /// <summary>
        /// 启动与否
        /// </summary>
潘栩锋's avatar
1  
潘栩锋 committed
26 27
        public bool Enable { get; set; }

潘栩锋's avatar
潘栩锋 committed
28 29 30
        /// <summary>
        /// 边界拐点检测,找到的边界更加精确
        /// </summary>
潘栩锋's avatar
1  
潘栩锋 committed
31
        public bool IsBreakDetect { get; set; } = true;
潘栩锋's avatar
潘栩锋 committed
32 33 34 35 36 37

        protected Range[] border = new Range[2] { new Range(), new Range() };

        /// <summary>
        /// 有限范围
        /// </summary>
潘栩锋's avatar
潘栩锋 committed
38 39
        [PropertyChanged.DoNotCheckEquality]
        public Range Valid { get; set; } = new Range();
潘栩锋's avatar
潘栩锋 committed
40 41 42
        /// <summary>
        /// 边界
        /// </summary>
潘栩锋's avatar
1  
潘栩锋 committed
43 44 45 46 47 48 49 50 51
        public Range Border_Forw { get { return border[0]; } }
        /// <summary>
        /// 边界
        /// </summary>
        public Range Border_Backw { get { return border[1]; } }

        /// <summary>
        /// 膜范围
        /// </summary>
潘栩锋's avatar
潘栩锋 committed
52
        public Range Border { get; set; } = new Range();
潘栩锋's avatar
1  
潘栩锋 committed
53

潘栩锋's avatar
潘栩锋 committed
54 55 56
        /// <summary>
        /// 当前膜宽,测量出来的,单位是 脉冲
        /// </summary>
潘栩锋's avatar
1  
潘栩锋 committed
57 58
        public int Width { get; protected set; }

潘栩锋's avatar
潘栩锋 committed
59 60 61
        /// <summary>
        /// 膜中间位置 单位 脉冲
        /// </summary>
潘栩锋's avatar
1  
潘栩锋 committed
62
        public int Mid { get; protected set; }
潘栩锋's avatar
潘栩锋 committed
63
        
潘栩锋's avatar
潘栩锋 committed
64 65 66
        /// <summary>
        /// 手动设置温修AD值
        /// </summary>
潘栩锋's avatar
1  
潘栩锋 committed
67
        public bool TempADBySet { get; set; }
潘栩锋's avatar
潘栩锋 committed
68 69 70 71

        /// <summary>
        /// 温修AD值
        /// </summary>
潘栩锋's avatar
1  
潘栩锋 committed
72 73
        public int CurrTempAD { get; set; } = 50000;

潘栩锋's avatar
潘栩锋 committed
74 75 76
        /// <summary>
        /// 温修AD值
        /// </summary>
潘栩锋's avatar
1  
潘栩锋 committed
77 78
        public int TempAD { get; set; } = 50000;

潘栩锋's avatar
潘栩锋 committed
79 80 81
        /// <summary>
        /// AD超过了范围, 就认为开始找到边界
        /// </summary>
82 83 84 85 86 87 88 89 90 91 92
        public int TempRange { get; set; } = 1000;

        /// <summary>
        /// 温修范围是温修的百分比
        /// </summary>
        public bool IsTempRangeByPercent { get; set; } = true;

        /// <summary>
        ///  温修范围百分比
        /// </summary>
        public double TempRangePercent { get; set; } = 0.02;
潘栩锋's avatar
1  
潘栩锋 committed
93 94


潘栩锋's avatar
潘栩锋 committed
95 96 97
        /// <summary>
        /// 有滤波器,只有非空的连续N个pos以上,才开始算边界开始
        /// </summary>
潘栩锋's avatar
1  
潘栩锋 committed
98
        public int N { get; set; }
潘栩锋's avatar
潘栩锋 committed
99 100 101 102

        /// <summary>
        /// 探头直径,单位脉冲, 膜宽 = 边界范围 - 探头直径
        /// </summary>
潘栩锋's avatar
1  
潘栩锋 committed
103 104
        public int SensorWidth { get; set; }

潘栩锋's avatar
潘栩锋 committed
105 106 107 108 109 110



        /// <summary>
        /// 找到边界后,再往内缩N2个脉冲,防止边界找得不准的问题。
        /// </summary>
潘栩锋's avatar
1  
潘栩锋 committed
111 112
        public int N2 { get; set; }

潘栩锋's avatar
潘栩锋 committed
113 114 115 116

        /// <summary>
        /// 记录两个边界以后扫描,以它们再外扩N3个脉冲,作为扫描范围 
        /// </summary>
潘栩锋's avatar
1  
潘栩锋 committed
117 118
        public int N3 { get; set; }

潘栩锋's avatar
潘栩锋 committed
119 120 121 122

        /// <summary>
        /// 用于调试, 进入到边界查找的数据
        /// </summary>
潘栩锋's avatar
1  
潘栩锋 committed
123
        public int[] Datas { get; set; } = null;
潘栩锋's avatar
潘栩锋 committed
124 125 126 127 128 129 130 131

        #endregion

        private string param_path = "bordersearch.xml";
        public BorderSearch()
        {
            Default();
            this.PropertyChanged += new PropertyChangedEventHandler(BorderSearch_PropertyChanged);
潘栩锋's avatar
潘栩锋 committed
132 133


潘栩锋's avatar
潘栩锋 committed
134 135 136 137 138 139 140 141
        }

        public BorderSearch(string param_path) 
        {
            if (!string.IsNullOrEmpty(param_path))
                this.param_path = param_path;
            Default();
            this.PropertyChanged += new PropertyChangedEventHandler(BorderSearch_PropertyChanged);
潘栩锋's avatar
潘栩锋 committed
142 143 144 145 146 147 148 149 150 151

            this.Border_Forw.PropertyChanged += (s, e) => {
                NotifyPropertyChanged("Border_Forw");
            };
            this.Border_Backw.PropertyChanged += (s, e) => {
                NotifyPropertyChanged("Border_Backw");
            };
            this.Border.PropertyChanged += (s, e) => {
                NotifyPropertyChanged("Border");
            };
潘栩锋's avatar
潘栩锋 committed
152 153 154 155 156
            Load();
        }
        void Default() 
        {
            Enable = false;
潘栩锋's avatar
潘栩锋 committed
157 158
            Valid = new Range() { Begin = 1200, End = 7400 };
            
潘栩锋's avatar
潘栩锋 committed
159 160 161 162 163 164 165 166
            Init();

            TempAD = -1;
            N = 20;
            N2 = 400;
            N3 = 1000;
            SensorWidth = 250;
            Width = 0;
潘栩锋's avatar
潘栩锋 committed
167 168 169
            Border_Backw.Reset();
            Border_Forw.Reset();
            Border.Reset();
潘栩锋's avatar
潘栩锋 committed
170 171
            Mid = Valid.Mid;
            TempRange = 500;
172 173
            TempRangePercent = 500.0 / 50000;
            IsTempRangeByPercent = true;
潘栩锋's avatar
潘栩锋 committed
174 175 176
        }


潘栩锋's avatar
潘栩锋 committed
177

潘栩锋's avatar
潘栩锋 committed
178 179 180

        void BorderSearch_PropertyChanged(object sender, PropertyChangedEventArgs e)
        {
181
            if (e.PropertyName == "CurrTempAD")
潘栩锋's avatar
潘栩锋 committed
182 183 184 185
            {
                if (!TempADBySet)
                    TempAD = CurrTempAD;
            }
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
            else if (e.PropertyName == "TempAD")
            {
                if (IsTempRangeByPercent)
                {
                    TempRange = (int)(TempAD * TempRangePercent);
                }
            }
            else if ((e.PropertyName == "TempRangePercent") || (e.PropertyName == "IsTempRangeByPercent"))
            {
                if (IsTempRangeByPercent)
                {
                    TempRange = (int)(TempAD * TempRangePercent);
                }
            }

潘栩锋's avatar
潘栩锋 committed
201 202 203 204
        }

        public void Init()
        {
潘栩锋's avatar
潘栩锋 committed
205 206
            Border_Backw.Reset();
            Border_Forw.Reset();
潘栩锋's avatar
潘栩锋 committed
207
            Width = 0;
潘栩锋's avatar
潘栩锋 committed
208
            Border.Reset();
潘栩锋's avatar
潘栩锋 committed
209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232
            Mid = Valid.Mid;
        }
        public Range GetScanRange() 
        {
            int b, e;
            GetScanRange(out b, out e);
            return new Range() { Begin = b, End = e };
        }
        public void GetScanRange(out int posBegin, out int posEnd)
        {
            bool isForwFindOut=false;
            bool isBackFindOut=false;

            if (Border_Forw.Begin != Misc.MyBase.NULL_VALUE)
            {
                //正向找到边界
                isForwFindOut = true;
            }

            if (Border_Backw.Begin != Misc.MyBase.NULL_VALUE) 
            {
                //反向找到边界
                isBackFindOut = true;
            }
潘栩锋's avatar
1  
潘栩锋 committed
233 234
            int min=Valid.Begin;
            int max=Valid.End;
潘栩锋's avatar
潘栩锋 committed
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257

            if(isForwFindOut && isBackFindOut)
            {

                min = Math.Min(Border_Forw.Begin, Border_Backw.Begin) - N3;
                max = Math.Max(Border_Forw.End, Border_Backw.End) + N3;
            }
            else if(isForwFindOut)
            {
                min = Border_Forw.Begin - N3;
                max = Border_Forw.End + N3;
            }
            else if(isBackFindOut)
            {
                min = Border_Backw.Begin-N3;
                max = Border_Backw.End + N3;
            }
            //else
            //{
            //    //都不能找到边界
            //}
            
            //范围限制
潘栩锋's avatar
1  
潘栩锋 committed
258 259
            if (min < Valid.Begin)
                min = Valid.Begin;
潘栩锋's avatar
潘栩锋 committed
260

潘栩锋's avatar
1  
潘栩锋 committed
261 262
            if (max > Valid.End)
                max = Valid.End;
潘栩锋's avatar
潘栩锋 committed
263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454
            posBegin = min;
            posEnd = max;
        }
        private bool IsNULL(int dat, bool pre)//判断是否为空
        {
            if (TempAD != Misc.MyBase.NULL_VALUE)//以温修作为空的数据
            {
                if (!Misc.MyBase.ISVALIDATA(dat))//当数据无效时,按上一次的结果作准 
                {
                    return pre;
                }
                if (Math.Abs(TempAD - dat) < TempRange)
                {
                    return true;
                }
            }
            else//以数据无效作为空的数据
            {
                if (!Misc.MyBase.ISVALIDATA(dat))//当数据有效 ,那就是边界
                    return true;
            }
            return false;
        }



        /// <summary>
        /// 初略操作,超过范围 就是边界
        /// </summary>
        /// <param name="dat"></param>
        /// <param name="validbegin_grid"></param>
        /// <param name="validend_grid"></param>
        /// <param name="tempad"></param>
        /// <param name="temprange"></param>
        /// <param name="borderbegin_grid"></param>
        /// <param name="borderend_grid"></param>
        /// <returns></returns>
        protected bool FindFilm_Threshold(int[] dat, int validbegin_grid, int validend_grid, int tempad, int temprange, out int borderbegin_grid, out int borderend_grid) 
        {
            borderbegin_grid = -1;
            borderend_grid = -1;

            ////找左边界 
            //for (int i = 0 ; i < dat.Length; i++)
            //{
            //    if ((i >= validbegin_grid) && (i <= validend_grid))
            //    {
            //        if (Misc.MyBase.ISVALIDATA(dat[i]))
            //        {
            //            if (Math.Abs(TempAD - dat[i]) > TempRange)
            //            {
            //                //膜
            //                borderbegin_grid = i;
            //                break;
            //            }
            //        }
            //    }
            //}
            //if (borderbegin_grid == -1)//没有膜
            //    return false;

            ////找右边界 
            //for (int i = dat.Length - 1; i >= borderbegin_grid; i--)
            //{
            //    if ((i >= validbegin_grid) && (i <= validend_grid))
            //    {
            //        if (Misc.MyBase.ISVALIDATA(dat[i]))
            //        {
            //            if (Math.Abs(TempAD - dat[i]) > TempRange)
            //            {
            //                //膜
            //                borderend_grid = i;
            //                break;
            //            }
            //        }
            //    }
            //}
            //if (borderend_grid == -1)//没有膜
            //    return false;


            int mid_grid = (validbegin_grid + validend_grid) / 2;

            //从中间开始向左边找
            //必须先找到膜
            for (int i = mid_grid; i >= validbegin_grid; i--)
            {
                if (i >= 0 && i < dat.Length)
                {
                    if (Misc.MyBase.ISVALIDATA(dat[i]))
                    {
                        if (Math.Abs(TempAD - dat[i]) > TempRange)
                        {
                            //膜
                            borderbegin_grid = i;
                        }
                        else
                        {
                            //空气
                            if (borderbegin_grid != -1)
                            {
                                //之前有膜
                                break;
                            }
                        }
                    }
                }
                else if (i < 0)
                {
                    break;
                }
            }

            if (borderbegin_grid == -1)//没有膜
            {
                //从左边开始找
                //找左边界 ,找阀值点
                for (int i = mid_grid; i <= validend_grid; i++)
                {
                    if (i >= 0 && i < dat.Length)
                    {
                        if (Misc.MyBase.ISVALIDATA(dat[i]))
                        {
                            if (Math.Abs(TempAD - dat[i]) > TempRange)
                            {
                                //膜
                                borderbegin_grid = i;
                                break;
                            }
                        }
                    }
                }
                if (borderbegin_grid == -1)//没有膜
                    return false;
            }
            
            //从左边界开始找
            for (int i = borderbegin_grid; i <= validend_grid; i++)
            {
                if (i >= 0 && i < dat.Length)
                {
                    if (Misc.MyBase.ISVALIDATA(dat[i]))
                    {
                        if (Math.Abs(TempAD - dat[i]) > TempRange)
                        {
                            //膜
                            borderend_grid = i;
                        }
                        else
                        {
                            //空气
                            if (borderend_grid != -1)
                            {
                                //之前有膜
                                break;
                            }
                        }
                    }
                }
            }

            if (borderend_grid == -1)//没有膜
                return false;

            return true;
        }
        /// <summary>
        /// 精细操作,再向外找 折点
        /// </summary>
        /// <param name="dat"></param>
        /// <param name="posOfGrid"></param>
        /// <param name="borderbegin_grid"></param>
        /// <param name="borderend_grid"></param>
        /// <returns></returns>
        bool FindFilm_Break(int[] dat, int sensor_grid, int filter_grid, ref int borderbegin_grid, ref int borderend_grid)
        {
            //当前肯定在斜波上
            //边界肯定在 粗边界以外 探头半径 内
            //int N4 = SensorWidth / posOfGrid;

            if (sensor_grid <= 2)
            {
                //不用找,传感器直径非常小,已经很准确了
                return true;
            }

            //int num = N / posOfGrid / 2;//滤波半径
            int num = filter_grid / 2;
            if (num < 1) num = 1;


            int[] filterdats = new int[dat.Length];//数据滤波
455
            for (int i = 0; i < dat.Length; i++)
潘栩锋's avatar
潘栩锋 committed
456 457 458 459 460 461 462 463 464 465 466 467 468 469 470
            {
                int b = i - num;
                int e = i + num;
                if (b < 0)
                {
                    b = 0;
                    e = b + num * 2;
                }
                else if (e >= (dat.Length - 1))
                {
                    e = dat.Length - 1;
                    b = e - num * 2;
                }
                filterdats[i] = Misc.MyMath.Avg(dat, b, e);
            }
471 472
            int bg = borderbegin_grid;
            int eg = borderend_grid;
潘栩锋's avatar
潘栩锋 committed
473

474 475 476 477
            int[] breakdats = new int[dat.Length];
            num = 1;

            for (int i = 0; i < dat.Length; i++)
潘栩锋's avatar
潘栩锋 committed
478
            {
479 480 481 482 483 484 485 486 487 488 489
                if ((i - num) < 0)
                    breakdats[i] = Misc.MyBase.NULL_VALUE;
                else if ((i + num) >= dat.Length)
                    breakdats[i] = Misc.MyBase.NULL_VALUE;
                else if (!Misc.MyBase.ISVALIDATA(filterdats[i - num]))
                    breakdats[i] = Misc.MyBase.NULL_VALUE;
                else if (!Misc.MyBase.ISVALIDATA(filterdats[i + num]))
                    breakdats[i] = Misc.MyBase.NULL_VALUE;
                else if (!Misc.MyBase.ISVALIDATA(filterdats[i]))
                    breakdats[i] = Misc.MyBase.NULL_VALUE;
                else
潘栩锋's avatar
潘栩锋 committed
490
                {
491
                    breakdats[i] = Math.Abs((filterdats[i] - filterdats[i - num]) * (filterdats[i + num] - filterdats[i]));
潘栩锋's avatar
潘栩锋 committed
492 493 494
                }
            }

495
            bool isdown = false;
潘栩锋's avatar
潘栩锋 committed
496 497 498 499 500 501 502
            //从第1次找到的边界开始,往外找,找折点的最小值
            for (int i = borderbegin_grid; i >= (borderbegin_grid - sensor_grid); i--)
            {
                if ((i - num) < 0)
                    break;
                if ((i + num) >= dat.Length)
                    break;
503
                if (!Misc.MyBase.ISVALIDATA(breakdats[i - num]))
潘栩锋's avatar
潘栩锋 committed
504
                    break;
505
                if (!Misc.MyBase.ISVALIDATA(breakdats[i + num]))
潘栩锋's avatar
潘栩锋 committed
506
                    break;
507
                if (!Misc.MyBase.ISVALIDATA(breakdats[i]))
潘栩锋's avatar
潘栩锋 committed
508
                    break;
509 510 511 512 513 514 515 516 517 518 519 520 521
                if (breakdats[i] < breakdats[i + num])
                {
                    //在减少
                    bg = i;
                    isdown = true;
                }
                if (isdown)
                {
                    if (breakdats[i] < breakdats[i - num])
                    {
                        //之前那个就是最小值
                        break;
                    }
潘栩锋's avatar
潘栩锋 committed
522 523
                }
            }
524
            isdown = false;
潘栩锋's avatar
潘栩锋 committed
525 526 527 528 529 530 531 532 533 534 535 536 537
            for (int i = borderend_grid; i <= (borderend_grid + sensor_grid); i++)
            {
                if ((i - num) < 0)
                    break;
                if ((i + num) >= dat.Length)
                    break;
                if (!Misc.MyBase.ISVALIDATA(filterdats[i - num]))
                    break;
                if (!Misc.MyBase.ISVALIDATA(filterdats[i + num]))
                    break;
                if (!Misc.MyBase.ISVALIDATA(filterdats[i]))
                    break;

538
                if (breakdats[i] < breakdats[i - num])
潘栩锋's avatar
潘栩锋 committed
539
                {
540 541 542 543 544 545 546 547 548 549 550
                    //在减少
                    eg = i;
                    isdown = true;
                }
                if (isdown)
                {
                    if (breakdats[i] < breakdats[i + num])
                    {
                        //之前那个就是最小值
                        break;
                    }
潘栩锋's avatar
潘栩锋 committed
551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616
                }
            }
            borderbegin_grid = bg;
            borderend_grid = eg;
            return true;
        }
        /// <summary>
        /// 放入grid数据,分析边界
        /// </summary>
        /// <param name="direction"></param>
        /// <param name="posOfGrid"></param>
        /// <param name="gridBegin"></param>
        /// <param name="dat"></param>
        /// <returns></returns>
        public virtual bool FindFilm(DIRECTION direction, int posOfGrid, int gridBegin, int[] dat)
        {
            //把数据记录下来
            if ((Datas == null)|| (Datas.Length < (dat.Length + gridBegin)))
            {
                int len = dat.Length + gridBegin;
                Datas = new int[len];
            }
            for (int i = 0; i < Datas.Length; i++)
            {
                if (i < gridBegin)//清空前面
                    Datas[i] = Misc.MyBase.NULL_VALUE;
                else if (i < (gridBegin + dat.Length))
                    Datas[i] = dat[i - gridBegin];
                else//清空后面
                    Datas[i] = Misc.MyBase.NULL_VALUE;
            }
            NotifyPropertyChanged("Datas");

            //转为 dat 的序号
            int validbegin_grid = Valid.Begin / posOfGrid - gridBegin;
            int validend_grid = Valid.End / posOfGrid - gridBegin;
            
            int borderbegin_grid;//validbegin_grid;
            int borderend_grid;//validend_grid;

            if (!FindFilm_Threshold(dat, validbegin_grid, validend_grid, TempAD, TempRange, out borderbegin_grid, out borderend_grid))
                return false;

            //N2 只是用来判断一下膜够不够宽而已,没用
            int N2_grid = (N2*3+SensorWidth) / posOfGrid;
            
            if ((borderend_grid - borderbegin_grid) < N2_grid)//膜太短
                return false;

            if (IsBreakDetect)
            {
                int sensor_grid = SensorWidth / posOfGrid;
                int filter_grid = N / posOfGrid;
                //精细查找
                FindFilm_Break(dat, sensor_grid, filter_grid, ref borderbegin_grid, ref borderend_grid);
            }

            int idx = 0;
            if (direction == DIRECTION.BACKWARD)
                idx = 1;
            //转为 脉冲
            border[idx].Begin = (borderbegin_grid + gridBegin) * posOfGrid;
            border[idx].End = (borderend_grid +gridBegin) * posOfGrid;

            if (Misc.MyBase.ISVALIDATA(border[0].Begin) && Misc.MyBase.ISVALIDATA(border[1].Begin)) 
            {
潘栩锋's avatar
潘栩锋 committed
617 618 619 620 621
                Border.Begin = (border[0].Begin + border[1].Begin) / 2 + SensorWidth / 2;
                Border.End = (border[0].End + border[1].End) / 2 - SensorWidth / 2;

                Width = Border.Width;
                Mid = Border.Mid;
潘栩锋's avatar
潘栩锋 committed
622 623 624
            }
            else if (Misc.MyBase.ISVALIDATA(border[0].Begin))
            {
潘栩锋's avatar
潘栩锋 committed
625 626 627 628
                Border.Copy(border[0]);

                Width = Border.Width;
                Mid = Border.Mid;
潘栩锋's avatar
潘栩锋 committed
629 630 631
            }
            else if (Misc.MyBase.ISVALIDATA(border[1].Begin))
            {
潘栩锋's avatar
潘栩锋 committed
632 633 634 635
                Border.Copy(border[1]);

                Width = Border.Width;
                Mid = Border.Mid;
潘栩锋's avatar
潘栩锋 committed
636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778
            }
            //膜宽

            return true;
        }
        
        /// <summary>
        /// 获取膜边界,当根本找不到膜时,返回找边界范围!!!
        /// 膜的边界,只是斜波的中间而已。
        /// </summary>
        /// <param name="direction"></param>
        /// <param name="posBegin"></param>
        /// <param name="posEnd"></param>
        public void GetBorder(DIRECTION direction, out int posBegin, out int posEnd) 
        {
            if (direction == DIRECTION.FORWARD)
            {
                posBegin = Border_Forw.Begin;
                posEnd = Border_Forw.End;
                if (!Misc.MyBase.ISVALIDATA(posBegin))
                {
                    posBegin = Border_Backw.Begin;
                    posEnd = Border_Backw.End;
                }
            }
            else 
            {
                posBegin = Border_Backw.Begin;
                posEnd = Border_Backw.End;
                if (!Misc.MyBase.ISVALIDATA(posBegin))
                {
                    posBegin = Border_Forw.Begin;
                    posEnd = Border_Forw.End;
                }
            }
            if (Misc.MyBase.ISVALIDATA(posBegin)) 
            {
                posBegin += SensorWidth / 2;
                posEnd -= SensorWidth / 2;
            }
        }
        /// <summary>
        /// 获取膜边界,当根本找不到膜时,返回IsVaild=false 的Range!!!
        /// 膜的边界,只是斜波的中间而已。
        /// </summary>
        /// <param name="direction"></param>
        /// <returns></returns>
        public Range GetBorder(DIRECTION direction) 
        {
            int b, e;
            GetBorder(direction, out b, out e);
            return new Range() { Begin = b, End = e };
        }
        
        /// <summary>
        /// 获取 膜边界 向内缩 N2 + SensorWidth / 2
        /// </summary>
        /// <param name="direction"></param>
        /// <param name="posBegin"></param>
        /// <param name="posEnd"></param>
        public void GetBoltRange(DIRECTION direction, out int posBegin, out int posEnd) 
        {
            GetBorder(direction, out posBegin, out posEnd);
            if (Misc.MyBase.ISVALIDATA(posBegin)) 
            {
                posBegin += (SensorWidth / 2 + N2);
                posEnd -= (SensorWidth / 2 + N2);
            }
        }
        /// <summary>
        /// 膜边界 向内缩 N2 + SensorWidth / 2
        /// </summary>
        /// <param name="direction"></param>
        /// <returns></returns>
        public Range GetBoltRange(DIRECTION direction) 
        {
            int b, e;
            GetBoltRange(direction, out b, out e);
            return new Range() { Begin = b, End = e };
        }

        /// <summary>
        /// 获取 膜边界 向内缩 N2
        /// </summary>
        /// <param name="direction"></param>
        /// <param name="posBegin"></param>
        /// <param name="posEnd"></param>
        public void GetBoltRange2(DIRECTION direction, out int posBegin, out int posEnd)
        {
            GetBorder(direction, out posBegin, out posEnd);
            if (Misc.MyBase.ISVALIDATA(posBegin))
            {
                posBegin += N2;
                posEnd -= N2;
            }
        }
        /// <summary>
        /// 膜边界 向内缩 N2
        /// </summary>
        /// <param name="direction"></param>
        /// <returns></returns>
        public Range GetBoltRange2(DIRECTION direction)
        {
            int b, e;
            GetBoltRange2(direction, out b, out e);
            return new Range() { Begin = b, End = e };
        }
        public bool Load() 
        {
            return Misc.SaveToXmlHepler.Load(param_path, this);
        }
        public bool Save() 
        {
            return Misc.SaveToXmlHepler.Save(param_path, this);
        }

        public void Apply() 
        {
            Save();
        }
        #region INotifyPropertyChanged 成员

        public event PropertyChangedEventHandler PropertyChanged;
        protected void NotifyPropertyChanged(string propertyname)
        {
            if (PropertyChanged != null)
            {
                PropertyChanged.Invoke(this, new PropertyChangedEventArgs(propertyname));
            }
        }

        #endregion

        #region ISaveToXml 成员

        public string[] GetSavePropertyNames()
        {
            return new string[]{
                "Enable",
                "Valid",
                "TempADBySet",
                "TempAD",
                "TempRange",
779 780
                "TempRangePercent",
                "IsTempRangeByPercent",
潘栩锋's avatar
潘栩锋 committed
781 782 783 784 785 786 787 788 789 790 791
                "N",
                "SensorWidth",
                "N2",
                "N3",
                "IsBreakDetect"
            };
        }

        #endregion
    }
}