InterviewSolution
Saved Bookmarks
| 1. |
With the display intensity corresponding to a given color index ci calculated as(a) Intensity=0.5[max(r, g, b)+ max(r, g, b)](b) Intensity=0.5[min(r, g, b)+ min(r, g, b)](c) Intensity=0.5[max(r, g, b)- max(r, g, b)](d) Intensity=0.5[min(r, g, b)+ max(r, g, b)]The question was posed to me by my college director while I was bunking the class.This is a very interesting question from Color and Grayscale Levels topic in section Graphics Primitives of Computer Graphics |
|
Answer» Right choice is (d) Intensity=0.5[min(r, G, B)+ max(r, g, b)] |
|