Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
I
imagej-elphel
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
3
Issues
3
List
Board
Labels
Milestones
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Elphel
imagej-elphel
Commits
b5d06bab
Commit
b5d06bab
authored
Aug 26, 2017
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
misalignment - converted to true rotations
parent
770a8d96
Changes
7
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
816 additions
and
173 deletions
+816
-173
AlignmentCorrection.java
src/main/java/AlignmentCorrection.java
+50
-10
EyesisCorrectionParameters.java
src/main/java/EyesisCorrectionParameters.java
+41
-21
EyesisCorrections.java
src/main/java/EyesisCorrections.java
+1
-1
Eyesis_Correction.java
src/main/java/Eyesis_Correction.java
+2
-2
GeometryCorrection.java
src/main/java/GeometryCorrection.java
+410
-36
ImageDtt.java
src/main/java/ImageDtt.java
+162
-38
QuadCLT.java
src/main/java/QuadCLT.java
+150
-65
No files found.
src/main/java/AlignmentCorrection.java
View file @
b5d06bab
...
...
@@ -612,11 +612,13 @@ public class AlignmentCorrection {
mdata
=
new
double
[
8
][
samples_list
.
size
()][
3
];
}
int
indx
=
0
;
final
Matrix
[]
corr_rots
=
qc
.
geometryCorrection
.
getCorrVector
().
getRotMatrices
();
// get array of per-sensor rotation matrices
for
(
Sample
s:
samples_list
){
int
tileX
=
s
.
tile
%
tilesX
;
int
tileY
=
s
.
tile
/
tilesX
;
double
centerX
=
tileX
*
qc
.
tp
.
getTileSize
()
+
qc
.
tp
.
getTileSize
()/
2
;
// - shiftX;
double
centerY
=
tileY
*
qc
.
tp
.
getTileSize
()
+
qc
.
tp
.
getTileSize
()/
2
;
//- shiftY;
/*
double [][] centersXY_disp = qc.geometryCorrection.getPortsCoordinates(
centerX,
centerY,
...
...
@@ -625,6 +627,22 @@ public class AlignmentCorrection {
centerX,
centerY,
0.0); // disparity
*/
double
[][]
centersXY_disp
=
qc
.
geometryCorrection
.
getPortsCoordinatesAndDerivatives
(
corr_rots
,
// Matrix [] rots,
null
,
// Matrix [][] deriv_rots,
null
,
// double [][] pXYderiv, // if not null, should be double[8][]
centerX
,
centerY
,
disp_strength
[
2
*
s
.
series
+
0
][
s
.
tile
]/
magic_coeff
);
// disparity
double
[][]
centersXY_inf
=
qc
.
geometryCorrection
.
getPortsCoordinatesAndDerivatives
(
corr_rots
,
// Matrix [] rots,
null
,
// Matrix [][] deriv_rots,
null
,
// double [][] pXYderiv, // if not null, should be double[8][]
centerX
,
centerY
,
0.0
);
// disparity
for
(
int
i
=
0
;
i
<
centersXY_disp
.
length
;
i
++){
centersXY_disp
[
i
][
0
]
-=
centersXY_inf
[
i
][
0
];
centersXY_disp
[
i
][
1
]
-=
centersXY_inf
[
i
][
1
];
...
...
@@ -2077,7 +2095,7 @@ B = |+dy0 -dy1 -2*dy3 |
qc
.
geometryCorrection
,
// GeometryCorrection geometryCorrection,
qc
.
geometryCorrection
.
getCorrVector
(),
// GeometryCorrection.CorrVector corr_vector,
old_new_rms
,
// double [] old_new_rms, // should be double[2]
debugLevel
);
// 2); // 1); // int debugLevel)
2
);
//
debugLevel); // 2); // 1); // int debugLevel)
if
(
debugLevel
>
-
1
){
System
.
out
.
println
(
"Old extrinsic corrections:"
);
System
.
out
.
println
(
qc
.
geometryCorrection
.
getCorrVector
().
toString
());
...
...
@@ -2218,20 +2236,31 @@ B = |+dy0 -dy1 -2*dy3 |
jt_dbg
=
new
double
[
num_pars
][
2
*
NUM_SENSORS
*
mismatch_list
.
size
()];
}
Matrix
[]
corr_rots
=
corr_vector
.
getRotMatrices
();
// get array of per-sensor rotation matrices
Matrix
[][]
deriv_rots
=
corr_vector
.
getRotDeriveMatrices
();
for
(
int
indx
=
0
;
indx
<
mismatch_list
.
size
();
indx
++){
// need indx value
Mismatch
mm
=
mismatch_list
.
get
(
indx
);
double
[]
pXY
=
mm
.
getPXY
();
double
[][]
deriv
=
new
double
[
2
*
NUM_SENSORS
][];
int
dbg_index
=
dbg_index
(
pXY
,
dbg_decimate
);
// double [][] f =
geometryCorrection
.
getPortsCoordinatesAndDerivatives
(
/*
geometryCorrection.getPortsCoordinatesAndDerivatives_old(
corr_vector, // CorrVector corr_vector,
deriv, // boolean calc_deriv,
pXY[0], // double px,
pXY[1], // double py,
mm.getDisparityMeas()); // getDisparityTask()); // double disparity)
// convert to symmetrical coordianets
*/
geometryCorrection
.
getPortsCoordinatesAndDerivatives
(
corr_rots
,
// Matrix [] rots,
deriv_rots
,
// Matrix [][] deriv_rots,
deriv
,
// boolean calc_deriv,
pXY
[
0
],
// double px,
pXY
[
1
],
// double py,
mm
.
getDisparityMeas
());
// getDisparityTask()); // double disparity)
// convert to symmetrical coordinates
double
[][]
jt_partial
=
corr_vector
.
getJtPartial
(
deriv
,
// double [][] port_coord_deriv,
...
...
@@ -2381,17 +2410,27 @@ B = |+dy0 -dy1 -2*dy3 |
{
double
[][]
dMismatch_dXY
=
(
new
Mismatch
()).
get_dMismatch_dXY
();
// just a static array
double
[]
mv
=
new
double
[
2
*
NUM_SENSORS
*
mismatch_list
.
size
()];
Matrix
[]
corr_rots
=
corr_vector
.
getRotMatrices
();
// get array of per-sensor rotation matrices
for
(
int
indx
=
0
;
indx
<
mismatch_list
.
size
();
indx
++){
// need indx value
Mismatch
mm
=
mismatch_list
.
get
(
indx
);
double
[]
pXY
=
mm
.
getPXY
();
double
[][]
f
=
geometryCorrection
.
getPortsCoordinatesAndDerivatives
(
// 4x2
/*
double [][] f = geometryCorrection.getPortsCoordinatesAndDerivatives_old( // 4x2
corr_vector, // CorrVector corr_vector,
null, // boolean calc_deriv,
pXY[0], // double px,
pXY[1], // double py,
mm.getDisparityMeas()); // getDisparityTask()); // double disparity)
// convert to symmetrical coordianets
*/
double
[][]
f
=
geometryCorrection
.
getPortsCoordinatesAndDerivatives
(
// 4x2
corr_rots
,
// Matrix [] rots,
null
,
// Matrix [][] deriv_rots,
null
,
// boolean calc_deriv,
pXY
[
0
],
// double px,
pXY
[
1
],
// double py,
mm
.
getDisparityMeas
());
// getDisparityTask()); // double disparity)
// convert to symmetrical coordinates
// f is [4][2] array of port x,y coordinates - convert them to mv (linear array)
double
[]
mv_partial
=
new
double
[
dMismatch_dXY
.
length
];
...
...
@@ -2588,6 +2627,7 @@ B = |+dy0 -dy1 -2*dy3 |
mismatch_list
,
// ArrayList<Mismatch> mismatch_list,
geometryCorrection
,
// GeometryCorrection geometryCorrection,
corr_vector
,
// GeometryCorrection.CorrVector corr_vector)
// debugLevel); // int debugLevel)
debugLevel
);
// int debugLevel)
// convert Jacobian outputs to symmetrical measurement vectors (last one is non-zero only if disparity should be adjusted)
...
...
src/main/java/EyesisCorrectionParameters.java
View file @
b5d06bab
This diff is collapsed.
Click to expand it.
src/main/java/EyesisCorrections.java
View file @
b5d06bab
...
...
@@ -2327,7 +2327,7 @@ public class EyesisCorrections {
saveAndShowEnable
(
imp
,
correctionsParameters
,
true
,
true
);
}
p
rivate
void
saveAndShowEnable
(
p
ublic
void
saveAndShowEnable
(
ImagePlus
imp
,
EyesisCorrectionParameters
.
CorrectionParameters
correctionsParameters
,
boolean
enableSave
,
...
...
src/main/java/Eyesis_Correction.java
View file @
b5d06bab
...
...
@@ -542,8 +542,8 @@ private Panel panel1,
if
(
DCT_MODE
)
{
panelClt3
=
new
Panel
();
panelClt3
.
setLayout
(
new
GridLayout
(
1
,
0
,
5
,
5
));
// rows, columns, vgap, hgap
addButton
(
"Setup CLT Batch parameters"
,
panelClt3
,
color_configure
);
addButton
(
"Setup CLT parameters"
,
panelClt3
,
color_configure
);
addButton
(
"Setup CLT Batch parameters"
,
panelClt3
,
color_configure
);
addButton
(
"CLT batch process"
,
panelClt3
,
color_process
);
add
(
panelClt3
);
}
...
...
@@ -4604,7 +4604,7 @@ private Panel panel1,
System
.
out
.
println
(
"Created new QuadCLT instance, will need to read CLT kernels"
);
}
}
QUAD_CLT
.
resetExtrinsicCorr
();
QUAD_CLT
.
resetExtrinsicCorr
(
CLT_PARAMETERS
);
return
;
}
else
if
(
label
.
equals
(
"CLT show fine corr"
))
{
if
(
QUAD_CLT
==
null
){
...
...
src/main/java/GeometryCorrection.java
View file @
b5d06bab
This diff is collapsed.
Click to expand it.
src/main/java/ImageDtt.java
View file @
b5d06bab
This diff is collapsed.
Click to expand it.
src/main/java/QuadCLT.java
View file @
b5d06bab
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment