恢复扭曲的图像
我已经编写了这段用于扭曲图像的代码,它运行良好,但在再次运行相同的代码时恢复此扭曲的图像时遇到问题
pic=imread('pepers.png');
[imr,imc,clr]=size(pic);
img2=pic;
v=66;
for row=1:imr
for col=1:imc
for k=1:clr
img2(row,col,k)=bitxor(pic(row,col,k),v);
v=img2(row,col,k);
end
end
end
imwrite(img2,'pic2.png');
imshow(img2);
i have written this code for distorting an image, it works well but have problem to restore this distorted image running this same code again
pic=imread('pepers.png');
[imr,imc,clr]=size(pic);
img2=pic;
v=66;
for row=1:imr
for col=1:imc
for k=1:clr
img2(row,col,k)=bitxor(pic(row,col,k),v);
v=img2(row,col,k);
end
end
end
imwrite(img2,'pic2.png');
imshow(img2);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该方法将每个值与前一个值的编码进行异或。因此,逆函数与编码函数并不完全相同。您必须将 v 的分配切换为编码值,从而
用于解码方法。
The method XORs each value with the encoding of the previous value. Thus the inverse is not exactly the same as the encoding function. You have to switch the assignment of v to the encoded value, thus
for the decoding method.