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 c78b2dc
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 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 README.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
StainTools
==========

Tools for tissue image stain normalization and augmentation in Python (tested on 3.5).
Tools for tissue image stain normalization and augmentation in Python 3.

.. image:: https://i.imgur.com/sS8AKaV.png
:width: 95%
Expand Down
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 c78b2dc

Please sign in to comment.