can anyone demo me how to do a tamper localization?
조회 수: 1 (최근 30일)
이전 댓글 표시
thank you..
댓글 수: 0
채택된 답변
Image Analyst
2013년 11월 28일
What if you simply subtract the image known to be legitimate from the one suspected of being tampered with? (Be sure to cast both to double before subtracting.)
댓글 수: 0
추가 답변 (1개)
Youssef Khmou
2013년 11월 28일
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')
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!