-
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
TagLab Crash when Exporting Training Dataset #106
Comments
I get this error using the "small_annotated_area_project" sample project as well as my own projects. |
Hello, this is a known issue that will be fixed in future release. It may happens that some image coordinates / image size are stored as floating points instead of integers. Qt wants INTEGER, otherwise it crashes in this way. For the moment, replace the line 213 with the following: qimage_cropped = qimage_map.copy(int(left), int(top), int(w), int(h)) Best, |
I am having a similar issue when trying to export training dataset. Do I need to have every portion of the workspace labeled? Also I am confused on the target scale. Should I leave that at 1.0 if my orthos are all the same or similar pixel size? |
Hello,
I am trying to export a training dataset to eventually train my network. This is the error message I get:
After a few seconds TagLab closes.
I am using Python version: 3.10.1 and CUDA Toolkit 11.6
Any idea what could be happening?
Thanks!
The text was updated successfully, but these errors were encountered: