how to perform the watermarking with cryptography?
Mostrar comentarios más antiguos
hi....
I want to embedded an encrypted watermark to a cover medium and to evaluate the quality of extracted watermark after decryption...The watermark embedding must be in DCT domain. How should I write the code for performing this operation? Anybody having the code for reference?
5 comentarios
Geoff Hayes
el 19 de Nov. de 2014
Which is line 96?
neetha k k
el 20 de Nov. de 2014
d=bitxor(op,r); error during this operation
Geoff Hayes
el 20 de Nov. de 2014
You may want to review this decryption code
for i=1 :256
for j=1:256
d=bitxor(op,r);
end
end
What is r, as it hasn't been defined previously? What is the data type for op? Note also that this loop doesn't do anything different on each iteration as it just repeats the same bitxor operation without making use of the indices i and j. (As an aside, you should name these indices to something else because i and j are also used as representations for the imaginary number.)
Neethu
el 21 de Nov. de 2014
Geoff Hayes
el 21 de Nov. de 2014
Neethu - you need to explain what your code is attempting with the decryption. Why have you written it this way?
Respuesta aceptada
Más respuestas (1)
Categorías
Más información sobre Watermarking en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!