public static enum ImageNormalization.Type extends Enum<ImageNormalization.Type>
| Enum Constant and Description |
|---|
IMAGE_NET |
INCEPTION |
NONE |
SCALE |
SCALE_01 |
STANDARDIZE |
SUBTRACT_MEAN |
VGG_SUBTRACT_MEAN |
| Modifier and Type | Method and Description |
|---|---|
static ImageNormalization.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImageNormalization.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageNormalization.Type NONE
public static final ImageNormalization.Type SCALE
public static final ImageNormalization.Type SCALE_01
public static final ImageNormalization.Type SUBTRACT_MEAN
public static final ImageNormalization.Type STANDARDIZE
public static final ImageNormalization.Type INCEPTION
public static final ImageNormalization.Type VGG_SUBTRACT_MEAN
public static final ImageNormalization.Type IMAGE_NET
public static ImageNormalization.Type[] values()
for (ImageNormalization.Type c : ImageNormalization.Type.values()) System.out.println(c);
public static ImageNormalization.Type valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2022. All rights reserved.