PyOPIA 2.8.0__tar.gz → 2.8.1__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.
Files changed (26) hide show
  1. {pyopia-2.8.0 → pyopia-2.8.1}/PKG-INFO +1 -1
  2. pyopia-2.8.1/pyopia/__init__.py +1 -0
  3. {pyopia-2.8.0 → pyopia-2.8.1}/pyopia/instrument/silcam.py +1 -1
  4. pyopia-2.8.0/pyopia/__init__.py +0 -1
  5. {pyopia-2.8.0 → pyopia-2.8.1}/LICENSE +0 -0
  6. {pyopia-2.8.0 → pyopia-2.8.1}/README.md +0 -0
  7. {pyopia-2.8.0 → pyopia-2.8.1}/pyopia/background.py +0 -0
  8. {pyopia-2.8.0 → pyopia-2.8.1}/pyopia/classify.py +0 -0
  9. {pyopia-2.8.0 → pyopia-2.8.1}/pyopia/cli.py +0 -0
  10. {pyopia-2.8.0 → pyopia-2.8.1}/pyopia/exampledata.py +0 -0
  11. {pyopia-2.8.0 → pyopia-2.8.1}/pyopia/instrument/__init__.py +0 -0
  12. {pyopia-2.8.0 → pyopia-2.8.1}/pyopia/instrument/common.py +0 -0
  13. {pyopia-2.8.0 → pyopia-2.8.1}/pyopia/instrument/holo.py +0 -0
  14. {pyopia-2.8.0 → pyopia-2.8.1}/pyopia/instrument/uvp.py +0 -0
  15. {pyopia-2.8.0 → pyopia-2.8.1}/pyopia/io.py +0 -0
  16. {pyopia-2.8.0 → pyopia-2.8.1}/pyopia/pipeline.py +0 -0
  17. {pyopia-2.8.0 → pyopia-2.8.1}/pyopia/plotting.py +0 -0
  18. {pyopia-2.8.0 → pyopia-2.8.1}/pyopia/process.py +0 -0
  19. {pyopia-2.8.0 → pyopia-2.8.1}/pyopia/simulator/__init__.py +0 -0
  20. {pyopia-2.8.0 → pyopia-2.8.1}/pyopia/simulator/silcam.py +0 -0
  21. {pyopia-2.8.0 → pyopia-2.8.1}/pyopia/statistics.py +0 -0
  22. {pyopia-2.8.0 → pyopia-2.8.1}/pyopia/tests/__init__.py +0 -0
  23. {pyopia-2.8.0 → pyopia-2.8.1}/pyopia/tests/test_classify.py +0 -0
  24. {pyopia-2.8.0 → pyopia-2.8.1}/pyopia/tests/test_notebooks.py +0 -0
  25. {pyopia-2.8.0 → pyopia-2.8.1}/pyopia/tests/test_pipeline.py +0 -0
  26. {pyopia-2.8.0 → pyopia-2.8.1}/pyproject.toml +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: PyOPIA
3
- Version: 2.8.0
3
+ Version: 2.8.1
4
4
  Summary: A Python Ocean Particle Image Analysis toolbox.
5
5
  Home-page: https://github.com/sintef/pyopia
6
6
  Keywords: Ocean,Particles,Imaging,Measurement,Size distribution
@@ -0,0 +1 @@
1
+ __version__ = '2.8.1'
@@ -245,7 +245,7 @@ class SilCamLoad():
245
245
  self.extension_load = {'.silc': load_rgb8,
246
246
  '.msilc': load_mono8,
247
247
  '.bsilc': load_bayer_rgb8,
248
- '.bmp': skimage.io.imread}
248
+ '.bmp': lambda filename: skimage.io.imread(filename).astype(np.float64) / 255}
249
249
  self.format_load = {'RGB8': load_rgb8,
250
250
  'MONO8': load_mono8, 'BAYER_RG8': load_bayer_rgb8}
251
251
 
@@ -1 +0,0 @@
1
- __version__ = '2.8.0'
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes