how to equalise the brightness of an image

3 views (last 30 days)
Hello everybody, i have a rgb image ''cup''.
As we see, this has a non-uniform image right side of which is brighter.
I want to make addition only left side or maybe i can subtract from right side and create a new image.
I tried this : ...
cup=imread('cup.jpg');
sizeofcup=size(Image1);
middleofcoloumn=sizeofcup(2)/2;
NewImage= cup(:,1:middleofcoloumn)+50;
but it changes into gray and it is cropped.
how can i make it rgb and montage?

Accepted Answer

Image Analyst
Image Analyst on 10 Jul 2012
You forgot that it is a color image. Try
NewImage = cup; % Initialize
New(:, 1:middleofcoloumn, :) = New(:, 1:middleofcoloumn, :) +50;

More Answers (0)

Categories

Find more on Modify Image Colors in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!