3d blob detection - Difference of Gaussian (DoG) method
Compare changes
- Alessia Saccardo authored
@@ -4,12 +4,12 @@ import numpy as np
@@ -4,12 +4,12 @@ import numpy as np
def __init__(self, volume, background=0, min_sigma=1, max_sigma=50, sigma_ratio=1.6, threshold=0.5, overlap=0.5, threshold_rel=None, exclude_border=False):
@@ -17,7 +17,7 @@ class blob_detection():
@@ -17,7 +17,7 @@ class blob_detection():
@@ -35,7 +35,7 @@ class blob_detection():
@@ -35,7 +35,7 @@ class blob_detection():
blobs = blob_dog(self.volume, min_sigma=self.min_sigma, max_sigma=self.max_sigma, sigma_ratio=self.sigma_ratio, threshold=self.threshold, overlap=self.overlap, threshold_rel=self.threshold_rel, exclude_border=self.exclude_border)