フィルターのクリア

How to find Maximum Likelihood Estimation of Images?

6 ビュー (過去 30 日間)
Sara Kadam
Sara Kadam 2023 年 4 月 25 日
コメント済み: Star Strider 2023 年 4 月 26 日
I have preprocessed the image to a grayscale image.
I want to find the Maximum Likelihood of the image with maximun accuracy, can someone please help me with the code?
Thank you.

採用された回答

Star Strider
Star Strider 2023 年 4 月 25 日
Use the mle function. However according to the documentation section on data the input must be a vector, so the call to it would need to be:
[phat,pci] = mle(YourGrayScaleImage(:));
with other name-value pair arguments as appropriate.
.
  2 件のコメント
Sara Kadam
Sara Kadam 2023 年 4 月 26 日
Hello Image Analyst.
Since I'm new to MATLAB, it would be of very much help if I could get the code for "MLE on images". As very little information regarding it is available on the internet, I'm not able to find the maximum likelihood of images.
Thank you.
Star Strider
Star Strider 2023 年 4 月 26 日
If you are interested in image classification, see for example Maximum-Likelihood Image Classification. This is behind a paywall, however you can probably get it through your university library.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeImages についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by