public static enum Spinnaker_C.spinColorProcessingAlgorithm extends Enum<Spinnaker_C.spinColorProcessingAlgorithm>
| Enum Constant and Description |
|---|
SPINNAKER_COLOR_PROCESSING_ALGORITHM_BILINEAR
Weighted average of surrounding 4 pixels in a 2x2 neighborhood.
|
SPINNAKER_COLOR_PROCESSING_ALGORITHM_DIRECTIONAL_FILTER
Best quality but much faster than rigorous.
|
SPINNAKER_COLOR_PROCESSING_ALGORITHM_EDGE_SENSING
Weights surrounding pixels based on localized edge orientation.
|
SPINNAKER_COLOR_PROCESSING_ALGORITHM_HQ_LINEAR
Well-balanced speed and quality.
|
SPINNAKER_COLOR_PROCESSING_ALGORITHM_IPP
Multi-threaded with similar results to edge sensing.
|
SPINNAKER_COLOR_PROCESSING_ALGORITHM_NEAREST_NEIGHBOR
Fastest but lowest quality.
|
SPINNAKER_COLOR_PROCESSING_ALGORITHM_NEAREST_NEIGHBOR_AVG
Nearest Neighbor with averaged green pixels.
|
SPINNAKER_COLOR_PROCESSING_ALGORITHM_NONE
No color processing.
|
SPINNAKER_COLOR_PROCESSING_ALGORITHM_RIGOROUS
Slowest but produces good results.
|
SPINNAKER_COLOR_PROCESSING_ALGORITHM_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 SPINNAKER_COLOR_PROCESSING_ALGORITHM_NONE
public static final Spinnaker_C.spinColorProcessingAlgorithm SPINNAKER_COLOR_PROCESSING_ALGORITHM_NEAREST_NEIGHBOR
public static final Spinnaker_C.spinColorProcessingAlgorithm SPINNAKER_COLOR_PROCESSING_ALGORITHM_NEAREST_NEIGHBOR_AVG
public static final Spinnaker_C.spinColorProcessingAlgorithm SPINNAKER_COLOR_PROCESSING_ALGORITHM_BILINEAR
public static final Spinnaker_C.spinColorProcessingAlgorithm SPINNAKER_COLOR_PROCESSING_ALGORITHM_EDGE_SENSING
public static final Spinnaker_C.spinColorProcessingAlgorithm SPINNAKER_COLOR_PROCESSING_ALGORITHM_HQ_LINEAR
public static final Spinnaker_C.spinColorProcessingAlgorithm SPINNAKER_COLOR_PROCESSING_ALGORITHM_IPP
public static final Spinnaker_C.spinColorProcessingAlgorithm SPINNAKER_COLOR_PROCESSING_ALGORITHM_DIRECTIONAL_FILTER
public static final Spinnaker_C.spinColorProcessingAlgorithm SPINNAKER_COLOR_PROCESSING_ALGORITHM_RIGOROUS
public static final Spinnaker_C.spinColorProcessingAlgorithm SPINNAKER_COLOR_PROCESSING_ALGORITHM_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 © 2024. All rights reserved.