![]() |
event_camera_codecs package from event_camera_codecs repoevent_camera_codecs |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 1.1.3 |
License | Apache2 |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros-event-camera/event_camera_codecs.git |
VCS Type | git |
VCS Version | humble |
Last Updated | 2024-02-04 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Bernd Pfrommer
Authors
event_camera_codecs
This repository holds code for decoding event_camera_msgs. It builds under both ROS1 and ROS2. You can use this decoder from python via the event_camera_py repository.
Supported platforms
Currently tested on:
- ROS1: Ubuntu 20.04 on Noetic
- ROS2: Ubuntu 22.04 on Humble, Iron, Rolling
How to build
Create a workspace, clone this repo, and use vcs
to pull in the remaining dependencies:
pkg=event_camera_codecs
mkdir -p ~/$pkg/src
cd ~/ws
git clone https://github.com/ros-event-camera/${pkg}.git src/${pkg}
cd src
vcs import < ${pkg}/${pkg}.repos
cd ..
configure and build on ROS1:
catkin config -DCMAKE_BUILD_TYPE=RelWithDebInfo # (optionally add -DCMAKE_EXPORT_COMPILE_COMMANDS=1)
catkin build
configure and build on ROS2:
cd ~/ws
colcon build --symlink-install --cmake-args -DCMAKE_BUILD_TYPE=RelWithDebInfo # (optionally add -DCMAKE_EXPORT_COMPILE_COMMANDS=1)
To also build the unit tests, add the cmake argument -DEVENT_CAMERA_CODECS_BUILD_TESTS=ON
.
API example
```cpp #include <event_camera_codecs/decoder.h> #include <event_camera_codecs/decoder_factory.h>
using event_camera_codecs::EventPacket;
class MyProcessor : public event_camera_codecs::EventProcessor { public: inline void eventCD(uint64_t, uint16_t ex, uint16_t ey, uint8_t polarity) override { // do useful stuff here } void eventExtTrigger(uint64_t, uint8_t, uint8_t) override {} void finished() override{}; // called after no more events decoded in this packet void rawData(const char *, size_t) override{}; // passthrough of raw data };
MyProcessor processor;
// the decoder factory method is templated on the event processor // to permit inlining of methods like eventCD() above.
event_camera_codecs::DecoderFactory<EventPacket, MyProcessor> decoderFactory;
// to get callbacks into MyProcessor, feed the message buffer // into the decoder like so
void eventMsg(const event_camera_codecs::EventPacketConstSharedPtr & msg) { // will create a new decoder on first call, from then on returns existing one auto decoder = decoderFactory.getInstance(msg); if (!decoder) { // msg->encoding was invalid return; } // the decode() will trigger callbacks to processor decoder->decode(msg, &processor); }
/* To synchronize with frame based sensors it is useful to play back until a frame boundary is reached. The interface decodeUntil() is provided for this purpose. Do NOT use decode() and decodeUntil() on the same decoder! In the sample code belowframeTimes is an ordered queue of frame times. */
void eventMsg2(const event_camera_codecs::EventPacketConstSharedPtr & msg) { auto decoder = decoderFactory.getInstance(msg); uint64_t nextTime{0}; // The loop will exit when all events in msg have been processed // or there are no more frame times available decoder->setTimeBase(msg->time_base); while (!frameTimes.empty() && decoder->decodeUntil(msg, &processor, frameTimes.front(), &nextTime)) { // use loop in case multiple frames fit inbetween two events
File truncated at 100 lines see the full file
Changelog for package event_camera_codecs
1.1.3 (2024-02-04)
- added hasSensorTimeSinceEpoch() and getTimeMultiplier() This is to support libcaer event python processing
- added newInstance(msg) methods
- Contributors: Bernd Pfrommer
1.1.2 (2023-12-16)
- added more tests
- added libcaer, libcaer_cmp and improved README
- make decoder factory geometry aware, use new ros1 ci
- use new CI rules
- Contributors: Bernd Pfrommer
1.1.1 (2023-09-19)
- add dependency on class_loader
- Contributors: Bernd Pfrommer
1.1.0 (2023-08-29)
- initial release
- Contributors: Bernd Pfrommer
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Name | Deps |
---|---|
event_camera_py | |
event_camera_renderer |
Launch files
Messages
Services
Plugins
Recent questions tagged event_camera_codecs at Robotics Stack Exchange
![]() |
event_camera_codecs package from event_camera_codecs repoevent_camera_codecs |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 1.0.5 |
License | Apache2 |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros-event-camera/event_camera_codecs.git |
VCS Type | git |
VCS Version | rolling |
Last Updated | 2024-05-29 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Bernd Pfrommer
Authors
event_camera_codecs
This repository holds code for decoding event_camera_msgs. It builds under both ROS1 and ROS2. You can use this decoder from python via the event_camera_py repository.
Supported platforms
Currently tested on:
- ROS1: Ubuntu 20.04 on Noetic
- ROS2: Ubuntu 22.04 on Humble, Iron, Rolling
How to build
Set the following shell variables:
repo=event_camera_codecs
url=https://github.com/ros-event-camera/${repo}.git
and follow the instructions here
configure and build on ROS1:
catkin config -DCMAKE_BUILD_TYPE=RelWithDebInfo # (optionally add -DCMAKE_EXPORT_COMPILE_COMMANDS=1)
catkin build
configure and build on ROS2:
cd ~/ws
colcon build --symlink-install --cmake-args -DCMAKE_BUILD_TYPE=RelWithDebInfo # (optionally add -DCMAKE_EXPORT_COMPILE_COMMANDS=1)
To also build the unit tests, add the cmake argument -DEVENT_CAMERA_CODECS_BUILD_TESTS=ON
.
API example
```cpp #include <event_camera_codecs/decoder.h> #include <event_camera_codecs/decoder_factory.h>
using event_camera_codecs::EventPacket;
class MyProcessor : public event_camera_codecs::EventProcessor { public: inline void eventCD(uint64_t, uint16_t ex, uint16_t ey, uint8_t polarity) override { // do useful stuff here } void eventExtTrigger(uint64_t, uint8_t, uint8_t) override {} void finished() override{}; // called after no more events decoded in this packet void rawData(const char *, size_t) override{}; // passthrough of raw data };
MyProcessor processor;
// the decoder factory method is templated on the event processor // to permit inlining of methods like eventCD() above.
event_camera_codecs::DecoderFactory<EventPacket, MyProcessor> decoderFactory;
// to get callbacks into MyProcessor, feed the message buffer // into the decoder like so
void eventMsg(const event_camera_codecs::EventPacketConstSharedPtr & msg) { // will create a new decoder on first call, from then on returns existing one auto decoder = decoderFactory.getInstance(msg); if (!decoder) { // msg->encoding was invalid return; } // the decode() will trigger callbacks to processor decoder->decode(msg, &processor); }
/* To synchronize with frame based sensors it is useful to play back until a frame boundary is reached. The interface decodeUntil() is provided for this purpose. Do NOT use decode() and decodeUntil() on the same decoder! In the sample code belowframeTimes is an ordered queue of frame times. */
void eventMsg2(const event_camera_codecs::EventPacketConstSharedPtr & msg) { auto decoder = decoderFactory.getInstance(msg); uint64_t nextTime{0}; // The loop will exit when all events in msg have been processed // or there are no more frame times available decoder->setTimeBase(msg->time_base); while (!frameTimes.empty() && decoder->decodeUntil(msg, &processor, frameTimes.front(), &nextTime)) { // use loop in case multiple frames fit inbetween two events while (!frameTimes.empty() && frameTimes.front() <= nextTime) { // processFrameHere() frameTimes.pop(); } }
File truncated at 100 lines see the full file
Changelog for package event_camera_codecs
1.0.5 (2024-05-29)
- fix formatting for noble
- updated build instructions
- Contributors: Bernd Pfrommer
1.0.4 (2024-02-04)
- added hasSensorTimeSinceEpoch() and getTimeMultiplier() This is to support libcaer event python processing
- added newInstance(msg) methods
- Contributors: Bernd Pfrommer
1.0.3 (2023-12-16)
- added tests
- added libcaer_cmp, libcaer and improved README
- make decoder factory geometry aware, use new ros1 ci
- use new CI rules
- add dependency on class_loader
- Contributors: Bernd Pfrommer
1.0.2 (2023-09-19)
- add dependency on class_loader
- Contributors: Bernd Pfrommer
1.0.1 (2023-08-29)
- initial release
- Contributors: Bernd Pfrommer
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Name | Deps |
---|---|
event_camera_py | |
event_camera_renderer |
Launch files
Messages
Services
Plugins
Recent questions tagged event_camera_codecs at Robotics Stack Exchange
![]() |
event_camera_codecs package from event_camera_codecs repoevent_camera_codecs |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 1.0.5 |
License | Apache2 |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros-event-camera/event_camera_codecs.git |
VCS Type | git |
VCS Version | rolling |
Last Updated | 2024-05-29 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Bernd Pfrommer
Authors
event_camera_codecs
This repository holds code for decoding event_camera_msgs. It builds under both ROS1 and ROS2. You can use this decoder from python via the event_camera_py repository.
Supported platforms
Currently tested on:
- ROS1: Ubuntu 20.04 on Noetic
- ROS2: Ubuntu 22.04 on Humble, Iron, Rolling
How to build
Set the following shell variables:
repo=event_camera_codecs
url=https://github.com/ros-event-camera/${repo}.git
and follow the instructions here
configure and build on ROS1:
catkin config -DCMAKE_BUILD_TYPE=RelWithDebInfo # (optionally add -DCMAKE_EXPORT_COMPILE_COMMANDS=1)
catkin build
configure and build on ROS2:
cd ~/ws
colcon build --symlink-install --cmake-args -DCMAKE_BUILD_TYPE=RelWithDebInfo # (optionally add -DCMAKE_EXPORT_COMPILE_COMMANDS=1)
To also build the unit tests, add the cmake argument -DEVENT_CAMERA_CODECS_BUILD_TESTS=ON
.
API example
```cpp #include <event_camera_codecs/decoder.h> #include <event_camera_codecs/decoder_factory.h>
using event_camera_codecs::EventPacket;
class MyProcessor : public event_camera_codecs::EventProcessor { public: inline void eventCD(uint64_t, uint16_t ex, uint16_t ey, uint8_t polarity) override { // do useful stuff here } void eventExtTrigger(uint64_t, uint8_t, uint8_t) override {} void finished() override{}; // called after no more events decoded in this packet void rawData(const char *, size_t) override{}; // passthrough of raw data };
MyProcessor processor;
// the decoder factory method is templated on the event processor // to permit inlining of methods like eventCD() above.
event_camera_codecs::DecoderFactory<EventPacket, MyProcessor> decoderFactory;
// to get callbacks into MyProcessor, feed the message buffer // into the decoder like so
void eventMsg(const event_camera_codecs::EventPacketConstSharedPtr & msg) { // will create a new decoder on first call, from then on returns existing one auto decoder = decoderFactory.getInstance(msg); if (!decoder) { // msg->encoding was invalid return; } // the decode() will trigger callbacks to processor decoder->decode(msg, &processor); }
/* To synchronize with frame based sensors it is useful to play back until a frame boundary is reached. The interface decodeUntil() is provided for this purpose. Do NOT use decode() and decodeUntil() on the same decoder! In the sample code belowframeTimes is an ordered queue of frame times. */
void eventMsg2(const event_camera_codecs::EventPacketConstSharedPtr & msg) { auto decoder = decoderFactory.getInstance(msg); uint64_t nextTime{0}; // The loop will exit when all events in msg have been processed // or there are no more frame times available decoder->setTimeBase(msg->time_base); while (!frameTimes.empty() && decoder->decodeUntil(msg, &processor, frameTimes.front(), &nextTime)) { // use loop in case multiple frames fit inbetween two events while (!frameTimes.empty() && frameTimes.front() <= nextTime) { // processFrameHere() frameTimes.pop(); } }
File truncated at 100 lines see the full file
Changelog for package event_camera_codecs
1.0.5 (2024-05-29)
- fix formatting for noble
- updated build instructions
- Contributors: Bernd Pfrommer
1.0.4 (2024-02-04)
- added hasSensorTimeSinceEpoch() and getTimeMultiplier() This is to support libcaer event python processing
- added newInstance(msg) methods
- Contributors: Bernd Pfrommer
1.0.3 (2023-12-16)
- added tests
- added libcaer_cmp, libcaer and improved README
- make decoder factory geometry aware, use new ros1 ci
- use new CI rules
- add dependency on class_loader
- Contributors: Bernd Pfrommer
1.0.2 (2023-09-19)
- add dependency on class_loader
- Contributors: Bernd Pfrommer
1.0.1 (2023-08-29)
- initial release
- Contributors: Bernd Pfrommer
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Name | Deps |
---|---|
event_camera_py | |
event_camera_renderer |
Launch files
Messages
Services
Plugins
Recent questions tagged event_camera_codecs at Robotics Stack Exchange
![]() |
event_camera_codecs package from event_camera_codecs repoevent_camera_codecs |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 1.0.5 |
License | Apache2 |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros-event-camera/event_camera_codecs.git |
VCS Type | git |
VCS Version | rolling |
Last Updated | 2024-05-29 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Bernd Pfrommer
Authors
event_camera_codecs
This repository holds code for decoding event_camera_msgs. It builds under both ROS1 and ROS2. You can use this decoder from python via the event_camera_py repository.
Supported platforms
Currently tested on:
- ROS1: Ubuntu 20.04 on Noetic
- ROS2: Ubuntu 22.04 on Humble, Iron, Rolling
How to build
Set the following shell variables:
repo=event_camera_codecs
url=https://github.com/ros-event-camera/${repo}.git
and follow the instructions here
configure and build on ROS1:
catkin config -DCMAKE_BUILD_TYPE=RelWithDebInfo # (optionally add -DCMAKE_EXPORT_COMPILE_COMMANDS=1)
catkin build
configure and build on ROS2:
cd ~/ws
colcon build --symlink-install --cmake-args -DCMAKE_BUILD_TYPE=RelWithDebInfo # (optionally add -DCMAKE_EXPORT_COMPILE_COMMANDS=1)
To also build the unit tests, add the cmake argument -DEVENT_CAMERA_CODECS_BUILD_TESTS=ON
.
API example
```cpp #include <event_camera_codecs/decoder.h> #include <event_camera_codecs/decoder_factory.h>
using event_camera_codecs::EventPacket;
class MyProcessor : public event_camera_codecs::EventProcessor { public: inline void eventCD(uint64_t, uint16_t ex, uint16_t ey, uint8_t polarity) override { // do useful stuff here } void eventExtTrigger(uint64_t, uint8_t, uint8_t) override {} void finished() override{}; // called after no more events decoded in this packet void rawData(const char *, size_t) override{}; // passthrough of raw data };
MyProcessor processor;
// the decoder factory method is templated on the event processor // to permit inlining of methods like eventCD() above.
event_camera_codecs::DecoderFactory<EventPacket, MyProcessor> decoderFactory;
// to get callbacks into MyProcessor, feed the message buffer // into the decoder like so
void eventMsg(const event_camera_codecs::EventPacketConstSharedPtr & msg) { // will create a new decoder on first call, from then on returns existing one auto decoder = decoderFactory.getInstance(msg); if (!decoder) { // msg->encoding was invalid return; } // the decode() will trigger callbacks to processor decoder->decode(msg, &processor); }
/* To synchronize with frame based sensors it is useful to play back until a frame boundary is reached. The interface decodeUntil() is provided for this purpose. Do NOT use decode() and decodeUntil() on the same decoder! In the sample code belowframeTimes is an ordered queue of frame times. */
void eventMsg2(const event_camera_codecs::EventPacketConstSharedPtr & msg) { auto decoder = decoderFactory.getInstance(msg); uint64_t nextTime{0}; // The loop will exit when all events in msg have been processed // or there are no more frame times available decoder->setTimeBase(msg->time_base); while (!frameTimes.empty() && decoder->decodeUntil(msg, &processor, frameTimes.front(), &nextTime)) { // use loop in case multiple frames fit inbetween two events while (!frameTimes.empty() && frameTimes.front() <= nextTime) { // processFrameHere() frameTimes.pop(); } }
File truncated at 100 lines see the full file
Changelog for package event_camera_codecs
1.0.5 (2024-05-29)
- fix formatting for noble
- updated build instructions
- Contributors: Bernd Pfrommer
1.0.4 (2024-02-04)
- added hasSensorTimeSinceEpoch() and getTimeMultiplier() This is to support libcaer event python processing
- added newInstance(msg) methods
- Contributors: Bernd Pfrommer
1.0.3 (2023-12-16)
- added tests
- added libcaer_cmp, libcaer and improved README
- make decoder factory geometry aware, use new ros1 ci
- use new CI rules
- add dependency on class_loader
- Contributors: Bernd Pfrommer
1.0.2 (2023-09-19)
- add dependency on class_loader
- Contributors: Bernd Pfrommer
1.0.1 (2023-08-29)
- initial release
- Contributors: Bernd Pfrommer
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Name | Deps |
---|---|
event_camera_py | |
event_camera_renderer |
Launch files
Messages
Services
Plugins
Recent questions tagged event_camera_codecs at Robotics Stack Exchange
![]() |
event_camera_codecs package from event_camera_codecs repoevent_camera_codecs |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 1.1.3 |
License | Apache2 |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros-event-camera/event_camera_codecs.git |
VCS Type | git |
VCS Version | humble |
Last Updated | 2024-02-04 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Bernd Pfrommer
Authors
event_camera_codecs
This repository holds code for decoding event_camera_msgs. It builds under both ROS1 and ROS2. You can use this decoder from python via the event_camera_py repository.
Supported platforms
Currently tested on:
- ROS1: Ubuntu 20.04 on Noetic
- ROS2: Ubuntu 22.04 on Humble, Iron, Rolling
How to build
Create a workspace, clone this repo, and use vcs
to pull in the remaining dependencies:
pkg=event_camera_codecs
mkdir -p ~/$pkg/src
cd ~/ws
git clone https://github.com/ros-event-camera/${pkg}.git src/${pkg}
cd src
vcs import < ${pkg}/${pkg}.repos
cd ..
configure and build on ROS1:
catkin config -DCMAKE_BUILD_TYPE=RelWithDebInfo # (optionally add -DCMAKE_EXPORT_COMPILE_COMMANDS=1)
catkin build
configure and build on ROS2:
cd ~/ws
colcon build --symlink-install --cmake-args -DCMAKE_BUILD_TYPE=RelWithDebInfo # (optionally add -DCMAKE_EXPORT_COMPILE_COMMANDS=1)
To also build the unit tests, add the cmake argument -DEVENT_CAMERA_CODECS_BUILD_TESTS=ON
.
API example
```cpp #include <event_camera_codecs/decoder.h> #include <event_camera_codecs/decoder_factory.h>
using event_camera_codecs::EventPacket;
class MyProcessor : public event_camera_codecs::EventProcessor { public: inline void eventCD(uint64_t, uint16_t ex, uint16_t ey, uint8_t polarity) override { // do useful stuff here } void eventExtTrigger(uint64_t, uint8_t, uint8_t) override {} void finished() override{}; // called after no more events decoded in this packet void rawData(const char *, size_t) override{}; // passthrough of raw data };
MyProcessor processor;
// the decoder factory method is templated on the event processor // to permit inlining of methods like eventCD() above.
event_camera_codecs::DecoderFactory<EventPacket, MyProcessor> decoderFactory;
// to get callbacks into MyProcessor, feed the message buffer // into the decoder like so
void eventMsg(const event_camera_codecs::EventPacketConstSharedPtr & msg) { // will create a new decoder on first call, from then on returns existing one auto decoder = decoderFactory.getInstance(msg); if (!decoder) { // msg->encoding was invalid return; } // the decode() will trigger callbacks to processor decoder->decode(msg, &processor); }
/* To synchronize with frame based sensors it is useful to play back until a frame boundary is reached. The interface decodeUntil() is provided for this purpose. Do NOT use decode() and decodeUntil() on the same decoder! In the sample code belowframeTimes is an ordered queue of frame times. */
void eventMsg2(const event_camera_codecs::EventPacketConstSharedPtr & msg) { auto decoder = decoderFactory.getInstance(msg); uint64_t nextTime{0}; // The loop will exit when all events in msg have been processed // or there are no more frame times available decoder->setTimeBase(msg->time_base); while (!frameTimes.empty() && decoder->decodeUntil(msg, &processor, frameTimes.front(), &nextTime)) { // use loop in case multiple frames fit inbetween two events
File truncated at 100 lines see the full file
Changelog for package event_camera_codecs
1.1.3 (2024-02-04)
- added hasSensorTimeSinceEpoch() and getTimeMultiplier() This is to support libcaer event python processing
- added newInstance(msg) methods
- Contributors: Bernd Pfrommer
1.1.2 (2023-12-16)
- added more tests
- added libcaer, libcaer_cmp and improved README
- make decoder factory geometry aware, use new ros1 ci
- use new CI rules
- Contributors: Bernd Pfrommer
1.1.1 (2023-09-19)
- add dependency on class_loader
- Contributors: Bernd Pfrommer
1.1.0 (2023-08-29)
- initial release
- Contributors: Bernd Pfrommer
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Name | Deps |
---|---|
event_camera_py | |
event_camera_renderer |
Launch files
Messages
Services
Plugins
Recent questions tagged event_camera_codecs at Robotics Stack Exchange
![]() |
event_camera_codecs package from event_camera_codecs repoevent_camera_codecs |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 1.1.3 |
License | Apache2 |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros-event-camera/event_camera_codecs.git |
VCS Type | git |
VCS Version | humble |
Last Updated | 2024-02-04 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Bernd Pfrommer
Authors
event_camera_codecs
This repository holds code for decoding event_camera_msgs. It builds under both ROS1 and ROS2. You can use this decoder from python via the event_camera_py repository.
Supported platforms
Currently tested on:
- ROS1: Ubuntu 20.04 on Noetic
- ROS2: Ubuntu 22.04 on Humble, Iron, Rolling
How to build
Create a workspace, clone this repo, and use vcs
to pull in the remaining dependencies:
pkg=event_camera_codecs
mkdir -p ~/$pkg/src
cd ~/ws
git clone https://github.com/ros-event-camera/${pkg}.git src/${pkg}
cd src
vcs import < ${pkg}/${pkg}.repos
cd ..
configure and build on ROS1:
catkin config -DCMAKE_BUILD_TYPE=RelWithDebInfo # (optionally add -DCMAKE_EXPORT_COMPILE_COMMANDS=1)
catkin build
configure and build on ROS2:
cd ~/ws
colcon build --symlink-install --cmake-args -DCMAKE_BUILD_TYPE=RelWithDebInfo # (optionally add -DCMAKE_EXPORT_COMPILE_COMMANDS=1)
To also build the unit tests, add the cmake argument -DEVENT_CAMERA_CODECS_BUILD_TESTS=ON
.
API example
```cpp #include <event_camera_codecs/decoder.h> #include <event_camera_codecs/decoder_factory.h>
using event_camera_codecs::EventPacket;
class MyProcessor : public event_camera_codecs::EventProcessor { public: inline void eventCD(uint64_t, uint16_t ex, uint16_t ey, uint8_t polarity) override { // do useful stuff here } void eventExtTrigger(uint64_t, uint8_t, uint8_t) override {} void finished() override{}; // called after no more events decoded in this packet void rawData(const char *, size_t) override{}; // passthrough of raw data };
MyProcessor processor;
// the decoder factory method is templated on the event processor // to permit inlining of methods like eventCD() above.
event_camera_codecs::DecoderFactory<EventPacket, MyProcessor> decoderFactory;
// to get callbacks into MyProcessor, feed the message buffer // into the decoder like so
void eventMsg(const event_camera_codecs::EventPacketConstSharedPtr & msg) { // will create a new decoder on first call, from then on returns existing one auto decoder = decoderFactory.getInstance(msg); if (!decoder) { // msg->encoding was invalid return; } // the decode() will trigger callbacks to processor decoder->decode(msg, &processor); }
/* To synchronize with frame based sensors it is useful to play back until a frame boundary is reached. The interface decodeUntil() is provided for this purpose. Do NOT use decode() and decodeUntil() on the same decoder! In the sample code belowframeTimes is an ordered queue of frame times. */
void eventMsg2(const event_camera_codecs::EventPacketConstSharedPtr & msg) { auto decoder = decoderFactory.getInstance(msg); uint64_t nextTime{0}; // The loop will exit when all events in msg have been processed // or there are no more frame times available decoder->setTimeBase(msg->time_base); while (!frameTimes.empty() && decoder->decodeUntil(msg, &processor, frameTimes.front(), &nextTime)) { // use loop in case multiple frames fit inbetween two events
File truncated at 100 lines see the full file
Changelog for package event_camera_codecs
1.1.3 (2024-02-04)
- added hasSensorTimeSinceEpoch() and getTimeMultiplier() This is to support libcaer event python processing
- added newInstance(msg) methods
- Contributors: Bernd Pfrommer
1.1.2 (2023-12-16)
- added more tests
- added libcaer, libcaer_cmp and improved README
- make decoder factory geometry aware, use new ros1 ci
- use new CI rules
- Contributors: Bernd Pfrommer
1.1.1 (2023-09-19)
- add dependency on class_loader
- Contributors: Bernd Pfrommer
1.1.0 (2023-08-29)
- initial release
- Contributors: Bernd Pfrommer
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Name | Deps |
---|---|
event_camera_py | |
event_camera_renderer |
Launch files
Messages
Services
Plugins
Recent questions tagged event_camera_codecs at Robotics Stack Exchange
![]() |
event_camera_codecs package from event_camera_codecs repoevent_camera_codecs |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 1.1.3 |
License | Apache2 |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros-event-camera/event_camera_codecs.git |
VCS Type | git |
VCS Version | humble |
Last Updated | 2024-02-04 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Bernd Pfrommer
Authors
event_camera_codecs
This repository holds code for decoding event_camera_msgs. It builds under both ROS1 and ROS2. You can use this decoder from python via the event_camera_py repository.
Supported platforms
Currently tested on:
- ROS1: Ubuntu 20.04 on Noetic
- ROS2: Ubuntu 22.04 on Humble, Iron, Rolling
How to build
Create a workspace, clone this repo, and use vcs
to pull in the remaining dependencies:
pkg=event_camera_codecs
mkdir -p ~/$pkg/src
cd ~/ws
git clone https://github.com/ros-event-camera/${pkg}.git src/${pkg}
cd src
vcs import < ${pkg}/${pkg}.repos
cd ..
configure and build on ROS1:
catkin config -DCMAKE_BUILD_TYPE=RelWithDebInfo # (optionally add -DCMAKE_EXPORT_COMPILE_COMMANDS=1)
catkin build
configure and build on ROS2:
cd ~/ws
colcon build --symlink-install --cmake-args -DCMAKE_BUILD_TYPE=RelWithDebInfo # (optionally add -DCMAKE_EXPORT_COMPILE_COMMANDS=1)
To also build the unit tests, add the cmake argument -DEVENT_CAMERA_CODECS_BUILD_TESTS=ON
.
API example
```cpp #include <event_camera_codecs/decoder.h> #include <event_camera_codecs/decoder_factory.h>
using event_camera_codecs::EventPacket;
class MyProcessor : public event_camera_codecs::EventProcessor { public: inline void eventCD(uint64_t, uint16_t ex, uint16_t ey, uint8_t polarity) override { // do useful stuff here } void eventExtTrigger(uint64_t, uint8_t, uint8_t) override {} void finished() override{}; // called after no more events decoded in this packet void rawData(const char *, size_t) override{}; // passthrough of raw data };
MyProcessor processor;
// the decoder factory method is templated on the event processor // to permit inlining of methods like eventCD() above.
event_camera_codecs::DecoderFactory<EventPacket, MyProcessor> decoderFactory;
// to get callbacks into MyProcessor, feed the message buffer // into the decoder like so
void eventMsg(const event_camera_codecs::EventPacketConstSharedPtr & msg) { // will create a new decoder on first call, from then on returns existing one auto decoder = decoderFactory.getInstance(msg); if (!decoder) { // msg->encoding was invalid return; } // the decode() will trigger callbacks to processor decoder->decode(msg, &processor); }
/* To synchronize with frame based sensors it is useful to play back until a frame boundary is reached. The interface decodeUntil() is provided for this purpose. Do NOT use decode() and decodeUntil() on the same decoder! In the sample code belowframeTimes is an ordered queue of frame times. */
void eventMsg2(const event_camera_codecs::EventPacketConstSharedPtr & msg) { auto decoder = decoderFactory.getInstance(msg); uint64_t nextTime{0}; // The loop will exit when all events in msg have been processed // or there are no more frame times available decoder->setTimeBase(msg->time_base); while (!frameTimes.empty() && decoder->decodeUntil(msg, &processor, frameTimes.front(), &nextTime)) { // use loop in case multiple frames fit inbetween two events
File truncated at 100 lines see the full file
Changelog for package event_camera_codecs
1.1.3 (2024-02-04)
- added hasSensorTimeSinceEpoch() and getTimeMultiplier() This is to support libcaer event python processing
- added newInstance(msg) methods
- Contributors: Bernd Pfrommer
1.1.2 (2023-12-16)
- added more tests
- added libcaer, libcaer_cmp and improved README
- make decoder factory geometry aware, use new ros1 ci
- use new CI rules
- Contributors: Bernd Pfrommer
1.1.1 (2023-09-19)
- add dependency on class_loader
- Contributors: Bernd Pfrommer
1.1.0 (2023-08-29)
- initial release
- Contributors: Bernd Pfrommer
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Name | Deps |
---|---|
event_camera_py | |
event_camera_renderer |
Launch files
Messages
Services
Plugins
Recent questions tagged event_camera_codecs at Robotics Stack Exchange
![]() |
event_camera_codecs package from event_camera_codecs repoevent_camera_codecs |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 1.1.3 |
License | Apache2 |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros-event-camera/event_camera_codecs.git |
VCS Type | git |
VCS Version | humble |
Last Updated | 2024-02-04 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Bernd Pfrommer
Authors
event_camera_codecs
This repository holds code for decoding event_camera_msgs. It builds under both ROS1 and ROS2. You can use this decoder from python via the event_camera_py repository.
Supported platforms
Currently tested on:
- ROS1: Ubuntu 20.04 on Noetic
- ROS2: Ubuntu 22.04 on Humble, Iron, Rolling
How to build
Create a workspace, clone this repo, and use vcs
to pull in the remaining dependencies:
pkg=event_camera_codecs
mkdir -p ~/$pkg/src
cd ~/ws
git clone https://github.com/ros-event-camera/${pkg}.git src/${pkg}
cd src
vcs import < ${pkg}/${pkg}.repos
cd ..
configure and build on ROS1:
catkin config -DCMAKE_BUILD_TYPE=RelWithDebInfo # (optionally add -DCMAKE_EXPORT_COMPILE_COMMANDS=1)
catkin build
configure and build on ROS2:
cd ~/ws
colcon build --symlink-install --cmake-args -DCMAKE_BUILD_TYPE=RelWithDebInfo # (optionally add -DCMAKE_EXPORT_COMPILE_COMMANDS=1)
To also build the unit tests, add the cmake argument -DEVENT_CAMERA_CODECS_BUILD_TESTS=ON
.
API example
```cpp #include <event_camera_codecs/decoder.h> #include <event_camera_codecs/decoder_factory.h>
using event_camera_codecs::EventPacket;
class MyProcessor : public event_camera_codecs::EventProcessor { public: inline void eventCD(uint64_t, uint16_t ex, uint16_t ey, uint8_t polarity) override { // do useful stuff here } void eventExtTrigger(uint64_t, uint8_t, uint8_t) override {} void finished() override{}; // called after no more events decoded in this packet void rawData(const char *, size_t) override{}; // passthrough of raw data };
MyProcessor processor;
// the decoder factory method is templated on the event processor // to permit inlining of methods like eventCD() above.
event_camera_codecs::DecoderFactory<EventPacket, MyProcessor> decoderFactory;
// to get callbacks into MyProcessor, feed the message buffer // into the decoder like so
void eventMsg(const event_camera_codecs::EventPacketConstSharedPtr & msg) { // will create a new decoder on first call, from then on returns existing one auto decoder = decoderFactory.getInstance(msg); if (!decoder) { // msg->encoding was invalid return; } // the decode() will trigger callbacks to processor decoder->decode(msg, &processor); }
/* To synchronize with frame based sensors it is useful to play back until a frame boundary is reached. The interface decodeUntil() is provided for this purpose. Do NOT use decode() and decodeUntil() on the same decoder! In the sample code belowframeTimes is an ordered queue of frame times. */
void eventMsg2(const event_camera_codecs::EventPacketConstSharedPtr & msg) { auto decoder = decoderFactory.getInstance(msg); uint64_t nextTime{0}; // The loop will exit when all events in msg have been processed // or there are no more frame times available decoder->setTimeBase(msg->time_base); while (!frameTimes.empty() && decoder->decodeUntil(msg, &processor, frameTimes.front(), &nextTime)) { // use loop in case multiple frames fit inbetween two events
File truncated at 100 lines see the full file
Changelog for package event_camera_codecs
1.1.3 (2024-02-04)
- added hasSensorTimeSinceEpoch() and getTimeMultiplier() This is to support libcaer event python processing
- added newInstance(msg) methods
- Contributors: Bernd Pfrommer
1.1.2 (2023-12-16)
- added more tests
- added libcaer, libcaer_cmp and improved README
- make decoder factory geometry aware, use new ros1 ci
- use new CI rules
- Contributors: Bernd Pfrommer
1.1.1 (2023-09-19)
- add dependency on class_loader
- Contributors: Bernd Pfrommer
1.1.0 (2023-08-29)
- initial release
- Contributors: Bernd Pfrommer
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Name | Deps |
---|---|
event_camera_py | |
event_camera_renderer |
Launch files
Messages
Services
Plugins
Recent questions tagged event_camera_codecs at Robotics Stack Exchange
![]() |
event_camera_codecs package from event_camera_codecs repoevent_camera_codecs |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 1.1.3 |
License | Apache2 |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros-event-camera/event_camera_codecs.git |
VCS Type | git |
VCS Version | humble |
Last Updated | 2024-02-04 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Bernd Pfrommer
Authors
event_camera_codecs
This repository holds code for decoding event_camera_msgs. It builds under both ROS1 and ROS2. You can use this decoder from python via the event_camera_py repository.
Supported platforms
Currently tested on:
- ROS1: Ubuntu 20.04 on Noetic
- ROS2: Ubuntu 22.04 on Humble, Iron, Rolling
How to build
Create a workspace, clone this repo, and use vcs
to pull in the remaining dependencies:
pkg=event_camera_codecs
mkdir -p ~/$pkg/src
cd ~/ws
git clone https://github.com/ros-event-camera/${pkg}.git src/${pkg}
cd src
vcs import < ${pkg}/${pkg}.repos
cd ..
configure and build on ROS1:
catkin config -DCMAKE_BUILD_TYPE=RelWithDebInfo # (optionally add -DCMAKE_EXPORT_COMPILE_COMMANDS=1)
catkin build
configure and build on ROS2:
cd ~/ws
colcon build --symlink-install --cmake-args -DCMAKE_BUILD_TYPE=RelWithDebInfo # (optionally add -DCMAKE_EXPORT_COMPILE_COMMANDS=1)
To also build the unit tests, add the cmake argument -DEVENT_CAMERA_CODECS_BUILD_TESTS=ON
.
API example
```cpp #include <event_camera_codecs/decoder.h> #include <event_camera_codecs/decoder_factory.h>
using event_camera_codecs::EventPacket;
class MyProcessor : public event_camera_codecs::EventProcessor { public: inline void eventCD(uint64_t, uint16_t ex, uint16_t ey, uint8_t polarity) override { // do useful stuff here } void eventExtTrigger(uint64_t, uint8_t, uint8_t) override {} void finished() override{}; // called after no more events decoded in this packet void rawData(const char *, size_t) override{}; // passthrough of raw data };
MyProcessor processor;
// the decoder factory method is templated on the event processor // to permit inlining of methods like eventCD() above.
event_camera_codecs::DecoderFactory<EventPacket, MyProcessor> decoderFactory;
// to get callbacks into MyProcessor, feed the message buffer // into the decoder like so
void eventMsg(const event_camera_codecs::EventPacketConstSharedPtr & msg) { // will create a new decoder on first call, from then on returns existing one auto decoder = decoderFactory.getInstance(msg); if (!decoder) { // msg->encoding was invalid return; } // the decode() will trigger callbacks to processor decoder->decode(msg, &processor); }
/* To synchronize with frame based sensors it is useful to play back until a frame boundary is reached. The interface decodeUntil() is provided for this purpose. Do NOT use decode() and decodeUntil() on the same decoder! In the sample code belowframeTimes is an ordered queue of frame times. */
void eventMsg2(const event_camera_codecs::EventPacketConstSharedPtr & msg) { auto decoder = decoderFactory.getInstance(msg); uint64_t nextTime{0}; // The loop will exit when all events in msg have been processed // or there are no more frame times available decoder->setTimeBase(msg->time_base); while (!frameTimes.empty() && decoder->decodeUntil(msg, &processor, frameTimes.front(), &nextTime)) { // use loop in case multiple frames fit inbetween two events
File truncated at 100 lines see the full file
Changelog for package event_camera_codecs
1.1.3 (2024-02-04)
- added hasSensorTimeSinceEpoch() and getTimeMultiplier() This is to support libcaer event python processing
- added newInstance(msg) methods
- Contributors: Bernd Pfrommer
1.1.2 (2023-12-16)
- added more tests
- added libcaer, libcaer_cmp and improved README
- make decoder factory geometry aware, use new ros1 ci
- use new CI rules
- Contributors: Bernd Pfrommer
1.1.1 (2023-09-19)
- add dependency on class_loader
- Contributors: Bernd Pfrommer
1.1.0 (2023-08-29)
- initial release
- Contributors: Bernd Pfrommer
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Name | Deps |
---|---|
event_camera_py | |
event_camera_renderer |
Launch files
Messages
Services
Plugins
Recent questions tagged event_camera_codecs at Robotics Stack Exchange
![]() |
event_camera_codecs package from event_camera_codecs repoevent_camera_codecs |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 1.1.3 |
License | Apache2 |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros-event-camera/event_camera_codecs.git |
VCS Type | git |
VCS Version | humble |
Last Updated | 2024-02-04 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Bernd Pfrommer
Authors
event_camera_codecs
This repository holds code for decoding event_camera_msgs. It builds under both ROS1 and ROS2. You can use this decoder from python via the event_camera_py repository.
Supported platforms
Currently tested on:
- ROS1: Ubuntu 20.04 on Noetic
- ROS2: Ubuntu 22.04 on Humble, Iron, Rolling
How to build
Create a workspace, clone this repo, and use vcs
to pull in the remaining dependencies:
pkg=event_camera_codecs
mkdir -p ~/$pkg/src
cd ~/ws
git clone https://github.com/ros-event-camera/${pkg}.git src/${pkg}
cd src
vcs import < ${pkg}/${pkg}.repos
cd ..
configure and build on ROS1:
catkin config -DCMAKE_BUILD_TYPE=RelWithDebInfo # (optionally add -DCMAKE_EXPORT_COMPILE_COMMANDS=1)
catkin build
configure and build on ROS2:
cd ~/ws
colcon build --symlink-install --cmake-args -DCMAKE_BUILD_TYPE=RelWithDebInfo # (optionally add -DCMAKE_EXPORT_COMPILE_COMMANDS=1)
To also build the unit tests, add the cmake argument -DEVENT_CAMERA_CODECS_BUILD_TESTS=ON
.
API example
```cpp #include <event_camera_codecs/decoder.h> #include <event_camera_codecs/decoder_factory.h>
using event_camera_codecs::EventPacket;
class MyProcessor : public event_camera_codecs::EventProcessor { public: inline void eventCD(uint64_t, uint16_t ex, uint16_t ey, uint8_t polarity) override { // do useful stuff here } void eventExtTrigger(uint64_t, uint8_t, uint8_t) override {} void finished() override{}; // called after no more events decoded in this packet void rawData(const char *, size_t) override{}; // passthrough of raw data };
MyProcessor processor;
// the decoder factory method is templated on the event processor // to permit inlining of methods like eventCD() above.
event_camera_codecs::DecoderFactory<EventPacket, MyProcessor> decoderFactory;
// to get callbacks into MyProcessor, feed the message buffer // into the decoder like so
void eventMsg(const event_camera_codecs::EventPacketConstSharedPtr & msg) { // will create a new decoder on first call, from then on returns existing one auto decoder = decoderFactory.getInstance(msg); if (!decoder) { // msg->encoding was invalid return; } // the decode() will trigger callbacks to processor decoder->decode(msg, &processor); }
/* To synchronize with frame based sensors it is useful to play back until a frame boundary is reached. The interface decodeUntil() is provided for this purpose. Do NOT use decode() and decodeUntil() on the same decoder! In the sample code belowframeTimes is an ordered queue of frame times. */
void eventMsg2(const event_camera_codecs::EventPacketConstSharedPtr & msg) { auto decoder = decoderFactory.getInstance(msg); uint64_t nextTime{0}; // The loop will exit when all events in msg have been processed // or there are no more frame times available decoder->setTimeBase(msg->time_base); while (!frameTimes.empty() && decoder->decodeUntil(msg, &processor, frameTimes.front(), &nextTime)) { // use loop in case multiple frames fit inbetween two events
File truncated at 100 lines see the full file
Changelog for package event_camera_codecs
1.1.3 (2024-02-04)
- added hasSensorTimeSinceEpoch() and getTimeMultiplier() This is to support libcaer event python processing
- added newInstance(msg) methods
- Contributors: Bernd Pfrommer
1.1.2 (2023-12-16)
- added more tests
- added libcaer, libcaer_cmp and improved README
- make decoder factory geometry aware, use new ros1 ci
- use new CI rules
- Contributors: Bernd Pfrommer
1.1.1 (2023-09-19)
- add dependency on class_loader
- Contributors: Bernd Pfrommer
1.1.0 (2023-08-29)
- initial release
- Contributors: Bernd Pfrommer
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Name | Deps |
---|---|
event_camera_py | |
event_camera_renderer |
Launch files
Messages
Services
Plugins
Recent questions tagged event_camera_codecs at Robotics Stack Exchange
![]() |
event_camera_codecs package from event_camera_codecs repoevent_camera_codecs |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 1.1.3 |
License | Apache2 |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros-event-camera/event_camera_codecs.git |
VCS Type | git |
VCS Version | humble |
Last Updated | 2024-02-04 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Bernd Pfrommer
Authors
event_camera_codecs
This repository holds code for decoding event_camera_msgs. It builds under both ROS1 and ROS2. You can use this decoder from python via the event_camera_py repository.
Supported platforms
Currently tested on:
- ROS1: Ubuntu 20.04 on Noetic
- ROS2: Ubuntu 22.04 on Humble, Iron, Rolling
How to build
Create a workspace, clone this repo, and use vcs
to pull in the remaining dependencies:
pkg=event_camera_codecs
mkdir -p ~/$pkg/src
cd ~/ws
git clone https://github.com/ros-event-camera/${pkg}.git src/${pkg}
cd src
vcs import < ${pkg}/${pkg}.repos
cd ..
configure and build on ROS1:
catkin config -DCMAKE_BUILD_TYPE=RelWithDebInfo # (optionally add -DCMAKE_EXPORT_COMPILE_COMMANDS=1)
catkin build
configure and build on ROS2:
cd ~/ws
colcon build --symlink-install --cmake-args -DCMAKE_BUILD_TYPE=RelWithDebInfo # (optionally add -DCMAKE_EXPORT_COMPILE_COMMANDS=1)
To also build the unit tests, add the cmake argument -DEVENT_CAMERA_CODECS_BUILD_TESTS=ON
.
API example
```cpp #include <event_camera_codecs/decoder.h> #include <event_camera_codecs/decoder_factory.h>
using event_camera_codecs::EventPacket;
class MyProcessor : public event_camera_codecs::EventProcessor { public: inline void eventCD(uint64_t, uint16_t ex, uint16_t ey, uint8_t polarity) override { // do useful stuff here } void eventExtTrigger(uint64_t, uint8_t, uint8_t) override {} void finished() override{}; // called after no more events decoded in this packet void rawData(const char *, size_t) override{}; // passthrough of raw data };
MyProcessor processor;
// the decoder factory method is templated on the event processor // to permit inlining of methods like eventCD() above.
event_camera_codecs::DecoderFactory<EventPacket, MyProcessor> decoderFactory;
// to get callbacks into MyProcessor, feed the message buffer // into the decoder like so
void eventMsg(const event_camera_codecs::EventPacketConstSharedPtr & msg) { // will create a new decoder on first call, from then on returns existing one auto decoder = decoderFactory.getInstance(msg); if (!decoder) { // msg->encoding was invalid return; } // the decode() will trigger callbacks to processor decoder->decode(msg, &processor); }
/* To synchronize with frame based sensors it is useful to play back until a frame boundary is reached. The interface decodeUntil() is provided for this purpose. Do NOT use decode() and decodeUntil() on the same decoder! In the sample code belowframeTimes is an ordered queue of frame times. */
void eventMsg2(const event_camera_codecs::EventPacketConstSharedPtr & msg) { auto decoder = decoderFactory.getInstance(msg); uint64_t nextTime{0}; // The loop will exit when all events in msg have been processed // or there are no more frame times available decoder->setTimeBase(msg->time_base); while (!frameTimes.empty() && decoder->decodeUntil(msg, &processor, frameTimes.front(), &nextTime)) { // use loop in case multiple frames fit inbetween two events
File truncated at 100 lines see the full file
Changelog for package event_camera_codecs
1.1.3 (2024-02-04)
- added hasSensorTimeSinceEpoch() and getTimeMultiplier() This is to support libcaer event python processing
- added newInstance(msg) methods
- Contributors: Bernd Pfrommer
1.1.2 (2023-12-16)
- added more tests
- added libcaer, libcaer_cmp and improved README
- make decoder factory geometry aware, use new ros1 ci
- use new CI rules
- Contributors: Bernd Pfrommer
1.1.1 (2023-09-19)
- add dependency on class_loader
- Contributors: Bernd Pfrommer
1.1.0 (2023-08-29)
- initial release
- Contributors: Bernd Pfrommer
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Name | Deps |
---|---|
event_camera_py | |
event_camera_renderer |
Launch files
Messages
Services
Plugins
Recent questions tagged event_camera_codecs at Robotics Stack Exchange
![]() |
event_camera_codecs package from event_camera_codecs repoevent_camera_codecs |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 1.2.4 |
License | Apache2 |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros-event-camera/event_camera_codecs.git |
VCS Type | git |
VCS Version | iron |
Last Updated | 2024-02-04 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Bernd Pfrommer
Authors
event_camera_codecs
This repository holds code for decoding event_camera_msgs. It builds under both ROS1 and ROS2. You can use this decoder from python via the event_camera_py repository.
Supported platforms
Currently tested on:
- ROS1: Ubuntu 20.04 on Noetic
- ROS2: Ubuntu 22.04 on Humble, Iron, Rolling
How to build
Create a workspace, clone this repo, and use vcs
to pull in the remaining dependencies:
pkg=event_camera_codecs
mkdir -p ~/$pkg/src
cd ~/ws
git clone https://github.com/ros-event-camera/${pkg}.git src/${pkg}
cd src
vcs import < ${pkg}/${pkg}.repos
cd ..
configure and build on ROS1:
catkin config -DCMAKE_BUILD_TYPE=RelWithDebInfo # (optionally add -DCMAKE_EXPORT_COMPILE_COMMANDS=1)
catkin build
configure and build on ROS2:
cd ~/ws
colcon build --symlink-install --cmake-args -DCMAKE_BUILD_TYPE=RelWithDebInfo # (optionally add -DCMAKE_EXPORT_COMPILE_COMMANDS=1)
To also build the unit tests, add the cmake argument -DEVENT_CAMERA_CODECS_BUILD_TESTS=ON
.
API example
```cpp #include <event_camera_codecs/decoder.h> #include <event_camera_codecs/decoder_factory.h>
using event_camera_codecs::EventPacket;
class MyProcessor : public event_camera_codecs::EventProcessor { public: inline void eventCD(uint64_t, uint16_t ex, uint16_t ey, uint8_t polarity) override { // do useful stuff here } void eventExtTrigger(uint64_t, uint8_t, uint8_t) override {} void finished() override{}; // called after no more events decoded in this packet void rawData(const char *, size_t) override{}; // passthrough of raw data };
MyProcessor processor;
// the decoder factory method is templated on the event processor // to permit inlining of methods like eventCD() above.
event_camera_codecs::DecoderFactory<EventPacket, MyProcessor> decoderFactory;
// to get callbacks into MyProcessor, feed the message buffer // into the decoder like so
void eventMsg(const event_camera_codecs::EventPacketConstSharedPtr & msg) { // will create a new decoder on first call, from then on returns existing one auto decoder = decoderFactory.getInstance(msg); if (!decoder) { // msg->encoding was invalid return; } // the decode() will trigger callbacks to processor decoder->decode(msg, &processor); }
/* To synchronize with frame based sensors it is useful to play back until a frame boundary is reached. The interface decodeUntil() is provided for this purpose. Do NOT use decode() and decodeUntil() on the same decoder! In the sample code belowframeTimes is an ordered queue of frame times. */
void eventMsg2(const event_camera_codecs::EventPacketConstSharedPtr & msg) { auto decoder = decoderFactory.getInstance(msg); uint64_t nextTime{0}; // The loop will exit when all events in msg have been processed // or there are no more frame times available decoder->setTimeBase(msg->time_base); while (!frameTimes.empty() && decoder->decodeUntil(msg, &processor, frameTimes.front(), &nextTime)) { // use loop in case multiple frames fit inbetween two events
File truncated at 100 lines see the full file
Changelog for package event_camera_codecs
1.2.4 (2024-02-04)
- added hasSensorTimeSinceEpoch() and getTimeMultiplier() This is to support libcaer event python processing
- added newInstance(msg) methods
- Contributors: Bernd Pfrommer
1.2.3 (2023-12-16)
- added more tests
- added libcaer_cmp, libcaer and improved README
- make decoder factory geometry aware, use new ros1 ci
- use new CI rules
- Contributors: Bernd Pfrommer
1.2.2 (2023-11-11)
- first release
- Contributors: Bernd Pfrommer
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Name | Deps |
---|---|
event_camera_renderer |
Launch files
Messages
Services
Plugins
Recent questions tagged event_camera_codecs at Robotics Stack Exchange
![]() |
event_camera_codecs package from event_camera_codecs repoevent_camera_codecs |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 1.1.3 |
License | Apache2 |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros-event-camera/event_camera_codecs.git |
VCS Type | git |
VCS Version | humble |
Last Updated | 2024-02-04 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Bernd Pfrommer
Authors
event_camera_codecs
This repository holds code for decoding event_camera_msgs. It builds under both ROS1 and ROS2. You can use this decoder from python via the event_camera_py repository.
Supported platforms
Currently tested on:
- ROS1: Ubuntu 20.04 on Noetic
- ROS2: Ubuntu 22.04 on Humble, Iron, Rolling
How to build
Create a workspace, clone this repo, and use vcs
to pull in the remaining dependencies:
pkg=event_camera_codecs
mkdir -p ~/$pkg/src
cd ~/ws
git clone https://github.com/ros-event-camera/${pkg}.git src/${pkg}
cd src
vcs import < ${pkg}/${pkg}.repos
cd ..
configure and build on ROS1:
catkin config -DCMAKE_BUILD_TYPE=RelWithDebInfo # (optionally add -DCMAKE_EXPORT_COMPILE_COMMANDS=1)
catkin build
configure and build on ROS2:
cd ~/ws
colcon build --symlink-install --cmake-args -DCMAKE_BUILD_TYPE=RelWithDebInfo # (optionally add -DCMAKE_EXPORT_COMPILE_COMMANDS=1)
To also build the unit tests, add the cmake argument -DEVENT_CAMERA_CODECS_BUILD_TESTS=ON
.
API example
```cpp #include <event_camera_codecs/decoder.h> #include <event_camera_codecs/decoder_factory.h>
using event_camera_codecs::EventPacket;
class MyProcessor : public event_camera_codecs::EventProcessor { public: inline void eventCD(uint64_t, uint16_t ex, uint16_t ey, uint8_t polarity) override { // do useful stuff here } void eventExtTrigger(uint64_t, uint8_t, uint8_t) override {} void finished() override{}; // called after no more events decoded in this packet void rawData(const char *, size_t) override{}; // passthrough of raw data };
MyProcessor processor;
// the decoder factory method is templated on the event processor // to permit inlining of methods like eventCD() above.
event_camera_codecs::DecoderFactory<EventPacket, MyProcessor> decoderFactory;
// to get callbacks into MyProcessor, feed the message buffer // into the decoder like so
void eventMsg(const event_camera_codecs::EventPacketConstSharedPtr & msg) { // will create a new decoder on first call, from then on returns existing one auto decoder = decoderFactory.getInstance(msg); if (!decoder) { // msg->encoding was invalid return; } // the decode() will trigger callbacks to processor decoder->decode(msg, &processor); }
/* To synchronize with frame based sensors it is useful to play back until a frame boundary is reached. The interface decodeUntil() is provided for this purpose. Do NOT use decode() and decodeUntil() on the same decoder! In the sample code belowframeTimes is an ordered queue of frame times. */
void eventMsg2(const event_camera_codecs::EventPacketConstSharedPtr & msg) { auto decoder = decoderFactory.getInstance(msg); uint64_t nextTime{0}; // The loop will exit when all events in msg have been processed // or there are no more frame times available decoder->setTimeBase(msg->time_base); while (!frameTimes.empty() && decoder->decodeUntil(msg, &processor, frameTimes.front(), &nextTime)) { // use loop in case multiple frames fit inbetween two events
File truncated at 100 lines see the full file
Changelog for package event_camera_codecs
1.1.3 (2024-02-04)
- added hasSensorTimeSinceEpoch() and getTimeMultiplier() This is to support libcaer event python processing
- added newInstance(msg) methods
- Contributors: Bernd Pfrommer
1.1.2 (2023-12-16)
- added more tests
- added libcaer, libcaer_cmp and improved README
- make decoder factory geometry aware, use new ros1 ci
- use new CI rules
- Contributors: Bernd Pfrommer
1.1.1 (2023-09-19)
- add dependency on class_loader
- Contributors: Bernd Pfrommer
1.1.0 (2023-08-29)
- initial release
- Contributors: Bernd Pfrommer
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Name | Deps |
---|---|
event_camera_py | |
event_camera_renderer |
Launch files
Messages
Services
Plugins
Recent questions tagged event_camera_codecs at Robotics Stack Exchange
![]() |
event_camera_codecs package from event_camera_codecs repoevent_camera_codecs |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 1.1.3 |
License | Apache2 |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros-event-camera/event_camera_codecs.git |
VCS Type | git |
VCS Version | humble |
Last Updated | 2024-02-04 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Bernd Pfrommer
Authors
event_camera_codecs
This repository holds code for decoding event_camera_msgs. It builds under both ROS1 and ROS2. You can use this decoder from python via the event_camera_py repository.
Supported platforms
Currently tested on:
- ROS1: Ubuntu 20.04 on Noetic
- ROS2: Ubuntu 22.04 on Humble, Iron, Rolling
How to build
Create a workspace, clone this repo, and use vcs
to pull in the remaining dependencies:
pkg=event_camera_codecs
mkdir -p ~/$pkg/src
cd ~/ws
git clone https://github.com/ros-event-camera/${pkg}.git src/${pkg}
cd src
vcs import < ${pkg}/${pkg}.repos
cd ..
configure and build on ROS1:
catkin config -DCMAKE_BUILD_TYPE=RelWithDebInfo # (optionally add -DCMAKE_EXPORT_COMPILE_COMMANDS=1)
catkin build
configure and build on ROS2:
cd ~/ws
colcon build --symlink-install --cmake-args -DCMAKE_BUILD_TYPE=RelWithDebInfo # (optionally add -DCMAKE_EXPORT_COMPILE_COMMANDS=1)
To also build the unit tests, add the cmake argument -DEVENT_CAMERA_CODECS_BUILD_TESTS=ON
.
API example
```cpp #include <event_camera_codecs/decoder.h> #include <event_camera_codecs/decoder_factory.h>
using event_camera_codecs::EventPacket;
class MyProcessor : public event_camera_codecs::EventProcessor { public: inline void eventCD(uint64_t, uint16_t ex, uint16_t ey, uint8_t polarity) override { // do useful stuff here } void eventExtTrigger(uint64_t, uint8_t, uint8_t) override {} void finished() override{}; // called after no more events decoded in this packet void rawData(const char *, size_t) override{}; // passthrough of raw data };
MyProcessor processor;
// the decoder factory method is templated on the event processor // to permit inlining of methods like eventCD() above.
event_camera_codecs::DecoderFactory<EventPacket, MyProcessor> decoderFactory;
// to get callbacks into MyProcessor, feed the message buffer // into the decoder like so
void eventMsg(const event_camera_codecs::EventPacketConstSharedPtr & msg) { // will create a new decoder on first call, from then on returns existing one auto decoder = decoderFactory.getInstance(msg); if (!decoder) { // msg->encoding was invalid return; } // the decode() will trigger callbacks to processor decoder->decode(msg, &processor); }
/* To synchronize with frame based sensors it is useful to play back until a frame boundary is reached. The interface decodeUntil() is provided for this purpose. Do NOT use decode() and decodeUntil() on the same decoder! In the sample code belowframeTimes is an ordered queue of frame times. */
void eventMsg2(const event_camera_codecs::EventPacketConstSharedPtr & msg) { auto decoder = decoderFactory.getInstance(msg); uint64_t nextTime{0}; // The loop will exit when all events in msg have been processed // or there are no more frame times available decoder->setTimeBase(msg->time_base); while (!frameTimes.empty() && decoder->decodeUntil(msg, &processor, frameTimes.front(), &nextTime)) { // use loop in case multiple frames fit inbetween two events
File truncated at 100 lines see the full file
Changelog for package event_camera_codecs
1.1.3 (2024-02-04)
- added hasSensorTimeSinceEpoch() and getTimeMultiplier() This is to support libcaer event python processing
- added newInstance(msg) methods
- Contributors: Bernd Pfrommer
1.1.2 (2023-12-16)
- added more tests
- added libcaer, libcaer_cmp and improved README
- make decoder factory geometry aware, use new ros1 ci
- use new CI rules
- Contributors: Bernd Pfrommer
1.1.1 (2023-09-19)
- add dependency on class_loader
- Contributors: Bernd Pfrommer
1.1.0 (2023-08-29)
- initial release
- Contributors: Bernd Pfrommer
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Name | Deps |
---|---|
event_camera_py | |
event_camera_renderer |
Launch files
Messages
Services
Plugins
Recent questions tagged event_camera_codecs at Robotics Stack Exchange
![]() |
event_camera_codecs package from event_camera_codecs repoevent_camera_codecs |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 1.1.3 |
License | Apache2 |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros-event-camera/event_camera_codecs.git |
VCS Type | git |
VCS Version | humble |
Last Updated | 2024-02-04 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Bernd Pfrommer
Authors
event_camera_codecs
This repository holds code for decoding event_camera_msgs. It builds under both ROS1 and ROS2. You can use this decoder from python via the event_camera_py repository.
Supported platforms
Currently tested on:
- ROS1: Ubuntu 20.04 on Noetic
- ROS2: Ubuntu 22.04 on Humble, Iron, Rolling
How to build
Create a workspace, clone this repo, and use vcs
to pull in the remaining dependencies:
pkg=event_camera_codecs
mkdir -p ~/$pkg/src
cd ~/ws
git clone https://github.com/ros-event-camera/${pkg}.git src/${pkg}
cd src
vcs import < ${pkg}/${pkg}.repos
cd ..
configure and build on ROS1:
catkin config -DCMAKE_BUILD_TYPE=RelWithDebInfo # (optionally add -DCMAKE_EXPORT_COMPILE_COMMANDS=1)
catkin build
configure and build on ROS2:
cd ~/ws
colcon build --symlink-install --cmake-args -DCMAKE_BUILD_TYPE=RelWithDebInfo # (optionally add -DCMAKE_EXPORT_COMPILE_COMMANDS=1)
To also build the unit tests, add the cmake argument -DEVENT_CAMERA_CODECS_BUILD_TESTS=ON
.
API example
```cpp #include <event_camera_codecs/decoder.h> #include <event_camera_codecs/decoder_factory.h>
using event_camera_codecs::EventPacket;
class MyProcessor : public event_camera_codecs::EventProcessor { public: inline void eventCD(uint64_t, uint16_t ex, uint16_t ey, uint8_t polarity) override { // do useful stuff here } void eventExtTrigger(uint64_t, uint8_t, uint8_t) override {} void finished() override{}; // called after no more events decoded in this packet void rawData(const char *, size_t) override{}; // passthrough of raw data };
MyProcessor processor;
// the decoder factory method is templated on the event processor // to permit inlining of methods like eventCD() above.
event_camera_codecs::DecoderFactory<EventPacket, MyProcessor> decoderFactory;
// to get callbacks into MyProcessor, feed the message buffer // into the decoder like so
void eventMsg(const event_camera_codecs::EventPacketConstSharedPtr & msg) { // will create a new decoder on first call, from then on returns existing one auto decoder = decoderFactory.getInstance(msg); if (!decoder) { // msg->encoding was invalid return; } // the decode() will trigger callbacks to processor decoder->decode(msg, &processor); }
/* To synchronize with frame based sensors it is useful to play back until a frame boundary is reached. The interface decodeUntil() is provided for this purpose. Do NOT use decode() and decodeUntil() on the same decoder! In the sample code belowframeTimes is an ordered queue of frame times. */
void eventMsg2(const event_camera_codecs::EventPacketConstSharedPtr & msg) { auto decoder = decoderFactory.getInstance(msg); uint64_t nextTime{0}; // The loop will exit when all events in msg have been processed // or there are no more frame times available decoder->setTimeBase(msg->time_base); while (!frameTimes.empty() && decoder->decodeUntil(msg, &processor, frameTimes.front(), &nextTime)) { // use loop in case multiple frames fit inbetween two events
File truncated at 100 lines see the full file
Changelog for package event_camera_codecs
1.1.3 (2024-02-04)
- added hasSensorTimeSinceEpoch() and getTimeMultiplier() This is to support libcaer event python processing
- added newInstance(msg) methods
- Contributors: Bernd Pfrommer
1.1.2 (2023-12-16)
- added more tests
- added libcaer, libcaer_cmp and improved README
- make decoder factory geometry aware, use new ros1 ci
- use new CI rules
- Contributors: Bernd Pfrommer
1.1.1 (2023-09-19)
- add dependency on class_loader
- Contributors: Bernd Pfrommer
1.1.0 (2023-08-29)
- initial release
- Contributors: Bernd Pfrommer
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Name | Deps |
---|---|
event_camera_py | |
event_camera_renderer |
Launch files
Messages
Services
Plugins
Recent questions tagged event_camera_codecs at Robotics Stack Exchange
![]() |
event_camera_codecs package from event_camera_codecs repoevent_camera_codecs |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 1.1.3 |
License | Apache2 |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros-event-camera/event_camera_codecs.git |
VCS Type | git |
VCS Version | humble |
Last Updated | 2024-02-04 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Bernd Pfrommer
Authors
event_camera_codecs
This repository holds code for decoding event_camera_msgs. It builds under both ROS1 and ROS2. You can use this decoder from python via the event_camera_py repository.
Supported platforms
Currently tested on:
- ROS1: Ubuntu 20.04 on Noetic
- ROS2: Ubuntu 22.04 on Humble, Iron, Rolling
How to build
Create a workspace, clone this repo, and use vcs
to pull in the remaining dependencies:
pkg=event_camera_codecs
mkdir -p ~/$pkg/src
cd ~/ws
git clone https://github.com/ros-event-camera/${pkg}.git src/${pkg}
cd src
vcs import < ${pkg}/${pkg}.repos
cd ..
configure and build on ROS1:
catkin config -DCMAKE_BUILD_TYPE=RelWithDebInfo # (optionally add -DCMAKE_EXPORT_COMPILE_COMMANDS=1)
catkin build
configure and build on ROS2:
cd ~/ws
colcon build --symlink-install --cmake-args -DCMAKE_BUILD_TYPE=RelWithDebInfo # (optionally add -DCMAKE_EXPORT_COMPILE_COMMANDS=1)
To also build the unit tests, add the cmake argument -DEVENT_CAMERA_CODECS_BUILD_TESTS=ON
.
API example
```cpp #include <event_camera_codecs/decoder.h> #include <event_camera_codecs/decoder_factory.h>
using event_camera_codecs::EventPacket;
class MyProcessor : public event_camera_codecs::EventProcessor { public: inline void eventCD(uint64_t, uint16_t ex, uint16_t ey, uint8_t polarity) override { // do useful stuff here } void eventExtTrigger(uint64_t, uint8_t, uint8_t) override {} void finished() override{}; // called after no more events decoded in this packet void rawData(const char *, size_t) override{}; // passthrough of raw data };
MyProcessor processor;
// the decoder factory method is templated on the event processor // to permit inlining of methods like eventCD() above.
event_camera_codecs::DecoderFactory<EventPacket, MyProcessor> decoderFactory;
// to get callbacks into MyProcessor, feed the message buffer // into the decoder like so
void eventMsg(const event_camera_codecs::EventPacketConstSharedPtr & msg) { // will create a new decoder on first call, from then on returns existing one auto decoder = decoderFactory.getInstance(msg); if (!decoder) { // msg->encoding was invalid return; } // the decode() will trigger callbacks to processor decoder->decode(msg, &processor); }
/* To synchronize with frame based sensors it is useful to play back until a frame boundary is reached. The interface decodeUntil() is provided for this purpose. Do NOT use decode() and decodeUntil() on the same decoder! In the sample code belowframeTimes is an ordered queue of frame times. */
void eventMsg2(const event_camera_codecs::EventPacketConstSharedPtr & msg) { auto decoder = decoderFactory.getInstance(msg); uint64_t nextTime{0}; // The loop will exit when all events in msg have been processed // or there are no more frame times available decoder->setTimeBase(msg->time_base); while (!frameTimes.empty() && decoder->decodeUntil(msg, &processor, frameTimes.front(), &nextTime)) { // use loop in case multiple frames fit inbetween two events
File truncated at 100 lines see the full file
Changelog for package event_camera_codecs
1.1.3 (2024-02-04)
- added hasSensorTimeSinceEpoch() and getTimeMultiplier() This is to support libcaer event python processing
- added newInstance(msg) methods
- Contributors: Bernd Pfrommer
1.1.2 (2023-12-16)
- added more tests
- added libcaer, libcaer_cmp and improved README
- make decoder factory geometry aware, use new ros1 ci
- use new CI rules
- Contributors: Bernd Pfrommer
1.1.1 (2023-09-19)
- add dependency on class_loader
- Contributors: Bernd Pfrommer
1.1.0 (2023-08-29)
- initial release
- Contributors: Bernd Pfrommer
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Name | Deps |
---|---|
event_camera_py | |
event_camera_renderer |
Launch files
Messages
Services
Plugins
Recent questions tagged event_camera_codecs at Robotics Stack Exchange
![]() |
event_camera_codecs package from event_camera_codecs repoevent_camera_codecs |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 1.1.3 |
License | Apache2 |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros-event-camera/event_camera_codecs.git |
VCS Type | git |
VCS Version | humble |
Last Updated | 2024-02-04 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Bernd Pfrommer
Authors
event_camera_codecs
This repository holds code for decoding event_camera_msgs. It builds under both ROS1 and ROS2. You can use this decoder from python via the event_camera_py repository.
Supported platforms
Currently tested on:
- ROS1: Ubuntu 20.04 on Noetic
- ROS2: Ubuntu 22.04 on Humble, Iron, Rolling
How to build
Create a workspace, clone this repo, and use vcs
to pull in the remaining dependencies:
pkg=event_camera_codecs
mkdir -p ~/$pkg/src
cd ~/ws
git clone https://github.com/ros-event-camera/${pkg}.git src/${pkg}
cd src
vcs import < ${pkg}/${pkg}.repos
cd ..
configure and build on ROS1:
catkin config -DCMAKE_BUILD_TYPE=RelWithDebInfo # (optionally add -DCMAKE_EXPORT_COMPILE_COMMANDS=1)
catkin build
configure and build on ROS2:
cd ~/ws
colcon build --symlink-install --cmake-args -DCMAKE_BUILD_TYPE=RelWithDebInfo # (optionally add -DCMAKE_EXPORT_COMPILE_COMMANDS=1)
To also build the unit tests, add the cmake argument -DEVENT_CAMERA_CODECS_BUILD_TESTS=ON
.
API example
```cpp #include <event_camera_codecs/decoder.h> #include <event_camera_codecs/decoder_factory.h>
using event_camera_codecs::EventPacket;
class MyProcessor : public event_camera_codecs::EventProcessor { public: inline void eventCD(uint64_t, uint16_t ex, uint16_t ey, uint8_t polarity) override { // do useful stuff here } void eventExtTrigger(uint64_t, uint8_t, uint8_t) override {} void finished() override{}; // called after no more events decoded in this packet void rawData(const char *, size_t) override{}; // passthrough of raw data };
MyProcessor processor;
// the decoder factory method is templated on the event processor // to permit inlining of methods like eventCD() above.
event_camera_codecs::DecoderFactory<EventPacket, MyProcessor> decoderFactory;
// to get callbacks into MyProcessor, feed the message buffer // into the decoder like so
void eventMsg(const event_camera_codecs::EventPacketConstSharedPtr & msg) { // will create a new decoder on first call, from then on returns existing one auto decoder = decoderFactory.getInstance(msg); if (!decoder) { // msg->encoding was invalid return; } // the decode() will trigger callbacks to processor decoder->decode(msg, &processor); }
/* To synchronize with frame based sensors it is useful to play back until a frame boundary is reached. The interface decodeUntil() is provided for this purpose. Do NOT use decode() and decodeUntil() on the same decoder! In the sample code belowframeTimes is an ordered queue of frame times. */
void eventMsg2(const event_camera_codecs::EventPacketConstSharedPtr & msg) { auto decoder = decoderFactory.getInstance(msg); uint64_t nextTime{0}; // The loop will exit when all events in msg have been processed // or there are no more frame times available decoder->setTimeBase(msg->time_base); while (!frameTimes.empty() && decoder->decodeUntil(msg, &processor, frameTimes.front(), &nextTime)) { // use loop in case multiple frames fit inbetween two events
File truncated at 100 lines see the full file
Changelog for package event_camera_codecs
1.1.3 (2024-02-04)
- added hasSensorTimeSinceEpoch() and getTimeMultiplier() This is to support libcaer event python processing
- added newInstance(msg) methods
- Contributors: Bernd Pfrommer
1.1.2 (2023-12-16)
- added more tests
- added libcaer, libcaer_cmp and improved README
- make decoder factory geometry aware, use new ros1 ci
- use new CI rules
- Contributors: Bernd Pfrommer
1.1.1 (2023-09-19)
- add dependency on class_loader
- Contributors: Bernd Pfrommer
1.1.0 (2023-08-29)
- initial release
- Contributors: Bernd Pfrommer
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Name | Deps |
---|---|
event_camera_py | |
event_camera_renderer |
Launch files
Messages
Services
Plugins
Recent questions tagged event_camera_codecs at Robotics Stack Exchange
![]() |
event_camera_codecs package from event_camera_codecs repoevent_camera_codecs |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 1.1.3 |
License | Apache2 |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros-event-camera/event_camera_codecs.git |
VCS Type | git |
VCS Version | humble |
Last Updated | 2024-02-04 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Bernd Pfrommer
Authors
event_camera_codecs
This repository holds code for decoding event_camera_msgs. It builds under both ROS1 and ROS2. You can use this decoder from python via the event_camera_py repository.
Supported platforms
Currently tested on:
- ROS1: Ubuntu 20.04 on Noetic
- ROS2: Ubuntu 22.04 on Humble, Iron, Rolling
How to build
Create a workspace, clone this repo, and use vcs
to pull in the remaining dependencies:
pkg=event_camera_codecs
mkdir -p ~/$pkg/src
cd ~/ws
git clone https://github.com/ros-event-camera/${pkg}.git src/${pkg}
cd src
vcs import < ${pkg}/${pkg}.repos
cd ..
configure and build on ROS1:
catkin config -DCMAKE_BUILD_TYPE=RelWithDebInfo # (optionally add -DCMAKE_EXPORT_COMPILE_COMMANDS=1)
catkin build
configure and build on ROS2:
cd ~/ws
colcon build --symlink-install --cmake-args -DCMAKE_BUILD_TYPE=RelWithDebInfo # (optionally add -DCMAKE_EXPORT_COMPILE_COMMANDS=1)
To also build the unit tests, add the cmake argument -DEVENT_CAMERA_CODECS_BUILD_TESTS=ON
.
API example
```cpp #include <event_camera_codecs/decoder.h> #include <event_camera_codecs/decoder_factory.h>
using event_camera_codecs::EventPacket;
class MyProcessor : public event_camera_codecs::EventProcessor { public: inline void eventCD(uint64_t, uint16_t ex, uint16_t ey, uint8_t polarity) override { // do useful stuff here } void eventExtTrigger(uint64_t, uint8_t, uint8_t) override {} void finished() override{}; // called after no more events decoded in this packet void rawData(const char *, size_t) override{}; // passthrough of raw data };
MyProcessor processor;
// the decoder factory method is templated on the event processor // to permit inlining of methods like eventCD() above.
event_camera_codecs::DecoderFactory<EventPacket, MyProcessor> decoderFactory;
// to get callbacks into MyProcessor, feed the message buffer // into the decoder like so
void eventMsg(const event_camera_codecs::EventPacketConstSharedPtr & msg) { // will create a new decoder on first call, from then on returns existing one auto decoder = decoderFactory.getInstance(msg); if (!decoder) { // msg->encoding was invalid return; } // the decode() will trigger callbacks to processor decoder->decode(msg, &processor); }
/* To synchronize with frame based sensors it is useful to play back until a frame boundary is reached. The interface decodeUntil() is provided for this purpose. Do NOT use decode() and decodeUntil() on the same decoder! In the sample code belowframeTimes is an ordered queue of frame times. */
void eventMsg2(const event_camera_codecs::EventPacketConstSharedPtr & msg) { auto decoder = decoderFactory.getInstance(msg); uint64_t nextTime{0}; // The loop will exit when all events in msg have been processed // or there are no more frame times available decoder->setTimeBase(msg->time_base); while (!frameTimes.empty() && decoder->decodeUntil(msg, &processor, frameTimes.front(), &nextTime)) { // use loop in case multiple frames fit inbetween two events
File truncated at 100 lines see the full file
Changelog for package event_camera_codecs
1.1.3 (2024-02-04)
- added hasSensorTimeSinceEpoch() and getTimeMultiplier() This is to support libcaer event python processing
- added newInstance(msg) methods
- Contributors: Bernd Pfrommer
1.1.2 (2023-12-16)
- added more tests
- added libcaer, libcaer_cmp and improved README
- make decoder factory geometry aware, use new ros1 ci
- use new CI rules
- Contributors: Bernd Pfrommer
1.1.1 (2023-09-19)
- add dependency on class_loader
- Contributors: Bernd Pfrommer
1.1.0 (2023-08-29)
- initial release
- Contributors: Bernd Pfrommer
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Name | Deps |
---|---|
event_camera_py | |
event_camera_renderer |
Launch files
Messages
Services
Plugins
Recent questions tagged event_camera_codecs at Robotics Stack Exchange
![]() |
event_camera_codecs package from event_camera_codecs repoevent_camera_codecs |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 1.1.3 |
License | Apache2 |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros-event-camera/event_camera_codecs.git |
VCS Type | git |
VCS Version | humble |
Last Updated | 2024-02-04 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Bernd Pfrommer
Authors
event_camera_codecs
This repository holds code for decoding event_camera_msgs. It builds under both ROS1 and ROS2. You can use this decoder from python via the event_camera_py repository.
Supported platforms
Currently tested on:
- ROS1: Ubuntu 20.04 on Noetic
- ROS2: Ubuntu 22.04 on Humble, Iron, Rolling
How to build
Create a workspace, clone this repo, and use vcs
to pull in the remaining dependencies:
pkg=event_camera_codecs
mkdir -p ~/$pkg/src
cd ~/ws
git clone https://github.com/ros-event-camera/${pkg}.git src/${pkg}
cd src
vcs import < ${pkg}/${pkg}.repos
cd ..
configure and build on ROS1:
catkin config -DCMAKE_BUILD_TYPE=RelWithDebInfo # (optionally add -DCMAKE_EXPORT_COMPILE_COMMANDS=1)
catkin build
configure and build on ROS2:
cd ~/ws
colcon build --symlink-install --cmake-args -DCMAKE_BUILD_TYPE=RelWithDebInfo # (optionally add -DCMAKE_EXPORT_COMPILE_COMMANDS=1)
To also build the unit tests, add the cmake argument -DEVENT_CAMERA_CODECS_BUILD_TESTS=ON
.
API example
```cpp #include <event_camera_codecs/decoder.h> #include <event_camera_codecs/decoder_factory.h>
using event_camera_codecs::EventPacket;
class MyProcessor : public event_camera_codecs::EventProcessor { public: inline void eventCD(uint64_t, uint16_t ex, uint16_t ey, uint8_t polarity) override { // do useful stuff here } void eventExtTrigger(uint64_t, uint8_t, uint8_t) override {} void finished() override{}; // called after no more events decoded in this packet void rawData(const char *, size_t) override{}; // passthrough of raw data };
MyProcessor processor;
// the decoder factory method is templated on the event processor // to permit inlining of methods like eventCD() above.
event_camera_codecs::DecoderFactory<EventPacket, MyProcessor> decoderFactory;
// to get callbacks into MyProcessor, feed the message buffer // into the decoder like so
void eventMsg(const event_camera_codecs::EventPacketConstSharedPtr & msg) { // will create a new decoder on first call, from then on returns existing one auto decoder = decoderFactory.getInstance(msg); if (!decoder) { // msg->encoding was invalid return; } // the decode() will trigger callbacks to processor decoder->decode(msg, &processor); }
/* To synchronize with frame based sensors it is useful to play back until a frame boundary is reached. The interface decodeUntil() is provided for this purpose. Do NOT use decode() and decodeUntil() on the same decoder! In the sample code belowframeTimes is an ordered queue of frame times. */
void eventMsg2(const event_camera_codecs::EventPacketConstSharedPtr & msg) { auto decoder = decoderFactory.getInstance(msg); uint64_t nextTime{0}; // The loop will exit when all events in msg have been processed // or there are no more frame times available decoder->setTimeBase(msg->time_base); while (!frameTimes.empty() && decoder->decodeUntil(msg, &processor, frameTimes.front(), &nextTime)) { // use loop in case multiple frames fit inbetween two events
File truncated at 100 lines see the full file
Changelog for package event_camera_codecs
1.1.3 (2024-02-04)
- added hasSensorTimeSinceEpoch() and getTimeMultiplier() This is to support libcaer event python processing
- added newInstance(msg) methods
- Contributors: Bernd Pfrommer
1.1.2 (2023-12-16)
- added more tests
- added libcaer, libcaer_cmp and improved README
- make decoder factory geometry aware, use new ros1 ci
- use new CI rules
- Contributors: Bernd Pfrommer
1.1.1 (2023-09-19)
- add dependency on class_loader
- Contributors: Bernd Pfrommer
1.1.0 (2023-08-29)
- initial release
- Contributors: Bernd Pfrommer
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Name | Deps |
---|---|
event_camera_py | |
event_camera_renderer |