Description Usage Arguments Value See Also
View source: R/preprocessing.R
Loads an image into PIL format.
1 2 3 4 5 6 | image_load(
path,
grayscale = FALSE,
target_size = NULL,
interpolation = "nearest"
)
|
path |
Path to image file |
grayscale |
Boolean, whether to load the image as grayscale. |
target_size |
Either |
interpolation |
Interpolation method used to resample the image if the target size is different from that of the loaded image. Supported methods are "nearest", "bilinear", and "bicubic". If PIL version 1.1.3 or newer is installed, "lanczos" is also supported. If PIL version 3.4.0 or newer is installed, "box" and "hamming" are also supported. By default, "nearest" is used. |
A PIL Image instance.
Other image preprocessing:
fit_image_data_generator()
,
flow_images_from_dataframe()
,
flow_images_from_data()
,
flow_images_from_directory()
,
image_to_array()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.