Zebra Bioptic Color Camera SDK For Linux
1.0.0-17
|
6 typedef unsigned char BYTE;
16 enum BackgroundFilterType
34 virtual void SetBackgroundFrame(BYTE* background_frame_buffer,
int length,
int image_width,
int image_height ,
int image_type) = 0;
44 virtual bool DetectBoundingBox(BYTE* input_frame_buffer,
int length,
int image_width,
int image_height,
int image_type, vector<BoundingBoxPoint> &bounding_rect) = 0;
static CameraBoundingBoxDetectorInterface * CreateBoundingBoxDetector(BackgroundFilterType background_filter_type)
virtual bool DetectBoundingBox(BYTE *input_frame_buffer, int length, int image_width, int image_height, int image_type, vector< BoundingBoxPoint > &bounding_rect)=0
Camera bounding box detector class creation factory.
Definition: camera_bounding_box_factory.h:49
virtual void SetBackgroundFrame(BYTE *background_frame_buffer, int length, int image_width, int image_height, int image_type)=0
Bounding box point.
Definition: camera_bounding_box_factory.h:10
Camera bounding box detector interface.
Definition: camera_bounding_box_factory.h:26