source code for contrast inhancement of image in matlab
#1

I'm reasearching problem of GMM so that I'm looking for source code for contrast inhancement of image in matlab
Reply
#2

source code for contrast inhancement of image in matlab

Contrast enhancement of RGB images is done by processing the intensity component. Firstly convert image from RGB to YIQ, so as to be able to isolate the intensity component. Then apply histogram equalization to the intensity component, and convert back to RGB.

%%%%%%% START %%%%%%%%%%%%
clc;
close all;
img=imread('a.bmp'); % save any color image as 'a.bmp'
x=rgb2ntsc(img);
x(:,:,1)=histeq(x(:,:,1));
c2=ntsc2rgb(x);
imshow(c2)

% apply histogram equalization to each of the RGB components:
% and put them all back into a single 3 dimensional array for use with imshow

rimg=histeq(img(:,:,1));
gimg=histeq(img(:,:,2));
bimg=histeq(img(:,:,3));
img=cat(3,rimg,gimg,bimg);
figure(2)
imshow(img)

%%%%%%%% END %%%%%%%%%%%
Reply

Important Note..!

If you are not satisfied with above reply ,..Please

ASK HERE

So that we will collect data for you and will made reply to the request....OR try below "QUICK REPLY" box to add a reply to this page
Popular Searches: ppt on contrast image enhancement using fusion method, contrast enhancement using dct with matlab code, simple matlab code for contrast enhancement, source code for contrast inhancement of image in matlab, dfd or er diagram of image enhancement techniques using contrast scraching, image inhancement techniqurs remote sensing ppt, contrast enhancement source code,

[-]
Quick Reply
Message
Type your reply to this message here.

Image Verification
Please enter the text contained within the image into the text box below it. This process is used to prevent automated spam bots.
Image Verification
(case insensitive)

Possibly Related Threads...
Thread Author Replies Views Last Post
  simple java rmi chat application source code 2 19,722 20-07-2018, 12:08 PM
Last Post: Guest
  authentication schemes for session passwords using color and images project source code 2 2,253 03-02-2018, 09:35 AM
Last Post: Nischithnash
  free download source code for online movie ticket booking in java 2 19,167 15-08-2017, 03:21 PM
Last Post: Morshed
  source code for rsa encryption and decryption in java 2 8,181 29-05-2017, 04:21 PM
Last Post: Meghna Jadhav
  image encryption and decryption using rsa algorithm in matlab 2 8,075 29-05-2017, 04:17 PM
Last Post: Priyanka Bidikar
  download liver tumor ct scan image in matlab with source code 4 8,229 21-05-2017, 09:54 PM
Last Post: abdulrahmanmashaal
  online cab booking source code in asp net 3 8,111 11-05-2017, 10:39 AM
Last Post: jaseela123d
Thumbs Up online catering management system on php with report and source code and ppt 4 8,984 29-04-2017, 10:59 AM
Last Post: jaseela123d
  MATLAB codes needed for powerline communication 1 8,239 12-04-2017, 05:00 PM
Last Post: jaseela123d
  source code for task scheduling using genetic algorithm using java 2 8,692 11-04-2017, 08:31 PM
Last Post: Guest

Forum Jump: