pub fn pixel_diff_summary<I, J, P>(actual: &I, expected: &J) -> Option<String> where
    P: Pixel + PartialEq,
    P::Subpixel: Debug,
    I: GenericImage<Pixel = P>,
    J: GenericImage<Pixel = P>, 
Expand description

Human readable description of some of the pixels that differ between left and right, or None if all pixels match.