DIP Exp 2 . [ Image negative ]

clc;
close all;
clear all;
a=imread('image.jpg');
subplot(1,2,1);
imshow(a);
title(' Origional image')
b= 255- a;
subplot(1,2,2);
imshow(b);
title(' Negative image')
Next Post Previous Post
No Comment
Add Comment
comment url