Write a MATLAB program for image multiply


Hints: Both images have the same size and class or Second image must be a scalar double.

Code:

clear;
clc;
I=imread('d:/matimage/arithmetic/baby1.jpg');
J=immultiply(I,2.2);
imshow(I);
figure,imshow(J);


Output:



No comments

Powered by Blogger.