Skip to content

Commit

Permalink
Add cheatsheet for generics
Browse files Browse the repository at this point in the history
  • Loading branch information
minnerbe committed Aug 18, 2023
1 parent 37673f7 commit 9c69374
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,19 @@
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;

/*
// TODO: move this to common class and update once everything is semi-stable
Cheatsheet for the generics used in the whole distributed solver:
Mnemonic Alignment Intensity correction
F factory ZBlockFactory ZBlockFactory
G global RigidModel2D TranslationModel1D
M block(model) InterpolatedAffineModel2D ArrayList<AffineModel1D>
S stitching InterpolatedAffineModel2D -
P parameters FIBSEMAlignmentParameters<M, S> FIBSEMIntensityCorrectionParameters<M>
R (block) result AffineModel2D ArrayList<AffineModel1D>
Z final (result) AffineModel2D ArrayList<AffineModel1D>
*/

public class DistributedIntensityCorrectionSolver {
final IntensityCorrectionSetup cmdLineSetup;
final RenderSetup renderSetup;
Expand Down

0 comments on commit 9c69374

Please sign in to comment.