Orthogonal Viewer for Grayscale Image Stack
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)
Cite As
CY Y (2026). Orthogonal Viewer for Grayscale Image Stack (https://github.com/joe-of-all-trades/orthoviewer), GitHub. Retrieved .
MATLAB Release Compatibility
Platform Compatibility
Windows macOS LinuxCategories
Tags
Discover Live Editor
Create scripts with code, output, and formatted text in a single executable document.
Versions that use the GitHub default branch cannot be downloaded
| Version | Published | Release Notes | |
|---|---|---|---|
| 1.1.0.0 | Updated description to include example usage.
|
|
|
| 1.0.0.0 | Added example usage |
