Skip to main content

Geometric

Operate on the geometries of objects like bounding boxes, polygons, and polylines.

TitleMetric TypeData Type
Annotation Duplicates - Ranks annotations by how likely they are to represent the same objectimagebounding box, polygon, rotatable bounding box
Annotation closeness to image borders - Ranks annotations by how close they are to image borders.imagebounding box, point, polygon, polyline, rotatable bounding box, skeleton
Detect Occlusion in Video - Tracks objects and detect outlierssequencebounding box, rotatable bounding box
Frame object density - Computes the percentage of image area that's occupied by objects.imagebounding box, polygon, rotatable bounding box
Object Area - Absolute - Computes object area in amount of pixelsimagebounding box, polygon, rotatable bounding box
Object Area - Relative - Computes object area as a percentage of total image area.imagebounding box, polygon, rotatable bounding box
Object Aspect Ratio - Computes aspect ratios of objectsimagebounding box, polygon, rotatable bounding box
Polygon Shape Similarity - Ranks objects by how similar they are to their instances in previous frames.sequencepolygon
Shape outlier detection - Calculates potential outliers by polygon shape.imagepolygon

Annotation Duplicates

Ranks annotations by how likely they are to represent the same object.

Jaccard similarity coefficient is used to measure closeness of two annotations.

Implementation on GitHub

Annotation closeness to image borders

This metric ranks annotations by how close they are to image borders.

Implementation on GitHub

Detect Occlusion in Video

This metric collects information related to object size and aspect ratio for each track and find outliers among them.

Implementation on GitHub

Frame object density

Computes the percentage of image area that's occupied by objects.

Implementation on GitHub

Object Area - Absolute

Computes object area in amount of pixels.

Implementation on GitHub

Object Area - Relative

Computes object area as a percentage of total image area.

Implementation on GitHub

Object Aspect Ratio

Computes aspect ratios (width/heightwidth/height) of objects.

Implementation on GitHub

Polygon Shape Similarity

Ranks objects by how similar they are to their instances in previous frames based on Hu moments. The more an object's shape changes, the lower its score will be.

Implementation on GitHub

Shape outlier detection

Computes the Euclidean distance between the polygons' Hu moments for each class and the prototypical class moments.

Implementation on GitHub