Image Compression on Python using sklearn K-Means
I'm doing the Machine Learnirg course on Coursera and after implementing it on Octave I'm doing it on Python. I'm on a exercise that takes a 128x128 image with RGB colors, apply K-means with 16 clusters to it (to find the most significant 16 colors) and then print the image again. The problem is that when I run it on Octave the image looks similar to the original but on Python the images doesn't look very alike (images).
I tried to change the parameters of the clusterization but nothing solved the problem. The code that I'm doing is as follows:
import imageio
from sklearn.cluster import KMeans
image = imageio.imread('bird_small.png')
extended_image = image.reshape(128*128, 3)
extended_image = extended_image/255
image_km = KMeans(n_clusters=16, n_init=100)
image_km.fit(extended_image)
clusters = image_km.predict(extended_image)
centroids = image_km.cluster_centers_
reduced_extended_image = extended_image
# Here I substitue each data color point for the centroid
for i in range(0, len(extended_image)):
color = clusters[i]
reduced_extended_image[i, :] = centroids[color, :]
compressed_image = reduced_extended_image.reshape(128, 128, 3)
plt.imshow(compressed_image)
If any of you tried to run the code, the 'bird_small.png' image is here
Do you know where the problem could be? Thanks
python scikit-learn k-means
add a comment |
I'm doing the Machine Learnirg course on Coursera and after implementing it on Octave I'm doing it on Python. I'm on a exercise that takes a 128x128 image with RGB colors, apply K-means with 16 clusters to it (to find the most significant 16 colors) and then print the image again. The problem is that when I run it on Octave the image looks similar to the original but on Python the images doesn't look very alike (images).
I tried to change the parameters of the clusterization but nothing solved the problem. The code that I'm doing is as follows:
import imageio
from sklearn.cluster import KMeans
image = imageio.imread('bird_small.png')
extended_image = image.reshape(128*128, 3)
extended_image = extended_image/255
image_km = KMeans(n_clusters=16, n_init=100)
image_km.fit(extended_image)
clusters = image_km.predict(extended_image)
centroids = image_km.cluster_centers_
reduced_extended_image = extended_image
# Here I substitue each data color point for the centroid
for i in range(0, len(extended_image)):
color = clusters[i]
reduced_extended_image[i, :] = centroids[color, :]
compressed_image = reduced_extended_image.reshape(128, 128, 3)
plt.imshow(compressed_image)
If any of you tried to run the code, the 'bird_small.png' image is here
Do you know where the problem could be? Thanks
python scikit-learn k-means
add a comment |
I'm doing the Machine Learnirg course on Coursera and after implementing it on Octave I'm doing it on Python. I'm on a exercise that takes a 128x128 image with RGB colors, apply K-means with 16 clusters to it (to find the most significant 16 colors) and then print the image again. The problem is that when I run it on Octave the image looks similar to the original but on Python the images doesn't look very alike (images).
I tried to change the parameters of the clusterization but nothing solved the problem. The code that I'm doing is as follows:
import imageio
from sklearn.cluster import KMeans
image = imageio.imread('bird_small.png')
extended_image = image.reshape(128*128, 3)
extended_image = extended_image/255
image_km = KMeans(n_clusters=16, n_init=100)
image_km.fit(extended_image)
clusters = image_km.predict(extended_image)
centroids = image_km.cluster_centers_
reduced_extended_image = extended_image
# Here I substitue each data color point for the centroid
for i in range(0, len(extended_image)):
color = clusters[i]
reduced_extended_image[i, :] = centroids[color, :]
compressed_image = reduced_extended_image.reshape(128, 128, 3)
plt.imshow(compressed_image)
If any of you tried to run the code, the 'bird_small.png' image is here
Do you know where the problem could be? Thanks
python scikit-learn k-means
I'm doing the Machine Learnirg course on Coursera and after implementing it on Octave I'm doing it on Python. I'm on a exercise that takes a 128x128 image with RGB colors, apply K-means with 16 clusters to it (to find the most significant 16 colors) and then print the image again. The problem is that when I run it on Octave the image looks similar to the original but on Python the images doesn't look very alike (images).
I tried to change the parameters of the clusterization but nothing solved the problem. The code that I'm doing is as follows:
import imageio
from sklearn.cluster import KMeans
image = imageio.imread('bird_small.png')
extended_image = image.reshape(128*128, 3)
extended_image = extended_image/255
image_km = KMeans(n_clusters=16, n_init=100)
image_km.fit(extended_image)
clusters = image_km.predict(extended_image)
centroids = image_km.cluster_centers_
reduced_extended_image = extended_image
# Here I substitue each data color point for the centroid
for i in range(0, len(extended_image)):
color = clusters[i]
reduced_extended_image[i, :] = centroids[color, :]
compressed_image = reduced_extended_image.reshape(128, 128, 3)
plt.imshow(compressed_image)
If any of you tried to run the code, the 'bird_small.png' image is here
Do you know where the problem could be? Thanks
python scikit-learn k-means
python scikit-learn k-means
asked Nov 19 '18 at 22:45
Luiz NonenmacherLuiz Nonenmacher
11
11
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%2f53383732%2fimage-compression-on-python-using-sklearn-k-means%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%2f53383732%2fimage-compression-on-python-using-sklearn-k-means%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