You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function out = preprocess_rotate(im)% PREPROCESS_ROTATE - rotates image% Optional file header info (to give more details about the function than in the H1 line)%% Syntax:out = preprocess_template(im)%% Inputs:%% im - Description%% Outputs:%% out - Description%% Example:%% Line 1 of example %% Subfunctions: % See also: % AUTHOR : Alex Liberzon % Copyright (c)2012 Tel Aviv University%%angle = -1;% out = adapthisteq(im);out = imadjust(imrotate(im,angle,'bilinear','crop'));