Uses of Class
org.nd4j.enums.ImageResizeMethod
-
Packages that use ImageResizeMethod Package Description org.nd4j.autodiff.samediff.ops org.nd4j.enums org.nd4j.linalg.api.ops.impl.image org.nd4j.linalg.factory.ops -
-
Uses of ImageResizeMethod in org.nd4j.autodiff.samediff.ops
Methods in org.nd4j.autodiff.samediff.ops with parameters of type ImageResizeMethod Modifier and Type Method Description SDVariable
SDImage. imageResize(String name, SDVariable input, SDVariable size, boolean preserveAspectRatio, boolean antialias, ImageResizeMethod ImageResizeMethod)
Resize images to size using the specified method.SDVariable
SDImage. imageResize(String name, SDVariable input, SDVariable size, ImageResizeMethod ImageResizeMethod)
Resize images to size using the specified method.SDVariable
SDImage. imageResize(SDVariable input, SDVariable size, boolean preserveAspectRatio, boolean antialias, ImageResizeMethod ImageResizeMethod)
Resize images to size using the specified method.SDVariable
SDImage. imageResize(SDVariable input, SDVariable size, ImageResizeMethod ImageResizeMethod)
Resize images to size using the specified method. -
Uses of ImageResizeMethod in org.nd4j.enums
Methods in org.nd4j.enums that return ImageResizeMethod Modifier and Type Method Description static ImageResizeMethod
ImageResizeMethod. valueOf(String name)
Returns the enum constant of this type with the specified name.static ImageResizeMethod[]
ImageResizeMethod. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of ImageResizeMethod in org.nd4j.linalg.api.ops.impl.image
Constructors in org.nd4j.linalg.api.ops.impl.image with parameters of type ImageResizeMethod Constructor Description ImageResize(@NonNull SameDiff sameDiff, @NonNull SDVariable in, @NonNull SDVariable size, boolean preserveAspectRatio, boolean antialias, ImageResizeMethod method)
ImageResize(@NonNull INDArray in, @NonNull INDArray size, boolean preserveAspectRatio, boolean antialias, ImageResizeMethod method)
-
Uses of ImageResizeMethod in org.nd4j.linalg.factory.ops
Methods in org.nd4j.linalg.factory.ops with parameters of type ImageResizeMethod Modifier and Type Method Description INDArray
NDImage. imageResize(INDArray input, INDArray size, boolean preserveAspectRatio, boolean antialias, ImageResizeMethod ImageResizeMethod)
Resize images to size using the specified method.INDArray
NDImage. imageResize(INDArray input, INDArray size, ImageResizeMethod ImageResizeMethod)
Resize images to size using the specified method.
-