890 B
Executable File
890 B
Executable File
sauron-api
This repository defines the server-side development API for interacting with sauron-cv.
How do I use this?
This API is intended for developing your computer vision scripts. It solely handles reading image data sent by the robot and responding with your return data. This is not intended to be a replacement for OpenCV or any other framework, you will use those normally.
By default, your images will be provided in OpenCV's Image format.
Languages and Libraries
You can use the API in either C++ or Python. They can also use libraries such as OpenCV and Tensorflow for computer vision and machine learning processing. The server will have these libraries compiled with support for CUDA or OpenCL accordingly.
Examples
C++
// TODO: add example implementation
Python
# TODO: add sample implementation