Tagged Questions
6
votes
3answers
435 views
Fast algorithm to detect main colors in an image?
Does anyone know a fast algorithm to detect main colors in an image?
I'm currently using k-means to find the colors together with Python's PIL but it's very slow. One 200x200 image takes 10 seconds ...
4
votes
2answers
283 views
How to round an RGB value to the closest web safe value with PIL (Python Imaging Library)?
I'm creating a fast lookup table for colors. Let's say you give me shade of red, then I'll convert it to closest web safe color and perform the lookup. It will return many different shades of red and ...
0
votes
0answers
161 views
Correct the color on an image
I have an image that was taken and had a bayer filter applied to it. I am trying to correct the color because depenging on what filter we apply (BG 2 RGB for example) it comes out with a tint, be it ...
0
votes
1answer
256 views
Search image for color. Return X, Y
I've been looking all over for a way to find a specific color in a image (screen capture), and return the the position of of the color (x,y). I've had some tries, but not managed to do a proper ...
0
votes
0answers
97 views
Is it possobile to change a specific position back color using PIL
I'm developing a python task to generate images using PIL.
Is there any way to change numbers back color to yellow instead of white and keep the rest of the image white as it is ?
Please see images ...
0
votes
2answers
576 views
Change the color of all pixels with another color
I would like to change a single color with Python.
If a fast solution with PIL exists, I would prefer this solution.
At the moment, I use
convert -background black -opaque '#939393' MyImage.png ...
2
votes
1answer
1k views
Specify image filling color when rotating in python with PIL and setting expand argument to true
I'm trying to rotate an image in Python using PIL and having the expand argument to true. It seems that when the background of my image is black, the resulting image saved as a bmp will be a lot ...
5
votes
4answers
1k views
PIL rotate image colors (BGR -> RGB)
I have an image where the colors are BGR. How can I transform my PIL image to swap the B and R elements of each pixel in an efficient manner?
15
votes
1answer
3k views
List of Image “modes”
Looking through PIL (and related to this question), where can I get a comprehensive list of Image modes? I see "RGB", "RGBX", my code has "BGRX" somehow even though it's not mentioned in the PIL docs ...
2
votes
3answers
3k views
Python: PIL replace a single RGBA color
I have already taken a look at this question: SO question and seem to have implemented a very similar technique for replacing a single color including the alpha values:
c = Image.open(f)
c = ...
1
vote
2answers
683 views
How can one perform color transforms with ICC profiles on a set of arbitrary pixel values (not on an image data structure)?
I'd like to convert a set of pixel values from one profiled colorspace to another, without these values residing in an image file, such as (say) a list of RGB/RGBA/CMYK/etc data structures.
I have ...
10
votes
2answers
5k views
Using PIL and NumPy to convert an image to Lab array, modify the values and then convert back
I am trying to convert a PIL image into an array using NumPy. I then want to convert that array into Lab values, modify the values and then convert the array back in to an image and save the image. I ...
4
votes
5answers
7k views
PIL Best Way To Replace Color?
I am trying to remove a certain color from my image however it's not working as well as I'd hoped. I tried to do the same thing as seen here ...
6
votes
3answers
3k views
How to reduce color palette with PIL
I'm not sure how I would go about reducing the color palette of a PIL Image. I would like to reduce an image's palette to the 5 prominent colors found in that image. My overall goal is to do some ...
7
votes
4answers
2k views
Find images of similar color
Based on suggestions here @ SO, I have cataloged the average color for a set of stock images.
r,g,b = image.convert("RGB").resize((1,1), Image.ANTIALIAS).getpixel((0,0))
Now, I would like to ...
4
votes
3answers
1k views
Python's PIL crop problem: color of cropped image screwed
I have a probably very basic problem with PIL's crop function: The cropped image's colors are totally screwed. Here's the code:
>>> from PIL import Image
>>> img = ...
1
vote
3answers
1k views
How to check if an RGB image contains only one color?
I'm using Python and PIL.
I have images in RGB and I would like to know those who contain only one color (say #FF0000 for example) or a few very close colors (#FF0000 and #FF0001).
I was thinking ...
1
vote
3answers
3k views
unsubscriptable object
im = Image.open(teh_file)
if im:
colors = im.resize( (1,1), Image.ANTIALIAS).getpixel((0,0)) # simple way to get average color
red = colors[0] # and so on, some operations on ...
