-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Incremental save of annotations (#120)
* using shapes id generated by a client * removed md5.js, code cleanup * fixed update_paths function; code cleanup; * fixed import existing tasks without client_id * added some sanity checks for cleint_id; improved annotation parser logic * fixed dumping and uploading annotation if annotation task contains interpolation shapes
- Loading branch information
Showing
17 changed files
with
632 additions
and
462 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Generated by Django 2.0.9 on 2018-10-11 12:17 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('engine', '0009_auto_20180917_1424'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='labeledbox', | ||
name='client_id', | ||
field=models.BigIntegerField(default=-1), | ||
), | ||
migrations.AddField( | ||
model_name='labeledpoints', | ||
name='client_id', | ||
field=models.BigIntegerField(default=-1), | ||
), | ||
migrations.AddField( | ||
model_name='labeledpolygon', | ||
name='client_id', | ||
field=models.BigIntegerField(default=-1), | ||
), | ||
migrations.AddField( | ||
model_name='labeledpolyline', | ||
name='client_id', | ||
field=models.BigIntegerField(default=-1), | ||
), | ||
migrations.AddField( | ||
model_name='objectpath', | ||
name='client_id', | ||
field=models.BigIntegerField(default=-1), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.