Borrar filtros
Borrar filtros

Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

question for digital watermark ?

2 visualizaciones (últimos 30 días)
ghassan78
ghassan78 el 27 de En. de 2014
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
if we are used this code for recover watermark .... the result is ok with gray watermark ... but way not ok with color watermar? pls help me... and thank you for all...
%determined the size of watermarked image
mw=size(image1,1); %heigth of the watermarked image
nw=size(image1,2); %width of the watermarked image
for ii = 1: mw
for jj = 1 : nw
watermark (ii,jj) = bitget(image1(ii,jj),1);
end
end
figure(2)
imshow(watermark);
title('extracted image'); % watermark image for watermarking

Respuestas (1)

Walter Roberson
Walter Roberson el 27 de En. de 2014
Replace the code with
watermark = bitget(image1, 1);
figure(2);
imshow(watermark);
title('extracted image');
  3 comentarios
Walter Roberson
Walter Roberson el 28 de En. de 2014
Yes it does. I tested it.
ghassan78
ghassan78 el 29 de En. de 2014
thank you (Walter Roberson): but my question for color watermark : I mean , if I hide gray scale image inside color image then the result : color watermark : I want extracted this watermark ....... this code is ok with gray watermark but it doesn't work with color watermark , thankful

La pregunta está cerrada.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by