Tagged Questions

3
votes
1answer
346 views

Normalize histogram (brightness and contrast) of a set of images using Python Image Library (PIL)

I have a script which uses Google Maps API to download a sequence of equal-sized square satellite images and generates a PDF. The images need to be rotated beforehand, and I already do so using PIL. ...
2
votes
4answers
1k views

How to Make an Image Uniform Brightness (using Python/PIL)

I want to take an image of a document that was photographed and make it look like it was scanned. Since a scanner will put a constant light source over the whole document, I want to achieve that ...
1
vote
1answer
63 views

Technique for correcting colour/brightness/exposure levels between two images?

I've got some code for stitching images together, but as you can see from my results my colours and lighting are different between the two pictures. Is there some well known technique for doing ...
1
vote
1answer
600 views

Determining Image Luminance/Brightness

My iphone application captures the realtime data from camera using AVFoundation's AVCaptureSession. I'm able to access that data in it's delegate method in runtime and create an image out of it. It ...
0
votes
4answers
142 views

Simple brightness but slow

I have a picture, and I get every pixels and multiply the RGB for a number. I also need to take care when R * number > 255. When this happen, r = 255. It's taking about 10s+ to complete a 1024x768 ...