can anyone demo me how to do a tamper localization?
Ältere Kommentare anzeigen
thank you..
Akzeptierte Antwort
Weitere Antworten (1)
Youssef Khmou
am 28 Nov. 2013
hi, That is new field to me, let us try to apply what @Image Analyst described as an example :
X=im2double(imread('circuit.tif'));
T=X;T(200:210,150:170)=T(200:210,150:170)+1.2*randn(size(T(200:210,150:170)));
D=abs(T-X);
subplot(1,3,1), imshow(X), title(' original');
subplot(1,3,2), imshow(T), title(' tampered');
subplot(1,3,3), imshow(D), title(' localization')
Kategorien
Mehr zu Watermarking finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!