Need code for conversion of an image

3 vues (au cours des 30 derniers jours)
Nauratul Suqda
Nauratul Suqda le 19 Déc 2020
Commenté : KALYAN ACHARJYA le 20 Déc 2020
hi, i need source code on how to convert the first image to second image. i did try used median filter but it doesn't worked. hope there is solution to my problem.

Réponse acceptée

KALYAN ACHARJYA
KALYAN ACHARJYA le 20 Déc 2020
Modifié(e) : KALYAN ACHARJYA le 20 Déc 2020
Here supposed to be group certain pixels in one group (read about qualtization levels). Same can be done using imsegkmeans function, which is K-means clustering based image segmentation
k=8; % Change the kth value as per requirement, number of segments
[L,C]=imsegkmeans(I,k);
result=label2rgb(L,im2double(C));
imshow(result);
  2 commentaires
Nauratul Suqda
Nauratul Suqda le 20 Déc 2020
thank you for the code sir.
KALYAN ACHARJYA
KALYAN ACHARJYA le 20 Déc 2020
:)

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by