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.

help needed!!! selecting dct coefficients-image watermarking

Status
Not open for further replies.

dlna

Newbie level 6
Joined
Feb 15, 2009
Messages
11
Helped
1
Reputation
2
Reaction score
0
Trophy points
1,281
Activity points
1,347
hi,
im working on a watermarking proj. I want help/code in finding a way to select the middle-frequency range dct coefficients.

i have already broken the image into 8x8 blocks and performed 2dct on each of them.


thanks,
 

Re: help needed!!! selecting dct coefficients-image watermar

hi..
i am working in the same project.
plz, if u have any code that help i would be appreciate that.
and if u can give me some hints about the watermarking procedures and the DCT2
 

Re: help needed!!! selecting dct coefficients-image watermar

inputDCT=inputDCT';
inputDCT=inputDCT(1:end); % row wise wise vector

midIndexes=[7 8 14 15 21 22 28 29 36 37 43 44 50 51 57 58]; % zig zag

middleFreq=inputDCT(midIndexes);

middleFreq=reshape(middleFreq,4,4);
middleFreq=middleFreq';

this would help.
 

thanks a lot for replying to me
sorry for disturb,could you plz upload for me some of your work, so i can take advantage of it. i really need it. i am stuck and no time left to submit the project.
Please

Best Regards
~omar
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top