chart-diagramPretrained Models & Abilities

This guide helps you build and run Composable Pops. They are configurable chains of AI tasks like object detection, OCR, pose estimation, and tracking all using the EyePop SDK.

What Are Composable Pops?

Composable Pops are dynamic pipelines that link multiple AI components together. Each component can perform inference, forward cropped regions to other models, or trace objects over time. With this system, you can chain object detection → cropping → pose estimation → tracking… and more.


Anatomy of a Pop

A Pop is defined with a list of components, each specifying:

• type: the kind of processing (INFERENCE, TRACING, CONTOUR_FINDER)

• inferenceTypes: what to infer (e.g. OBJECT_DETECTION, OCR)

• modelUuid / ability: this specificies the model or ability to use

• forward: what to do with the output (e.g. crop, trace, or chain more components)

Available Models & Abilities

All EyePop models are available as abilities by appending :latest to the model name. Use these in your Pop components with the ability parameter:

{  
    type: PopComponentType.INFERENCE,  
    ability: "eyepop.person:latest"
}

Abilities Hub

Object Detection & Classification

  • eyepop.common-objects:latest - Detect common everyday objects

  • eyepop.animal:latest - Animal detection and classification

  • eyepop.vehicle:latest - Vehicle detection

  • eyepop.device:latest - Electronic device detection

  • eyepop.sports:latest - Sports equipment and activity detection

  • eyepop.localize-objects:latest - Find objects with just a prompt.

Person Analysis

  • eyepop.person:latest - Person detection

  • eyepop.age:latest - Age estimation

  • eyepop.gender:latest - Gender classification

  • eyepop.expression:latest - Facial expression analysis

  • eyepop.person.pose:latest - Human pose estimation

  • eyepop.person.2d-body-points:latest - 2D body keypoint detection

  • eyepop.person.3d-body-points.full:latest - Full 3D body pose

  • eyepop.person.3d-body-points.heavy:latest - Heavy 3D body pose model

  • eyepop.person.3d-body-points.lite:latest - Lightweight 3D body pose

  • eyepop.person.3d-hand-points:latest - 3D hand keypoint detection

  • eyepop.person.face-mesh:latest - Detailed facial mesh

  • eyepop.person.face.long-range:latest - Face detection for distant subjects

  • eyepop.person.face.short-range:latest - Face detection for close subjects

  • eyepop.person.palm:latest - Palm detection

  • eyepop.person.reid:latest - Person re-identification

  • eyepop.person.segment:latest - Person segmentation

Text Recognition

  • eyepop.text:latest - Text detection

  • eyepop.text.recognize.landscape:latest - OCR for landscape text

  • eyepop.text.recognize.landscape-tiny:latest - Lightweight landscape OCR

  • eyepop.text.recognize.square:latest - OCR for square/document text

  • See the Abilities Hubarrow-up-right for more structured OCR abilities.

Quick Reference


Example Pops

1. Text on Detected Objects

Use case: Extract text within labeled objects.


2. Object Tracking

Use case: Detect and track object movements across frames.


3. Detect Objects and Pose on People

Use case: Detect all objects and analyze human posture when a person is found.


4. Segmentation and Contour Extraction

Use case: Get polygon contours of detected objects for precise shape/area analysis.


Running the Pop

Tips for Building Your Own Pops

• Chain components by specifying forward.targets

• Use ForwardOperatorType.CROP to pass cropped regions

• Use categoryName and confidenceThreshold to filter by label

• Use TRACING or CONTOUR_FINDER for post-processing

Contact us at [email protected] or on our discord for any help creating a composable pop!

Last updated