📄 adjcontrast.m
字号:
% ADJCONTRAST - Adjusts image contrast using sigmoid function.%% function g = adjcontrast(im, gain, cutoff)%% Arguments:% im - image to be processed.% gain - controls the actual contrast; % A value of about 5 is neutral (little change).% A value of 1 reduces contrast to about 20% of original% A value of 10 increases contrast about 2.5x.% a reasonable range of values to experiment with.% cutoff - represents the (normalised) grey value about which% contrast is increased or decreased. An initial% value you might use is 0.5 (the midpoint of the% greyscale) but different images may require% different points of the greyscale to be enhanced. function newim = adjcontrast(im, gain, cutoff) if isa(im,'uint8'); newim = double(im); else newim = im; end % rescale range 0-1 newim = newim-min(min(newim)); newim = newim./max(max(newim)); newim = 1./(1 + exp(gain*(cutoff-newim))); % Apply Sigmoid function
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -