Saving images and adversarial examples¶
New in 1.5.0
save_image_batch
was first introduced in v1.5.0.
To avoid degrading the effectiveness of adversarial perturbation through image saving to and opening from disk, use save_image_batch
.
As a rule of thumb, we recommend saving images as PNGs, as they better keep the image quality than JPEGs. To compare, in the unit tests of torchattack, we use:
- a tolerance of
4e-3
for PNGs, which approx. to \(\varepsilon = 1 / 255\) in the \(\ell_\infty\) norm, and - a tolerance of
8e-3
for JPEGs, which approx. to \(\varepsilon = 2 / 255\).
A commonly used perturbation magnitude is \(\varepsilon = 8 / 255\), for reference.
save_image_batch(imgs, save_dir, filenames=None, extension='png', kwargs=None)
¶
Losslessly (as lossless as possible) save a batch of images to disk.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
imgs
|
Tensor
|
The batch of images to save. |
required |
save_dir
|
str
|
The directory to save the images (parent folder). |
required |
filenames
|
list[str] | None
|
The names of the images without their extensions. Defaults to None. |
None
|
extension
|
str
|
The extension of the images to save as. One of 'png', 'jpeg'. Defaults to "png". |
'png'
|
kwargs
|
dict | None
|
Additional keyword arguments to pass to the image save function. Defaults to None. |
None
|