Position and implement of images
How am i able to get the edge of the poistion of an image?? after i have done edging (grayscale/binary image), i want to get the position of that picture and implement it onto another image (color image)... how can it be done?? pls help...!
Irene TanPosted Apr 21, 2008, 3:02 AM
erm.. what do you mean?
is there example for it?
Scott LyslePosted Apr 21, 2008, 2:58 AM
Assuming the image is displayed in a control such a picturebox; get its location using the picturebox control's location property:
MessageBox
.Show(pictureBox1.Location.X + ", " + pictureBox1.Location.Y);