Objects

pipeline pipeline

The Objects pipeline reads a list of images and returns a list of detected objects.

Example

The following shows a simple example using this pipeline.

  1. from txtai.pipeline import Objects
  2. # Create and run pipeline
  3. objects = Objects()
  4. objects("path to image file")

See the link below for a more detailed example.

NotebookDescription
Generate image captions and detect objectsCaptions and object detection for imagesOpen In Colab

Configuration-driven example

Pipelines are run with Python or configuration. Pipelines can be instantiated in configuration using the lower case name of the pipeline. Configuration-driven pipelines are run with workflows or the API.

config.yml

  1. # Create pipeline using lower case class name
  2. objects:
  3. # Run pipeline with workflow
  4. workflow:
  5. objects:
  6. tasks:
  7. - action: objects

Run with Workflows

  1. from txtai.app import Application
  2. # Create and run pipeline with workflow
  3. app = Application("config.yml")
  4. list(app.workflow("objects", ["path to image file"]))

Run with API

  1. CONFIG=config.yml uvicorn "txtai.api:app" &
  2. curl \
  3. -X POST "http://localhost:8000/workflow" \
  4. -H "Content-Type: application/json" \
  5. -d '{"name":"objects", "elements":["path to image file"]}'

Methods

Python documentation for the pipeline.

__init__(self, path=None, quantize=False, gpu=True, model=None, classification=False, threshold=0.9) special

Source code in txtai/pipeline/image/objects.py

  1. def __init__(self, path=None, quantize=False, gpu=True, model=None, classification=False, threshold=0.9):
  2. if not PIL:
  3. raise ImportError('Objects pipeline is not available - install "pipeline" extra to enable')
  4. super().__init__("image-classification" if classification else "object-detection", path, quantize, gpu, model)
  5. self.classification = classification
  6. self.threshold = threshold

__call__(self, images, flatten=False, workers=0) special

Applies object detection/image classification models to images. Returns a list of (label, score).

This method supports a single image or a list of images. If the input is an image, the return type is a 1D list of (label, score). If text is a list, a 2D list of (label, score) is returned with a row per image.

Parameters:

NameTypeDescriptionDefault
images

image|list

required
flatten

flatten output to a list of objects

False
workers

number of concurrent workers to use for processing data, defaults to None

0

Returns:

TypeDescription

list of (label, score)

Source code in txtai/pipeline/image/objects.py

  1. def __call__(self, images, flatten=False, workers=0):
  2. """
  3. Applies object detection/image classification models to images. Returns a list of (label, score).
  4. This method supports a single image or a list of images. If the input is an image, the return
  5. type is a 1D list of (label, score). If text is a list, a 2D list of (label, score) is
  6. returned with a row per image.
  7. Args:
  8. images: image|list
  9. flatten: flatten output to a list of objects
  10. workers: number of concurrent workers to use for processing data, defaults to None
  11. Returns:
  12. list of (label, score)
  13. """
  14. # Convert single element to list
  15. values = [images] if not isinstance(images, list) else images
  16. # Open images if file strings
  17. values = [Image.open(image) if isinstance(image, str) else image for image in values]
  18. # Run pipeline
  19. results = (
  20. self.pipeline(values, num_workers=workers)
  21. if self.classification
  22. else self.pipeline(values, threshold=self.threshold, num_workers=workers)
  23. )
  24. # Build list of (id, score)
  25. outputs = []
  26. for result in results:
  27. # Convert to (label, score) tuples
  28. result = [(x["label"], x["score"]) for x in result if x["score"] > self.threshold]
  29. # Sort by score descending
  30. result = sorted(result, key=lambda x: x[1], reverse=True)
  31. # Deduplicate labels
  32. unique = set()
  33. elements = []
  34. for label, score in result:
  35. if label not in unique:
  36. elements.append(label if flatten else (label, score))
  37. unique.add(label)
  38. outputs.append(elements)
  39. # Return single element if single element passed in
  40. return outputs[0] if not isinstance(images, list) else outputs