Skip to content

Instantly share code, notes, and snippets.

@brockboland
Forked from justinHowlett/gist:4611988
Last active August 29, 2015 13:56
Show Gist options
  • Save brockboland/9312096 to your computer and use it in GitHub Desktop.
Save brockboland/9312096 to your computer and use it in GitHub Desktop.
-(BOOL)isDarkImage:(UIImage*) inputImage {
BOOL isDark = FALSE;
CFDataRef imageData = CGDataProviderCopyData(CGImageGetDataProvider(inputImage.CGImage));
const UInt8 *pixels = CFDataGetBytePtr(imageData);
int darkPixels = 0;
int length = CFDataGetLength(imageData);
int const darkPixelThreshold = (inputImage.size.width*inputImage.size.height)*.45;
for(int i=0; i<length; i+=4)
{
int r = pixels[i];
int g = pixels[i+1];
int b = pixels[i+2];
//luminance calculation gives more weight to r and b for human eyes
float luminance = (0.299*r + 0.587*g + 0.114*b);
if (luminance<150) darkPixels ++;
}
if (darkPixels >= darkPixelThreshold)
isDark = YES;
CFRelease(imageData);
return isDark;
}
@brockboland
Copy link
Author

Forked from https://gist.github.com/justinHowlett/4611988 to fix the syntax of the method declaration.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment