how to equalise the brightness of an image
2 views (last 30 days)
Show older comments
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?
0 Comments
Accepted Answer
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;
0 Comments
More Answers (0)
See Also
Categories
Find more on Display and Exploration 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!