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
A TypeError is encountered when generating a 2D image pyramid from a single image.
Console output
python produce_error.py
Traceback (most recent call last):
File "/home/ji-liu/Axle/image-tools/formats/pyramid-generator-2d-tool/produce_error.py", line 20, in <module>
pg.generate_from_single_image(
File "/home/ji-liu/Axle/image-tools/formats/pyramid-generator-2d-tool/venv/lib/python3.9/site-packages/argolid/pyramid_generator.py", line 43, in generate_from_single_image
for c, ds in ds_dict:
TypeError: cannot unpack non-iterable int object
Files
The error stems from here. It should probably be "ds_dict.items()".
Description
A TypeError is encountered when generating a 2D image pyramid from a single image.
Console output
Files
The error stems from here. It should probably be "ds_dict.items()".
To Reproduce
The following code snippet reproduces the error.
The text was updated successfully, but these errors were encountered: