Skip to content

Commit

Permalink
Merge pull request #145 from Belberus/develop
Browse files Browse the repository at this point in the history
#135 Test uploading posetrack
  • Loading branch information
beapc18 authored Oct 5, 2019
2 parents 8c60e81 + 946629b commit 9998be0
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/python/logic/datasetService.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,16 +210,19 @@ def processAnnotationFilePT(self, dataset, file, dir):

try:
resultCategories = self.addCategoriesPT(categories) if categories is not None else True
print('finish categories')
except:
log.exception("Error while processing Categories")
resultCategories = True
try:
resultFrames = self.addFramesPT(dataset, frames) if frames is not None else True
print('finish frames')
except:
log.exception("Error while processing Frames")
resultFrames = True
try:
resultAnnotations = self.addAnnotationsPT(dataset, annotations) if annotations is not None else True
print('finish annotations')
except:
log.exception("Error while processing Annotations")
resultAnnotations = True
Expand Down

0 comments on commit 9998be0

Please sign in to comment.