Undefined function 'imsegkmeans' for input arguments of type 'uint8'.

조회 수: 1 (최근 30일)
University
University 2023년 8월 21일
댓글: University 2023년 8월 21일
I'm using 2023a version of matlab. I want to use the "'imsegkmeans'" function but I received an error: Undefined function 'imsegkmeans' for input arguments of type 'uint8'.

답변 (2개)

Walter Roberson
Walter Roberson 2023년 8월 21일
That is part of the Image Processing Toolbox (since R2018b)
  댓글 수: 1
University
University 2023년 8월 21일
Thank you Walter. Please which function can used aside "'imsegkmeans'"?

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


Image Analyst
Image Analyst 2023년 8월 21일
I don't like that function anyway. K-means is not what you want to do unless you have a good supply of each class in each image. For example, let's say you have 3 classes: background, healthy leaf, and diseased leaf. What is it going to do when it has only good leaf and background, and no disease pixels? Even though there are 3 classes, it's going to be forced to find 3 classes (if that's what you told it), and it will find 3, when you're hoping it would tell you that there are just two classes (healthy leaf and background).
What you should (or can) do is to use discriminant analysis to find the classes. You build a training set by showing/telling it which pixels belong to each class. You do this over many images to get a good representation of what each class looks like (its centroid and shape or extent). Then you use that trained classifier to grade your unknown test images. NOW it will find each class fairly accurately, and if there is no disease, you'll see that, because there will be no disease pixels found.
See my attached demo.

카테고리

Help CenterFile Exchange에서 Agriculture에 대해 자세히 알아보기

제품


릴리스

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by