Hi,
I’m using a GENX320 event camera sensor and a RT1062 board. I got some questions and want to get some comments:
(1) I set the frame rate to be 200fps - sensor.set_framerate(200), but the real fps is around 160fps - print(clock.fps()). And setting framerate to higher numbers won’t further increase the real frame rate.
I used the firmware shared in this topic
(2) Can I get higher fps using other boards?
(3) I modified the firmware to fetch the event raw data by setting "OMV_GENX320_EHC_ENABLE " to be “0”. I’m wondering what is the integral time for each pixel? Which saving file type should I choose after recording in the IDE if I want to get the event value (x,y,t)?
Many thanks
Hi, yes, the H7 Plus can go higher than the RT1062 at the moment.
(3) I modified the firmware to fetch the event raw data by setting "OMV_GENX320_EHC_ENABLE " to be “0”. I’m wondering what is the integral time for each pixel? Which saving file type should I choose after recording in the IDE if I want to get the event value (x,y,t)?
When you turn off OMV_GENX320_EHC_ENABLE then there’s no integral time for a pixel. You are just getting events as they come from the camera. Any increase or decrease in charge generates an event.
We purposely don’t use this mode as it is very difficult to handle the shear number of events. Histogram mode with a fixed integration time is much more usable. You get a fixed 320x320 image that is captured via hardware and is ready to use with very little processor overhead.