Write a program to find the negative of an image using imcomplement function code example
Example: matlab invert image
% Reads image
im = imread('image.jpg');
% Inverts image
invert = 255 - im;
% Displays image
image(invert)
% Reads image
im = imread('image.jpg');
% Inverts image
invert = 255 - im;
% Displays image
image(invert)