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')
Introduction Binary files:- "Binary" files are any files where the format isn't made up of readable characters. In Python, fil...
Introduction GUI GUI(Graphical user interface):-Its basically a system of interactive visual components for a software. A GUI displays ...