You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a question about the package and more in general on the system adopted in pycaer.
I am trying to test your package, for example I want to read the info from the DVS128 device using the following instructions:
from pycaer.dvs128.controller import Controller
from pycaer.dvs128.consts import *
c = Controller()
c.open_device()
info = c._libcaer.caerDVS128InfoGet()
info should be a pointer to a c "struct caer_dvs128_info".. how is this parsed? I get an integer type...
In [15]: type(info)
Out[15]: int
In [16]: info
Out[16]: 1470626704
In substance, I do not understand how pointers (to libcaer structs) are handled here.
I think I need a bit of explanation...
Thank you for sharing the code!
Federico
The text was updated successfully, but these errors were encountered:
I have a question about the package and more in general on the system adopted in pycaer.
I am trying to test your package, for example I want to read the info from the DVS128 device using the following instructions:
from pycaer.dvs128.controller import Controller
from pycaer.dvs128.consts import *
c = Controller()
c.open_device()
info = c._libcaer.caerDVS128InfoGet()
info should be a pointer to a c "struct caer_dvs128_info".. how is this parsed? I get an integer type...
In [15]: type(info)
Out[15]: int
In [16]: info
Out[16]: 1470626704
In substance, I do not understand how pointers (to libcaer structs) are handled here.
I think I need a bit of explanation...
Thank you for sharing the code!
Federico
The text was updated successfully, but these errors were encountered: