Question: 1

We want to write a brightness filter that brightens a given pixel.

Which of the following instructions would brighten a pixel? Assume R is the red value of the pixel, G is the green value, and B is the blue value.

R = R + 50;
G = G + 50;
B = B + 50;

R = Math.min(R + 50, 255);
G = Math.min(G + 50, 255);
B = Math.min(B + 50, 255);

R = R - 50;
B = B - 50;
G = G - 50;

R = Math.max(R - 50, 0);
B = Math.max(B - 50, 0);
G = Math.max(G - 50, 0);

1 answer

Option 2: R = Math.min(R + 50, 255); G = Math.min(G + 50, 255); B = Math.min(B + 50, 255);

This option ensures that the values of R, G, and B do not exceed 255, which is the maximum value for each color channel in a pixel.
Similar Questions
  1. Question: 3Which of the following pixels has a color value of #ff0000 (expressed in hexadecimal) (White Pixel) (Blue Pixel)
    1. answers icon 1 answer
  2. Question: 1Which of the following describes the instructions for a general image filter? Given an image: for every (x, y)
    1. answers icon 1 answer
  3. What happens when all three RGB values are set to 255?Question 3 options: The pixel turns white The pixel turns red The pixel
    1. answers icon 1 answer
    1. answers icon 1 answer
more similar questions