Abraia Python SDK
Project description
Abraia Python SDK image analysis toolbox
The Abraia Python SDK provides and easy and practical way to develop and deploy Machine Learning image applications on the edge. You can easily annotate and train your custom deep learning model with DeepLab, and deploy the model with this Python SDK.
Installation
Abraia is a Python SDK and CLI which can be installed on Windows, Mac, and Linux:
python -m pip install -U abraia
To use the SDK you have to configure your Id and Key as environment variables:
export ABRAIA_ID=user_id
export ABRAIA_KEY=user_key
On Windows you need to use set
instead of export
:
set ABRAIA_ID=user_id
set ABRAIA_KEY=user_key
Load and run custom models
Annotate your images and train a state-of-the-art model for classification, detection, or segmentation using DeepLab. You can directly load and run the model on the edge using the browser or this Python SDK.
Object detection
Detect objects with a pre-trained YOLOv8 model on images, videos, or even camera streams.
from abraia import detect
model_uri = f"multiple/models/yolov8n.onnx"
model = detect.load_model(model_uri)
img = detect.load_image('people-walking.png')
results = model.run(img, conf_threshold=0.5, iou_threshold=0.5)
img = detect.render_results(img, results)
detect.show_image(img)
To run a multi-object detector on video or directly on a camera stream, you just need to use the Video class to process every frame as is done for images.
from abraia import detect
model_uri = f"multiple/models/yolov8n.onnx"
model = detect.load_model(model_uri)
video = detect.Video('people-walking.mp4')
for frame in video:
results = model.run(frame, conf_threshold=0.5, iou_threshold=0.5)
frame = detect.render_results(frame, results)
video.show(frame)
Face recognition
Identify people on images with face recognition as shown bellow.
import os
from abraia.faces import Recognition
from abraia.utils import load_image, save_image
from abraia.draw import render_results
img = load_image('images/rolling-stones.jpg')
out = img.copy()
recognition = Recognition()
results = recognition.represent_faces(img)
index = []
for src in ['mick-jagger.jpg', 'keith-richards.jpg', 'ronnie-wood.jpg', 'charlie-watts.jpg']:
img = load_image(f"images/{src}")
rslt = recognition.represent_faces(img)[0]
index.append({'name': os.path.splitext(src)[0], 'embeddings': rslt['embeddings']})
result = recognition.identify_faces(results, index)
render_results(out, results)
save_image(out, 'images/rolling-stones-identified.jpg')
License plates blurring
Automatically blur car license plates in videos with just a few lines of code.
import numpy as np
from abraia import detect
from abraia import draw
model_uri = 'multiple/models/alpd-seg.onnx'
model = detect.load_model(model_uri)
src = 'images/cars.mp4'
video = detect.Video(src, output='images/blur.mp4')
for k, frame in enumerate(video):
results = model.run(frame, approx=0.02)
mask = np.zeros(frame.shape[:2], np.uint8)
[draw.draw_filled_polygon(mask, result['polygon'], 255) for result in results]
frame = draw.draw_blurred_mask(frame, mask)
video.write(frame)
video.show(frame)
License plates recognition
Automatically recognize car license plates in images and video streams.
from abraia import draw
from abraia.alpr import ALPR
from abraia.utils import load_image, show_image
alpr = ALPR()
img = load_image('images/car.jpg')
results = alpr.detect(img)
results = alpr.recognize(img, results)
results = [result for result in results if len(result['lines'])]
for result in results:
result['label'] = '\n'.join([line.get('text', '') for line in result['lines']])
del result['confidence']
frame = draw.render_results(img, results)
show_image(img)
Command line interface
The Abraia CLI provides access to the Abraia Cloud Platform through the command line. It makes simple to manage your files and enables bulk image editing capabilities. It provides and easy way to resize, convert, and compress your images - JPEG, WebP, or PNG -, and get them ready to publish on the web. Moreover, you can automatically remove the background, upscale, or anonymize your images in bulk.
To compress an image you just need to specify the input and output paths for the image:
abraia convert images/birds.jpg images/birds_o.jpg
To resize and optimize and image maintaining the aspect ratio is enough to specify the width
or the height
of the new image:
abraia convert --width 500 images/usain-bolt.jpeg images/usaint-bolt_500.jpeg
You can also automatically change the aspect ratio specifying both width
and height
parameters and setting the resize mode
(pad, crop, thumb):
abraia convert --width 333 --height 333 --mode pad images/lion.jpg images/lion_333x333.jpg
abraia convert --width 333 --height 333 images/lion.jpg images/lion_333x333.jpg
So, you can automatically resize all the images in a specific folder preserving the aspect ration of each image just specifying the target width
or height
:
abraia convert --width 300 [path] [dest]
Or, automatically pad or crop all the images contained in the folder specifying both width
and height
:
abraia convert --width 300 --height 300 --mode crop [path] [dest]
Remove background
Automatically remove images background and make them transparent in bulk.
abraia editing "*.jpg" --mode rembg
Upscale images
Scale up and enhance images in bulk, doubling the size and preserving quality.
abraia editing "*.jpg" --mode upscale
Anonymize images
Anonymize images in bulk, automatically blurring faces, car license plates, and removing metadata.
abraia editing "*.jpg" --mode anonymize
Hyperspectral image analysis toolbox
The Multiple extension provides seamless integration of multispectral and hyperspectral images. It has being developed by ABRAIA in the Multiple project to extend the Abraia SDK and Cloud Platform providing support for straightforward HyperSpectral Image (HSI) analysis and classification.
Just click on one of the available Colab's notebooks to directly start testing the multispectral capabilities:
Or install the multiple extension to use the Abraia-Multiple SDK:
python -m pip install -U "abraia[multiple]"
For instance, you can directly load and save ENVI files, and their metadata.
from abraia.multiple import Multiple
multiple = Multiple()
img = multiple.load_image('test.hdr')
meta = multiple.load_metadata('test.hdr')
multiple.save_image('test.hdr', img, metadata=meta)
Upload and load HSI data
To start with, we may upload some data directly using the graphical interface, or using the multiple api:
multiple.upload_file('PaviaU.mat')
Now, we can load the hyperspectral image data (HSI cube) directly from the cloud:
img = multiple.load_image('PaviaU.mat')
Basic HSI visualization
Hyperspectral images cannot be directly visualized, so we can get some random bands from our HSI cube, and visualize these bands as like any other monochannel image.
from abraia.multiple import hsi
imgs, indexes = hsi.random(img)
hsi.plot_images(imgs, cmap='jet')
Pseudocolor visualization
A common operation with spectral images is to reduce the dimensionality, applying principal components analysis (PCA). We can get the first three principal components into a three bands pseudoimage, and visualize this pseudoimage.
pc_img = hsi.principal_components(img)
hsi.plot_image(pc_img, 'Principal components')
Classification model
Two classification models are directly available for automatic identification on hysperspectral images. One is based on support vector machines ('svm') while the other is based on deep image classification ('hsn'). Both models are available under a simple interface like bellow:
n_bands, n_classes = 30, 17
model = hsi.create_model('hsn', (25, 25, n_bands), n_classes)
model.train(X, y, train_ratio=0.3, epochs=5)
y_pred = model.predict(X)
License
This software is licensed under the MIT License. View the license.
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 abraia-0.18.0.tar.gz
.
File metadata
- Download URL: abraia-0.18.0.tar.gz
- Upload date:
- Size: 57.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eb20eceb27525dcf10132db2f735c718385af0928af46b733284a93a154edb40 |
|
MD5 | 9fe6541332c3acd60ddab132477fd382 |
|
BLAKE2b-256 | 8e7a87fc0f7b3e6e247e63fe326a703c1cb4fdc34f85a6263afaf29b393a1a05 |
File details
Details for the file abraia-0.18.0-py3-none-any.whl
.
File metadata
- Download URL: abraia-0.18.0-py3-none-any.whl
- Upload date:
- Size: 63.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6357edaf3d072026466f2be40bac5d705dc5cbc47bedd64668928891572ffd52 |
|
MD5 | 60f125c5358ee795a5b4005d7e2a75b4 |
|
BLAKE2b-256 | 1d39936d2785ee348224b962b22bdba9585133a2421aea26c875b6e81413d5ee |