File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
src/main/java/net/preibisch/bigstitcher/spark Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change 30
30
import mpicbg .spim .data .registration .ViewRegistration ;
31
31
import mpicbg .spim .data .sequence .ViewId ;
32
32
import net .imglib2 .realtransform .AffineTransform3D ;
33
+ import net .imglib2 .util .Util ;
33
34
import net .preibisch .bigstitcher .spark .abstractcmdline .AbstractBasic ;
34
35
import net .preibisch .bigstitcher .spark .util .Import ;
35
36
import net .preibisch .legacy .io .TextFileAccess ;
36
37
import net .preibisch .mvrecon .fiji .spimdata .SpimData2 ;
38
+ import net .preibisch .mvrecon .fiji .spimdata .boundingbox .BoundingBox ;
39
+ import net .preibisch .mvrecon .process .boundingbox .BoundingBoxMaximal ;
37
40
import net .preibisch .mvrecon .process .interestpointregistration .pairwise .constellation .grouping .Group ;
38
41
import picocli .CommandLine ;
39
42
import picocli .CommandLine .Option ;
@@ -112,6 +115,9 @@ public Void call() throws Exception
112
115
if ( data == null )
113
116
return null ;
114
117
118
+ BoundingBox bb = new BoundingBoxMaximal ( Import .getViewIds ( data ), data ).estimate ( "Max bounding box." );
119
+ System .out .println ( "Full bounding for acquisition: " + Util .printInterval ( bb ));
120
+
115
121
final ViewId view = Import .getViewId ( vi );
116
122
117
123
System .out .println ( "Using transformations of viewId: " + Group .pvid ( view ) );
You can’t perform that action at this time.
0 commit comments