Package | Description |
---|---|
org.openimaj.image.objectdetection | |
org.openimaj.image.objectdetection.haar | |
org.openimaj.image.objectdetection.hog |
Modifier and Type | Interface and Description |
---|---|
interface |
MultiScaleObjectDetector<IMAGE extends Image<?,IMAGE>,DETECTED_OBJECT>
Interface describing a multi-scale object detector.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractMultiScaleObjectDetector<IMAGE extends Image<?,IMAGE>,DETECTED_OBJECT>
Abstract base class for implementations of
MultiScaleObjectDetector . |
class |
FilteringObjectDetector<IMAGE extends Image<?,IMAGE>,DETECTED_OBJECT,FILTERED_OBJECT>
|
class |
RotationSimulationObjectDetector<IMAGE extends Image<PIXEL,IMAGE> & SinglebandImageProcessor.Processable<Float,FImage,IMAGE>,PIXEL,DETECTED_OBJECT>
An
ObjectDetector that wraps another ObjectDetector and
performs rotation simulations on the images it passes to the internal
detector. |
Modifier and Type | Method and Description |
---|---|
ObjectDetector<IMAGE,DETECTED_OBJECT> |
RotationSimulationObjectDetector.getInnerDetector()
Get the internal detector
|
Constructor and Description |
---|
FilteringObjectDetector(ObjectDetector<IMAGE,DETECTED_OBJECT> detector,
DetectionFilter<DETECTED_OBJECT,FILTERED_OBJECT> filter)
Construct with the given detector and filter.
|
RotationSimulationObjectDetector(ObjectDetector<IMAGE,DETECTED_OBJECT> detector,
float[] simulationAngles,
float scalefactor)
Construct with the given inner detector, simulation angles and scale
factor.
|
RotationSimulationObjectDetector(ObjectDetector<IMAGE,DETECTED_OBJECT> detector,
int numRotations)
Construct with the given inner detector and number of rotations.
|
RotationSimulationObjectDetector(ObjectDetector<IMAGE,DETECTED_OBJECT> detector,
int numRotations,
float scalefactor)
Construct with the given inner detector, number of rotations and scale
factor.
|
Modifier and Type | Class and Description |
---|---|
class |
Detector
Basic, single-threaded multi-scale Haar cascade/tree object detector.
|
class |
MultiThreadedDetector
Multi-threaded version of the
Detector . |
Modifier and Type | Class and Description |
---|---|
class |
HOGDetector |