Skip to content

Commit

Permalink
improve debug
Browse files Browse the repository at this point in the history
  • Loading branch information
StephanPreibisch committed Jul 14, 2024
1 parent 21327cb commit a1395e3
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,11 @@ public Void call() throws Exception
{
final int oldSize = tuple._2().size();
filterPoints( tuple._2(), tuple._3(), myMaxSpots );
System.out.println( "Filtered interval " + Util.printInterval( tuple._1() ) + " (" + Group.pvid( viewId ) + "): " + oldSize + " >>> " + tuple._2().size() );
System.out.println( "Filtered interval (limit=" + myMaxSpots + ") " + Util.printInterval( tuple._1() ) + " (" + Group.pvid( viewId ) + "): " + oldSize + " >>> " + tuple._2().size() );
}
else
{
System.out.println( "NOT filtered interval (limit=" + myMaxSpots + ") " + Util.printInterval( tuple._1() ) + " (" + Group.pvid( viewId ) + "): " + tuple._2().size() );
}

interestPointsPerViewId.get( viewId ).add( tuple._2() );
Expand Down

0 comments on commit a1395e3

Please sign in to comment.