Data quality metrics work on images or individual video frames.
Data Quality Metrics are used for sorting data, filtering data, and data analytics.
Title | Metric Type | Ontology Type |
---|---|---|
Area - Ranks images by their area (width/height). | image | |
Aspect Ratio - Ranks images by their aspect ratio (width/height). | image | |
Blue Value - Ranks images by how blue the average value of the image is. | image | |
Brightness - Ranks images by their brightness. | image | |
Contrast - Ranks images by their contrast. | image | |
Diversity - Forms clusters based on the ontology and ranks images from easy samples to annotate to hard samples to annotate. | image | |
Frame Number - Selects images based on a specified range. | image | |
Green Value - Ranks images by how green the average value of the image is. | image | |
Height - Ranks images by the height of the image. | image | |
Object Count - Counts number of objects in the image. | image | bounding box , checklist , point , polygon , polyline , radio , rotatable bounding box , skeleton , text |
Object Density - Computes the percentage of image area that is occupied by objects. | image | bounding box , polygon , rotatable bounding box |
Randomize Images - Assigns a random value between 0 and 1 to images. | image | |
Red Value - Ranks images by how red the average value of the image is. | image | |
Sharpness - Ranks images by their sharpness. | image | |
Uniqueness - Finds duplicate and near-duplicate images. | image | |
Width - Ranks images by the width of the image. | image |
To access Data Quality Metrics for Explorer:
Click a Project from the Active home page.
Click Explorer.
Click Data.
Sort and filter the tabular data.
Click the plot diagram icon.
Sort and filter the embedding plot data.
To access Data Quality Metrics for analytics:
Click a Project from the Active home page.
Click Analytics.
Click Data.
Select the quality metric you want to view from the 2D Metrics view or Metrics Distribution graphs.
Ranks images by their area. Area is computed as the product of image width and image height (width x height).
Implementation on GitHub.
Ranks images by their aspect ratio. Aspect ratio is computed as the ratio of image width to image height (width / height).
Implementation on GitHub.
Ranks images by how blue the average value of the image is.
Implementation on GitHub.
Ranks images by their brightness. Brightness is computed as the average (normalized) pixel value across each image.
Implementation on GitHub.
Ranks images by their contrast. Contrast is computed as the standard deviation of the pixel values.
Implementation on GitHub.
For selecting the first samples to annotate when there are no labels in the project. Choosing simple samples that represent those classes well, gives better results. This metric ranks images from easy samples to annotate to hard samples to annotate. Easy samples have lower scores, while hard samples have higher scores.
K-means clustering is applied to image embeddings. The total number of clusters is obtained from the Ontology file (if there are both object and image-level information, total object classes are determined as the total cluster number). If no ontology information exists, K is determined as 10.
Samples for each cluster are ranked based on their proximity to cluster centers. Samples closer to the cluster centers refer to easy samples.
Different clusters are combined in a way that the result is ordered from easy to hard and the number of samples for each class is balanced for the first N samples.
Implementation on GitHub.
Select a range of images in a video or a sequential group of images.
Ranks images by how green the average value of the image is.
Implementation on GitHub.
Ranks images by the height of the image.
Implementation on GitHub.
Counts number of objects in the image.
Implementation on GitHub.
Computes the percentage of image area that is occupied by objects.
Implementation on GitHub.
Uses a uniform distribution to generate a value between 0 and 1 for each image.
Implementation on GitHub.
Ranks images by how red the average value of the image is.
Implementation on GitHub.
Ranks images by their sharpness.
Sharpness is computed by applying a Laplacian filter to each image and computing the variance of the output. In short, the score computes “the amount of edges” in each image.
Implementation on GitHub.
This metric gives each image a score that shows each image’s uniqueness.
Duplicate
) to tag all images.Implementation on GitHub.
Ranks images by the width of the image.
Implementation on GitHub.