Package | Description |
---|---|
org.openimaj.image.feature.dense.gradient.binning |
Modifier and Type | Method and Description |
---|---|
static FixedHOGStrategy.BlockNormalisation |
FixedHOGStrategy.BlockNormalisation.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FixedHOGStrategy.BlockNormalisation[] |
FixedHOGStrategy.BlockNormalisation.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Constructor and Description |
---|
FixedHOGStrategy(int cellSize,
int cellsPerBlock,
FixedHOGStrategy.BlockNormalisation norm)
Construct with square cells of the given size (in pixels).
|
FixedHOGStrategy(int cellSize,
int cellsPerBlock,
int blockStep,
FixedHOGStrategy.BlockNormalisation norm)
Construct with square cells of the given size (in pixels).
|
FixedHOGStrategy(int cellWidth,
int cellHeight,
int cellsPerBlockX,
int cellsPerBlockY,
int blockStepX,
int blockStepY,
FixedHOGStrategy.BlockNormalisation norm)
Construct with square cells of the given size (in pixels).
|
FlexibleHOGStrategy(int numCellsX,
int numCellsY,
int cellsPerBlock,
FixedHOGStrategy.BlockNormalisation norm)
Construct with the given number of cells per window (or image).
|
FlexibleHOGStrategy(int numCellsX,
int numCellsY,
int cellsPerBlock,
int blockStep,
FixedHOGStrategy.BlockNormalisation norm)
Construct with the given number of cells per window (or image).
|
FlexibleHOGStrategy(int numCellsX,
int numCellsY,
int cellsPerBlockX,
int cellsPerBlockY,
int blockStepX,
int blockStepY,
FixedHOGStrategy.BlockNormalisation norm)
Construct with the given number of cells per window (or image).
|