Skip to content

Commit

Permalink
Add support for int32 types
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 committed Mar 9, 2015
1 parent 59fbc8d commit 78492f4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions skimage/util/dtype.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
np.int16: (-32768, 32767),
np.int64: (-2**63, 2**63 - 1),
np.uint64: (0, 2**64 - 1),
np.int32: (-2**31, 2**31 - 1),
np.uint32: (0, 2**32 - 1),
np.float32: (-1, 1),
np.float64: (-1, 1)}

Expand Down

0 comments on commit 78492f4

Please sign in to comment.