We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The below function fails to look up the resources for apriltags.
duckietown-world/src/duckietown_world/world_duckietown/map_loading.py
Line 327 in 4e72509
Because tags_db.py tries to find the resource with this name:
duckietown-world/src/duckietown_world/world_duckietown/tags_db.py
Line 23 in 4e72509
while the get_texture_file function on the top always tries to append .jpg or .png for the lookup.
get_texture_file
Following is a way to fix it:
if (tex_name in resources): return resources[tex_name]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The below function fails to look up the resources for apriltags.
duckietown-world/src/duckietown_world/world_duckietown/map_loading.py
Line 327 in 4e72509
Because tags_db.py tries to find the resource with this name:
duckietown-world/src/duckietown_world/world_duckietown/tags_db.py
Line 23 in 4e72509
while the
get_texture_file
function on the top always tries to append .jpg or .png for the lookup.Following is a way to fix it:
The text was updated successfully, but these errors were encountered: