Skip to content
Snippets Groups Projects
Commit bb82e062 authored by David GEISSBUHLER's avatar David GEISSBUHLER
Browse files

bugfix: array indices fixed

parent 7bd5b48c
No related branches found
No related tags found
2 merge requests!14MIFS database added,!13MIFS baselines added
...@@ -105,8 +105,10 @@ class MIFSPadDatabase(FileListPadDatabase): ...@@ -105,8 +105,10 @@ class MIFSPadDatabase(FileListPadDatabase):
annotations = {} # dictionary to return annotations = {} # dictionary to return
topleft = (bbox[1], bbox[0]) topleft = (bbox[0], bbox[1])
bottomright = (bbox[1] + bbox[3], bbox[0] + bbox[2]) bottomright = (bbox[0] + bbox[2], bbox[1] + bbox[3])
#topleft = (bbox[1], bbox[0])
#bottomright = (bbox[1] + bbox[3], bbox[0] + bbox[2])
annotations['0'] = {'topleft': topleft, 'bottomright': bottomright} annotations['0'] = {'topleft': topleft, 'bottomright': bottomright}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment