Percept Software Installation Guide
Preparing the Percept Software Environment
Thank you for choosing Blickfeld Percept. In this chapter we will guide you through the necessary steps in the Percept software installation process.
Minimum Hardware Requirements
Percept and the applications you can create with Percept and your Blickfeld LiDAR are very versatile and therefore the hardware requirements will differ depending on your use case. Our recommendation is:
-
CPU: Intel i5/i7 or AMD Ryzen 5/7
-
RAM: 8/16 GB
-
SSD/HDD: 512 GB
-
Network: Gigabit-Ethernet
Supported Operating Systems
Currently we support Windows 10 (with WSL2) and Ubuntu Linux (18.04 and 20.04).
In order to run Percept you need to install Docker first on your operating machine. The following section will guide you through this process.
As the Percept Architecture is based on Docker, there is a chance that it will run on your favorite Linux Distribution, too. |
How to install Docker
Percept is provided to you as a Docker container. A Docker container can be compared to a virtual machine and is executed on the host by the Docker daemon.
The Percept container contains all necessary programs, algorithms and binaries to acquire, process and visualize point clouds. The provided Percept web interface lets you easily create, configure, start and visualize projects.
Ports used by Percept
Percept will use the following Ports for communication. Some of them can be configured by the user in the provided docker compose file, while some of them are fixed and cannot be changed.
It can happen, especially on Windows based systems that another system resource or application is using Port 80. Therefore, the frontend will not start. If this is the case for you set another port used for the frontend in the docker-compose file (docker-compose-windows.yml). |
Port | Configurable |
---|---|
80 |
can be changed in the docker-compose file |
9901 |
can be changed in the docker-compose file |
5000 |
can be change in the docker-compose file |
58080 |
cannot be change, ask the Blickfeld Team for further information |
Windows
To run Percept on Windows you will need to have Docker and the Windows Subsystem for Linux 2 short WSL2 setup on your PC.
-
To install Docker on Windows please follow this recipe from the official Docker website:
After installing Docker, the "Docker Desktop" Application should be available and the docker
command should be executable inside the Windows Command Line Tool as cmd-prompt.
If your version of Windows supports WSL2 (Windows subsystem for Linux) we recommend enabling and using it as a backend for Docker for Windows.
Docker for Windows detects if your system is capable of using WSL2. Follow the steps in the Docker GUI to install and enable WSL2. Further information can be found on the Docker website: Docker WSL2 integration
If WSL2 is not installed Docker is using the Hyper-V backend to execute containers which might lead to lower performance in compute-heavy or IO-intensive applications. |
Since the Percept containers communicate with TCP between each other, we require to enable
Expose daemon on tcp://localhost:2375 without TLS
in the Settings of the Docker Desktop GUI as shown in the following image:
To finish the installation of Docker, please reboot your PC.
Linux
Ubuntu
To run Percept you will need to install Docker on your Ubuntu machine.
-
To install Docker on Ubuntu please follow this recipe from the official Docker website (We tested it with "install using the repository"):
The Percept containers communicate with TCP with each other, therefore we have to enable TCP without TLS on localhost:2375. This is also needed for some Docker volumes to share data between Percept and your PC, e.g. to save Project-Settings.
For your convenience we included a configure.sh script in the zip folder of Percept (needs root permission). Please follow the steps to configure Percept:
The command |
-
sudo ./configure.sh user your_user_name
(replaceyour_user_name
with your user name) -
sudo ./configure.sh docker
-
sudo ./configure.sh volumes
Percept also requires docker-compose. You can either install it with apt install docker-compose
or by following the docker documentation Install Docker Compose
To finish the installation of Docker, please reboot your PC.
How to install Percept
If you have Docker installed and set up, we can now load the Percept image into the local Docker registry.
These steps are the same for Windows and Linux |
-
Extract the downloaded archive and navigate to the folder:
-
e.g.
cd Downloads/blickfeld-percept-v1.x.x
-
-
Load the Percept image into the local Docker registry by executing the following command on the command line:
-
docker load -i percept-v1.x.x.tar.gz
-
-
To make sure, that the image was loaded correctly, check the Docker image registry contents (the output should be similar to the one shown in the image List of Docker Images below, the "TAG" depends on the Percept version used):
-
docker images
-
Loading the Percept image into the docker registry might take some time |
How to start Percept
After setting up Docker on your machine and loading the Percept image into the Docker registry, you are ready to go and use Percept.
There are separate docker-compose files for Windows and Ubuntu. This file lists all services, exposed ports and mapped folders. It will start the server, frontend and the NTP-server. In Addition, the server will also start an envoy-proxy to allow the communication between the frontend and the server. |
Percept will automatically start Docker containers if required, e.g. when you run multiple projects at the same time. |
The NTP container is started to provide a possibility to time synchronize the devices via NTP. You may want to remove this part from the docker-compose file, if you have your own NTP server running. You will learn more on when to use time synchronization in later chapters. |
Windows
-
To start Percept you have to open up the Windows Command Line Tool (You can do this by typing in cmd in the window start popup and hit enter).
-
Inside the command line tool you have to navigate to the folder you downloaded and extracted Percept using the appropriate command line tool commands (e.g. "cd download" for changing from your user home directory to the download directory, see screenshot).
-
Once you are inside the Percept directory type in and execute the following command:
-
docker-compose -f docker-compose-windows.yml up
-
-
Windows might ask for permission to share local directories. To make sure Percept runs as intended click on "Share it"
-
Open a web-browser and access the Percept web interface.
Ubuntu
-
To start Percept execute the following command inside the Percept directory
-
docker-compose -f docker-compose-ubuntu.yml up
-
How to access the Web Interface
-
To access the Web Interface of Percept open a web-browser and enter
-
http://localhost/ or http://127.0.0.1:80/ and you should see the Percept start screen as shown in the image below
-