Structure-from-motion-python
Structure-from-motion-python copied to clipboard
map' object is not subscriptable
File "main.py", line 62, in
I cannot find that line but i think the problem is that you are using python3, the original code was in python 2.7. In python 2.7 map() returns a list but in python3 returns a map object. list of map should work. list(listaImages)[0]