- Display histogram
- imhist(I)
- Histogram equalization
- lena_eq=histeq(lena,256);
- Contrast-limited adaptive histogram equalization
- lena_enhanced = adapthisteq(lena,'NumTiles', [8 8] ,'ClipLimit',0.0005); %Higher numbers result in more contrast, local histogram equalization
- Histogram sliding
- lena_enhanced=lena;
- greater_than_200 = find(lena > 200);
- lena_enhanced(greater_than_200) = imadd(lena(greater_than_200),10); %shift the image histogram to the right 10 values for all pixel values greater than 200.
Thursday, February 16, 2012
Image enhancement
Subscribe to:
Post Comments (Atom)
Mounting USB drives in Windows Subsystem for Linux
Windows Subsystem for Linux can use (mount): SD card USB drives CD drives (CDFS) Network drives UNC paths Local storage / drives Drives form...
-
I. Five different ways to answer a question II. Use SOLO strategies to explain our thinking and reasoning III. SOLO Taxono...
-
Learning levels 1, 2, and 3 Learning levels 4, 5, and 6 References http://www.cccs.edu/Docs/Foundation/SUN/QUESTIONS%20FOR%20TH...
No comments:
Post a Comment