Welcome![Sign In][Sign Up]
Location:
Downloads SourceCode Graph program Special Effects
Title: adjgamma Download
 Description: ADJGAMMA- Adjusts image gamma. function g = adjgamma(im, g) Arguments: im - image to be processed. g - image gamma value. Values in the range 0-1 enhance contrast of bright regions, values > 1 enhance contrast in dark regions. Peter Kovesi School of Computer Science & Software Engineering The University of Western Australia pk @ csse uwa edu au http://www.cs.uwa.edu.au/~pk July 2001 function newim = adjgamma(im, g) if g <= 0 error( Gamma value must be > 0 ) end 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 = newim.^(1/g) Apply gamma function
 Downloaders recently: [More information of uploader kakalots117]
 To Search: adjgamma
  • [matlab] - Synthetic aperture radar image processin
  • [5] - Image denoising, adaptive thresholding m
  • [matlab] - MATLAB Wavelet-based signal de-noising
  • [Leefilter] - Lee filter, has a good de-noising effect
  • [bp] - The image pre-processing, carrying out i
  • [gngauss] - Gaussian random variable generator,These
  • [Average-Filtering] - Filtering, to remove the image in the ac
File list (Check if you may need any files):
adjgamma.m
    

CodeBus www.codebus.net