LiteRTExt

object LiteRTExt

High-level tool extensions for LiteRT tasks.

This object provides a unified namespace for data models and interfaces used in various AI domains, such as computer vision, natural language processing, and audio/video analysis.

Types

Link copied to clipboard
data class BoundingBox(val left: Float, val top: Float, val right: Float, val bottom: Float)

Represents a bounding box in 2D space.

Link copied to clipboard
data class Category(val label: String, val score: Float, val index: Int)

Represents a single classification category.

Link copied to clipboard
data class Detection(val boundingBox: LiteRTExt.BoundingBox, val categories: List<LiteRTExt.Category>)

Represents a single detection result.

Link copied to clipboard
object Face

Face analysis tools and models.

Link copied to clipboard
object Hand

Hand tracking and gesture recognition models.

Link copied to clipboard
object Nlp

Natural Language Processing (NLP) tools.

Link copied to clipboard
object Pose

Human pose estimation models.

Link copied to clipboard

Image segmentation tools.

Link copied to clipboard
object Text

Optical Character Recognition (OCR) models.

Link copied to clipboard
object Video

Video processing models.