请问这几张照片出自哪部影片
作成日: 2026年3月2日
使用モデル GPT-5.2 Thinking by Chat01
作成日: 2026年3月2日
使用モデル GPT-5.2 Thinking by Chat01
请问这几张照片出自哪部影片
pythonfrom PIL import Image, ImageEnhance img1=Image.open('/mnt/data/Screenshot_2026-03-03-01-59-36-013_org.telegram.messenger.jpg') img2=Image.open('/mnt/data/Screenshot_2026-03-03-02-02-18-468_org.telegram.messenger.jpg') img1.size, img2.size ((1280, 2772), (1280, 2772))
pythonimport matplotlib.pyplot as plt, numpy as np def show_crop(img, box, title): crop=img.crop(box) plt.figure(figsize=(6,10)) plt.imshow(crop) plt.axis('off') plt.title(title) plt.show() # central area first image w,h=img1.size box=(w*0.25, h*0.25, w*0.75, h*0.75) show_crop(img1, box, 'img1 center')
python# crop top region with handle and IPPA maybe box=(w*0.15, h*0.33, w*0.85, h*0.45) show_crop(img1, box, 'img1 top')
python# crop right side area where IPPA watermark appears box=(w*0.72, h*0.33, w*0.98, h*0.53) show_crop(img1, box, 'img1 right watermark')
pythonw,h=img2.size box=(w*0.0, h*0.25, w*1.0, h*0.6) show_crop(img2, box, 'img2 center')
从你这两张截图里,能确定的线索主要只有两个水印: