How to select points on the image
Hi All,
I wanna select some ponts and values associated with these points.
How can i do this in C#.net.
It will be better if i can embed a tool for image processing in my application such as LEAD tool.
Thx in advance.
Snehal kumar
JoshPosted Jul 19, 2005, 10:55 AM
Point p1 = new Point(); p1.X = x; p1.Y = y;
This is saying that x and y are the variables used in the for loops and therefore the coordinates of the pixel you want to store. Hope that helps.