If no image, cannot load annotion xml

This commit is contained in:
tzutalin 2015-12-09 21:51:26 +08:00
parent ed787d4f3a
commit 38c9cabb01

View File

@ -702,6 +702,12 @@ class MainWindow(QMainWindow, WindowMixin):
self.paintCanvas() self.paintCanvas()
self.addRecentFile(self.filename) self.addRecentFile(self.filename)
self.toggleActions(True) self.toggleActions(True)
## Label xml file and show bound box according to its filename
if self.usingPascalVocFormat is True and \
self.changeSavedir is not None:
print 'Try to load xml file to the image'
return True return True
return False return False
@ -802,6 +808,9 @@ class MainWindow(QMainWindow, WindowMixin):
self.statusBar().show() self.statusBar().show()
def openAnnotation(self, _value=False): def openAnnotation(self, _value=False):
if self.filename is None:
return
path = os.path.dirname(unicode(self.filename))\ path = os.path.dirname(unicode(self.filename))\
if self.filename else '.' if self.filename else '.'