Response title
This is preview!




Click on Join Now to Sign Up

Let’s simplify the question.
How could I Find the pixels in image via (pixel[] array) that have for example
color value: (255,0,0);
color pink = color(255, 102, 204);
loadPixels();
for (int i = 0; i < (width*height/2)-width/2; i++) {
pixels[i] = pink;
}
updatePixels();Can you please write this code in program to I could run it. I am very new in processing.
Thank you.
Is it possible to instead of making image grayscale make it red and white?