import acm.graphics.*;
import acm.program.*;

public class BlacknWhite extends GraphicsProgram {
public void run(){
GImage image = new GImage ("akinfemi.jpg");
GImage grayImage = createGrayScaleImage(image);

add(image, 10, 50);
add(grayImage, 100, 50);
}
private GImage createGrayScaleImage(GImage image){
int [][] array = image.getPixelArray();

int height = array.length;
int width = array[0].length;

for (int i = 0; i < height; i++){
for (int j = 0; j < width; j++ ){
int pixel = array[j];

int r = GImage.getRed(pixel);
int g = GImage.getGreen(pixel);
int b = GImage.getBlue(pixel);

int xx = computeLuminosity(r, g, b);

array[j] = GImage.createdRGBPixel(xx, xx, xx);
}


}
return GImage(array);
}
private int computeLuminosity(int r, int g, int b){
return Math.round(0.299*r + 0.587*g + 0.114*b );
}
}

help
getPixelArray, getRed, getGreen, getBlue are all underlined as wrong codes

You need to look up the documentation for GImage. Where does this class come from?

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.