Finding Min Max Pixels and Co-ordinates from DICOM images?

2 ビュー (過去 30 日間)
maida
maida 2016 年 11 月 1 日
コメント済み: maida 2016 年 11 月 1 日
hey, i am new here, i have dicom images i need to get 4 max pixel values and their co-ordinates and aromatically crop the 128 by 128 4 patches from that image keeping the center pixel one of the max pixel that has been found? please how can i do it
  1 件のコメント
maida
maida 2016 年 11 月 1 日
no ones replying :/ :'( :/ :'(

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

採用された回答

Image Analyst
Image Analyst 2016 年 11 月 1 日
To get the 4 max values, sort the image in descending order:
sortedValues = sort(grayImage, 'descend');
% Get the 4 max values and their coords
for k = 1 : 4
thisValue = sortedValues(k);
% Find where it occurs
[rows, columns] = find(grayImage, thisValue);
% Plot them over the image
for k2 = 1 : length(rows)
thisRow = rows(k2);
thisColumn = columns(k2);
plot(thisColumn, thisRow, 'r+');
hold on;
text(thisColumn, thisRow, num2str(k));
% Crop into a new image
row1 = thisRow - 64;
row2 = row1 + 127;
col1 = thisColumn - 64;
col2 = col1 + 127;
subImage = grayImage(row1:row2, col1:col2);
% Now do something with subimage....
end
end
  1 件のコメント
maida
maida 2016 年 11 月 1 日
subImage get the empty matrix, why is that so?

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

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by