Image-Py / imagepy

Image process framework based on plugin like imagej, it is esay to glue with scipy.ndimage, scikit-image, opencv, simpleitk, mayavi...and any libraries based on numpy
http://imagepy.org
BSD 4-Clause "Original" or "Old" License
1.29k stars 330 forks source link

FIX-..\sciwx\canvas\test.py ----- o, m = mat(self.oribox, self.conbox, csbox) #100

Open pengguanjun opened 4 years ago

pengguanjun commented 4 years ago

Bug: File "d:\SourcesCode\gitHome\imagepy\sciwx\canvas\test.py", line 152, in draw_image o, m = mat(self.oribox, self.conbox, csbox) TypeError: mat() missing 1 required positional argument: 'cros'

FIXED: cros = csbox o, m = mat(self.oribox, self.conbox, csbox, cros)

mat defined: ...sciwx\canvas\boxutil.py def mat(ori, con, cell, cros):