Canny edge detector: Difference between revisions

m
Line 674:
<p>The image is represented as a 2D array of pixels, with first and second axes representing down and right respectively. Array elements represent monochromatic intensity values as integers ranging from 0 (black) to 255 (white). </p>
<p>Intensity gradient fields are similarly structured. Gradient values are vectors, and are represented here as complex numbers, with real and imaginary components representing down and right respectively. </p>
<p>Edge and non-edge points are represented as zeros and ones respectively. Edges are sets of connected points. Edge points are considered to be connected if within a 3-by-3 region (or if they are connectedconsidered to abe common third edge point)connected. Edges are represented as points having a common unique identifier. </p>
 
<ul>ToDo: