question for digital watermark ?
情報
この質問は閉じられています。 編集または回答するには再度開いてください。
古いコメントを表示
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
0 件のコメント
回答 (1 件)
Walter Roberson
2014 年 1 月 27 日
Replace the code with
watermark = bitget(image1, 1);
figure(2);
imshow(watermark);
title('extracted image');
3 件のコメント
ghassan78
2014 年 1 月 28 日
Walter Roberson
2014 年 1 月 28 日
Yes it does. I tested it.
ghassan78
2014 年 1 月 29 日
この質問は閉じられています。
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!