Skip to content

Commit

Permalink
add some comments
Browse files Browse the repository at this point in the history
  • Loading branch information
StephanPreibisch committed Jul 31, 2024
1 parent a4c952d commit 62ff9b1
Showing 1 changed file with 16 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,9 @@ public static void reconstruct( final int slab )
// needs to go into Render (the wrong, inverse version Thomas did)


//
// Stitching
//
System.out.println( "\nSTITCHING" );

for ( int zIndex = 0; zIndex < numSlices; ++zIndex )
Expand Down Expand Up @@ -134,14 +136,18 @@ public static void reconstruct( final int slab )

final TransformedZLayer tzl = new TransformedZLayer();
tzl.transformedImages = modelsZ;

// if we wanted to render, should be zero-min with the following size
tzl.width = size[ 0 ];
tzl.height = size[ 1 ];

models.put( z, tzl );
}


// Rigid registration
//
// Rigid registration (Register_Virtual_Stack)
//
System.out.println( "\nRIGID REGISTRATION" );

// this directory contains all XML's of FIJI Register_Virtual_Stack_MT
Expand Down Expand Up @@ -234,6 +240,15 @@ else if ( mpicbg.trakem2.transform.AffineModel2D.class.isInstance( m ) )
b.y -= commonBounds.y; // strictly positive
*/
}

// if we wanted to render, should be zero-min with the following size
final int slabWidth = commonBounds.width;
final int slabHeight = commonBounds.height;


//
// Global Rotation
//
}

public static void main( String[] args )
Expand Down

0 comments on commit 62ff9b1

Please sign in to comment.