File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
src/main/java/net/preibisch/bigstitcher/spark Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -601,7 +601,11 @@ public Void call() throws Exception
601
601
{
602
602
final int oldSize = tuple ._2 ().size ();
603
603
filterPoints ( tuple ._2 (), tuple ._3 (), myMaxSpots );
604
- System .out .println ( "Filtered interval " + Util .printInterval ( tuple ._1 () ) + " (" + Group .pvid ( viewId ) + "): " + oldSize + " >>> " + tuple ._2 ().size () );
604
+ System .out .println ( "Filtered interval (limit=" + myMaxSpots + ") " + Util .printInterval ( tuple ._1 () ) + " (" + Group .pvid ( viewId ) + "): " + oldSize + " >>> " + tuple ._2 ().size () );
605
+ }
606
+ else
607
+ {
608
+ System .out .println ( "NOT filtered interval (limit=" + myMaxSpots + ") " + Util .printInterval ( tuple ._1 () ) + " (" + Group .pvid ( viewId ) + "): " + tuple ._2 ().size () );
605
609
}
606
610
607
611
interestPointsPerViewId .get ( viewId ).add ( tuple ._2 () );
You can’t perform that action at this time.
0 commit comments