Interface: ObjectDetectionReturnValue

Properties

box

box: Object

A dict (with keys [xmin,ymin,xmax,ymax]) representing the bounding box of a detected object.

Type declaration

Name Type
xmax number
xmin number
ymax number
ymin number

Defined in

HfInference.ts:501


label

label: string

The label for the class (model specific) of a detected object.

Defined in

HfInference.ts:510


score

score: number

A float that represents how likely it is that the detected object belongs to the given class.

Defined in

HfInference.ts:515