Images present a different type of unstructured data. Indexify allows you the freedom to choose the extractor of your choice based on the specific use-case and type of images. If you want to learn more about extractors, their design and usage, read the Indexify documentation.

Extractor NameUse CaseSupported Input Types
Florence Image ExtractorImage analysis and captioningimage/jpeg, image/png, image/gif
YoloObject detectionimage/jpeg, image/png
GroundingDinoZero-shot object detectionimage/jpeg, image/png
MoondreamImage question answeringimage/bmp, image/gif, image/jpeg, image/png, image/tiff

Florence Image Extractor

Description

FlorenceImageExtractor is a powerful image analysis tool leveraging the Microsoft Florence-2 large vision-language model. It performs a wide range of image understanding tasks, from simple captioning to complex visual reasoning.

Input Parameters

  • model_name (default: ‘microsoft/Florence-2-large’): Name of the Florence model to use
  • task_prompt (default: ’CAPTION’): Task prompt for the model
  • text_input (optional): Additional text input for the task

Input Data Types

["image/jpeg", "image/png", "image/gif"]

Class Name

FlorenceImageExtractor

Download Command

indexify-extractor download tensorlake/florence

Yolo

Description

Extract bounding boxes and class names from Ultralytics YOLOv9 model.

Input Parameters

  • model_name (default: ‘yolov8n.pt’): Name of the YOLO model to use
  • conf (default: 0.25): Confidence threshold for detections
  • iou (default: 0.7): IoU threshold for non-maximum suppression

Input Data Types

["image/jpeg", "image/png"]

Class Name

YoloExtractor

Download Command

indexify-extractor download tensorlake/yolo-extractor

Moondream

Description

Moondream2 is a 1.86B parameter tiny vision language model initialized with weights from SigLIP and Phi 1.5. This extractor uses Moondream to answer questions about images.

Input Parameters

  • prompt (default: “Describe this image.“): Question or prompt about the image

Input Data Types

["image/bmp", "image/gif", "image/jpeg", "image/png", "image/tiff"]

Class Name

MoondreamExtractor

Download Command

indexify-extractor download tensorlake/moondream

Was this page helpful?