Effacer les filtres
Effacer les filtres

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

1 vue (au cours des 30 derniers jours)
University
University le 21 Août 2023
Commenté : University le 21 Août 2023
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'.

Réponses (2)

Walter Roberson
Walter Roberson le 21 Août 2023
That is part of the Image Processing Toolbox (since R2018b)
  1 commentaire
University
University le 21 Août 2023
Thank you Walter. Please which function can used aside "'imsegkmeans'"?

Connectez-vous pour commenter.


Image Analyst
Image Analyst le 21 Août 2023
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.

Catégories

En savoir plus sur Agriculture dans Help Center et File Exchange

Produits


Version

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by