Skip to content

Commit df118b0

Browse files
authored
BUG: Slide height and width confusion. (#118)
ENH: Bump version to 2.3.1
1 parent eade63f commit df118b0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

histomics_stream/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
"""Whole-slide image streamer for machine learning frameworks."""
2020

21-
__version__ = "2.3.0"
21+
__version__ = "2.3.1"
2222

2323
"""
2424

histomics_stream/configure.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ def __init__(self):
3535
self._key_mapping = {
3636
"number_pixel_columns_for_chunk": "chunk_width",
3737
"number_pixel_columns_for_mask": "mask_width",
38-
"number_pixel_columns_for_slide": "slide_height",
38+
"number_pixel_columns_for_slide": "slide_width",
3939
"number_pixel_columns_for_tile": "tile_width",
4040
"number_pixel_overlap_columns_for_tile": "tile_overlap_width",
4141
"number_pixel_overlap_rows_for_tile": "tile_overlap_height",
4242
"number_pixel_rows_for_chunk": "chunk_height",
4343
"number_pixel_rows_for_mask": "mask_height",
44-
"number_pixel_rows_for_slide": "slide_width",
44+
"number_pixel_rows_for_slide": "slide_height",
4545
"number_pixel_rows_for_tile": "tile_height",
4646
"number_tile_columns_for_slide": "slide_width_tiles",
4747
"number_tile_rows_for_slide": "slide_height_tiles",
@@ -98,7 +98,7 @@ class FindResolutionForSlide(_TilesByCommon):
9898
9999
An instance of class FindResolutionForSlide is a callable that will add level,
100100
target_magnification, scan_magnification, read_magnification,
101-
returned_magnification, slide_width, and slide_height fields to a slide dictionary.
101+
returned_magnification, slide_height, and slide_width fields to a slide dictionary.
102102
103103
Parameters for the constructor
104104
------------------------------

0 commit comments

Comments
 (0)