Scan image row-wise and store index of minimum grey values.

2 ビュー (過去 30 日間)
SATISH SONWANE
SATISH SONWANE 2022 年 11 月 14 日
コメント済み: SATISH SONWANE 2022 年 11 月 14 日
Hi, I want to scan an image row-wise and store the index value of the concerned pixels (Ones with lowest grey values) in a matrix (note:There can be more than one pixel with such values). Currently I can scan a row at a time and it returns index of the first pixel which has lowest intensity value. Image size is 478 by 680. AND I am getting wrong index values.
I = imread('5.bmp');
I = im2gray(I);
imshow (I);
i=1:1:478;
[min_intensity,idx]= min(I(i,:));
idx = idx;

採用された回答

Matt J
Matt J 2022 年 11 月 14 日
編集済み: Matt J 2022 年 11 月 14 日
I = imread('5.bmp');
I = im2gray(I);
min_intensity= min(I,[],2);
[row,col]=find(I==min_intensity); %indices of minimum
  1 件のコメント
SATISH SONWANE
SATISH SONWANE 2022 年 11 月 14 日
Thank you @Matt J. Solutions are often simpler than they seem.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGet Started with MATLAB についてさらに検索

製品


リリース

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by