Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Watermarking using contourlet transform

Status
Not open for further replies.

eman_asem

Newbie level 2
Joined
Jan 18, 2011
Messages
2
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,296
Hello everyone ..

Please, I need matlab code or pseudocode for digital image watermarking using contourlet transform ,, anybody can help ?!
 

Share with us the digital image watermarking using contourlet transform algorithm, your user stories, the code that you have written indicating where you are experiencing problem. We can then help you with specific problems
 

Share with us the digital image watermarking using contourlet transform algorithm, your user stories, the code that you have written indicating where you are experiencing problem. We can then help you with specific problems

x=imread('lena','bmp');
disp( 'Displaying the input image...');
clf;
imagesc(x, [0, 255]);
title( 'Input image' ) ;
axis image off;
colormap('gray');
input( 'Press Enter key to continue...' ) ;
disp( ' ' );
nlevels = [0,2,3,4] ;
pfilter = 'pkva' ;
nfilter = 'pkva' ;
y = pdfbdec( double(x), pfilter, nfilter, nlevels );
disp('Displaying the contourlet coefficients...') ;
imcoeff = showpdfb( y ) ;
disp(y);
title('Contourlet coefficients');
input('Press Enter key to continue...' ) ;
disp(' ');

-----
i wrote these code to decompose the image using contourlet transform , it divides the images into nlevels+1 bands
y(1) is the low pass and the rest are the directional bandpass , i went to extract those directional bands and convert them to matrix to can hide my logo inside them , anybody could help me or suggest a solution ?
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top