Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
alessiamarcolini committed Oct 14, 2020
1 parent 10db95d commit 0c95405
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ random_tiles_extractor = RandomTiler(
level=2,
seed=42,
check_tissue=True, # default
prefix="random", # save tiles in the "random" subdirectory of slide's processed_path
prefix="random/", # save tiles in the "random" subdirectory of slide's processed_path
suffix=".png" # default
)
```
Expand Down Expand Up @@ -273,7 +273,7 @@ grid_tiles_extractor = GridTiler(
level=0,
check_tissue=False,
pixel_overlap=0, # default
prefix="grid", # save tiles in the "grid" subdirectory of slide's processed_path
prefix="grid/", # save tiles in the "grid" subdirectory of slide's processed_path
suffix=".png" # default
)
```
Expand Down Expand Up @@ -322,7 +322,7 @@ scored_tiles_extractor = ScoreTiler(
level=0,
check_tissue=True,
pixel_overlap=0, # default
prefix="scored", # save tiles in the "scored" subdirectory of slide's processed_path
prefix="scored/", # save tiles in the "scored" subdirectory of slide's processed_path
suffix=".png" # default
)
```
Expand Down
6 changes: 3 additions & 3 deletions docs/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ extractor as follows:
level=2,
seed=42,
check_tissue=True, # default
prefix="random", # save tiles in the "random" subdirectory of slide's processed_path
prefix="random/", # save tiles in the "random" subdirectory of slide's processed_path
suffix=".png" # default
)
Expand Down Expand Up @@ -225,7 +225,7 @@ defining the number of overlapping pixels between two adjacent tiles,
level=0,
check_tissue=False,
pixel_overlap=0, # default
prefix=prefix="grid", # save tiles in the "grid" subdirectory of slide's processed_path
prefix="grid/", # save tiles in the "grid" subdirectory of slide's processed_path
suffix=".png" # default
)
Expand Down Expand Up @@ -279,7 +279,7 @@ specify the number of the top tiles we want to save with the
level=0,
check_tissue=True,
pixel_overlap=0, # default
prefix="scored", # save tiles in the "scored" subdirectory of slide's processed_path
prefix="scored/", # save tiles in the "scored" subdirectory of slide's processed_path
suffix=".png" # default
)
Expand Down

0 comments on commit 0c95405

Please sign in to comment.