Video lecture series on Digital Image Processing, Lecture: 62,
Multiresolution Expansions in Wavelets & Multiresolution processing and its implementation in MATLAB
Link to download ppts/lecture notes:
https://drive.google.com/drive/folders/1AtR1eq6ZvQf-5vjXEMUPXNj2S0d9rAMZ?usp=share_link
#DIP
#DIPwithMATLAB
#DigitalImageProcessingUsingMATLAB
#digitalimageprocessing
#digitalimageprocessinglecturesin4K
#StudywithDrDafda
MATLAB code used in the video is given below:
% MATLAB code for Multiresolution Pyramid of Image
close all;
clear all;
clc;
I = imread('Maulik.png');
%I = imread('cameraman.tif');
imshow(I);
I1 = impyramid(I, 'reduce');
figure
imshow(I1);
I2 = impyramid(I1, 'reduce');
figure
imshow(I2);
I3 = impyramid(I2, 'reduce');
figure
imshow(I3);
Download
0 formats
No download links available.
Multiresolution Expansions in Wavelets & Multiresolution processing and its implementation in MATLAB | NatokHD