0% found this document useful (0 votes)
34 views1 page

Clear All Close All % Load The Original Noise-Free Image % - Filename 'F:/SRM - Muthu/new/images/lena - Tif' Original Double (Imread (Filename) ) Disp Original

The document loads an image file of Lena without noise, converts it to double format, and displays the original image values on screen. It prepares to work with the original noise-free image by clearing the workspace and closing any open figures.

Uploaded by

Julia Joseph
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
34 views1 page

Clear All Close All % Load The Original Noise-Free Image % - Filename 'F:/SRM - Muthu/new/images/lena - Tif' Original Double (Imread (Filename) ) Disp Original

The document loads an image file of Lena without noise, converts it to double format, and displays the original image values on screen. It prepares to work with the original noise-free image by clearing the workspace and closing any open figures.

Uploaded by

Julia Joseph
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

clear all;

close all;
% Load the original noise-free image
%-----------------------------------
filename = 'F:/srm_muthu/new/Images/lena.tif';
original = double(imread(filename));
disp original;

You might also like