C# 判断图形A是否在图形B里存在 并返回所在位置的坐标

做了下测试

  Bitmap Image1 = (Bitmap)Image.FromFile(@"c:/1.BMP");


            Bitmap Image2 = Image1.Clone(new Rectangle(20, 20, 50, 50), Image1.PixelFormat);


            Point _Point= Zgke.MyImage.Panit.MyPanit.GetImageContains(Image1, Image2,0);


            MessageBox.Show(_Point.ToString());

返回的坐标是20,20

下面是全部代码

  1. /// <summary>   
  2.      /// 判断图形里是否存在另外一个图形 并返回所在位置   
  3.      /// </summary>   
  4.      /// <param name="p_SourceBitmap">原始图形</param>   
  5.      /// <param name="p_PartBitmap">小图形</param>   
  6.      /// <param name="p_Float">溶差</param>   
  7.      /// <returns>坐标</returns>   
  8.      public   static  Point GetImageContains(Bitmap p_SourceBitmap, Bitmap p_PartBitmap, int  p_Float)  
  9.      {  
  10.          int  _SourceWidth = p_SourceBitmap.Width;  
  11.          int  _SourceHeight = p_SourceBitmap.Height;  
  12.   
  13.          int  _PartWidth = p_PartBitmap.Width;  
  14.          int  _PartHeight = p_PartBitmap.Height;  
  15.   
  16.          Bitmap _SourceBitmap = new  Bitmap(_SourceWidth, _SourceHeight);  
  17.          Graphics _Graphics = Graphics.FromImage(_SourceBitmap);  
  18.          _Graphics.DrawImage(p_SourceBitmap, new  Rectangle(0, 0, _SourceWidth, _SourceHeight));  
  19.          _Graphics.Dispose();  
  20.          BitmapData _SourceData = _SourceBitmap.LockBits(new  Rectangle(0, 0, _SourceWidth, _SourceHeight), ImageLockMode.ReadWrite, PixelFormat.Format32bppArgb);  
  21.          byte [] _SourceByte =  new   byte [_SourceData.Stride * _SourceHeight];  
  22.          Marshal.Copy(_SourceData.Scan0, _SourceByte, 0, _SourceByte.Length);  //复制出p_SourceBitmap的相素信息    
  23.   
  24.          Bitmap _PartBitmap = new  Bitmap(_PartWidth, _PartHeight);  
  25.          _Graphics = Graphics.FromImage(_PartBitmap);  
  26.          _Graphics.DrawImage(p_PartBitmap, new  Rectangle(0, 0, _PartWidth, _PartHeight));  
  27.          _Graphics.Dispose();  
  28.          BitmapData _PartData = _PartBitmap.LockBits(new  Rectangle(0, 0, _PartWidth, _PartHeight), ImageLockMode.ReadWrite, PixelFormat.Format32bppArgb);  
  29.          byte [] _PartByte =  new   byte [_PartData.Stride * _PartHeight];  
  30.          Marshal.Copy(_PartData.Scan0, _PartByte, 0, _PartByte.Length);   //复制出p_PartBitmap的相素信息    
  31.   
  32.        
  33.          for  ( int  i = 0; i != _SourceHeight; i++)  
  34.          {  
  35.              if  (_SourceHeight - i < _PartHeight)  return   new  Point(-1, -1);   //如果 剩余的高 比需要比较的高 还要小 就直接返回                
  36.              int  _PointX = -1;     //临时存放坐标 需要包正找到的是在一个X点上   
  37.              bool  _SacnOver =  true ;    //是否都比配的上   
  38.              for  ( int  z = 0; z != _PartHeight - 1; z++)        //循环目标进行比较   
  39.              {  
  40.                  int  _TrueX = GetImageContains(_SourceByte, _PartByte, i * _SourceData.Stride, _SourceWidth, _PartWidth, p_Float);  
  41.   
  42.                  if  (_TrueX == -1)    //如果没找到    
  43.                  {  
  44.                      _PointX = -1;    //设置坐标为没找到   
  45.                      _SacnOver = false ;    //设置不进行返回   
  46.                      break ;  
  47.                  }  
  48.                  else   
  49.                  {  
  50.                      if  (z == 0) _PointX = _TrueX;  
  51.                      if  (_PointX != _TrueX)    //如果找到了 也的保证坐标和上一行的坐标一样 否则也返回   
  52.                      {  
  53.                          _PointX = -1;//设置坐标为没找到   
  54.                          _SacnOver = false ;   //设置不进行返回   
  55.                          break ;  
  56.                      }  
  57.                  }                                           
  58.              }  
  59.              if  (_SacnOver)  return   new  Point(_PointX , i);                
  60.          }  
  61.          return   new  Point(-1, -1);  
  62.      }  
  63.      /// <summary>   
  64.      /// 判断图形里是否存在另外一个图形 所在行的索引   
  65.      /// </summary>   
  66.      /// <param name="p_Source">原始图形数据</param>   
  67.      /// <param name="p_Part">小图形数据</param>   
  68.      /// <param name="p_SourceIndex">开始位置</param>   
  69.      /// <param name="p_SourceWidth">原始图形宽</param>   
  70.      /// <param name="p_PartWidth">小图宽</param>   
  71.      /// <param name="p_Float">溶差</param>   
  72.      /// <returns>所在行的索引 如果找不到返回-1</returns>   
  73.      private   static   int  GetImageContains( byte [] p_Source,  byte [] p_Part,  int  p_SourceIndex,  int  p_SourceWidth, int  p_PartWidth,  int  p_Float)  
  74.      {  
  75.          int  _PartIndex = 0;  
  76.          int  _SourceIndex=p_SourceIndex;           
  77.          for  ( int  i = 0; i < p_SourceWidth; i++)  
  78.          {  
  79.              if  (p_SourceWidth - i < p_PartWidth)  return  -1;  
  80.              Color _CurrentlyColor = Color.FromArgb((int )p_Source[_SourceIndex+3], ( int )p_Source[_SourceIndex + 2], ( int )p_Source[_SourceIndex + 1], ( int )p_Source[_SourceIndex]);  
  81.              Color _CompareColoe = Color.FromArgb((int )p_Part[3], ( int )p_Part[2], ( int )p_Part[1], ( int )p_Part[0]);  
  82.              _SourceIndex += 4;  
  83.       
  84.              bool  _ScanColor = ScanColor(_CurrentlyColor, _CompareColoe, p_Float);  
  85.   
  86.              if  (_ScanColor)  
  87.              {  
  88.                  _PartIndex += 4;  
  89.                  int  _SourceRVA = _SourceIndex;  
  90.                  bool  _Equals= true ;  
  91.                  for  ( int  z = 0; z != p_PartWidth-1; z++)  
  92.                  {  
  93.                      _CurrentlyColor = Color.FromArgb((int )p_Source[_SourceRVA + 3], ( int )p_Source[_SourceRVA + 2], ( int )p_Source[_SourceRVA + 1], ( int )p_Source[_SourceRVA]);  
  94.                      _CompareColoe = Color.FromArgb((int )p_Part[_PartIndex + 3], ( int )p_Part[_PartIndex + 2], ( int )p_Part[_PartIndex + 1], ( int )p_Part[_PartIndex]);  
  95.   
  96.                      if  (!ScanColor(_CurrentlyColor, _CompareColoe, p_Float))  
  97.                      {  
  98.                          _PartIndex = 0;  
  99.                          _Equals = false ;  
  100.                          break ;                             
  101.                      }  
  102.                      _PartIndex += 4;  
  103.                      _SourceRVA += 4;  
  104.                  }  
  105.                  if (_Equals) return  i;  
  106.              }  
  107.              else   
  108.              {  
  109.                  _PartIndex = 0;  
  110.              }  
  111.          }  
  112.          return  -1;  
  113.      }  
  114.   
  115.      /// <summary>   
  116.      /// 检查色彩(可以根据这个更改比较方式   
  117.      /// </summary>   
  118.      /// <param name="p_CurrentlyColor">当前色彩</param>   
  119.      /// <param name="p_CompareColor">比较色彩</param>   
  120.      /// <param name="p_Float">溶差</param>   
  121.      /// <returns></returns>   
  122.      private   static   bool  ScanColor(Color p_CurrentlyColor, Color p_CompareColor,  int  p_Float)  
  123.      {  
  124.          int  _R = p_CurrentlyColor.R;  
  125.          int  _G = p_CurrentlyColor.G;  
  126.          int  _B = p_CurrentlyColor.B;  
  127.   
  128.          return  (_R <= p_CompareColor.R + p_Float && _R >= p_CompareColor.R - p_Float) && (_G <= p_CompareColor.G + p_Float && _G >= p_CompareColor.G - p_Float) && (_B <= p_CompareColor.B + p_Float && _B >= p_CompareColor.B - p_Float);  
  129.   
  130.      } 
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值