Loading...
Logo
Processing Forum

Headaches with get()

in Programming Questions  •  1 year ago  
Hi guys,

I'm not really used to use the get() function and I'm having some trouble with it. I want the program to do something in particular when it finds a pixel with a different colour than the background, but the function, for some reason, returns color 0 with a white background,around the edges of the window. I know that the image I use is completely white except for a black A in the middle, and I've tested it with a black rectangle (generated by processing) and got the same result. This is the code, thanks!:

Copy code
  1. size(500,500);
  2. int back=255;
  3. background(255);
  4. PImage test;
  5. test=loadImage("test.png");
  6. image(test,0,0);
  7. rect(200,300,100,100);
  8. for(int x=0;x<width;x++){
  9.   for(int y=0;x<height;y++){
  10.     colcur=get(x,y);
  11.     println (colcur);
  12.     if(colcur!=-1){
  13.       println(colcur);
  14.       stroke(255,0,0);
  15.       line(x,0,x,height);
  16.       break;
  17.     }
  18.   }
  19.   if(colcur!=-1) break;
  20. }

Replies(4)

I can't test your code right now, but there a couple of things wrong with it just by looking at it.

For example, colcur isn't ever defined; back is never used; in your nested for loop (the y one) you check to see if the x variable is less than the height.

Here is a revised function, not tested:

Copy code
  1. PVector[] findPoints(color testColor) {
  2.   PVector[] points = new PVector[0];
  3.   
  4.   for(int x = 0; x < width; x ++) {
  5.     for(int y = 0; y < height; y ++) {
  6.       if(get(x, y) == testColor) points = append(points, new PVector(x, y));
  7.     }
  8.   }
  9.   
  10.   return points;
  11. }
Sorry, I pasted the code right after fiddling with it and forgot to fix it. The reason why I wasn't using back is that get() returns -1 for a white background (I don't know why, can you explain this?), so I substituted back with -1.
That could be because the y value is greater than the height - see my response before concerning your nested for loop.
get() could return -1 because the pixel specified is not valid.

Is there any difference when you use the pixels method ( pixels[y*width+x])?
Hola. I'd say there's no problem with the get method and the white background. Colors are, in fact, integers, and -1 is the value of pure white. These both expressions are equivalent: background(-1) || background(255).
You can have a look at:
  http://wiki.processing.org/w/What_is_a_color_in_Processing%3F
Regards!

Ale · http://60rpm.tv/i