Java Vehicle Detector API¶
oneML model to detect vehicles in images, returning their confident score and bounding box.
-
class
org::sertiscorp::oneml::alpr
::
VehicleDetector
¶ Public Functions
-
inline synchronized void delete ()
Gracefully destroy the object and free memory.
-
inline
VehicleDetector
(LicenseManager manager)¶ Construct a VehicleDetector object.
- Parameters
manager
: LicenseManager instance.
-
inline VehicleDetectorResultList
detect
(ImageBatch imgs)¶ Detect vehicles in images.
- Return
an instance of VehicleDetectorResultList.
- Parameters
imgs
: an instance of ImageBatch.
-
inline VehicleDetectorResult
detect
(Image img)¶ Detect vehicles in an image.
- Return
an instance of VehicleDetectorResult.
- Parameters
img
: an instance of Image.
-
-
class
org::sertiscorp::oneml::alpr
::
VehicleDetectorResult
¶ Public Functions
-
inline synchronized void delete ()
Gracefully destroy the object and free memory.
-
inline BBoxList
getBBoxes
()¶ Get result Bounding Boxes.
- Return
an instance of BBoxList.
-
inline FloatList
getScores
()¶ Get result scores.
- Return
an instance of FloatList.
-
inline StatusCodeList
getReturnStatus
()¶ Get result status code.
- Return
an instance of StatusCodeList.
-
-
org::sertiscorp::oneml::alpr::VehicleDetectorResultList : public java::util::AbstractList< VehicleDetectorResult > , public java.util.RandomAccess
Public Functions
-
inline synchronized void delete ()
Gracefully destroy the object and free memory.
-
-
namespace
org::sertiscorp::oneml
::
alpr
-
enum
VehicleDetectorStatus
¶ Public Members
-
Empty =(AlprJNI.VehicleDetectorStatus_Empty_get())
-
Success =(AlprJNI.VehicleDetectorStatus_Success_get())
-
Fail =(AlprJNI.VehicleDetectorStatus_Fail_get())
-
-
enum