public interface KltFeatureSelector<InputImage extends boofcv.struct.image.ImageGray,DerivativeImage extends boofcv.struct.image.ImageGray>
| Modifier and Type | Method and Description |
|---|---|
void |
compute(java.util.List<KltFeature> active,
java.util.List<KltFeature> availableData)
Selects new features using provided data structures.
|
void |
setInputs(InputImage image,
DerivativeImage derivX,
DerivativeImage derivY)
Sets the current image and image derivatives
|
void setInputs(InputImage image, DerivativeImage derivX, DerivativeImage derivY)
image - Original image.derivX - Image derivative along the x-axis.derivY - Image derivative along the y-axis.void compute(java.util.List<KltFeature> active, java.util.List<KltFeature> availableData)
active - List of currently active features which should not be returned again.availableData - List of feature data that can be used to create a new features.