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
did you use windows for developing and testing this library?
I am integrating this package in my one of my project but I am facing an issue with that. win32api is library only for windows I think it's not supported in Ubuntu, can you guide me how did you test this project?
The text was updated successfully, but these errors were encountered:
Correct, this is for automatically detecting the resolution of the screen in lines 265-266. Which is useful for calibration.
screen_width_pixels = GetSystemMetrics(0)
screen_height_pixels = GetSystemMetrics(1)
If you manually write the screen size, you should be able to comment out the import line without any trouble.
I should also note this is very old code that isn't really used or supported anymore. Even my own lab now uses the event-based vision ROS library. Take a look at the "Software" section at https://github.com/uzh-rpg/event-based_vision_resources for some useful tools.
did you use windows for developing and testing this library?
I am integrating this package in my one of my project but I am facing an issue with that.
win32api is library only for windows I think it's not supported in Ubuntu, can you guide me how did you test this project?
The text was updated successfully, but these errors were encountered: