Helper library for interacting with Landing AI LandingLens
Project description
LandingLens code sample repository
This repository contains LandingLens development library and running examples showing how to integrate LandingLens on a variety of scenarios. All the examples show different ways to acquire images from multiple sources and techniques to process the results. Jupyter notebooks focus on ease of use while Python apps include more robust and complete examples.
example | description | language |
---|---|---|
Company logo identification | This notebook can run directly in Google collab using the web browser camera to detect Landing AI logo | Jupyter Notebook |
Door monitoring for home automation | This notebook uses an object detection model to determine whether a door is open or closed. The notebook can acquire images directly from an RTSP camera | Jupyter Notebook |
Streaming capture service | This application shows how to do continuous acquisition from an image sensor using RTSP. | Python application |
Install the library
pip install landingai
Quick Start
Run inference using your deployed inference endpoint at LandingAI:
- Install the library with the above command.
- Create a
Predictor
with your inference endpoint id, landing API key and secret. - Call
predict()
with an image (in numpy array format).
from landingai.predict import Predictor
# Find your API key and secrets
endpoint_id = "FILL_YOUR_INFERENCE_ENDPOINT_ID"
api_key = "FILL_YOUR_API_KEY"
api_secret = "FILL_YOUR_API_SECRET"
# Load your image
image = ...
# Run inference
predictor = Predictor(endpoint_id, api_key, api_secret)
predictions = predictor.predict(image)
Visualize your inference results by overlaying the predictions on the input image and save it on disk:
from landingai.visualize import overlay_predictions
# continue the above example
predictions = predictor.predict(image)
image_with_preds = overlay_predictions(predictions, image)
image_with_preds.save("image.jpg")
Running examples locally
All the examples in this repo can be run locally.
Here is an example to show you how to run the rtsp-capture
example locally in a shell environment:
NOTE: it's recommended to create a new Python virtual environment first.
- Clone the repo to local:
git clone https://github.com/landing-ai/landingai-python-v1.git
- Install the library:
pip install landingai
- Run:
python landingai-python-v1/examples/capture-service/run.py
Building the LandingLens library locally (for contributors)
Most of the time you won't need to build the library since it is included on this repository and also published to pypi.
But if you want to contribute to the repo, you can follow the below steps.
Prerequisite - Install poetry
See more from the official doc.
For Linux, macOS, Windows (WSL):
curl -sSL https://install.python-poetry.org | python3 -
NOTE: you can switch to use a different Python version by specifying the python version:
curl -sSL https://install.python-poetry.org | python3.10 -
or run below command after you have installed poetry:
poetry env use 3.10
Install all the dependencies
poetry install --with dev
Run tests
poetry run pytest tests/
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file landingai-0.0.7.tar.gz
.
File metadata
- Download URL: landingai-0.0.7.tar.gz
- Upload date:
- Size: 6.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.2 CPython/3.10.11 Darwin/21.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a5e8c706852e86d6a571fdb597291ec0c948b5d9beae9eaa62155787093be42a |
|
MD5 | e93caaaceed4ed182d24e050ec347123 |
|
BLAKE2b-256 | 248541de202cb57658583318c807ea79fedd058c090462f950346d7677af0cfb |
File details
Details for the file landingai-0.0.7-py3-none-any.whl
.
File metadata
- Download URL: landingai-0.0.7-py3-none-any.whl
- Upload date:
- Size: 7.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.2 CPython/3.10.11 Darwin/21.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 40d47f60e5201dcd905fd2d50748a7dcab25e92b27b91bdc3652efdef84858e3 |
|
MD5 | f2f27f696d8f74077d187781f8ad1f96 |
|
BLAKE2b-256 | 116d1dcfa933c43c10ed71ae1bccead918250cd86dcd2a0c2a9b60db8367bf41 |