Orthogonal Viewer for Grayscale Image Stack

バージョン 1.1.0.0 (2.29 KB) 作成者: CY Y
Orthoviewer takes a grayscale image stack and displays its orthogonal views.
ダウンロード: 149
更新 2016/8/20

Orthoviewer displays orthogonal views of an image stack.
Example usage:

close all
clear
load mri

D = squeeze(D);

% Resize image to make it larger
D2 = zeros(size(D).*[4 4 1], 'uint8');
for ii = 1: size(D,3)
D2(:, :, ii) = imresize(D(:, :, ii), 4);
end

D3 = zeros(size(D2).*[1 1 4], 'uint8');
for ii = 1 : size(D2, 2)
D3(:, ii, :) = imresize(squeeze(D2(:, ii, :)),...
[ size(D2,1), size(D2, 3)*4]);
end

orthoviewer(D3)

引用

CY Y (2024). Orthogonal Viewer for Grayscale Image Stack (https://github.com/joe-of-all-trades/orthoviewer), GitHub. 取得済み .

MATLAB リリースの互換性
作成: R2016a
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersRead, Write, and Modify Image についてさらに検索

Community Treasure Hunt

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

Start Hunting!

GitHub の既定のブランチを使用するバージョンはダウンロードできません

バージョン 公開済み リリース ノート
1.1.0.0

Updated description to include example usage.
Polished code and improved dragging behavior.
linked to github

1.0.0.0

Added example usage

この GitHub アドオンでの問題を表示または報告するには、GitHub リポジトリにアクセスしてください。
この GitHub アドオンでの問題を表示または報告するには、GitHub リポジトリにアクセスしてください。