Skip to main content

Mobilint Vision Python

Run pre-trained Mobilint Vision models from Python. mblt-vision-python provides model configuration, artifact loading, preprocessing, inference integration, and typed postprocessing results for image classification, depth estimation, face and object detection, OBB, instance and semantic segmentation, and pose estimation.

Version 0.0.0 is the initial standalone release.

Installation

pip install mblt-vision-python

MXQ inference requires a supported Mobilint NPU environment. Model artifacts are downloaded from the Mobilint Hugging Face organization when no local model_path is supplied. For ONNX execution, install one of the optional extras:

pip install "mblt-vision-python[onnxruntime]"
# Or, on supported systems:
pip install "mblt-vision-python[onnxruntime-gpu]"

Quick start

Each model includes its matching preprocess and postprocess behavior:

from mblt_vision import ResNet50

model = ResNet50()
x = model.preprocess("image.jpg")
result = model.postprocess(model(x))

For configurable model selection and local MXQ or ONNX artifacts, use MBLT_Engine:

from mblt_vision import MBLT_Engine

model = MBLT_Engine(model_cls="resnet50", model_type="DEFAULT")
try:
    result = model.postprocess(model(model.preprocess("image.jpg")))
finally:
    model.dispose()

Discover supported tasks and models with list_tasks() and list_models(). New code should use the task subpackages (for example, mblt_vision.object_detection) or MBLT_Engine. Top-level model imports such as from mblt_vision import ResNet50 remain supported for convenience.

obb is the canonical oriented-bounding-box task name.

Model Zoo migration

Vision is now maintained in this package. mblt-model-zoo retains mblt_model_zoo.vision as a compatibility facade for existing applications; new projects should import from mblt_vision directly. Its mblt-model-zoo predict, val, and compile commands also delegate to this package.

Command line

The standalone package provides the mblt-vision command with predict, val, and compile subcommands:

mblt-vision predict --source image.jpg --model resnet50

predict is the single inference command for classification, depth estimation, object and face detection, instance and semantic segmentation, OBB, and pose estimation. The selected model determines its task and processing pipeline. By default it downloads the model artifact and saves a plotted result under runs/vision/predict/. Use --output to choose the result-image path, --topk for classification labels, and --conf-thres/--iou-thres for detection-style tasks. --framework onnx selects ONNX Runtime inference; --target-device and --core-mode select the MXQ board/runtime mode.

mblt-vision predict --source image.jpg --model yolo11m --conf-thres 0.4 --output result.jpg
mblt-vision predict --source image.jpg --model yolo11m-pose --target-device regulus-ra --core-mode single

The corresponding mblt-model-zoo commands use the same standalone handlers for backward compatibility.

Documentation and tests

See the Vision API guide for supported model families, model details, artifact selection, and output taxonomy behavior. See the compilation guide for calibration-data preparation and MXQ compilation. The test guide explains offline, Hugging Face, and NPU test runs.

Support and issues

For installation, model, or runtime support, visit the Mobilint forum. Report reproducible package issues in the mblt-vision-python issue tracker.

License

Distributed under the BSD 3-Clause License.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mblt_vision_python-0.0.0.tar.gz (257.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mblt_vision_python-0.0.0-py3-none-any.whl (353.5 kB view details)

Uploaded Python 3

File details

Details for the file mblt_vision_python-0.0.0.tar.gz.

File metadata

  • Download URL: mblt_vision_python-0.0.0.tar.gz
  • Upload date:
  • Size: 257.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mblt_vision_python-0.0.0.tar.gz
Algorithm Hash digest
SHA256 5140fd6e0a4db2683a06b44a3c27a58e91e788c302ec994bd352cedbf3fe2ec1
MD5 06632bdcb20b8eadf6ef3d3f68aad72e
BLAKE2b-256 ab8b4ec9ce9a2abdedf03ec6e6b0f53cd995255ed6cb8d13dfe3f7e57d855a12

See more details on using hashes here.

Provenance

The following attestation bundles were made for mblt_vision_python-0.0.0.tar.gz:

Publisher: publish.yml on mobilint/mblt-vision-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mblt_vision_python-0.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for mblt_vision_python-0.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 57d500ddabe7159c8662155f60972e3940ff21e23133e5b7f813d3700a346226
MD5 9896fbc4fe90e8d26959016e4ca41dfe
BLAKE2b-256 070c9350a1def91b85852a278c0e7497c82abc36d981fdf72b7c8372e74ed960

See more details on using hashes here.

Provenance

The following attestation bundles were made for mblt_vision_python-0.0.0-py3-none-any.whl:

Publisher: publish.yml on mobilint/mblt-vision-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.0.1

2 files

This release

0.0.0 This release

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page