Replacing colors of all pixels in an image using a color difference using python
I'm trying to change all the pixels of one image to a particular color using a color difference to keep the different tones and outlines.
I've already tried looping through all the pixels, subtracting the color tuple from the one I want to replace it with, and replaced it but then I get a gray/ash image as a result.
For finding the color difference, this is the approach I used
from colormath.color_objects import sRGBColor, LabColor
from colormath.color_conversions import convert_color
from colormath.color_diff import delta_e_cie2000
from trying_out_colors import get_main_color
def find_color_difference_with_tuple(tuple_1, tuple_2):
a, b, c = tuple_1
d, e, f = tuple_2
rgb_1 = sRGBColor(a, b, c)
lab_1 = convert_color(rgb_1, LabColor)
rgb_2 = sRGBColor(d, e, f)
lab_2 = convert_color(rgb_2, LabColor)
difference = delta_e_cie2000(lab_1, lab_2)
return difference
Then for replacing the colors, this is the approach I used
import numpy
from PIL import Image
from trying_out_colors import get_main_color
from color_difference import find_color_difference_with_tuple
source_image = "source.png"
destination_image = "destination.png"
# get_main_color function finds the dominant color of an image
value = get_main_color(source_image)
destination = Image.open(destination_image)
new = Image.new("RGB", destination.size, 0xffffff)
width, height = destination.size
for x in range(width):
for y in range(height):
destiny = destination.getpixel((x, y))
color_diff = find_color_difference_with_tuple(value, destiny)
total_diff = tuple(numpy.subtract(value, color_diff))
total_diff = tuple([int(x) for x in total_diff])
new.putpixel((x, y), total_diff)
new.save("new_image.png")
So, assuming this is the destination image
And this is the source image, I'm trying to get the dominant color from the source image, then using the color difference from the dominant color and each of the pixel of the destination image, replacing all pixels so as to make the destination image the same complexion as the source image.
I hope I explained my question well.
And here is the result I get after running the code
Also, if there's any way to make the code run faster, I would really appreciate. This one takes about 5 minutes to run.
python python-imaging-library
add a comment |
I'm trying to change all the pixels of one image to a particular color using a color difference to keep the different tones and outlines.
I've already tried looping through all the pixels, subtracting the color tuple from the one I want to replace it with, and replaced it but then I get a gray/ash image as a result.
For finding the color difference, this is the approach I used
from colormath.color_objects import sRGBColor, LabColor
from colormath.color_conversions import convert_color
from colormath.color_diff import delta_e_cie2000
from trying_out_colors import get_main_color
def find_color_difference_with_tuple(tuple_1, tuple_2):
a, b, c = tuple_1
d, e, f = tuple_2
rgb_1 = sRGBColor(a, b, c)
lab_1 = convert_color(rgb_1, LabColor)
rgb_2 = sRGBColor(d, e, f)
lab_2 = convert_color(rgb_2, LabColor)
difference = delta_e_cie2000(lab_1, lab_2)
return difference
Then for replacing the colors, this is the approach I used
import numpy
from PIL import Image
from trying_out_colors import get_main_color
from color_difference import find_color_difference_with_tuple
source_image = "source.png"
destination_image = "destination.png"
# get_main_color function finds the dominant color of an image
value = get_main_color(source_image)
destination = Image.open(destination_image)
new = Image.new("RGB", destination.size, 0xffffff)
width, height = destination.size
for x in range(width):
for y in range(height):
destiny = destination.getpixel((x, y))
color_diff = find_color_difference_with_tuple(value, destiny)
total_diff = tuple(numpy.subtract(value, color_diff))
total_diff = tuple([int(x) for x in total_diff])
new.putpixel((x, y), total_diff)
new.save("new_image.png")
So, assuming this is the destination image
And this is the source image, I'm trying to get the dominant color from the source image, then using the color difference from the dominant color and each of the pixel of the destination image, replacing all pixels so as to make the destination image the same complexion as the source image.
I hope I explained my question well.
And here is the result I get after running the code
Also, if there's any way to make the code run faster, I would really appreciate. This one takes about 5 minutes to run.
python python-imaging-library
add a comment |
I'm trying to change all the pixels of one image to a particular color using a color difference to keep the different tones and outlines.
I've already tried looping through all the pixels, subtracting the color tuple from the one I want to replace it with, and replaced it but then I get a gray/ash image as a result.
For finding the color difference, this is the approach I used
from colormath.color_objects import sRGBColor, LabColor
from colormath.color_conversions import convert_color
from colormath.color_diff import delta_e_cie2000
from trying_out_colors import get_main_color
def find_color_difference_with_tuple(tuple_1, tuple_2):
a, b, c = tuple_1
d, e, f = tuple_2
rgb_1 = sRGBColor(a, b, c)
lab_1 = convert_color(rgb_1, LabColor)
rgb_2 = sRGBColor(d, e, f)
lab_2 = convert_color(rgb_2, LabColor)
difference = delta_e_cie2000(lab_1, lab_2)
return difference
Then for replacing the colors, this is the approach I used
import numpy
from PIL import Image
from trying_out_colors import get_main_color
from color_difference import find_color_difference_with_tuple
source_image = "source.png"
destination_image = "destination.png"
# get_main_color function finds the dominant color of an image
value = get_main_color(source_image)
destination = Image.open(destination_image)
new = Image.new("RGB", destination.size, 0xffffff)
width, height = destination.size
for x in range(width):
for y in range(height):
destiny = destination.getpixel((x, y))
color_diff = find_color_difference_with_tuple(value, destiny)
total_diff = tuple(numpy.subtract(value, color_diff))
total_diff = tuple([int(x) for x in total_diff])
new.putpixel((x, y), total_diff)
new.save("new_image.png")
So, assuming this is the destination image
And this is the source image, I'm trying to get the dominant color from the source image, then using the color difference from the dominant color and each of the pixel of the destination image, replacing all pixels so as to make the destination image the same complexion as the source image.
I hope I explained my question well.
And here is the result I get after running the code
Also, if there's any way to make the code run faster, I would really appreciate. This one takes about 5 minutes to run.
python python-imaging-library
I'm trying to change all the pixels of one image to a particular color using a color difference to keep the different tones and outlines.
I've already tried looping through all the pixels, subtracting the color tuple from the one I want to replace it with, and replaced it but then I get a gray/ash image as a result.
For finding the color difference, this is the approach I used
from colormath.color_objects import sRGBColor, LabColor
from colormath.color_conversions import convert_color
from colormath.color_diff import delta_e_cie2000
from trying_out_colors import get_main_color
def find_color_difference_with_tuple(tuple_1, tuple_2):
a, b, c = tuple_1
d, e, f = tuple_2
rgb_1 = sRGBColor(a, b, c)
lab_1 = convert_color(rgb_1, LabColor)
rgb_2 = sRGBColor(d, e, f)
lab_2 = convert_color(rgb_2, LabColor)
difference = delta_e_cie2000(lab_1, lab_2)
return difference
Then for replacing the colors, this is the approach I used
import numpy
from PIL import Image
from trying_out_colors import get_main_color
from color_difference import find_color_difference_with_tuple
source_image = "source.png"
destination_image = "destination.png"
# get_main_color function finds the dominant color of an image
value = get_main_color(source_image)
destination = Image.open(destination_image)
new = Image.new("RGB", destination.size, 0xffffff)
width, height = destination.size
for x in range(width):
for y in range(height):
destiny = destination.getpixel((x, y))
color_diff = find_color_difference_with_tuple(value, destiny)
total_diff = tuple(numpy.subtract(value, color_diff))
total_diff = tuple([int(x) for x in total_diff])
new.putpixel((x, y), total_diff)
new.save("new_image.png")
So, assuming this is the destination image
And this is the source image, I'm trying to get the dominant color from the source image, then using the color difference from the dominant color and each of the pixel of the destination image, replacing all pixels so as to make the destination image the same complexion as the source image.
I hope I explained my question well.
And here is the result I get after running the code
Also, if there's any way to make the code run faster, I would really appreciate. This one takes about 5 minutes to run.
python python-imaging-library
python python-imaging-library
edited Jan 1 at 21:42
Gozie
asked Dec 31 '18 at 21:13
GozieGozie
839
839
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53991454%2freplacing-colors-of-all-pixels-in-an-image-using-a-color-difference-using-python%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53991454%2freplacing-colors-of-all-pixels-in-an-image-using-a-color-difference-using-python%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown