恢复扭曲的图像

发布于 2024-10-31 04:31:10 字数 355 浏览 2 评论 0原文

我已经编写了这段用于扭曲图像的代码,它运行良好,但在再次运行相同的代码时恢复此扭曲的图像时遇到问题

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

挽心 2024-11-07 04:31:10

该方法将每个值与前一个值的编码进行异或。因此,逆函数与编码函数并不完全相同。您必须将 v 的分配切换为编码值,从而

img2(row,col,k)=bitxor(pic(row,col,k),v);
v=pic(row,col,k);

用于解码方法。

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

img2(row,col,k)=bitxor(pic(row,col,k),v);
v=pic(row,col,k);

for the decoding method.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文