📄 avw_flip.m
字号:
function [ avw ] = avw_flip(avw,dims)
% AVW_FLIP - ortho-flip Analyze data image (avw.img)
%
% [ avw ] = avw_flip(avw,dims)
%
% where avw is the data struct returned from avw_img_read
% and dims is a cell array of strings, eg: dims = {'x','y','z'}
% with any number of cells, in any order.
%
% For each cell of dims, the dimension of avw.img is flipped,
% independently of all other dimensions and the order in which
% they are specified. There are no 3D rotations, which are
% not orthogonal flips.
%
% This function will most likely invalidate the .img orientation,
% so use of it is not recommended. There is no attempt in this
% function to maintain the validity of the avw.hdr.hist.orient
% field. In fact, this will be set to an invalid value (9).
%
% see also AVW_IMG_READ, AVW_VIEW
%
% $Revision: 1.6 $ $Date: 2004/02/07 01:41:51 $
% Licence: GNU GPL, no express or implied warranties
% History: 01/2003, Darren.Weber@flinders.edu.au
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
version = '[$Revision: 1.6 $]';
fprintf('\nAVW_FLIP [v%s]\n',version(12:16));
fprintf('...warning, this function can invalidate the .img orientation,\n');
fprintf('...setting avw.hdr.hist.orient to invalid value = 9.\n');
avw.hdr.hist.orient = uint8(9);
for i = 1:length(dims),
dim = lower(dims{i});
switch dim,
case 'x',
fprintf('...flipping X\n');
xdim = size(avw.img,1);
avw.img = avw.img(xdim:-1:1,:,:);
case 'y',
fprintf('...flipping Y\n');
ydim = size(avw.img,2);
avw.img = avw.img(:,ydim:-1:1,:);
case 'z',
fprintf('...flipping Z\n');
zdim = size(avw.img,3);
avw.img = avw.img(:,:,zdim:-1:1);
end
end
return
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -