jax.image module
Contents
jax.image module#
Image manipulation functions.
More image manipulation functions can be found in libraries built on top ofJAX, such asPIX.
Image manipulation functions#
| Image resize. |
| Apply a scale and translation to an image. |
Argument classes#
- classjax.image.ResizeMethod(value,names=<notgiven>,*values,module=None,qualname=None,type=None,start=1,boundary=None)[source]#
Image resize method.
Possible values are:
- NEAREST:
Nearest-neighbor interpolation.
- LINEAR:
- LANCZOS3:
Lanczos resampling, using a kernel of radius 3.
- LANCZOS5:
Lanczos resampling, using a kernel of radius 5.
- CUBIC:
Cubic interpolation, using the Keys cubic kernel.
Contents
