greenhouse/labelImg/labelImg.py

1723 lines
70 KiB
Python
Raw Permalink Normal View History

2015-09-17 10:37:20 +08:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import argparse
import codecs
2015-09-17 10:37:20 +08:00
import os.path
import platform
import shutil
import sys
import webbrowser as wb
2015-09-17 10:37:20 +08:00
from functools import partial
2017-01-02 20:50:02 -05:00
try:
from PyQt5.QtGui import *
from PyQt5.QtCore import *
from PyQt5.QtWidgets import *
except ImportError:
# needed for py3+qt4
# Ref:
# http://pyqt.sourceforge.net/Docs/PyQt4/incompatible_apis.html
# http://stackoverflow.com/questions/21217399/pyqt4-qtcore-qvariant-object-instead-of-a-string
2017-01-02 20:50:02 -05:00
if sys.version_info.major >= 3:
import sip
sip.setapi('QVariant', 2)
from PyQt4.QtGui import *
from PyQt4.QtCore import *
2015-09-17 10:37:20 +08:00
2020-11-14 23:17:25 -08:00
from libs.combobox import ComboBox
from libs.default_label_combobox import DefaultLabelComboBox
2022-02-22 22:23:10 -08:00
from libs.resources import *
from libs.constants import *
from libs.utils import *
2017-08-08 05:10:34 +08:00
from libs.settings import Settings
from libs.shape import Shape, DEFAULT_LINE_COLOR, DEFAULT_FILL_COLOR
from libs.stringBundle import StringBundle
from libs.canvas import Canvas
from libs.zoomWidget import ZoomWidget
from libs.lightWidget import LightWidget
from libs.labelDialog import LabelDialog
from libs.colorDialog import ColorDialog
2020-08-02 00:14:18 -07:00
from libs.labelFile import LabelFile, LabelFileError, LabelFileFormat
from libs.toolBar import ToolBar
from libs.pascal_voc_io import PascalVocReader
from libs.pascal_voc_io import XML_EXT
2018-03-01 22:34:57 -06:00
from libs.yolo_io import YoloReader
2018-03-01 21:38:22 -06:00
from libs.yolo_io import TXT_EXT
from libs.create_ml_io import CreateMLReader
from libs.create_ml_io import JSON_EXT
from libs.ustr import ustr
from libs.hashableQListWidgetItem import HashableQListWidgetItem
2015-09-17 10:37:20 +08:00
__appname__ = 'labelImg'
2015-09-17 10:37:20 +08:00
class WindowMixin(object):
2015-09-17 10:37:20 +08:00
def menu(self, title, actions=None):
menu = self.menuBar().addMenu(title)
if actions:
add_actions(menu, actions)
2015-09-17 10:37:20 +08:00
return menu
def toolbar(self, title, actions=None):
toolbar = ToolBar(title)
toolbar.setObjectName(u'%sToolBar' % title)
# toolbar.setOrientation(Qt.Vertical)
2015-09-17 10:37:20 +08:00
toolbar.setToolButtonStyle(Qt.ToolButtonTextUnderIcon)
if actions:
add_actions(toolbar, actions)
2015-09-17 10:37:20 +08:00
self.addToolBar(Qt.LeftToolBarArea, toolbar)
return toolbar
class MainWindow(QMainWindow, WindowMixin):
FIT_WINDOW, FIT_WIDTH, MANUAL_ZOOM = list(range(3))
2015-09-17 10:37:20 +08:00
def __init__(self, default_filename=None, default_prefdef_class_file=None, default_save_dir=None):
2015-09-17 10:37:20 +08:00
super(MainWindow, self).__init__()
self.setWindowTitle(__appname__)
# Load setting in the main thread
self.settings = Settings()
self.settings.load()
settings = self.settings
self.os_name = platform.system()
# Load string bundle for i18n
self.string_bundle = StringBundle.get_bundle()
get_str = lambda str_id: self.string_bundle.get_string(str_id)
2015-09-17 14:50:58 +08:00
# Save as Pascal voc xml
self.default_save_dir = default_save_dir
self.label_file_format = settings.get(SETTING_LABEL_FILE_FORMAT, LabelFileFormat.PASCAL_VOC)
2018-03-01 21:38:22 -06:00
2015-09-17 10:37:20 +08:00
# For loading all image under a directory
self.m_img_list = []
self.dir_name = None
self.label_hist = []
self.last_open_dir = None
self.cur_img_idx = 0
self.img_count = len(self.m_img_list)
2015-09-17 10:37:20 +08:00
# Whether we need to save or not.
self.dirty = False
self._no_selection_slot = False
2015-09-17 10:37:20 +08:00
self._beginner = True
2015-09-17 10:42:52 +08:00
self.screencast = "https://youtu.be/p0nR2YsCY_U"
2015-09-17 10:37:20 +08:00
# Load predefined classes to the list
self.load_predefined_classes(default_prefdef_class_file)
if self.label_hist:
self.default_label = self.label_hist[0]
else:
print("Not find:/data/predefined_classes.txt (optional)")
2015-09-17 10:37:20 +08:00
# Main widgets and related state.
self.label_dialog = LabelDialog(parent=self, list_item=self.label_hist)
self.items_to_shapes = {}
self.shapes_to_items = {}
self.prev_label_text = ''
2015-09-17 10:37:20 +08:00
list_layout = QVBoxLayout()
list_layout.setContentsMargins(0, 0, 0, 0)
2017-05-24 10:25:23 +08:00
# Create a widget for using default label
self.use_default_label_checkbox = QCheckBox(get_str('useDefaultLabel'))
self.use_default_label_checkbox.setChecked(False)
self.default_label_combo_box = DefaultLabelComboBox(self,items=self.label_hist)
use_default_label_qhbox_layout = QHBoxLayout()
use_default_label_qhbox_layout.addWidget(self.use_default_label_checkbox)
use_default_label_qhbox_layout.addWidget(self.default_label_combo_box)
use_default_label_container = QWidget()
use_default_label_container.setLayout(use_default_label_qhbox_layout)
2017-05-24 10:25:23 +08:00
# Create a widget for edit and diffc button
self.diffc_button = QCheckBox(get_str('useDifficult'))
self.diffc_button.setChecked(False)
self.diffc_button.stateChanged.connect(self.button_state)
self.edit_button = QToolButton()
self.edit_button.setToolButtonStyle(Qt.ToolButtonTextBesideIcon)
# Add some of widgets to list_layout
list_layout.addWidget(self.edit_button)
list_layout.addWidget(self.diffc_button)
list_layout.addWidget(use_default_label_container)
2020-06-12 17:15:03 +03:00
# Create and add combobox for showing unique labels in group
self.combo_box = ComboBox(self)
list_layout.addWidget(self.combo_box)
2017-05-24 10:25:23 +08:00
# Create and add a widget for showing current label items
self.label_list = QListWidget()
label_list_container = QWidget()
label_list_container.setLayout(list_layout)
self.label_list.itemActivated.connect(self.label_selection_changed)
self.label_list.itemSelectionChanged.connect(self.label_selection_changed)
self.label_list.itemDoubleClicked.connect(self.edit_label)
2017-05-24 10:25:23 +08:00
# Connect to itemChanged to detect checkbox changes.
self.label_list.itemChanged.connect(self.label_item_changed)
list_layout.addWidget(self.label_list)
2015-09-17 10:37:20 +08:00
self.dock = QDockWidget(get_str('boxLabelText'), self)
self.dock.setObjectName(get_str('labels'))
self.dock.setWidget(label_list_container)
2015-09-17 10:37:20 +08:00
self.file_list_widget = QListWidget()
self.file_list_widget.itemDoubleClicked.connect(self.file_item_double_clicked)
file_list_layout = QVBoxLayout()
file_list_layout.setContentsMargins(0, 0, 0, 0)
file_list_layout.addWidget(self.file_list_widget)
file_list_container = QWidget()
file_list_container.setLayout(file_list_layout)
self.file_dock = QDockWidget(get_str('fileList'), self)
self.file_dock.setObjectName(get_str('files'))
self.file_dock.setWidget(file_list_container)
2016-09-06 20:39:42 +08:00
self.zoom_widget = ZoomWidget()
self.light_widget = LightWidget(get_str('lightWidgetTitle'))
self.color_dialog = ColorDialog(parent=self)
2015-09-17 10:37:20 +08:00
2018-01-25 12:04:47 +02:00
self.canvas = Canvas(parent=self)
self.canvas.zoomRequest.connect(self.zoom_request)
self.canvas.lightRequest.connect(self.light_request)
self.canvas.set_drawing_shape_to_square(settings.get(SETTING_DRAW_SQUARE, False))
2015-09-17 10:37:20 +08:00
scroll = QScrollArea()
scroll.setWidget(self.canvas)
scroll.setWidgetResizable(True)
self.scroll_bars = {
2015-09-17 10:37:20 +08:00
Qt.Vertical: scroll.verticalScrollBar(),
Qt.Horizontal: scroll.horizontalScrollBar()
}
self.scroll_area = scroll
self.canvas.scrollRequest.connect(self.scroll_request)
2015-09-17 10:37:20 +08:00
self.canvas.newShape.connect(self.new_shape)
self.canvas.shapeMoved.connect(self.set_dirty)
self.canvas.selectionChanged.connect(self.shape_selection_changed)
self.canvas.drawingPolygon.connect(self.toggle_drawing_sensitive)
2015-09-17 10:37:20 +08:00
self.setCentralWidget(scroll)
self.addDockWidget(Qt.RightDockWidgetArea, self.dock)
self.addDockWidget(Qt.RightDockWidgetArea, self.file_dock)
self.file_dock.setFeatures(QDockWidget.DockWidgetFloatable)
2018-01-29 15:45:40 +08:00
self.dock_features = QDockWidget.DockWidgetClosable | QDockWidget.DockWidgetFloatable
self.dock.setFeatures(self.dock.features() ^ self.dock_features)
2015-09-17 10:37:20 +08:00
# Actions
action = partial(new_action, self)
quit = action(get_str('quit'), self.close,
'Ctrl+Q', 'quit', get_str('quitApp'))
open = action(get_str('openFile'), self.open_file,
'Ctrl+O', 'open', get_str('openFileDetail'))
2015-09-17 10:37:20 +08:00
open_dir = action(get_str('openDir'), self.open_dir_dialog,
'Ctrl+u', 'open', get_str('openDir'))
2020-09-12 10:59:57 -07:00
change_save_dir = action(get_str('changeSaveDir'), self.change_save_dir_dialog,
'Ctrl+r', 'open', get_str('changeSavedAnnotationDir'))
2015-09-17 10:37:20 +08:00
open_annotation = action(get_str('openAnnotation'), self.open_annotation_dialog,
'Ctrl+Shift+O', 'open', get_str('openAnnotationDetail'))
copy_prev_bounding = action(get_str('copyPrevBounding'), self.copy_previous_bounding_boxes, 'Ctrl+v', 'copy', get_str('copyPrevBounding'))
2015-12-09 21:29:26 +08:00
open_next_image = action(get_str('nextImg'), self.open_next_image,
'd', 'next', get_str('nextImgDetail'))
2015-09-17 10:37:20 +08:00
open_prev_image = action(get_str('prevImg'), self.open_prev_image,
'a', 'prev', get_str('prevImgDetail'))
2015-11-21 17:39:40 +08:00
verify = action(get_str('verifyImg'), self.verify_image,
'space', 'verify', get_str('verifyImgDetail'))
save = action(get_str('save'), self.save_file,
'Ctrl+S', 'save', get_str('saveDetail'), enabled=False)
2017-10-13 23:44:47 +08:00
def get_format_meta(format):
"""
returns a tuple containing (title, icon_name) of the selected format
"""
if format == LabelFileFormat.PASCAL_VOC:
return '&PascalVOC', 'format_voc'
elif format == LabelFileFormat.YOLO:
return '&YOLO', 'format_yolo'
elif format == LabelFileFormat.CREATE_ML:
return '&CreateML', 'format_createml'
save_format = action(get_format_meta(self.label_file_format)[0],
self.change_format, 'Ctrl+Y',
get_format_meta(self.label_file_format)[1],
get_str('changeSaveFormat'), enabled=True)
2018-03-01 21:38:22 -06:00
save_as = action(get_str('saveAs'), self.save_file_as,
'Ctrl+Shift+S', 'save-as', get_str('saveAsDetail'), enabled=False)
2017-10-13 23:44:47 +08:00
close = action(get_str('closeCur'), self.close_file, 'Ctrl+W', 'close', get_str('closeCurDetail'))
2017-11-29 21:20:14 +08:00
delete_image = action(get_str('deleteImg'), self.delete_image, 'Ctrl+Shift+D', 'close', get_str('deleteImgDetail'))
2020-06-12 17:15:03 +03:00
reset_all = action(get_str('resetAll'), self.reset_all, None, 'resetall', get_str('resetAllDetail'))
2017-10-13 23:44:47 +08:00
color1 = action(get_str('boxLineColor'), self.choose_color1,
'Ctrl+L', 'color_line', get_str('boxLineColorDetail'))
2015-09-17 10:37:20 +08:00
create_mode = action(get_str('crtBox'), self.set_create_mode,
'w', 'new', get_str('crtBoxDetail'), enabled=False)
edit_mode = action(get_str('editBox'), self.set_edit_mode,
'Ctrl+J', 'edit', get_str('editBoxDetail'), enabled=False)
2015-09-17 10:37:20 +08:00
create = action(get_str('crtBox'), self.create_shape,
'w', 'new', get_str('crtBoxDetail'), enabled=False)
delete = action(get_str('delBox'), self.delete_selected_shape,
'Delete', 'delete', get_str('delBoxDetail'), enabled=False)
copy = action(get_str('dupBox'), self.copy_selected_shape,
'Ctrl+D', 'copy', get_str('dupBoxDetail'),
enabled=False)
2015-09-17 10:37:20 +08:00
advanced_mode = action(get_str('advancedMode'), self.toggle_advanced_mode,
'Ctrl+Shift+A', 'expert', get_str('advancedModeDetail'),
checkable=True)
2015-09-17 10:37:20 +08:00
hide_all = action(get_str('hideAllBox'), partial(self.toggle_polygons, False),
'Ctrl+H', 'hide', get_str('hideAllBoxDetail'),
enabled=False)
show_all = action(get_str('showAllBox'), partial(self.toggle_polygons, True),
'Ctrl+A', 'hide', get_str('showAllBoxDetail'),
enabled=False)
2015-09-17 10:37:20 +08:00
help_default = action(get_str('tutorialDefault'), self.show_default_tutorial_dialog, None, 'help', get_str('tutorialDetail'))
show_info = action(get_str('info'), self.show_info_dialog, None, 'help', get_str('info'))
show_shortcut = action(get_str('shortcut'), self.show_shortcuts_dialog, None, 'help', get_str('shortcut'))
2015-09-17 10:37:20 +08:00
zoom = QWidgetAction(self)
zoom.setDefaultWidget(self.zoom_widget)
self.zoom_widget.setWhatsThis(
u"Zoom in or out of the image. Also accessible with"
" %s and %s from the canvas." % (format_shortcut("Ctrl+[-+]"),
format_shortcut("Ctrl+Wheel")))
self.zoom_widget.setEnabled(False)
zoom_in = action(get_str('zoomin'), partial(self.add_zoom, 10),
'Ctrl++', 'zoom-in', get_str('zoominDetail'), enabled=False)
zoom_out = action(get_str('zoomout'), partial(self.add_zoom, -10),
'Ctrl+-', 'zoom-out', get_str('zoomoutDetail'), enabled=False)
zoom_org = action(get_str('originalsize'), partial(self.set_zoom, 100),
'Ctrl+=', 'zoom', get_str('originalsizeDetail'), enabled=False)
fit_window = action(get_str('fitWin'), self.set_fit_window,
'Ctrl+F', 'fit-window', get_str('fitWinDetail'),
checkable=True, enabled=False)
fit_width = action(get_str('fitWidth'), self.set_fit_width,
'Ctrl+Shift+F', 'fit-width', get_str('fitWidthDetail'),
checkable=True, enabled=False)
2015-09-17 10:37:20 +08:00
# Group zoom controls into a list for easier toggling.
zoom_actions = (self.zoom_widget, zoom_in, zoom_out,
zoom_org, fit_window, fit_width)
self.zoom_mode = self.MANUAL_ZOOM
2015-09-17 10:37:20 +08:00
self.scalers = {
self.FIT_WINDOW: self.scale_fit_window,
self.FIT_WIDTH: self.scale_fit_width,
2015-09-17 10:37:20 +08:00
# Set to one to scale to 100% when loading files.
self.MANUAL_ZOOM: lambda: 1,
}
light = QWidgetAction(self)
light.setDefaultWidget(self.light_widget)
self.light_widget.setWhatsThis(
u"Brighten or darken current image. Also accessible with"
" %s and %s from the canvas." % (format_shortcut("Ctrl+Shift+[-+]"),
format_shortcut("Ctrl+Shift+Wheel")))
self.light_widget.setEnabled(False)
light_brighten = action(get_str('lightbrighten'), partial(self.add_light, 10),
'Ctrl+Shift++', 'light_lighten', get_str('lightbrightenDetail'), enabled=False)
light_darken = action(get_str('lightdarken'), partial(self.add_light, -10),
'Ctrl+Shift+-', 'light_darken', get_str('lightdarkenDetail'), enabled=False)
light_org = action(get_str('lightreset'), partial(self.set_light, 50),
'Ctrl+Shift+=', 'light_reset', get_str('lightresetDetail'), checkable=True, enabled=False)
light_org.setChecked(True)
# Group light controls into a list for easier toggling.
light_actions = (self.light_widget, light_brighten,
light_darken, light_org)
edit = action(get_str('editLabel'), self.edit_label,
'Ctrl+E', 'edit', get_str('editLabelDetail'),
enabled=False)
self.edit_button.setDefaultAction(edit)
2015-09-17 10:37:20 +08:00
shape_line_color = action(get_str('shapeLineColor'), self.choose_shape_line_color,
icon='color_line', tip=get_str('shapeLineColorDetail'),
enabled=False)
shape_fill_color = action(get_str('shapeFillColor'), self.choose_shape_fill_color,
icon='color', tip=get_str('shapeFillColorDetail'),
enabled=False)
2015-09-17 10:37:20 +08:00
labels = self.dock.toggleViewAction()
labels.setText(get_str('showHide'))
2015-09-17 10:37:20 +08:00
labels.setShortcut('Ctrl+Shift+L')
# Label list context menu.
label_menu = QMenu()
add_actions(label_menu, (edit, delete))
self.label_list.setContextMenuPolicy(Qt.CustomContextMenu)
self.label_list.customContextMenuRequested.connect(
self.pop_label_list_menu)
2015-09-17 10:37:20 +08:00
2018-10-02 22:01:36 +02:00
# Draw squares/rectangles
self.draw_squares_option = QAction(get_str('drawSquares'), self)
self.draw_squares_option.setShortcut('Ctrl+Shift+R')
self.draw_squares_option.setCheckable(True)
self.draw_squares_option.setChecked(settings.get(SETTING_DRAW_SQUARE, False))
self.draw_squares_option.triggered.connect(self.toggle_draw_square)
2018-10-02 22:01:36 +02:00
2015-09-17 10:37:20 +08:00
# Store actions for further handling.
self.actions = Struct(save=save, save_format=save_format, saveAs=save_as, open=open, close=close, resetAll=reset_all, deleteImg=delete_image,
lineColor=color1, create=create, delete=delete, edit=edit, copy=copy,
createMode=create_mode, editMode=edit_mode, advancedMode=advanced_mode,
shapeLineColor=shape_line_color, shapeFillColor=shape_fill_color,
zoom=zoom, zoomIn=zoom_in, zoomOut=zoom_out, zoomOrg=zoom_org,
fitWindow=fit_window, fitWidth=fit_width,
zoomActions=zoom_actions,
lightBrighten=light_brighten, lightDarken=light_darken, lightOrg=light_org,
lightActions=light_actions,
fileMenuActions=(
open, open_dir, save, save_as, close, reset_all, quit),
beginner=(), advanced=(),
editMenu=(edit, copy, delete,
None, color1, self.draw_squares_option),
beginnerContext=(create, edit, copy, delete),
advancedContext=(create_mode, edit_mode, edit, copy,
delete, shape_line_color, shape_fill_color),
onLoadActive=(
close, create, create_mode, edit_mode),
onShapesPresent=(save_as, hide_all, show_all))
2015-09-17 10:37:20 +08:00
self.menus = Struct(
file=self.menu(get_str('menu_file')),
edit=self.menu(get_str('menu_edit')),
view=self.menu(get_str('menu_view')),
help=self.menu(get_str('menu_help')),
recentFiles=QMenu(get_str('menu_openRecent')),
labelList=label_menu)
2015-09-17 10:37:20 +08:00
# Auto saving : Enable auto saving if pressing next
self.auto_saving = QAction(get_str('autoSaveMode'), self)
self.auto_saving.setCheckable(True)
self.auto_saving.setChecked(settings.get(SETTING_AUTO_SAVE, False))
# Sync single class mode from PR#106
self.single_class_mode = QAction(get_str('singleClsMode'), self)
self.single_class_mode.setShortcut("Ctrl+Shift+S")
self.single_class_mode.setCheckable(True)
self.single_class_mode.setChecked(settings.get(SETTING_SINGLE_CLASS, False))
self.lastLabel = None
# Add option to enable/disable labels being displayed at the top of bounding boxes
self.display_label_option = QAction(get_str('displayLabel'), self)
self.display_label_option.setShortcut("Ctrl+Shift+P")
self.display_label_option.setCheckable(True)
self.display_label_option.setChecked(settings.get(SETTING_PAINT_LABEL, False))
self.display_label_option.triggered.connect(self.toggle_paint_labels_option)
add_actions(self.menus.file,
(open, open_dir, change_save_dir, open_annotation, copy_prev_bounding, self.menus.recentFiles, save, save_format, save_as, close, reset_all, delete_image, quit))
add_actions(self.menus.help, (help_default, show_info, show_shortcut))
add_actions(self.menus.view, (
self.auto_saving,
self.single_class_mode,
self.display_label_option,
labels, advanced_mode, None,
hide_all, show_all, None,
zoom_in, zoom_out, zoom_org, None,
fit_window, fit_width, None,
light_brighten, light_darken, light_org))
self.menus.file.aboutToShow.connect(self.update_file_menu)
2015-09-17 10:37:20 +08:00
# Custom context menu for the canvas widget:
add_actions(self.canvas.menus[0], self.actions.beginnerContext)
add_actions(self.canvas.menus[1], (
action('&Copy here', self.copy_shape),
action('&Move here', self.move_shape)))
2015-09-17 10:37:20 +08:00
self.tools = self.toolbar('Tools')
self.actions.beginner = (
open, open_dir, change_save_dir, open_next_image, open_prev_image, verify, save, save_format, None, create, copy, delete, None,
zoom_in, zoom, zoom_out, fit_window, fit_width, None,
light_brighten, light, light_darken, light_org)
2015-09-17 10:37:20 +08:00
self.actions.advanced = (
open, open_dir, change_save_dir, open_next_image, open_prev_image, save, save_format, None,
create_mode, edit_mode, None,
hide_all, show_all)
2015-09-17 10:37:20 +08:00
self.statusBar().showMessage('%s started.' % __appname__)
self.statusBar().show()
# Application state.
self.image = QImage()
self.file_path = ustr(default_filename)
self.last_open_dir = None
self.recent_files = []
self.max_recent = 7
self.line_color = None
self.fill_color = None
2015-09-17 10:37:20 +08:00
self.zoom_level = 100
self.fit_window = False
# Add Chris
self.difficult = False
2015-09-17 10:37:20 +08:00
# Fix the compatible issue for qt4 and qt5. Convert the QStringList to python list
if settings.get(SETTING_RECENT_FILES):
if have_qstring():
recent_file_qstring_list = settings.get(SETTING_RECENT_FILES)
self.recent_files = [ustr(i) for i in recent_file_qstring_list]
else:
self.recent_files = recent_file_qstring_list = settings.get(SETTING_RECENT_FILES)
size = settings.get(SETTING_WIN_SIZE, QSize(600, 500))
position = QPoint(0, 0)
saved_position = settings.get(SETTING_WIN_POSE, position)
# Fix the multiple monitors issue
for i in range(QApplication.desktop().screenCount()):
if QApplication.desktop().availableGeometry(i).contains(saved_position):
position = saved_position
break
2015-09-17 10:37:20 +08:00
self.resize(size)
self.move(position)
save_dir = ustr(settings.get(SETTING_SAVE_DIR, None))
self.last_open_dir = ustr(settings.get(SETTING_LAST_OPEN_DIR, None))
if self.default_save_dir is None and save_dir is not None and os.path.exists(save_dir):
self.default_save_dir = save_dir
self.statusBar().showMessage('%s started. Annotation will be saved to %s' %
(__appname__, self.default_save_dir))
self.statusBar().show()
self.restoreState(settings.get(SETTING_WIN_STATE, QByteArray()))
Shape.line_color = self.line_color = QColor(settings.get(SETTING_LINE_COLOR, DEFAULT_LINE_COLOR))
Shape.fill_color = self.fill_color = QColor(settings.get(SETTING_FILL_COLOR, DEFAULT_FILL_COLOR))
self.canvas.set_drawing_color(self.line_color)
# Add chris
2017-05-10 21:26:51 +08:00
Shape.difficult = self.difficult
2015-09-17 10:37:20 +08:00
2017-01-02 20:50:02 -05:00
def xbool(x):
if isinstance(x, QVariant):
return x.toBool()
return bool(x)
if xbool(settings.get(SETTING_ADVANCE_MODE, False)):
2015-09-17 10:37:20 +08:00
self.actions.advancedMode.setChecked(True)
self.toggle_advanced_mode()
2015-09-17 10:37:20 +08:00
# Populate the File menu dynamically.
self.update_file_menu()
# Since loading the file may take some time, make sure it runs in the background.
if self.file_path and os.path.isdir(self.file_path):
self.queue_event(partial(self.import_dir_images, self.file_path or ""))
elif self.file_path:
self.queue_event(partial(self.load_file, self.file_path or ""))
2015-09-17 10:37:20 +08:00
# Callbacks:
self.zoom_widget.valueChanged.connect(self.paint_canvas)
self.light_widget.valueChanged.connect(self.paint_canvas)
2015-09-17 10:37:20 +08:00
self.populate_mode_actions()
2015-09-17 10:37:20 +08:00
2018-01-25 12:04:47 +02:00
# Display cursor coordinates at the right of status bar
self.label_coordinates = QLabel('')
self.statusBar().addPermanentWidget(self.label_coordinates)
2018-01-25 12:04:47 +02:00
# Open Dir if default file
if self.file_path and os.path.isdir(self.file_path):
self.open_dir_dialog(dir_path=self.file_path, silent=True)
2018-01-29 15:45:40 +08:00
2018-10-02 22:01:36 +02:00
def keyReleaseEvent(self, event):
if event.key() == Qt.Key_Control:
self.canvas.set_drawing_shape_to_square(False)
2018-10-02 22:01:36 +02:00
def keyPressEvent(self, event):
if event.key() == Qt.Key_Control:
# Draw rectangle if Ctrl is pressed
self.canvas.set_drawing_shape_to_square(True)
2018-10-02 22:01:36 +02:00
# Support Functions #
2018-03-01 22:34:57 -06:00
def set_format(self, save_format):
2018-05-18 23:33:08 -07:00
if save_format == FORMAT_PASCALVOC:
self.actions.save_format.setText(FORMAT_PASCALVOC)
self.actions.save_format.setIcon(new_icon("format_voc"))
self.label_file_format = LabelFileFormat.PASCAL_VOC
2018-05-15 23:12:35 -07:00
LabelFile.suffix = XML_EXT
2018-03-01 22:34:57 -06:00
2018-05-18 23:33:08 -07:00
elif save_format == FORMAT_YOLO:
self.actions.save_format.setText(FORMAT_YOLO)
self.actions.save_format.setIcon(new_icon("format_yolo"))
self.label_file_format = LabelFileFormat.YOLO
2018-05-15 23:12:35 -07:00
LabelFile.suffix = TXT_EXT
2015-09-17 10:37:20 +08:00
elif save_format == FORMAT_CREATEML:
self.actions.save_format.setText(FORMAT_CREATEML)
self.actions.save_format.setIcon(new_icon("format_createml"))
self.label_file_format = LabelFileFormat.CREATE_ML
LabelFile.suffix = JSON_EXT
2018-03-01 21:38:22 -06:00
def change_format(self):
if self.label_file_format == LabelFileFormat.PASCAL_VOC:
2020-08-02 00:14:18 -07:00
self.set_format(FORMAT_YOLO)
elif self.label_file_format == LabelFileFormat.YOLO:
self.set_format(FORMAT_CREATEML)
elif self.label_file_format == LabelFileFormat.CREATE_ML:
2020-08-02 00:14:18 -07:00
self.set_format(FORMAT_PASCALVOC)
else:
raise ValueError('Unknown label file format.')
self.set_dirty()
2018-03-01 21:38:22 -06:00
def no_shapes(self):
return not self.items_to_shapes
2015-09-17 10:37:20 +08:00
def toggle_advanced_mode(self, value=True):
2015-09-17 10:37:20 +08:00
self._beginner = not value
self.canvas.set_editing(True)
self.populate_mode_actions()
self.edit_button.setVisible(not value)
2015-09-17 10:37:20 +08:00
if value:
self.actions.createMode.setEnabled(True)
self.actions.editMode.setEnabled(False)
self.dock.setFeatures(self.dock.features() | self.dock_features)
2015-09-17 10:37:20 +08:00
else:
self.dock.setFeatures(self.dock.features() ^ self.dock_features)
2015-09-17 10:37:20 +08:00
def populate_mode_actions(self):
2015-09-17 10:37:20 +08:00
if self.beginner():
tool, menu = self.actions.beginner, self.actions.beginnerContext
else:
tool, menu = self.actions.advanced, self.actions.advancedContext
self.tools.clear()
add_actions(self.tools, tool)
2015-09-17 10:37:20 +08:00
self.canvas.menus[0].clear()
add_actions(self.canvas.menus[0], menu)
2015-09-17 10:37:20 +08:00
self.menus.edit.clear()
actions = (self.actions.create,) if self.beginner()\
else (self.actions.createMode, self.actions.editMode)
add_actions(self.menus.edit, actions + self.actions.editMenu)
2015-09-17 10:37:20 +08:00
def set_beginner(self):
2015-09-17 10:37:20 +08:00
self.tools.clear()
add_actions(self.tools, self.actions.beginner)
2015-09-17 10:37:20 +08:00
def set_advanced(self):
2015-09-17 10:37:20 +08:00
self.tools.clear()
add_actions(self.tools, self.actions.advanced)
2015-09-17 10:37:20 +08:00
def set_dirty(self):
2015-09-17 10:37:20 +08:00
self.dirty = True
self.actions.save.setEnabled(True)
def set_clean(self):
2015-09-17 10:37:20 +08:00
self.dirty = False
self.actions.save.setEnabled(False)
self.actions.create.setEnabled(True)
def toggle_actions(self, value=True):
2015-09-17 10:37:20 +08:00
"""Enable/Disable widgets which depend on an opened image."""
for z in self.actions.zoomActions:
z.setEnabled(value)
for z in self.actions.lightActions:
z.setEnabled(value)
2015-09-17 10:37:20 +08:00
for action in self.actions.onLoadActive:
action.setEnabled(value)
def queue_event(self, function):
2015-09-17 10:37:20 +08:00
QTimer.singleShot(0, function)
def status(self, message, delay=5000):
self.statusBar().showMessage(message, delay)
def reset_state(self):
self.items_to_shapes.clear()
self.shapes_to_items.clear()
self.label_list.clear()
self.file_path = None
self.image_data = None
self.label_file = None
self.canvas.reset_state()
self.label_coordinates.clear()
self.combo_box.cb.clear()
def current_item(self):
items = self.label_list.selectedItems()
2015-09-17 10:37:20 +08:00
if items:
return items[0]
return None
def add_recent_file(self, file_path):
if file_path in self.recent_files:
self.recent_files.remove(file_path)
elif len(self.recent_files) >= self.max_recent:
self.recent_files.pop()
self.recent_files.insert(0, file_path)
2015-09-17 10:37:20 +08:00
def beginner(self):
return self._beginner
def advanced(self):
return not self.beginner()
def show_tutorial_dialog(self, browser='default', link=None):
if link is None:
link = self.screencast
if browser.lower() == 'default':
wb.open(link, new=2)
elif browser.lower() == 'chrome' and self.os_name == 'Windows':
if shutil.which(browser.lower()): # 'chrome' not in wb._browsers in windows
wb.register('chrome', None, wb.BackgroundBrowser('chrome'))
else:
chrome_path="D:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"
if os.path.isfile(chrome_path):
wb.register('chrome', None, wb.BackgroundBrowser(chrome_path))
try:
wb.get('chrome').open(link, new=2)
except:
wb.open(link, new=2)
elif browser.lower() in wb._browsers:
wb.get(browser.lower()).open(link, new=2)
def show_default_tutorial_dialog(self):
self.show_tutorial_dialog(browser='default')
def show_info_dialog(self):
from libs.__init__ import __version__
2017-10-27 10:28:47 +08:00
msg = u'Name:{0} \nApp Version:{1} \n{2} '.format(__appname__, __version__, sys.version_info)
QMessageBox.information(self, u'Information', msg)
def show_shortcuts_dialog(self):
self.show_tutorial_dialog(browser='default', link='https://github.com/tzutalin/labelImg#Hotkeys')
def create_shape(self):
2015-09-17 10:37:20 +08:00
assert self.beginner()
self.canvas.set_editing(False)
2015-09-17 10:37:20 +08:00
self.actions.create.setEnabled(False)
def toggle_drawing_sensitive(self, drawing=True):
2015-09-17 10:37:20 +08:00
"""In the middle of drawing, toggling between modes should be disabled."""
self.actions.editMode.setEnabled(not drawing)
if not drawing and self.beginner():
# Cancel creation.
print('Cancel creation.')
self.canvas.set_editing(True)
self.canvas.restore_cursor()
2015-09-17 10:37:20 +08:00
self.actions.create.setEnabled(True)
def toggle_draw_mode(self, edit=True):
self.canvas.set_editing(edit)
2015-09-17 10:37:20 +08:00
self.actions.createMode.setEnabled(edit)
self.actions.editMode.setEnabled(not edit)
def set_create_mode(self):
2015-09-17 10:37:20 +08:00
assert self.advanced()
self.toggle_draw_mode(False)
2015-09-17 10:37:20 +08:00
def set_edit_mode(self):
2015-09-17 10:37:20 +08:00
assert self.advanced()
self.toggle_draw_mode(True)
self.label_selection_changed()
2015-09-17 10:37:20 +08:00
def update_file_menu(self):
curr_file_path = self.file_path
2015-09-17 10:37:20 +08:00
def exists(filename):
return os.path.exists(filename)
2015-09-17 10:37:20 +08:00
menu = self.menus.recentFiles
menu.clear()
files = [f for f in self.recent_files if f !=
curr_file_path and exists(f)]
2015-09-17 10:37:20 +08:00
for i, f in enumerate(files):
icon = new_icon('labels')
2015-09-17 10:37:20 +08:00
action = QAction(
icon, '&%d %s' % (i + 1, QFileInfo(f).fileName()), self)
action.triggered.connect(partial(self.load_recent, f))
2015-09-17 10:37:20 +08:00
menu.addAction(action)
def pop_label_list_menu(self, point):
self.menus.labelList.exec_(self.label_list.mapToGlobal(point))
2015-09-17 10:37:20 +08:00
def edit_label(self):
2015-09-17 10:37:20 +08:00
if not self.canvas.editing():
return
item = self.current_item()
if not item:
return
text = self.label_dialog.pop_up(item.text())
2015-09-17 10:37:20 +08:00
if text is not None:
item.setText(text)
item.setBackground(generate_color_by_text(text))
self.set_dirty()
self.update_combo_box()
2016-09-06 20:39:42 +08:00
# Tzutalin 20160906 : Add file list and dock to move faster
def file_item_double_clicked(self, item=None):
self.cur_img_idx = self.m_img_list.index(ustr(item.text()))
filename = self.m_img_list[self.cur_img_idx]
if filename:
self.load_file(filename)
# Add chris
def button_state(self, item=None):
""" Function to handle difficult examples
Update on each object """
if not self.canvas.editing():
return
item = self.current_item()
if not item: # If not selected Item, take the first one
item = self.label_list.item(self.label_list.count() - 1)
difficult = self.diffc_button.isChecked()
try:
shape = self.items_to_shapes[item]
except:
pass
# Checked and Update
try:
if difficult != shape.difficult:
shape.difficult = difficult
self.set_dirty()
else: # User probably changed item visibility
self.canvas.set_shape_visible(shape, item.checkState() == Qt.Checked)
except:
pass
2015-09-17 10:37:20 +08:00
# React to canvas signals.
def shape_selection_changed(self, selected=False):
if self._no_selection_slot:
self._no_selection_slot = False
2015-09-17 10:37:20 +08:00
else:
shape = self.canvas.selected_shape
2015-09-17 10:37:20 +08:00
if shape:
self.shapes_to_items[shape].setSelected(True)
2015-09-17 10:37:20 +08:00
else:
self.label_list.clearSelection()
2015-09-17 10:37:20 +08:00
self.actions.delete.setEnabled(selected)
self.actions.copy.setEnabled(selected)
self.actions.edit.setEnabled(selected)
self.actions.shapeLineColor.setEnabled(selected)
self.actions.shapeFillColor.setEnabled(selected)
def add_label(self, shape):
shape.paint_label = self.display_label_option.isChecked()
2017-01-02 20:50:02 -05:00
item = HashableQListWidgetItem(shape.label)
2015-09-17 10:37:20 +08:00
item.setFlags(item.flags() | Qt.ItemIsUserCheckable)
item.setCheckState(Qt.Checked)
item.setBackground(generate_color_by_text(shape.label))
self.items_to_shapes[item] = shape
self.shapes_to_items[shape] = item
self.label_list.addItem(item)
2015-09-17 10:37:20 +08:00
for action in self.actions.onShapesPresent:
action.setEnabled(True)
self.update_combo_box()
2015-09-17 10:37:20 +08:00
def remove_label(self, shape):
if shape is None:
# print('rm empty label')
return
item = self.shapes_to_items[shape]
self.label_list.takeItem(self.label_list.row(item))
del self.shapes_to_items[shape]
del self.items_to_shapes[item]
self.update_combo_box()
2015-09-17 10:37:20 +08:00
def load_labels(self, shapes):
2015-09-17 10:37:20 +08:00
s = []
for label, points, line_color, fill_color, difficult in shapes:
2015-09-17 10:37:20 +08:00
shape = Shape(label=label)
for x, y in points:
# Ensure the labels are within the bounds of the image. If not, fix them.
x, y, snapped = self.canvas.snap_point_to_canvas(x, y)
if snapped:
self.set_dirty()
shape.add_point(QPointF(x, y))
shape.difficult = difficult
2015-09-17 10:37:20 +08:00
shape.close()
s.append(shape)
2015-09-17 10:37:20 +08:00
if line_color:
shape.line_color = QColor(*line_color)
else:
shape.line_color = generate_color_by_text(label)
2015-09-17 10:37:20 +08:00
if fill_color:
shape.fill_color = QColor(*fill_color)
else:
shape.fill_color = generate_color_by_text(label)
2017-11-29 21:20:14 +08:00
self.add_label(shape)
self.update_combo_box()
self.canvas.load_shapes(s)
2015-09-17 10:37:20 +08:00
def update_combo_box(self):
# Get the unique labels and add them to the Combobox.
items_text_list = [str(self.label_list.item(i).text()) for i in range(self.label_list.count())]
unique_text_list = list(set(items_text_list))
# Add a null row for showing all the labels
unique_text_list.append("")
unique_text_list.sort()
self.combo_box.update_items(unique_text_list)
def save_labels(self, annotation_file_path):
annotation_file_path = ustr(annotation_file_path)
if self.label_file is None:
self.label_file = LabelFile()
self.label_file.verified = self.canvas.verified
2015-09-17 10:37:20 +08:00
def format_shape(s):
return dict(label=s.label,
line_color=s.line_color.getRgb(),
fill_color=s.fill_color.getRgb(),
points=[(p.x(), p.y()) for p in s.points],
# add chris
difficult=s.difficult)
2015-09-17 10:37:20 +08:00
shapes = [format_shape(shape) for shape in self.canvas.shapes]
# Can add different annotation formats here
2015-09-17 10:37:20 +08:00
try:
if self.label_file_format == LabelFileFormat.PASCAL_VOC:
if annotation_file_path[-4:].lower() != ".xml":
annotation_file_path += XML_EXT
self.label_file.save_pascal_voc_format(annotation_file_path, shapes, self.file_path, self.image_data,
self.line_color.getRgb(), self.fill_color.getRgb())
elif self.label_file_format == LabelFileFormat.YOLO:
if annotation_file_path[-4:].lower() != ".txt":
annotation_file_path += TXT_EXT
self.label_file.save_yolo_format(annotation_file_path, shapes, self.file_path, self.image_data, self.label_hist,
self.line_color.getRgb(), self.fill_color.getRgb())
elif self.label_file_format == LabelFileFormat.CREATE_ML:
if annotation_file_path[-5:].lower() != ".json":
annotation_file_path += JSON_EXT
self.label_file.save_create_ml_format(annotation_file_path, shapes, self.file_path, self.image_data,
self.label_hist, self.line_color.getRgb(), self.fill_color.getRgb())
2015-09-17 10:37:20 +08:00
else:
self.label_file.save(annotation_file_path, shapes, self.file_path, self.image_data,
self.line_color.getRgb(), self.fill_color.getRgb())
print('Image:{0} -> Annotation:{1}'.format(self.file_path, annotation_file_path))
2015-09-17 10:37:20 +08:00
return True
except LabelFileError as e:
self.error_message(u'Error saving label data', u'<b>%s</b>' % e)
2015-09-17 10:37:20 +08:00
return False
def copy_selected_shape(self):
self.add_label(self.canvas.copy_selected_shape())
# fix copy and delete
self.shape_selection_changed(True)
def combo_selection_changed(self, index):
text = self.combo_box.cb.itemText(index)
for i in range(self.label_list.count()):
if text == "":
self.label_list.item(i).setCheckState(2)
elif text != self.label_list.item(i).text():
self.label_list.item(i).setCheckState(0)
else:
self.label_list.item(i).setCheckState(2)
2015-09-17 10:37:20 +08:00
def default_label_combo_selection_changed(self, index):
self.default_label=self.label_hist[index]
def label_selection_changed(self):
item = self.current_item()
2015-09-17 10:37:20 +08:00
if item and self.canvas.editing():
self._no_selection_slot = True
self.canvas.select_shape(self.items_to_shapes[item])
shape = self.items_to_shapes[item]
# Add Chris
self.diffc_button.setChecked(shape.difficult)
2015-09-17 10:37:20 +08:00
def label_item_changed(self, item):
shape = self.items_to_shapes[item]
label = item.text()
2015-09-17 10:37:20 +08:00
if label != shape.label:
shape.label = item.text()
shape.line_color = generate_color_by_text(shape.label)
self.set_dirty()
else: # User probably changed item visibility
self.canvas.set_shape_visible(shape, item.checkState() == Qt.Checked)
2015-09-17 10:37:20 +08:00
# Callback functions:
def new_shape(self):
2015-09-17 10:37:20 +08:00
"""Pop-up and give focus to the label editor.
position MUST be in global coordinates.
"""
if not self.use_default_label_checkbox.isChecked():
if len(self.label_hist) > 0:
self.label_dialog = LabelDialog(
parent=self, list_item=self.label_hist)
2017-05-23 23:27:31 +08:00
# Sync single class mode from PR#106
if self.single_class_mode.isChecked() and self.lastLabel:
text = self.lastLabel
else:
text = self.label_dialog.pop_up(text=self.prev_label_text)
self.lastLabel = text
2017-05-23 23:27:31 +08:00
else:
text = self.default_label
# Add Chris
self.diffc_button.setChecked(False)
2015-09-17 10:37:20 +08:00
if text is not None:
self.prev_label_text = text
generate_color = generate_color_by_text(text)
shape = self.canvas.set_last_label(text, generate_color, generate_color)
self.add_label(shape)
if self.beginner(): # Switch to edit mode.
self.canvas.set_editing(True)
2015-09-17 10:37:20 +08:00
self.actions.create.setEnabled(True)
else:
self.actions.editMode.setEnabled(True)
self.set_dirty()
if text not in self.label_hist:
self.label_hist.append(text)
2015-09-17 10:37:20 +08:00
else:
# self.canvas.undoLastLine()
self.canvas.reset_all_lines()
2015-09-17 10:37:20 +08:00
def scroll_request(self, delta, orientation):
2015-09-17 10:37:20 +08:00
units = - delta / (8 * 15)
bar = self.scroll_bars[orientation]
2021-12-28 12:05:21 +09:00
bar.setValue(int(bar.value() + bar.singleStep() * units))
2015-09-17 10:37:20 +08:00
def set_zoom(self, value):
2015-09-17 10:37:20 +08:00
self.actions.fitWidth.setChecked(False)
self.actions.fitWindow.setChecked(False)
self.zoom_mode = self.MANUAL_ZOOM
# Arithmetic on scaling factor often results in float
# Convert to int to avoid type errors
self.zoom_widget.setValue(int(value))
2015-09-17 10:37:20 +08:00
def add_zoom(self, increment=10):
self.set_zoom(self.zoom_widget.value() + increment)
2015-09-17 10:37:20 +08:00
def zoom_request(self, delta):
2017-06-23 19:28:52 +02:00
# get the current scrollbar positions
# calculate the percentages ~ coordinates
h_bar = self.scroll_bars[Qt.Horizontal]
v_bar = self.scroll_bars[Qt.Vertical]
2017-06-23 19:28:52 +02:00
# get the current maximum, to know the difference after zooming
h_bar_max = h_bar.maximum()
v_bar_max = v_bar.maximum()
# get the cursor position and canvas size
# calculate the desired movement from 0 to 1
# where 0 = move left
# 1 = move right
# up and down analogous
cursor = QCursor()
pos = cursor.pos()
relative_pos = QWidget.mapFromGlobal(self, pos)
2017-06-23 19:28:52 +02:00
cursor_x = relative_pos.x()
cursor_y = relative_pos.y()
2017-06-23 19:28:52 +02:00
w = self.scroll_area.width()
h = self.scroll_area.height()
2017-06-23 19:28:52 +02:00
2017-06-23 19:33:00 +02:00
# the scaling from 0 to 1 has some padding
# you don't have to hit the very leftmost pixel for a maximum-left movement
2017-06-23 19:28:52 +02:00
margin = 0.1
move_x = (cursor_x - margin * w) / (w - 2 * margin * w)
move_y = (cursor_y - margin * h) / (h - 2 * margin * h)
# clamp the values from 0 to 1
2017-06-23 19:33:00 +02:00
move_x = min(max(move_x, 0), 1)
move_y = min(max(move_y, 0), 1)
2017-06-23 19:28:52 +02:00
# zoom in
units = delta // (8 * 15)
2015-09-17 10:37:20 +08:00
scale = 10
self.add_zoom(scale * units)
2015-09-17 10:37:20 +08:00
2017-06-23 19:33:00 +02:00
# get the difference in scrollbar values
# this is how far we can move
2017-06-23 19:28:52 +02:00
d_h_bar_max = h_bar.maximum() - h_bar_max
d_v_bar_max = v_bar.maximum() - v_bar_max
# get the new scrollbar values
new_h_bar_value = int(h_bar.value() + move_x * d_h_bar_max)
new_v_bar_value = int(v_bar.value() + move_y * d_v_bar_max)
2017-06-23 19:28:52 +02:00
h_bar.setValue(new_h_bar_value)
v_bar.setValue(new_v_bar_value)
def light_request(self, delta):
self.add_light(5*delta // (8 * 15))
def set_fit_window(self, value=True):
2015-09-17 10:37:20 +08:00
if value:
self.actions.fitWidth.setChecked(False)
self.zoom_mode = self.FIT_WINDOW if value else self.MANUAL_ZOOM
self.adjust_scale()
2015-09-17 10:37:20 +08:00
def set_fit_width(self, value=True):
2015-09-17 10:37:20 +08:00
if value:
self.actions.fitWindow.setChecked(False)
self.zoom_mode = self.FIT_WIDTH if value else self.MANUAL_ZOOM
self.adjust_scale()
2015-09-17 10:37:20 +08:00
def set_light(self, value):
self.actions.lightOrg.setChecked(int(value) == 50)
# Arithmetic on scaling factor often results in float
# Convert to int to avoid type errors
self.light_widget.setValue(int(value))
def add_light(self, increment=10):
self.set_light(self.light_widget.value() + increment)
def toggle_polygons(self, value):
for item, shape in self.items_to_shapes.items():
2015-09-17 10:37:20 +08:00
item.setCheckState(Qt.Checked if value else Qt.Unchecked)
def load_file(self, file_path=None):
2015-09-17 10:37:20 +08:00
"""Load the specified file, or the last opened file if None."""
self.reset_state()
2015-09-17 10:37:20 +08:00
self.canvas.setEnabled(False)
if file_path is None:
file_path = self.settings.get(SETTING_FILENAME)
2018-01-25 11:35:09 +02:00
# Make sure that filePath is a regular python string, rather than QString
file_path = ustr(file_path)
2018-01-25 11:35:09 +02:00
# Fix bug: An index error after select a directory when open a new file.
unicode_file_path = ustr(file_path)
unicode_file_path = os.path.abspath(unicode_file_path)
# Tzutalin 20160906 : Add file list and dock to move faster
2016-09-06 20:39:42 +08:00
# Highlight the file item
if unicode_file_path and self.file_list_widget.count() > 0:
if unicode_file_path in self.m_img_list:
index = self.m_img_list.index(unicode_file_path)
file_widget_item = self.file_list_widget.item(index)
file_widget_item.setSelected(True)
else:
self.file_list_widget.clear()
self.m_img_list.clear()
2016-09-06 20:39:42 +08:00
if unicode_file_path and os.path.exists(unicode_file_path):
if LabelFile.is_label_file(unicode_file_path):
2015-09-17 10:37:20 +08:00
try:
self.label_file = LabelFile(unicode_file_path)
except LabelFileError as e:
self.error_message(u'Error opening file',
(u"<p><b>%s</b></p>"
u"<p>Make sure <i>%s</i> is a valid label file.")
% (e, unicode_file_path))
self.status("Error reading %s" % unicode_file_path)
2015-09-17 10:37:20 +08:00
return False
self.image_data = self.label_file.image_data
self.line_color = QColor(*self.label_file.lineColor)
self.fill_color = QColor(*self.label_file.fillColor)
self.canvas.verified = self.label_file.verified
2015-09-17 10:37:20 +08:00
else:
# Load image:
# read data first and store for saving into label file.
self.image_data = read(unicode_file_path, None)
self.label_file = None
2018-05-16 23:28:46 -07:00
self.canvas.verified = False
2017-11-29 21:20:14 +08:00
if isinstance(self.image_data, QImage):
image = self.image_data
else:
image = QImage.fromData(self.image_data)
2015-09-17 10:37:20 +08:00
if image.isNull():
self.error_message(u'Error opening file',
u"<p>Make sure <i>%s</i> is a valid image file." % unicode_file_path)
self.status("Error reading %s" % unicode_file_path)
2015-09-17 10:37:20 +08:00
return False
self.status("Loaded %s" % os.path.basename(unicode_file_path))
2015-09-17 10:37:20 +08:00
self.image = image
self.file_path = unicode_file_path
self.canvas.load_pixmap(QPixmap.fromImage(image))
if self.label_file:
self.load_labels(self.label_file.shapes)
self.set_clean()
2015-09-17 10:37:20 +08:00
self.canvas.setEnabled(True)
self.adjust_scale(initial=True)
self.paint_canvas()
self.add_recent_file(self.file_path)
self.toggle_actions(True)
self.show_bounding_box_from_annotation_file(self.file_path)
2015-12-09 21:51:26 +08:00
counter = self.counter_str()
self.setWindowTitle(__appname__ + ' ' + file_path + ' ' + counter)
# Default : select last item if there is at least one item
if self.label_list.count():
self.label_list.setCurrentItem(self.label_list.item(self.label_list.count() - 1))
self.label_list.item(self.label_list.count() - 1).setSelected(True)
self.canvas.setFocus(True)
2015-09-17 10:37:20 +08:00
return True
return False
def counter_str(self):
"""
Converts image counter to string representation.
"""
return '[{} / {}]'.format(self.cur_img_idx + 1, self.img_count)
def show_bounding_box_from_annotation_file(self, file_path):
if self.default_save_dir is not None:
basename = os.path.basename(os.path.splitext(file_path)[0])
xml_path = os.path.join(self.default_save_dir, basename + XML_EXT)
txt_path = os.path.join(self.default_save_dir, basename + TXT_EXT)
json_path = os.path.join(self.default_save_dir, basename + JSON_EXT)
"""Annotation file priority:
PascalXML > YOLO
"""
if os.path.isfile(xml_path):
self.load_pascal_xml_by_filename(xml_path)
elif os.path.isfile(txt_path):
self.load_yolo_txt_by_filename(txt_path)
elif os.path.isfile(json_path):
self.load_create_ml_json_by_filename(json_path, file_path)
else:
xml_path = os.path.splitext(file_path)[0] + XML_EXT
txt_path = os.path.splitext(file_path)[0] + TXT_EXT
json_path = os.path.splitext(file_path)[0] + JSON_EXT
if os.path.isfile(xml_path):
self.load_pascal_xml_by_filename(xml_path)
elif os.path.isfile(txt_path):
self.load_yolo_txt_by_filename(txt_path)
elif os.path.isfile(json_path):
self.load_create_ml_json_by_filename(json_path, file_path)
2015-09-17 10:37:20 +08:00
def resizeEvent(self, event):
if self.canvas and not self.image.isNull()\
and self.zoom_mode != self.MANUAL_ZOOM:
self.adjust_scale()
2015-09-17 10:37:20 +08:00
super(MainWindow, self).resizeEvent(event)
def paint_canvas(self):
2015-09-17 10:37:20 +08:00
assert not self.image.isNull(), "cannot paint null image"
self.canvas.scale = 0.01 * self.zoom_widget.value()
self.canvas.overlay_color = self.light_widget.color()
self.canvas.label_font_size = int(0.02 * max(self.image.width(), self.image.height()))
2015-09-17 10:37:20 +08:00
self.canvas.adjustSize()
self.canvas.update()
def adjust_scale(self, initial=False):
value = self.scalers[self.FIT_WINDOW if initial else self.zoom_mode]()
self.zoom_widget.setValue(int(100 * value))
2015-09-17 10:37:20 +08:00
def scale_fit_window(self):
2015-09-17 10:37:20 +08:00
"""Figure out the size of the pixmap in order to fit the main widget."""
e = 2.0 # So that no scrollbars are generated.
2015-09-17 10:37:20 +08:00
w1 = self.centralWidget().width() - e
h1 = self.centralWidget().height() - e
a1 = w1 / h1
2015-09-17 10:37:20 +08:00
# Calculate a new scale value based on the pixmap's aspect ratio.
w2 = self.canvas.pixmap.width() - 0.0
h2 = self.canvas.pixmap.height() - 0.0
a2 = w2 / h2
return w1 / w2 if a2 >= a1 else h1 / h2
def scale_fit_width(self):
2015-09-17 10:37:20 +08:00
# The epsilon does not seem to work too well here.
w = self.centralWidget().width() - 2.0
return w / self.canvas.pixmap.width()
def closeEvent(self, event):
if not self.may_continue():
2015-09-17 10:37:20 +08:00
event.ignore()
2017-08-08 05:10:34 +08:00
settings = self.settings
# If it loads images from dir, don't load it at the beginning
if self.dir_name is None:
settings[SETTING_FILENAME] = self.file_path if self.file_path else ''
2015-09-17 10:37:20 +08:00
else:
2017-08-08 05:10:34 +08:00
settings[SETTING_FILENAME] = ''
settings[SETTING_WIN_SIZE] = self.size()
settings[SETTING_WIN_POSE] = self.pos()
settings[SETTING_WIN_STATE] = self.saveState()
settings[SETTING_LINE_COLOR] = self.line_color
settings[SETTING_FILL_COLOR] = self.fill_color
settings[SETTING_RECENT_FILES] = self.recent_files
2017-08-08 05:10:34 +08:00
settings[SETTING_ADVANCE_MODE] = not self._beginner
if self.default_save_dir and os.path.exists(self.default_save_dir):
settings[SETTING_SAVE_DIR] = ustr(self.default_save_dir)
2015-09-17 10:37:20 +08:00
else:
settings[SETTING_SAVE_DIR] = ''
2015-11-17 13:00:37 +08:00
if self.last_open_dir and os.path.exists(self.last_open_dir):
settings[SETTING_LAST_OPEN_DIR] = self.last_open_dir
2015-11-17 13:00:37 +08:00
else:
settings[SETTING_LAST_OPEN_DIR] = ''
2015-11-17 13:00:37 +08:00
settings[SETTING_AUTO_SAVE] = self.auto_saving.isChecked()
settings[SETTING_SINGLE_CLASS] = self.single_class_mode.isChecked()
settings[SETTING_PAINT_LABEL] = self.display_label_option.isChecked()
settings[SETTING_DRAW_SQUARE] = self.draw_squares_option.isChecked()
settings[SETTING_LABEL_FILE_FORMAT] = self.label_file_format
2017-08-08 05:10:34 +08:00
settings.save()
2015-09-17 10:37:20 +08:00
def load_recent(self, filename):
if self.may_continue():
self.load_file(filename)
2015-09-17 10:37:20 +08:00
def scan_all_images(self, folder_path):
extensions = ['.%s' % fmt.data().decode("ascii").lower() for fmt in QImageReader.supportedImageFormats()]
2015-09-17 10:37:20 +08:00
images = []
for root, dirs, files in os.walk(folder_path):
2015-09-17 10:37:20 +08:00
for file in files:
if file.lower().endswith(tuple(extensions)):
relative_path = os.path.join(root, file)
path = ustr(os.path.abspath(relative_path))
images.append(path)
natural_sort(images, key=lambda x: x.lower())
2015-09-17 10:37:20 +08:00
return images
def change_save_dir_dialog(self, _value=False):
if self.default_save_dir is not None:
path = ustr(self.default_save_dir)
2015-11-17 13:00:37 +08:00
else:
path = '.'
2015-09-17 10:37:20 +08:00
dir_path = ustr(QFileDialog.getExistingDirectory(self,
'%s - Save annotations to the directory' % __appname__, path, QFileDialog.ShowDirsOnly
| QFileDialog.DontResolveSymlinks))
2015-11-17 13:00:37 +08:00
if dir_path is not None and len(dir_path) > 1:
self.default_save_dir = dir_path
2015-11-17 13:00:37 +08:00
self.show_bounding_box_from_annotation_file(self.file_path)
self.statusBar().showMessage('%s . Annotation will be saved to %s' %
('Change saved folder', self.default_save_dir))
self.statusBar().show()
2015-09-17 10:37:20 +08:00
def open_annotation_dialog(self, _value=False):
if self.file_path is None:
self.statusBar().showMessage('Please select image first')
self.statusBar().show()
2015-12-09 21:51:26 +08:00
return
path = os.path.dirname(ustr(self.file_path))\
if self.file_path else '.'
if self.label_file_format == LabelFileFormat.PASCAL_VOC:
filters = "Open Annotation XML file (%s)" % ' '.join(['*.xml'])
filename = ustr(QFileDialog.getOpenFileName(self, '%s - Choose a xml file' % __appname__, path, filters))
if filename:
if isinstance(filename, (tuple, list)):
filename = filename[0]
self.load_pascal_xml_by_filename(filename)
2015-12-09 21:29:26 +08:00
elif self.label_file_format == LabelFileFormat.CREATE_ML:
filters = "Open Annotation JSON file (%s)" % ' '.join(['*.json'])
filename = ustr(QFileDialog.getOpenFileName(self, '%s - Choose a json file' % __appname__, path, filters))
if filename:
if isinstance(filename, (tuple, list)):
filename = filename[0]
self.load_create_ml_json_by_filename(filename, self.file_path)
def open_dir_dialog(self, _value=False, dir_path=None, silent=False):
if not self.may_continue():
2015-09-17 10:37:20 +08:00
return
2015-11-17 13:00:37 +08:00
default_open_dir_path = dir_path if dir_path else '.'
if self.last_open_dir and os.path.exists(self.last_open_dir):
default_open_dir_path = self.last_open_dir
else:
default_open_dir_path = os.path.dirname(self.file_path) if self.file_path else '.'
if silent != True:
target_dir_path = ustr(QFileDialog.getExistingDirectory(self,
'%s - Open Directory' % __appname__, default_open_dir_path,
QFileDialog.ShowDirsOnly | QFileDialog.DontResolveSymlinks))
else:
target_dir_path = ustr(default_open_dir_path)
self.last_open_dir = target_dir_path
self.import_dir_images(target_dir_path)
self.default_save_dir = target_dir_path
if self.file_path:
self.show_bounding_box_from_annotation_file(file_path=self.file_path)
2017-11-29 21:20:14 +08:00
def import_dir_images(self, dir_path):
if not self.may_continue() or not dir_path:
return
2015-11-17 13:00:37 +08:00
self.last_open_dir = dir_path
self.dir_name = dir_path
self.file_path = None
self.file_list_widget.clear()
self.m_img_list = self.scan_all_images(dir_path)
self.img_count = len(self.m_img_list)
self.open_next_image()
for imgPath in self.m_img_list:
2016-09-06 20:39:42 +08:00
item = QListWidgetItem(imgPath)
self.file_list_widget.addItem(item)
2015-09-17 10:37:20 +08:00
def verify_image(self, _value=False):
# Proceeding next image without dialog if having any label
if self.file_path is not None:
try:
self.label_file.toggle_verify()
except AttributeError:
# If the labelling file does not exist yet, create if and
# re-save it with the verified attribute.
self.save_file()
if self.label_file is not None:
self.label_file.toggle_verify()
2018-06-23 01:14:30 -07:00
else:
return
self.canvas.verified = self.label_file.verified
self.paint_canvas()
self.save_file()
def open_prev_image(self, _value=False):
# Proceeding prev image without dialog if having any label
if self.auto_saving.isChecked():
if self.default_save_dir is not None:
if self.dirty is True:
self.save_file()
else:
self.change_save_dir_dialog()
return
if not self.may_continue():
return
if self.img_count <= 0:
2015-11-21 17:39:40 +08:00
return
if self.file_path is None:
2015-11-21 17:39:40 +08:00
return
if self.cur_img_idx - 1 >= 0:
self.cur_img_idx -= 1
filename = self.m_img_list[self.cur_img_idx]
if filename:
self.load_file(filename)
2015-11-21 17:39:40 +08:00
def open_next_image(self, _value=False):
# Proceeding next image without dialog if having any label
if self.auto_saving.isChecked():
if self.default_save_dir is not None:
if self.dirty is True:
self.save_file()
else:
self.change_save_dir_dialog()
return
if not self.may_continue():
2015-09-17 10:37:20 +08:00
return
if self.img_count <= 0:
2015-09-17 10:37:20 +08:00
return
if not self.m_img_list:
return
2015-11-21 17:39:40 +08:00
filename = None
if self.file_path is None:
filename = self.m_img_list[0]
self.cur_img_idx = 0
2015-11-21 17:39:40 +08:00
else:
if self.cur_img_idx + 1 < self.img_count:
self.cur_img_idx += 1
filename = self.m_img_list[self.cur_img_idx]
2015-11-21 17:39:40 +08:00
2015-09-17 10:37:20 +08:00
if filename:
self.load_file(filename)
2015-09-17 10:37:20 +08:00
def open_file(self, _value=False):
if not self.may_continue():
2015-09-17 10:37:20 +08:00
return
path = os.path.dirname(ustr(self.file_path)) if self.file_path else '.'
formats = ['*.%s' % fmt.data().decode("ascii").lower() for fmt in QImageReader.supportedImageFormats()]
filters = "Image & Label files (%s)" % ' '.join(formats + ['*%s' % LabelFile.suffix])
filename,_ = QFileDialog.getOpenFileName(self, '%s - Choose Image or Label file' % __appname__, path, filters)
2015-09-17 10:37:20 +08:00
if filename:
if isinstance(filename, (tuple, list)):
filename = filename[0]
self.cur_img_idx = 0
self.img_count = 1
self.load_file(filename)
def save_file(self, _value=False):
if self.default_save_dir is not None and len(ustr(self.default_save_dir)):
if self.file_path:
image_file_name = os.path.basename(self.file_path)
saved_file_name = os.path.splitext(image_file_name)[0]
saved_path = os.path.join(ustr(self.default_save_dir), saved_file_name)
self._save_file(saved_path)
else:
image_file_dir = os.path.dirname(self.file_path)
image_file_name = os.path.basename(self.file_path)
saved_file_name = os.path.splitext(image_file_name)[0]
saved_path = os.path.join(image_file_dir, saved_file_name)
self._save_file(saved_path if self.label_file
else self.save_file_dialog(remove_ext=False))
def save_file_as(self, _value=False):
2015-09-17 10:37:20 +08:00
assert not self.image.isNull(), "cannot save empty image"
self._save_file(self.save_file_dialog())
2015-09-17 10:37:20 +08:00
def save_file_dialog(self, remove_ext=True):
2015-09-17 10:37:20 +08:00
caption = '%s - Choose File' % __appname__
filters = 'File (*%s)' % LabelFile.suffix
open_dialog_path = self.current_path()
dlg = QFileDialog(self, caption, open_dialog_path, filters)
2015-09-17 10:37:20 +08:00
dlg.setDefaultSuffix(LabelFile.suffix[1:])
dlg.setAcceptMode(QFileDialog.AcceptSave)
filename_without_extension = os.path.splitext(self.file_path)[0]
dlg.selectFile(filename_without_extension)
2015-09-17 10:37:20 +08:00
dlg.setOption(QFileDialog.DontUseNativeDialog, False)
if dlg.exec_():
full_file_path = ustr(dlg.selectedFiles()[0])
if remove_ext:
return os.path.splitext(full_file_path)[0] # Return file path without the extension.
2018-12-02 20:25:16 -08:00
else:
return full_file_path
2015-09-17 10:37:20 +08:00
return ''
def _save_file(self, annotation_file_path):
if annotation_file_path and self.save_labels(annotation_file_path):
self.set_clean()
self.statusBar().showMessage('Saved to %s' % annotation_file_path)
2015-11-16 20:34:55 +08:00
self.statusBar().show()
2015-09-17 10:37:20 +08:00
def close_file(self, _value=False):
if not self.may_continue():
2015-09-17 10:37:20 +08:00
return
self.reset_state()
self.set_clean()
self.toggle_actions(False)
2015-09-17 10:37:20 +08:00
self.canvas.setEnabled(False)
self.actions.saveAs.setEnabled(False)
def delete_image(self):
delete_path = self.file_path
if delete_path is not None:
idx = self.cur_img_idx
if os.path.exists(delete_path):
os.remove(delete_path)
self.import_dir_images(self.last_open_dir)
if self.img_count > 0:
self.cur_img_idx = min(idx, self.img_count - 1)
filename = self.m_img_list[self.cur_img_idx]
self.load_file(filename)
else:
self.close_file()
2015-09-17 10:37:20 +08:00
def reset_all(self):
2017-10-13 23:44:47 +08:00
self.settings.reset()
self.close()
process = QProcess()
process.startDetached(os.path.abspath(__file__))
2017-10-13 23:44:47 +08:00
def may_continue(self):
if not self.dirty:
return True
else:
discard_changes = self.discard_changes_dialog()
if discard_changes == QMessageBox.No:
return True
elif discard_changes == QMessageBox.Yes:
self.save_file()
return True
else:
return False
2015-09-17 10:37:20 +08:00
def discard_changes_dialog(self):
yes, no, cancel = QMessageBox.Yes, QMessageBox.No, QMessageBox.Cancel
msg = u'You have unsaved changes, would you like to save them and proceed?\nClick "No" to undo all changes.'
return QMessageBox.warning(self, u'Attention', msg, yes | no | cancel)
2015-09-17 10:37:20 +08:00
def error_message(self, title, message):
2015-09-17 10:37:20 +08:00
return QMessageBox.critical(self, title,
'<p><b>%s</b></p>%s' % (title, message))
2015-09-17 10:37:20 +08:00
def current_path(self):
return os.path.dirname(self.file_path) if self.file_path else '.'
2015-09-17 10:37:20 +08:00
def choose_color1(self):
color = self.color_dialog.getColor(self.line_color, u'Choose line color',
default=DEFAULT_LINE_COLOR)
2015-09-17 10:37:20 +08:00
if color:
self.line_color = color
Shape.line_color = color
self.canvas.set_drawing_color(color)
2015-09-17 10:37:20 +08:00
self.canvas.update()
self.set_dirty()
2015-09-17 10:37:20 +08:00
def delete_selected_shape(self):
self.remove_label(self.canvas.delete_selected())
self.set_dirty()
if self.no_shapes():
for action in self.actions.onShapesPresent:
action.setEnabled(False)
2015-09-17 10:37:20 +08:00
def choose_shape_line_color(self):
color = self.color_dialog.getColor(self.line_color, u'Choose Line Color',
default=DEFAULT_LINE_COLOR)
2015-09-17 10:37:20 +08:00
if color:
self.canvas.selected_shape.line_color = color
2015-09-17 10:37:20 +08:00
self.canvas.update()
self.set_dirty()
2015-09-17 10:37:20 +08:00
def choose_shape_fill_color(self):
color = self.color_dialog.getColor(self.fill_color, u'Choose Fill Color',
default=DEFAULT_FILL_COLOR)
2015-09-17 10:37:20 +08:00
if color:
self.canvas.selected_shape.fill_color = color
2015-09-17 10:37:20 +08:00
self.canvas.update()
self.set_dirty()
2015-09-17 10:37:20 +08:00
def copy_shape(self):
if self.canvas.selected_shape is None:
# True if one accidentally touches the left mouse button before releasing
return
self.canvas.end_move(copy=True)
self.add_label(self.canvas.selected_shape)
self.set_dirty()
2015-09-17 10:37:20 +08:00
def move_shape(self):
self.canvas.end_move(copy=False)
self.set_dirty()
2015-09-17 10:37:20 +08:00
def load_predefined_classes(self, predef_classes_file):
if os.path.exists(predef_classes_file) is True:
with codecs.open(predef_classes_file, 'r', 'utf8') as f:
2015-11-21 00:15:21 +08:00
for line in f:
line = line.strip()
if self.label_hist is None:
self.label_hist = [line]
2015-11-21 00:15:21 +08:00
else:
self.label_hist.append(line)
2015-09-17 10:37:20 +08:00
def load_pascal_xml_by_filename(self, xml_path):
if self.file_path is None:
return
if os.path.isfile(xml_path) is False:
return
2018-05-18 23:33:08 -07:00
self.set_format(FORMAT_PASCALVOC)
2018-03-01 22:34:57 -06:00
t_voc_parse_reader = PascalVocReader(xml_path)
shapes = t_voc_parse_reader.get_shapes()
self.load_labels(shapes)
self.canvas.verified = t_voc_parse_reader.verified
def load_yolo_txt_by_filename(self, txt_path):
if self.file_path is None:
2018-03-01 22:34:57 -06:00
return
if os.path.isfile(txt_path) is False:
2018-03-01 22:34:57 -06:00
return
2018-05-18 23:33:08 -07:00
self.set_format(FORMAT_YOLO)
t_yolo_parse_reader = YoloReader(txt_path, self.image)
shapes = t_yolo_parse_reader.get_shapes()
print(shapes)
self.load_labels(shapes)
self.canvas.verified = t_yolo_parse_reader.verified
def load_create_ml_json_by_filename(self, json_path, file_path):
if self.file_path is None:
return
if os.path.isfile(json_path) is False:
return
self.set_format(FORMAT_CREATEML)
create_ml_parse_reader = CreateMLReader(json_path, file_path)
shapes = create_ml_parse_reader.get_shapes()
self.load_labels(shapes)
self.canvas.verified = create_ml_parse_reader.verified
def copy_previous_bounding_boxes(self):
current_index = self.m_img_list.index(self.file_path)
if current_index - 1 >= 0:
prev_file_path = self.m_img_list[current_index - 1]
self.show_bounding_box_from_annotation_file(prev_file_path)
self.save_file()
2020-09-12 10:59:57 -07:00
def toggle_paint_labels_option(self):
for shape in self.canvas.shapes:
shape.paint_label = self.display_label_option.isChecked()
def toggle_draw_square(self):
self.canvas.set_drawing_shape_to_square(self.draw_squares_option.isChecked())
2018-10-02 22:01:36 +02:00
2015-09-17 10:37:20 +08:00
def inverted(color):
return QColor(*[255 - v for v in color.getRgb()])
2015-09-17 10:37:20 +08:00
def read(filename, default=None):
try:
reader = QImageReader(filename)
reader.setAutoTransform(True)
return reader.read()
2015-09-17 10:37:20 +08:00
except:
return default
def get_main_app(argv=None):
2017-01-02 21:54:08 -05:00
"""
Standard boilerplate Qt application code.
Do everything but app.exec_() -- so that we can test the application in one thread
"""
if not argv:
argv = []
2015-09-17 10:37:20 +08:00
app = QApplication(argv)
app.setApplicationName(__appname__)
app.setWindowIcon(new_icon("app"))
# Tzutalin 201705+: Accept extra agruments to change predefined class file
argparser = argparse.ArgumentParser()
argparser.add_argument("image_dir", nargs="?")
argparser.add_argument("class_file",
2020-08-02 00:14:18 -07:00
default=os.path.join(os.path.dirname(__file__), "data", "predefined_classes.txt"),
nargs="?")
argparser.add_argument("save_dir", nargs="?")
args = argparser.parse_args(argv[1:])
args.image_dir = args.image_dir and os.path.normpath(args.image_dir)
args.class_file = args.class_file and os.path.normpath(args.class_file)
args.save_dir = args.save_dir and os.path.normpath(args.save_dir)
# Usage : labelImg.py image classFile saveDir
win = MainWindow(args.image_dir,
args.class_file,
args.save_dir)
2015-09-17 10:37:20 +08:00
win.show()
2017-01-02 21:54:08 -05:00
return app, win
2018-03-30 13:24:41 +08:00
def main():
"""construct main app and run it"""
2018-03-30 13:24:41 +08:00
app, _win = get_main_app(sys.argv)
2015-09-17 10:37:20 +08:00
return app.exec_()
if __name__ == '__main__':
2018-03-30 13:24:41 +08:00
sys.exit(main())