An implementation based upon {@link BufferedImage}. This provides access to the /// underlying image as if it were a monochrome image. Behind the scenes, it is evaluating /// the luminance of the underlying image by retrieving its pixels' RGB values.
/// ///Y = 0.299R + 0.587G + 0.114B
///
/// where R, G, and B are values in [0,1].
///