Skip to content

Arag24/ifm3d-examples

 
 

Repository files navigation

ifm3d Examples

This project is formerly the examples sub-module of the ifm3d project. It has been moved to a standalone project to increase its efficacy as a teaching tool. Specifically, beyond providing concrete code examples for interfacing to ifm3d it also shows how to integrate ifm3d into an external project via cmake. This project relies upon ifm3d version 0.9.0 or better. The remainder of the old README now follows -- with minor edits.

This directory contains example programs that utilize ifm3d. The intention is to create standalone programs that illustrate one very specific concept in order to serve the purpose of letting developers ramp up quickly with using the library. The build infrastructure in this directory is minimal and the programs are intended to be run in place. Additonally, unless specifically stated otherwise, things like performance and robust error handling are not demonstrated. The purpose is to clearly illustrate the task without clouding it with the details of real-world software engineering -- unless, of course, that was the point of the example.

It is expected that this library of examples will grow over time in response to common themes we see on the issue tracker.

Building the examples

Assuming you are starting from the top-level directory of this source distribution:

$ mkdir build
$ cd build
$ cmake ..
$ make

Windows examples

For Windows-based target, with Visual Studio 2017, assuming you are starting from the top-level directory of this source distribution:

$ mkdir build
$ cd build
$ cmake -Ax64 ..
$ cmake --build . --clean-first --config Release

At this stage, projects are built and you will find IFM3D_EXAMPLES.sln in build folder. Use Release / RelWithDebInfo configuration to run and investigate application examples. Please add PATH variable to projects :

PATH=%IFM3D_BUILD_DIR%\install\bin;%IFM3D_BUILD_DIR%\install\x64\vc%MSVC_MAJOR_VERSION%.%MSVC_MINOR_VERSION%\bin;%PATH%

For instance, you can fill directly in VS Project Properties / Debugging / Environment with PATH=C:\ifm3d\install\bin;C:\ifm3d\install\x64\vc14.1\bin;%PATH%

What is included?

  • ex-file_io Shows how to capture data from the camera and write the images to disk. In this example, the amplitude and radial distance image are written out as PNG files. We have removed the PCL-related example as we are in the process of deprecating our support for PCL from the ifm3d core.
  • ex-getmac Request the MAC address from the camera. The MAC address can be used as a unique identifier.
  • ex-timestamp Request some frames from the camera and write the timestamps to stdout
  • ex-exposure_times Shows how to change imager exposure times on the fly while streaming in pixel data and validating the setting of the exposure times registered to the frame data.
  • ex-fast_app_switch Shows how to switch between two applications on the camera using PCIC
  • ex-pcicclient_async_messages Shows how to use the PCICClient module to receive asynchronous notification (and error) messages from the camera.
  • ex-pcicclient_set_io Shows how to mutate the digial IO pins on the O3D camera by the PCIC interface.
  • ex-simpleImage_ppm_io Shows how to write your own image container which does not depend on PCL nor OpenCV.
  • ex-multi_camera_grabber demonstrate's how to accquire frames from multiple ifm 3D camera's,
    see the example documentation for more details.

LICENSE

Please see the file called LICENSE.

About

Example programs which utilize the ifm3d library

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 63.2%
  • C++ 30.1%
  • CMake 6.6%
  • Shell 0.1%