Skip to content
This repository has been archived by the owner on May 8, 2021. It is now read-only.

Commit

Permalink
Fixed non-standard characters in docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter554 committed Oct 8, 2018
1 parent 1cea167 commit 6a0c657
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,5 @@ dist
_build

staintools\.egg-info/

*.pyc
2 changes: 1 addition & 1 deletion staintools/reinhard_color_normalizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class ReinhardColorNormalizer(object):
"""
Normalize a patch color to the target image using the method of:
E. Reinhard, M. Adhikhmin, B. Gooch, and P. Shirley,
Color transfer between images
'Color transfer between images'
"""

def __init__(self):
Expand Down
2 changes: 1 addition & 1 deletion staintools/stain_extractors/macenko_stain_extractor.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def get_stain_matrix(I, luminosity_threshold=0.8, angular_percentile=99):
"""
Stain matrix estimation via method of:
M. Macenko et al.,
A method for normalizing histology slides for quantitative analysis,”
'A method for normalizing histology slides for quantitative analysis'
:param I: Image RGB uint8.
:param luminosity_threshold:
Expand Down
2 changes: 1 addition & 1 deletion staintools/stain_extractors/vahadane_stain_extractor.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def get_stain_matrix(I, luminosity_threshold=0.8, dictionary_regularizer=0.1):
"""
Stain matrix estimation via method of:
A. Vahadane et al.,
Structure-Preserving Color Normalization and Sparse Stain Separation for Histological Images,”
'Structure-Preserving Color Normalization and Sparse Stain Separation for Histological Images'
:param I: Image RGB uint8.
:param luminosity_threshold:
Expand Down

0 comments on commit 6a0c657

Please sign in to comment.