Skip to main content

Nodeflux Cloud Client Library for Python.

Project description

Nodeflux Cloud Client Library for Python

Installation

pip install nodeflux-cloud

Usage

Set the environment variable NODEFLUX_ACCESS_KEY and NODEFLUX_SECRET_KEY to your keys.

from nodeflux.cloud.clients import ImageAnalyticClient
from nodeflux.cloud.requests import ImageAnalyticRequest, AnalyticTypes

client = cloud.ImageAnalyticClient()

with open("some-image.jpg", "rb") as image_file:
    image_content = image_file.read()

requests = [
    ImageAnalyticRequest(
        image=image_content,
        analytics=[
            AnalyticTypes.FACE_DETECTION,
            AnalyticTypes.FACE_DEMOGRAPHY,
        ]
    )
]

response = client.batch_image_analytic(requests)
print(response)

API Reference

class ImageAnalyticClient(transport=None)

Service that performs Nodeflux Cloud image analytics.

Parameters Type Description
transport ImageAnalyticGrpcTransport Transport for the API call. The default transport uses gRPC protocol.

batch_image_analytic

Run analytics to a batch of images.

Parameters Type Description
requests List[ImageAnalyticRequest] A batch of Nodeflux Cloud image analytic request.

class ImageAnalyticRequest(image: bytes, analytics: List[AnalyticTypes])

Individual image request to be analyzed by Nodeflux Cloud.

Parameters Type Description
image bytes Image to be analyzed in the Nodeflux Cloud.
analytics List[AnalyticTypes] A list of analytics to be performed to the image.

class AnalyticTypes

Enums of analytic types supported by Nodeflux Cloud.

Enums Description
FACE_DETECTION Detect faces from an image.
FACE_DEMOGRAPHY Predict age and gender from faces in the image.
FACE_RECOGNITION Search for similar faces in the face recognition database.
VEHICLE_RECOGNITION Detect vehicles from an image.
LICENSE_PLATE_RECOGNITION Recognize license plate number of vehicles in an image.

class BatchmageAnalyticResponse

Response from Nodeflux Cloud image analytic request.

face_detections: List[FaceDetection]

If present, face detection analytic has completed successfully.

face_demographics: List[FaceDemography]

If present, face demography analytic has completed successfully.

face_recognitions: List[FaceRecognition]

If present, face recognition analytics has completed successfully.

vehicle_detections: List[VehicleDetection]

If present, vehicle detection analytics has completed successfully.

license_plate_recognitions: List[LicensePlateRecognition]

If present, license plate recognition analytics has completed successfully.

class FaceDetection

bounding_box: BoundingBox

Bounding box around the detected face.

confidence: float

Confidence of the face detection.

class FaceDemography

gender: Gender

Detected gender from a face.

gender_confidence: float

Confidence of gender detection

age_range: AgeRange

The estimated age range.

class FaceRecognition

candidates: List[FaceCandidate]

List of candidates that matches the requested face. If candidates is set, the face recognition analytic has been successful.

class FaceCandidate

id: int64

Unique id of the recognized face.

confidence: float

Confidence of the recognition.

Project details


Download files

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

Source Distribution

nodeflux-cloud-0.1.1.tar.gz (23.7 kB view hashes)

Uploaded Source

Built Distribution

nodeflux_cloud-0.1.1-py2.py3-none-any.whl (184.0 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page