I have a problem in my matlab project
I have a RGB color image, and I have two specified pixel (x1,y1) and (x2,y2) I want to check each pixel in the image and determine if pixel is belong to the line between (x1,y1) and (x2,y2)
I tried to use these functions
m = (y2-y1)/(x2-x1); b= y1 - m*x1; if (y==m*x+b) then TRUE
but it almost fails
anybody has another way to solve it ? please
Thanks