Skip to content

Commit 87c51a2

Browse files
committed
Fix bug in DogDetection constructor
As discussed in #43 The normalizeMinPeakValue was never used.
1 parent 647c47d commit 87c51a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/net/imglib2/algorithm/dog/DogDetection.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public DogDetection(
8686
final double minPeakValue,
8787
final boolean normalizeMinPeakValue )
8888
{
89-
this( Views.extendMirrorSingle( input ), input, calibration, sigmaSmaller, sigmaLarger, extremaType, minPeakValue, true );
89+
this( Views.extendMirrorSingle( input ), input, calibration, sigmaSmaller, sigmaLarger, extremaType, minPeakValue, normalizeMinPeakValue );
9090
}
9191

9292
/**

0 commit comments

Comments
 (0)