diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt index 00a76e59..140842ab 100644 --- a/CONTRIBUTORS.txt +++ b/CONTRIBUTORS.txt @@ -176,3 +176,9 @@ - François Orieux Image deconvolution http://research.orieux.fr + +- Vighnesh Birodkar + Blob Detection + +- Axel Donath + Blob Detection diff --git a/skimage/feature/blob.py b/skimage/feature/blob.py index 5389954c..2164755b 100644 --- a/skimage/feature/blob.py +++ b/skimage/feature/blob.py @@ -12,9 +12,6 @@ from .peak import peak_local_max # http://www.cs.utah.edu/~jfishbau/advimproc/project1/ (04.04.2013) # Theory behind: http://en.wikipedia.org/wiki/Blob_detection (04.04.2013) -# A lot of this code is borrowed from here -# https://github.com/adonath/blob_detection/tree/master/blob_detection - def _blob_overlap(blob1, blob2): """Finds the overlapping area fraction between two blobs.