Image Segmentation Using K means
이전 댓글 표시
When I execute the following command in Matlab 2012a
centroid=kmeans(imread('image.jpg'),4);
I get the following error
Error using +
Integers can only be combined with integers of the same class, or scalar doubles.
Error in kmeans>distfun (line 659)
*D(:,i) = D(:,i) + (X(:,j) - C(i,j)).^2;*
*Error in kmeans (line 273)*
*D = distfun(X, C, distance, 0, rep, reps);*
I need to segment this image into 4 cluster. This image is a CT Brain tumour Image. Size of this image is 233 x 216. Please give me a solution to cluster this image file.
답변 (3개)
Walter Roberson
2013년 6월 29일
YourImage = imread('Image.jpg');
centroid = kmeans(double(YourImage), 4);
Note: if your .jpg is color rather than greyscale, you will probably need to convert it to greyscale before clustering.
댓글 수: 5
Octa
2013년 6월 29일
Image Analyst
2013년 6월 29일
Do you want to cluster based on intensity of pixels (e.g. you want 4 gray level classes), or you want to find spatial clusters (e.g. 4 clumps of spatially separated pixels)?
Octa
2013년 7월 2일
syed salma banu s
2018년 12월 31일
sir i need to cluster the image based on intensity of pixels e.g. i want 3 gray level classes
Walter Roberson
2018년 12월 31일
convert the image to grayscale and kmeans requesting 3 clusters .
moahaimen talib
2017년 4월 10일
0 개 추천
hi i need to use kmean for segmenting and clustering a binary image please help
댓글 수: 1
Image Analyst
2017년 4월 10일
Gebra maryam Alehegn
2017년 5월 1일
0 개 추천
How to correctly culsture image using k menas?
카테고리
도움말 센터 및 File Exchange에서 Image Segmentation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!