Examples Guidebook

![]() |
![]() |
Introduction
This section explains the details of how the code examples work.
Undistort
The undistort works as a test to verify the implementation of new accelerated undistort implementations.
It requires OpenCV and OpenCL to work. The example performs a fixed transformation of a single image. You can test it by using the following command:
BUILD_DIR=./build IMAGE_PATH=$(pwd)/examples/undistort/4k_smpte.png ${BUILD_DIR}/examples/undistort/rvs-undistort ${IMAGE_PATH}
It will save two images:
- rvs_cv.png: results from the OpenCV backend
- rvs_cl.png: results from the OpenCL backend
The use of the undistort can be observed in Video Undistortion.
Plotter
When analysing newer algorithms, it may be useful to create plots. This example illustrates how to use the Plotter class to generate multi-series line plots.
The plotting support is not enabled by default. When compiling, please make sure to install the optional dependencies and compile with the meson option: -Denable-plots=enabled
.
After that, the example will be compiled. To run it, please:
BUILD_DIR=./build ${BUILD_DIR}/examples/utils/plotter-usage-example
The plotter API usage is the following:
rvs::Plotter<double> plotter{numpoints, {"series1", "series2"}}; std::unsorted_map<std::string, double> map; map["series1"] = 1.f; map["series2"] = 2.f; plotter.Plot(map);
Line 1 creates a plotter instance compatible with double floating-point numbers. It will plot two series.
Line 3 declares the map with the keys as the name of the series and the values, the values to plot.
Lines 5-6 assign the values to the series.
Line 8 plots a single point in the series.
Important: the points are plotted as they are added by the ::Plot()
method.
Sensors
BMI160 Example
To use the BMI160 sensor, the user must:
- Set the sensor settings and the sensor parameters.
- Create a Bmi160 instance and the Sensor Payload to save the results.
- Add the sensor usage logic.
Usage:
bmi160-example /dev/i2c-8
Adapt the port according to your devkit.
Set the sensor settings and the sensor parameters
To set the sensor settings, the user must establish its internal member, device_filename, which specifies the device bus where the sensor is mounted. For the sensor parameters, the user must establish the sensor's operating frequency (in Hz), the sample rate of the measurements (in Hz), and the sensor ID, which helps distinguish the connected sensors. Check the following pseudo-code as an example of it:
std::shared_ptr<rvs::SensorSettings> settings; std::shared_ptr<rvs::SensorParams> conf settings->device_filename = "/dev/i2c-7"; conf->frequency = 1; conf->sample_rate = 1; conf->sensor_id = 1;
Create a Bmi160 instance and the Sensor Payload
In order to use the sensor, a BMI160 instance must be used. To do so, create a shared pointer of type ISensor and then use the Build method with kBmi160 and the settings as parameters. Also, create a shared pointer of type SensorPayload to save the results later.
std::shared_ptr<rvs::ISensor> bmi160_sensor; std::shared_ptr<rvs::SensorPayload> payload; bmi160_sensor = rvs::ISensor::Build(rvs::Sensors::kBmi160, settings);
Sensor usage logic
Finally, to use the sensor, use the Start, Get, and Stop methods. Before getting data, the sensor must be started, so start the sensor with the Start method by using the sensor parameters. After this, save the data on the payload variable defined in the last step with the Get method. When the sensor isn't needed anymore, run the Stop method. Check the following code as an example:
/* Starts the sensor */ bmi160_sensor->Start(conf); /* Starting usage logic */ /* Getting data */ bmi160_sensor->Get(payload); /* Ending usage logic */ /* Stops the sensor when it is not needed anymore */ bmi160_sensor->Stop();
Sample code
int main(int argc, char *argv[]) { std::shared_ptr<rvs::SensorSettings> settings; std::shared_ptr<rvs::SensorParams> conf std::shared_ptr<rvs::ISensor> bmi160_sensor; std::shared_ptr<rvs::SensorPayload> payload; settings->device_filename = "/dev/i2c-7"; conf->frequency = 1; conf->sample_rate = 1; conf->sensor_id = 1; bmi160_sensor = rvs::ISensor::Build(rvs::Sensors::kBmi160, settings); /* Starts the sensor */ bmi160_sensor->Start(conf); /* Starting usage logic */ /* Getting data */ bmi160_sensor->Get(payload); /* Use the results */ std::cout << payload->accel.x << std::endl; std::cout << payload->accel.y << std::endl; std::cout << payload->accel.z << std::endl; std::cout << payload->accel.timestamp << std::endl; std::cout << payload->gyro.x << std::endl; std::cout << payload->gyro.y << std::endl; std::cout << payload->gyro.z << std::endl; std::cout << payload->gyro.timestamp << std::endl; /* Ending usage logic */ /* Stops the sensor when it is not needed anymore */ bmi160_sensor->Stop(); return 0; }