davidbunk / EasyLabelKit

Simple Kit for object-oriented Pixel-Labelling for semantic and instance segmentation.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Unclear dependency: 'vision'

neuneck opened this issue · comments

Hi!
I am always looking for the best tool to label images and came across your EasyLabelKit. I'd love to give it a shot, but when launching elk.py with python 3.6.6 on Ubuntu 18.04 LTS I run into a ModuleNotFoundError:

$ python3 elk.py
>>> Traceback (most recent call last):
>>>   File "elk.py", line 13, in <module>
>>>     from gui import Ui_MainWindow
>>>   File "/home/julian/git_repos/EasyLabelKit/gui.py", line 243, in <module>
>>>     from vision import MplCanvas, Treeview
>>> ModuleNotFoundError: No module named 'vision'

A simple search for 'vision' on pypi did not reveal an obvious candidate. Clarification on this dependency (and possible a requirements.txt) would be much appreciated!

Hi @neuneck,

thanks for pointing this out. This is an internal import that I just forgot to rename. The issue should be fixed with 55e1bab .

Best, David

I can confirm the issue is fixed. Thanks!