Let's say I have an image of a line graph, pretty simple, probably a white background, black axis lines, and some other color for the line. I am going to turn the image into canvas and I would like to know if there is a way to identify that line with canvas. This would allow me to do a lot of things, like manipulate the line, etc...
|
You can identify colors by using Heres an example of doing what your talking about
What the above does is gather all the points that have a blue threshold of 255. But if any lines intersect, etc, this would be thrown off because the pixel value would be different. |
|||||||
|
|
Yes its not very hard to do that, you simply have to keep track of everything you draw yourself so you can redraw it (by clearing the canvas and drawing everything again with possibly new coordinates). I have a simple tutorial on how to make objects (in this case rectangles) that you keep track of so you can redraw them (the tutorial covers dragging). All of the principles could apply to lines, or anything else for that matter. On a side note, doing something simple like this is much easier in SVG where a lot of the stuff (retained drawing that you can change the coordinates of on the fly, mouse events, etc) is already done for you. You might want to consider using SVG instead. |
|||||
|
|
First you draw the image to a canvas element with drawImage(), and then get the pixel data from the canvas.
Now you could walk into the pixels array to check for the color value by doing something like this.
Keep in mind that I am considering perfect 0,0,0 black and perfect 255,255,255 white. maybe you should implement some noise reduction to handle real life applications. |
|||
|
|