HI I was trying to brighten grayscale image with I=rgb2gray(A) J = imadjust(I) . For some reason it was not working. Can anyone please tell me if there any other way? thanks

4 次查看(过去 30 天)
I was trying to brighten grayscale image with I=rgb2gray(A) J = imadjust(I) . For some reason it was not working. Can anyone please tell me if there any other way? thanks
  2 个评论
Jan
Jan 2016-2-8
Please explain "not working" with any details. Do you get an error message or do the results differ from your expectations?
Ashim Chakraborty
basically the output i am looking for is not generating. I meant to brighten up grayscale image.I think imadjust() command upgrade the contrast but will it work to brighten up the image? I dont get any error message. thanks

请先登录,再进行评论。

采纳的回答

Stephen23
Stephen23 2016-2-8
编辑:Stephen23 2016-2-8
Actually imadjust can also brighten images, you just need to supply the fourth input gamma:
J = imadjust(I,[],[],gamma);
Where the documentation describes gamma: _"If gamma is less than 1, imadjust weights the mapping toward higher (brighter) output values. If gamma is greater than 1, imadjust weights the mapping toward lower (darker) output values. If you omit the argument, gamma defaults to 1 (linear mapping)"
So try some gamma values until you get one that you like.

更多回答(1 个)

Image Analyst
Image Analyst 2016-2-8
How about brighten()?
If not, then just add some offset to your image.
brighterImage = originalImage + someOffset;
  1 个评论
DGM
DGM 2022-11-13
While the webdocs recommend brighten() in the links related to image adjustment, brighten() doesn't work on images. It works on colormaps and graphics objects in a figure. Though not practically convenient, any RGB image could be reshaped to work with it.
Acmap = reshape(im2double(A),[],3); % integer inputs are not supported!
Bcmap = brighten(Acmap,0.5);
B = reshape(im2uint8(Bcmap),size(A));
It's worth noting that contrary to the name, this is not an additive brightness adjustment tool. It's an obfuscated gamma adjustment tool.
in = linspace(0,1,100);
% simple additive "brightness" control
out_additive = min(max(in+0.15,0),1);
% a gamma control with linearized control parameter
out_gamma = brighten(in,0.5);
plot(in,out_additive); hold on
plot(in,out_gamma)
xlabel('input graylevel')
ylabel('output graylevel')
legend('additive','using brighten()','location','southeast')

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Lighting, Transparency, and Shading 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by