shift-mean pour l'image
Mostra commenti meno recenti
S'il vous plaît, j'ai besoin d'un code d'algorithme Shift Mean pour la segmentation d'une image en niveaux de gris. Si quelqu'un peut m'aider, merci d'avance.
9 Commenti
Mathieu NOE
il 21 Mag 2024
hello
have you tried this one ?
NB : see the comments how to tweak it for grey images
Med
il 21 Mag 2024
Mathieu NOE
il 21 Mag 2024
can you share your original image ?
Med
il 21 Mag 2024
Mathieu NOE
il 22 Mag 2024
Modificato: Mathieu NOE
il 22 Mag 2024
there are some solutions already available on the internet - have you tried them already ?
and probably a lot more ....
Med
il 22 Mag 2024
Mathieu NOE
il 22 Mag 2024
I am not an image processing expert, but I tried a couple of options, and this one seems to me quite interesting - also because it does not require any toolbox
Result obtained with 5 clusters

im = imread('image.png');
im = rgb2gray(im);
[label_im,vec_mean] = kmeans_fast_Color(im,5);
imshow(label_im,[])
Med
il 22 Mag 2024
Mathieu NOE
il 24 Mag 2024
hello again
there are some other shift mean image processing Fex submissions available
I don't know exactly what kind of results you want to achieve , so I let you try
all the best
Risposte (0)
Categorie
Scopri di più su Image Segmentation and Analysis in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

