Okay so I'm having a problem.
I have two classes: ImageHandler and PixelHandler.
In my ImageHandler class I declared:
public class ImageHandler{
private static BufferedImage myImage;
...
And I try to reacess myImage in PixelHandler:
public class PixelHandler{
private int [] pix;
public int checkNumOfWindows(){
for(int x= 0; x < 1280; x++){
for(int y =0; y < 800; y++){
pix = myImage.getRGB(x, y, 6, 7, experimentalPattern, 0, 6);
}
}
}
...
When I try to I get the error message:
Cannot find symbol - variable myImage
Any suggestions?