[1422d3]: / functions / functions_preProc / imNormalization.m

Download this file

11 lines (9 with data), 314 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
function [imColorNorm] = imNormalization(im, filename, plotta)
%color normalization
imColorNorm = comprehensive_colour_normalization(im);
%display - focus
if plotta
fh = fsfigure;
imshow(imresize(imColorNorm, 4))
title(['Im: ' filename ' ; color normalization'], 'Interpreter', 'none')
end %if plotta