gpt4 book ai didi

python - 图像中存储的像素值会自动更改。如果图像再次在另一个函数中打开

转载 作者:太空宇宙 更新时间:2023-11-03 21:20:55 24 4
gpt4 key购买 nike

预处理数据函数返回数据的 ASCII 值列表。

def preprocess_data(data):
data_list = []
for ch in data:
data_list.append(list(format(ord(ch), '08b')))
return data_list

在这里,我尝试实现图像隐写术的 LSB 算法。它打开 temp.JPG 图像,然后如果数据为“1”,则将 LSB 位设置为 1,如果数据为“0”,则将 LSB 位设置为 0。加密图像存储在 enc_img.JPG 中。我正在使用“11111111”作为停用词。

def encode():
data = "This is a data"
img = Image.open("temp.JPG")
data = preprocess_data(data)
data.append(list('11111111'))
print(data)
i=0
j=0
enc_img = img.copy()
enc_img.save("OUT.JPG")
height, width = enc_img.size
pixels = enc_img.load()
f = 0
for h in range(height):
for w in range(width):
pixel = enc_img.getpixel((h, w))
pixel = list(pixel)
newpixel = []
# retrieveing the pixel at (h,w)
for k in range(3):
#if LSB is 1 and data value is 0 updating the pixel
if pixels[h,w][k]&1 and data[i][j] == '0':
newpixel.append(pixel[k] ^ 1)
else:
# if LSB is 0 and data value is 1 updating the pixel
if (pixels[h,w][k]&1) == 0 and data[i][j] == '1':
newpixel.append(pixel[k] | 1)
else:
newpixel.append(pixel[k])
j = (j + 1) % 8
if j == 0:
i += 1
# if whole data list encrypted then break
if i == len(data):
print("Saved")
enc_img.save('temp2.JPG')
f=1
break
pixels[h, w] = tuple(newpixel)
if f:
break
if f:
break
print("Encoding done!!")

这里我通过遍历完整图片来解码加密图像。如果我找到停用词,那么我将返回数据。

def decode():
img = Image.open("temp2.JPG")
img2 = Image.open("temp.JPG")
height, width = img.size
data = ""
k = 0
l=1
j=0
st = ""
pixels = img.load()
pixels2 = img2.load()
for h in range(height):
for w in range(width):
print(pixels[h, w])
print(pixels2[h, w])
for k in range(3):
st += str(pixels[h, w][k]&1)
j = (j+1)%8
if j==0:
print(str(l) + st)
if st == "11111111":
return data
l += 1
st = ""
break

def main():
encode()
decode()
if __name__ == '__main__':
main()

例如,在位置 (0,0) 我有值(7,54,84) 并且数据值为 ['0','1','0'] 那么 enc_img 有 (6,55,84 )。如果我在解码函数中打开 enc_img,则位置 (0,0) 处的像素值将更改为 (5,54,86)。我无法理解这种异常行为。谢谢!

最佳答案

这是因为您使用的是有损图像格式。当您将图像另存为 jpg 时,部分数据会丢失(图像被压缩)。将您的图像类型更改为 png 或 bmp(或其他一些无损格式),这样就可以了。

您(通常)不想对 jpg 图像使用 lsb 隐写术。

关于python - 图像中存储的像素值会自动更改。如果图像再次在另一个函数中打开,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54261273/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com