mirror of
https://github.com/openvinotoolkit/cvat.git
synced 2022-03-09 18:58:10 +03:00
- changed Content-type for save_job request to application/json, object… - Adopted public PR - PASCAL VOC converter - Added convert_to_mask.py script - Fixed player continue plaing at the end of video, lock for editable object broke the client - Same colors for shapes and menus, ability to change color for label or group - Undo redo - Added license header for all files - Added .gitattributes file (critical for bash scripts) - Fixed "Don't delete tasks if a user is deleted" - More strict check for 'checkbox' and 'number' values - Added convert_to_coco.py script - Job statistic were extended. Blowradius was removed - More strict labels verification - Drag polygons by requirement, norm stroke opacity, easy box dragging - Drawing with mouse outside the image area - Fixed 7z support - Boundig box size in drawer, switcheable grid - Split tracks feature - Fix flip parsing - Update color set & color by label feature - Add point for polygons feature - Added context menu - Polyshapes
22 lines
686 B
Python
22 lines
686 B
Python
#!/usr/bin/env python
|
|
|
|
# Copyright (C) 2018 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
import os
|
|
import sys
|
|
|
|
if __name__ == "__main__":
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "cvat.settings.{}" \
|
|
.format(os.environ.get("DJANGO_CONFIGURATION", "development")))
|
|
try:
|
|
from django.core.management import execute_from_command_line
|
|
except ImportError as exc:
|
|
raise ImportError(
|
|
"Couldn't import Django. Are you sure it's installed and "
|
|
"available on your PYTHONPATH environment variable? Did you "
|
|
"forget to activate a virtual environment?"
|
|
) from exc
|
|
execute_from_command_line(sys.argv)
|