public static enum Spinnaker_C._spinColorProcessingAlgorithm extends Enum<Spinnaker_C._spinColorProcessingAlgorithm>
| Enum Constant and Description |
|---|
BILINEAR
Weighted average of surrounding 4 pixels in a 2x2 neighborhood.
|
DEFAULT
Default method.
|
DIRECTIONAL_FILTER
Best quality but much faster than rigorous.
|
EDGE_SENSING
Weights surrounding pixels based on localized edge orientation.
|
HQ_LINEAR
Well-balanced speed and quality.
|
IPP
Multi-threaded with similar results to edge sensing.
|
NEAREST_NEIGHBOR
Fastest but lowest quality.
|
NEAREST_NEIGHBOR_AVG
Nearest Neighbor with averaged green pixels.
|
NO_COLOR_PROCESSING
No color processing.
|
RIGOROUS
Slowest but produces good results.
|
WEIGHTED_DIRECTIONAL_FILTER
Weighted pixel average from different directions.
|
| Modifier and Type | Field and Description |
|---|---|
int |
value |
| Modifier and Type | Method and Description |
|---|---|
Spinnaker_C._spinColorProcessingAlgorithm |
intern() |
String |
toString() |
static Spinnaker_C._spinColorProcessingAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Spinnaker_C._spinColorProcessingAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Spinnaker_C._spinColorProcessingAlgorithm DEFAULT
public static final Spinnaker_C._spinColorProcessingAlgorithm NO_COLOR_PROCESSING
public static final Spinnaker_C._spinColorProcessingAlgorithm NEAREST_NEIGHBOR
public static final Spinnaker_C._spinColorProcessingAlgorithm NEAREST_NEIGHBOR_AVG
public static final Spinnaker_C._spinColorProcessingAlgorithm BILINEAR
public static final Spinnaker_C._spinColorProcessingAlgorithm EDGE_SENSING
public static final Spinnaker_C._spinColorProcessingAlgorithm HQ_LINEAR
public static final Spinnaker_C._spinColorProcessingAlgorithm IPP
public static final Spinnaker_C._spinColorProcessingAlgorithm DIRECTIONAL_FILTER
public static final Spinnaker_C._spinColorProcessingAlgorithm RIGOROUS
public static final Spinnaker_C._spinColorProcessingAlgorithm WEIGHTED_DIRECTIONAL_FILTER
public static Spinnaker_C._spinColorProcessingAlgorithm[] values()
for (Spinnaker_C._spinColorProcessingAlgorithm c : Spinnaker_C._spinColorProcessingAlgorithm.values()) System.out.println(c);
public static Spinnaker_C._spinColorProcessingAlgorithm 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 nullpublic Spinnaker_C._spinColorProcessingAlgorithm intern()
public String toString()
toString in class Enum<Spinnaker_C._spinColorProcessingAlgorithm>Copyright © 2020. All rights reserved.