Skip to content

Commit

Permalink
v3.0.64
Browse files Browse the repository at this point in the history
  • Loading branch information
elishatofunmi committed Aug 16, 2023
1 parent 1c98668 commit 92db4f3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = rectvision
version = 3.0.63
version = 3.0.64
author = Rectlabs
author_email = rectanglenet@gmail.com
description = Rectvision package
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
long_description = "\n" + fh.read()

VERSION = '3.0.63'
VERSION = '3.0.64'
DESCRIPTION = 'A low-code tool to help create your own AI'
LONG_DESCRIPTION = 'A package that allows to build your own computer visions and NLP systems'

Expand Down
4 changes: 2 additions & 2 deletions src/rectvision/data/converters/rectvisConverter.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ def get_annotations(self):

rearranged_annotations[image_name]['image_id'] = annon_prop['file_id']
rearranged_annotations[image_name]['image_url'] = annon_prop['file']['url']
rearranged_annotations[image_name]['image_height'] =annon_prop['metadata']['height']
rearranged_annotations[image_name]['image_width'] = annon_prop['metadata']['width']
rearranged_annotations[image_name]['image_height'] =annon_prop['file']['metadata']['height']
rearranged_annotations[image_name]['image_width'] = annon_prop['file']['metadata']['width']
rearranged_annotations[image_name]['image_channels'] = 3
rearranged_annotations[image_name]['points'].append(annon_prop['points'])
rearranged_annotations[image_name]['labels'].append(annon_prop['label']['value'])
Expand Down

0 comments on commit 92db4f3

Please sign in to comment.