How to extract highest intensity area from a greyscale spectrogram?

6 ビュー (過去 30 日間)
Claudio Eutizi
Claudio Eutizi 2021 年 1 月 22 日
コメント済み: Claudio Eutizi 2021 年 1 月 23 日
Hello.
I got greyscale mel-spectrograms images from a dataset and I want to divide it into several areas and to obtain the area where pixels have highest intensity in average.
This will be useful to label the images with rectangles for a deep learning training.
Hope somebody will help me.
I attach a greyscale spectrogram I got where you can show me the way to do it.
Thank you.

採用された回答

Image Analyst
Image Analyst 2021 年 1 月 23 日
You've given no criteria for how those areas are to be determined. You might want to use watershed() or superpixels(). Or use imbinarize() to segment on intensity (adaptive or global), or multithresh() for several global thresholds.
  3 件のコメント
Image Analyst
Image Analyst 2021 年 1 月 23 日
Oh, OK. I would have used blockproc() if you wanted rectangular blocks but glad you solved it somehow.
I'm attaching several blockproc() demos in case you're still interested.
Claudio Eutizi
Claudio Eutizi 2021 年 1 月 23 日
Thank you so much.

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

その他の回答 (1 件)

KALYAN ACHARJYA
KALYAN ACHARJYA 2021 年 1 月 22 日
編集済み: KALYAN ACHARJYA 2021 年 1 月 22 日
  1. Apply thresholding to cluster the image into two segment, certain higher pixel and lower value pixels.
  2. Get the largest blob as per requirement. (bwareafilt function)
What does "Major Intensity" mean here?
  5 件のコメント
KALYAN ACHARJYA
KALYAN ACHARJYA 2021 年 1 月 23 日
編集済み: KALYAN ACHARJYA 2021 年 1 月 23 日
"but this code you wrote here shows a black image".
Most probably, there is only one maximum value pixel, so it is not easily visualized (check carefully). You can confirm the same with the extract_roi matrix, which must be the non-zero matrix.
Claudio Eutizi
Claudio Eutizi 2021 年 1 月 23 日
Yes I found that pixel you're talking about.
I managed to do what I asked to in this question.
Can you help me with this? Thank you so much.

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

カテゴリ

Help Center および File ExchangeImage Processing and Computer Vision についてさらに検索

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by