Skip to content

Commit

Permalink
Merge branch 'main' into 296-suspected-memory-leak-when-processing-la…
Browse files Browse the repository at this point in the history
…rge-datasets-with-append=false
  • Loading branch information
nepstad authored Oct 14, 2024
2 parents 9fab8f8 + 8ed8bc0 commit 25aa919
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyopia/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.8.0'
__version__ = '2.8.1'
2 changes: 1 addition & 1 deletion pyopia/instrument/silcam.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ def __init__(self, image_format='infer'):
self.extension_load = {'.silc': load_rgb8,
'.msilc': load_mono8,
'.bsilc': load_bayer_rgb8,
'.bmp': skimage.io.imread}
'.bmp': lambda filename: skimage.io.imread(filename).astype(np.float64) / 255}
self.format_load = {'RGB8': load_rgb8,
'MONO8': load_mono8, 'BAYER_RG8': load_bayer_rgb8}

Expand Down

0 comments on commit 25aa919

Please sign in to comment.