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

Mathieu NOE
Mathieu NOE 2024년 5월 21일
hello
have you tried this one ?
NB : see the comments how to tweak it for grey images
Med
Med 2024년 5월 21일
J'ai essayé, mais j'ai obtenu une image noire avec des lignes gris aléatoires.
Mathieu NOE
Mathieu NOE 2024년 5월 21일
can you share your original image ?
Med
Med 2024년 5월 21일
Med
Med 2024년 5월 22일
j'ai deja utilise kmean mais j'ai obtinu des resultats incorrecte de segmentation
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
Med 2024년 5월 22일
Merci beaucoup mon ami pour tes efforts. Tu as raison, le K-means donne des résultats très satisfaisants pour certains protocoles, mais pour un protocole TDM cérébral contenant plusieurs structures anatomiques, il ne fonctionne pas correctement. C'est pourquoi je cherche à utiliser le Shift-Mean comme alternative.
Mathieu NOE
Mathieu NOE 2024년 5월 24일
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

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

도움말 센터File Exchange에서 Image Segmentation and Analysis에 대해 자세히 알아보기

제품

릴리스

R2023b

질문:

Med
2024년 5월 19일

댓글:

2024년 5월 24일

Community Treasure Hunt

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

Start Hunting!

Translated by