Interface RegionDetection<T,V>
-
- All Known Implementing Classes:
OpenCVWatershedRegionDetection
public interface RegionDetection<T,V>
Detections regions in images using information, depending on the image. Usually tries to find regions with similar information (color values, depth), then collects coordinates of this region.- Since:
- 1.0
- Author:
- Christoph Praschl, Andreas Pointner
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<RecognizedObject<T,V>>
recognizeRegion(T image, double threshold)
Recognize regions using a specific threshold and information of an image-object.
-
-
-
Method Detail
-
recognizeRegion
List<RecognizedObject<T,V>> recognizeRegion(T image, double threshold)
Recognize regions using a specific threshold and information of an image-object.- Parameters:
image
- image to find regions in forthreshold
- threshold to use during the region search process- Returns:
- list containing the found regions
-
-