numpyimage 3.5.1__tar.gz → 3.5.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: numpyimage
3
- Version: 3.5.1
3
+ Version: 3.5.2
4
4
  Summary: Load, save, & manipulate image files as numpy arrays
5
5
  Author-email: Jasper Phelps <jasper.s.phelps@gmail.com>
6
6
  License: MIT License
@@ -394,7 +394,7 @@ def show(data,
394
394
  data = load(data)
395
395
 
396
396
  if data_type == 'segmentation':
397
- data = utils.assign_random_colors(data, seed=kwargs.get('seed', None))
397
+ data = operations.assign_random_colors(data, seed=kwargs.get('seed', None))
398
398
 
399
399
  if (not data.ndim == 2) and not (data.ndim == 3 and utils.find_channel_axis(data) is not None):
400
400
  m = ('Data must have shape (y, x) for grayscale, '
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: numpyimage
3
- Version: 3.5.1
3
+ Version: 3.5.2
4
4
  Summary: Load, save, & manipulate image files as numpy arrays
5
5
  Author-email: Jasper Phelps <jasper.s.phelps@gmail.com>
6
6
  License: MIT License
@@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta'
4
4
 
5
5
  [project]
6
6
  name = 'numpyimage'
7
- version = '3.5.1'
7
+ version = '3.5.2'
8
8
  description = 'Load, save, & manipulate image files as numpy arrays'
9
9
  readme.file = 'README.md'
10
10
  readme.content-type = 'text/markdown'
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes