Question

In: Computer Science

I need matlab code for digital watermarking using SVD. Please explain each step

I need matlab code for digital watermarking using SVD. Please explain each step

Solutions

Expert Solution

clc //uses to run the program and store the value

close all // uses to run the program and store the value

alpha= 0.75 //declare a variable alpha this is a embedding strength it is a strength which gives watermark a strength

I= imread ("cameraman.tif"); // this is usually available in MALTAB lab

figure(1) ; imshow(I); title ('The image');

[LL1, HL1, LH1, HH1] = dwt2 (I,'hear'); // low frequency in vertical and horizontal component

[LL2, HL2, LH2, HH2] = dwt2 (LL1,'hear');

p= size(LL2); // store the size LL2 in p

[Uy,Sy,Vy]= svd(LL2); // applying svd on LL2

q= size(Sy);

I_w = imread('watermark.jpg'); // define watermark

I_w = I_w (i, i, 1);

I1_w= imahow(I1_w); title ('I_w, p'); // figure(2)

[Uw, Sw, Vw] = svd (double(I1_w)); // applying svd on watermark

Smark = Sy+ alpha*Sw; // embed watermark

LL2_i = Uy*Smark*Vy; // rebuild the sub-bands using SVD

LL1_1 = idwt2 (LL2_1,HL2, LH2, HH2,'hear'); // applying inverse dwt to get watermark image

I_1 = idwt2 (LL1_1,HL1,LH1,HH1,'hear');

figure(3); imashow (uint6(I_1)); title ('Watermark image');

[LL1_wmv. HL1_wmv, LH1_wmv,HH1_wmv] = dwt2(I_1,'hear'); // Extraction

[LL2_wmv. HL2_wmv, LH2_wmv,HH2_wmv] = dwt2(LL1_wmv,'hear');

[Uy_wmv, Sy_wmv, Vy_wmv] = svd (LL2_wmv);

swrec = (Sy_wmv - Sy)/alpha;

WMy = Uw*Swrec*Vw' ;


Related Solutions

Hello, I need the Matlab code of the Fourier Transform without using the Matlab functions fft...
Hello, I need the Matlab code of the Fourier Transform without using the Matlab functions fft and dft. Applied to discrete signals. If you can with an example.Thank you!!
Calculate the pH of each aqueous solution: I need step to step solution please using formula...
Calculate the pH of each aqueous solution: I need step to step solution please using formula from; pH = -log [H3O+] pOH = -log[OH-] pH + pOH = 14 1)0.80 M lactic acid and 0.40 M lactate ion. 2) 0.10 mol of formic acid, HCOOH, and 0.10 mol of sodium formate, HCOONa in 1 L of water . 3) 0.30 M NH3 and 1.50 M NH4+
I need a working MATLAB CODE for the Gram Schimdt process Please give the code fast...
I need a working MATLAB CODE for the Gram Schimdt process Please give the code fast Its urgent The code must run on any matrix given It should be a generic code Dont answer any wrong code or else i will badly dislike
i need matlab code of heat equation in 1D with convection ?
i need matlab code of heat equation in 1D with convection ?
I need matlab code for solution to the optimal power flow using artificial Ant Colony algorithm
I need matlab code for solution to the optimal power flow using artificial Ant Colony algorithm
pls, I need Matlab code for, OFDM modulation (Matlab demo by at least 4 carriers)
pls, I need Matlab code for, OFDM modulation (Matlab demo by at least 4 carriers)
I want the code for the 2D Ising model using Matlab
I want the code for the 2D Ising model using Matlab
please let me know reference of this MATLAB code. please explain this code line by line....
please let me know reference of this MATLAB code. please explain this code line by line. . . N=256; %% sampling number n=linspace(0,1,N); fs=1/(n(2)-n(1)); x=5*(sin((2*pi*10*n))); %% create signal N=length(x); f=[-fs/2:fs/N:fs/2-fs/N]; subplot(211) plot(f,fftshift(abs(fft(x)))); title('|G(f)|');grid; xlabel('frequency'); ylabel('|G(f)|'); %Zero padding xx=[zeros(1,128) x zeros(1,128)]; N=length(xx); f=[-fs/2:fs/N:fs/2-fs/N]; subplot(212) plot(f,fftshift(abs(fft(xx)))); title('|Gz(f)|');grid; xlabel('frequency'); ylabel('|Gz(f)|');
I need an original matlab code and gui for a simple double pendulum. This needs to...
I need an original matlab code and gui for a simple double pendulum. This needs to be original and not too complicated. Please provide basic instructions. Thank you!
I need a matlab code for my presentation. Code should include Single Sideband Amplitude Modulation and...
I need a matlab code for my presentation. Code should include Single Sideband Amplitude Modulation and Demodulation. It should figure 3 things: -time domain of given message signal in Amplitude Modulation and Single Sideband Amplitude Modulation -frequency domain of given signal in Amplitude Modulation and Single Sideband Amplitude Modulation -And it should demodulate and show message signal.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT