Inquiry About Fetching Event Data from GENX320 with OpenMV4-H7-Plus

Hi, you need to recompile the firmware with this disabled (e.g. set to 0):

The camera driver will then receive events from the event camera and process them to create a frame here:

You can find the struct fields for the event here:

See the TS value.

We do not recommend to do this though. It’s incredibly taxing on the CPU to generate an image from random access events.

If you are not interested in processing the event image as an image but processing events as they come in… you are welcome to modify the firmware as you like to do whatever you want. Note that the camera driver will buffer 25600 events before processing them. To change the buffer depth will require serious modifications of the frame capture DMA system which is completely non-trivial.

Instead, we recommend just setting the frame rate you want. Which defines the integration time as 1/fps, and then processing the full frames. The H7 Plus can run up to 375 Hz which should be more than enough to have very good temporal resolution.