Installation

Installing Celantur SDK.

Install prerequisites:

apt install -y \
    ffmpeg \
    libexif-dev \
    libprotobuf-dev \
    libopenexr25 \
    libgstreamer1.0-0 \
    libgstreamer-plugins-base1.0-0 \
    wget

Install Celantur dependencies

Celantur will provide you links to Debian packages:

  • Celantur SDK (cpp-processing)

  • Boost

  • OpenCV

  • Optional packages depending on inference engine (ONNX, TensorRT)

Install them with:

apt install ./celantur-*.deb

Optional: OpenVINO

wget https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB && \
    apt-key add GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB && \
    echo "deb https://apt.repos.intel.com/openvino/2024 ubuntu22 main" | tee /etc/apt/sources.list.d/intel-openvino-2024.list && \
    apt update && \
    apt install -y openvino && \
    rm GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB

Download the model

Celantur will provide you link to download the model.

Test the installation

Try out the SDK examples.

Last updated