How to Create function to invert Image colors

128 次查看(过去 30 天)
I need to write a function that inverts the colors (negative effect) of an image. I know that I need subtract each RGB color value from 255, but I do not know how to write function to do this. The following is my best guess:
% Invert image
s = input('What is the value of the threshhold (from 0 to 255) ');
Inverted = invert(current_img); % create your own function for inverting
%for current_img
current_img(:,:,1)= current_img(:,:,1)-s;
current_img(:,:,2)= current_img(:,:,2)-s;
current_img(:,:,3)= current_img(:,:,3)-s;
  1 个评论
Adam
Adam 2015-10-9
If you are just inverting the colours where does 's' fit in? Your code doesn't do any subtraction from 255 despite you saying that is what you need.

请先登录,再进行评论。

回答(3 个)

Deepanshu Mehta
Deepanshu Mehta 2019-8-16
Or you can simply use
img=imread('image.png');
y=255-Img;
imshow( y );
Thanks me later...
  2 个评论
Aaditya Aaditya
Aaditya Aaditya 2022-2-28
ok, but this is image negation, not inversion, unless image is black & white.
Rik
Rik 2022-2-28
@Aaditya Aaditya Can you explain what should happen instead? I don't see how this wouldn't be an inversion. Looks like one to me.
im=imread('peppers.png');
subplot(1,2,1)
imshow(im)
subplot(1,2,2)
imshow(255-im)

请先登录,再进行评论。


Robert Dylans
Robert Dylans 2015-10-9
A simple invert of image 'x' into image 'y':
x=imread('image.jpg');
y(:,:,:)=255-x(:,:,:);

DGM
DGM 2022-10-25
编辑:DGM 2022-11-26
If you can be certain of the class of incoming images, you simply subtract the image from the nominal white value associated with that class. That said, assuming that all images are always uint8 is a great way to cause problems. Unless you know that the incoming images are always uint8, then expect that the nominal white value is not always 255.
As @Robert Dylans points out, Image Processing Toolbox (IPT) has a class-agnostic tool that does this quite safely. If your images are correctly-scaled for their class, you can just use imcomplement().
If you don't have IPT, you can use the attached file from MIMT. It should not be dependent on MIMT or IPT.
% some images of varied class
Auint8 = imread('peppers.png');
Aint16 = im2int16(Auint8);
Adouble = im2double(Auint8);
% invert them all
Buint8 = iminv(Auint8);
Bint16 = iminv(Aint16);
Bdouble = iminv(Adouble);
% create a montage
montage({Auint8 Buint8; Aint16 Bint16; Adouble Bdouble})
Open that file and see how it does the inversion for all the different image classes. It's a bit more succinct than what's been described.

类别

Help CenterFile Exchange 中查找有关 Programming 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by