DvsenseDriver  1.0.3
The SDK for dvsense products.
Loading...
Searching...
No Matches
Camera Synchronization

Camera synchronization features include:

  1. Frame camera and event camera synchronization
  2. Synchronization between multiple event cameras

Event Camera Synchronization Electrical Interface

Pin Signal Description Wire Color
1 DC5V_OUT Camera 5V output power Red
2 TRIG_IN Optocoupler trigger input (optically isolated) Yellow
3 GPIO_INOUT Configurable as input or output Green
4 TRIG_OUT Optocoupler trigger output (optically isolated) White
5 TRIG_GND Optocoupler trigger signal ground Brown
6 GND Camera power ground Black

Interface Diagram:

image-20250320170718918

Frame Camera and Event Camera Synchronization

Use the frame camera as the master device, connecting the synchronization signal of the frame camera to the Trigger in interface of the event camera.

In the SDK, enable the Trigger in event callback function by calling the Trigger in related API :

#include "DvsenseDriver/camera/DvsCamera.hpp"
std::shared_ptr<dvsense::CameraTool> trigger_in_tool = device_->getTool(dvsense::ToolType::TOOL_TRIGGER_IN);
bool ret = trigger_in_tool->setParam("enable", true);