-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OverflowError: Python integer 317963872 out of bounds for uint8 #43
Comments
Hello, I am unable to reproduce your failure with the various DAT files I used. About the change, self._ev_size should contain the number of byte of an event. Typically this value should be 8 (see our doc page about DAT format: https://docs.prophesee.ai/stable/data/file_formats/dat.html#binary-event-type-and-size) so uint8 should be enough. Maybe the failure you are hitting is due to a corrupted file. Best, |
Hello, Thank you for sharing your screenshots. Regarding the first error, I couldn’t identify the command you used, so it’s difficult to determine the exact cause. It seems that an invalid argument might have been passed. For the second issue, I tested some DAT files from the 1Mpx dataset again today but couldn’t reproduce the error you mentioned. I tried multiple DAT files, though not specifically the one you referenced. If you’ve identified a fix in the code that resolves the issue, please feel free to share it with us. We’d be happy to review it and consider integrating it into our solution. In the meantime, could you provide more details about what you’re trying to achieve? With a better understanding, we might be able to suggest alternative approaches or tools to address your needs. Best, |
Hello. When I run the visualization commands and instructions using Python, the following error messages will pop up. It seems that this error is caused by the size exceeding the boundary.Could you please tell me how to solve this?
After that, I found through debugging that it was because
self._ev_size
was of theuint8
type. When I changed it to theint
type, the program could run normally. I'm wondering if this modification is correct?Best Regards!
The text was updated successfully, but these errors were encountered: