Advertisement
Sparrowvivek16

Process image

Nov 13th, 2015
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.29 KB | None | 0 0
  1. public void ProcessImage(string urlImage)
  2.         {
  3.             PlateImagesList.Clear();
  4.             PlateTextList.Clear();
  5.  
  6.             Bitmap img = new Bitmap(urlImage);
  7.             pictureBox1.Image = img;
  8.             pictureBox1.Update();
  9.  
  10.             FindLicensePlate(img);
  11.  
  12.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement