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
6d4eee07
Commit
6d4eee07
authored
Oct 01, 2025
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More parameters in file names
parent
9d4b43a7
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
CuasMotion.java
src/main/java/com/elphel/imagej/cuas/CuasMotion.java
+6
-1
CuasRanging.java
src/main/java/com/elphel/imagej/cuas/CuasRanging.java
+1
-1
No files found.
src/main/java/com/elphel/imagej/cuas/CuasMotion.java
View file @
6d4eee07
...
...
@@ -6487,11 +6487,16 @@ public class CuasMotion {
double
lmax_flt_lsigma
=
clt_parameters
.
imp
.
cuas_lmax_flt_lsigma
;
// 1.0 // LPF - GB result of the previous subtraction
double
lmax_flt_scale
=
clt_parameters
.
imp
.
cuas_lmax_flt_scale
;
// 5.0 // scale filtering result
boolean
center_targ
=
clt_parameters
.
imp
.
cuas_center_targ
;
String
ps
=
((
prefix
!=
null
)?
prefix:
""
)
+
"-OFFS"
+
corr_offset
+
"-PAIRS"
+
corr_pairs
+
"-RSTR"
+
rstr
+
"-RMS"
+
lma_rms
+
"-SRMS"
+
lma_arms
+
"-RRMS"
+
lma_rrms
+
"-AMP"
+
lma_mina
+
"-FZ"
+
fat_zero
+
"-PCRA"
+
precorr_ra
+
"-PS"
+
corr_ra_step
+
"-TUM"
+
temporal_um
+
"-TT"
+
tum_threshold
+
"-MF"
+
lmax_fraction
+
"-HR"
+
lmax_hack_ridge
+
"-NL"
+
lmax_flt_neglim
+
"-FH"
+
lmax_flt_hsigma
+
"-FL"
+
lmax_flt_lsigma
+
"-FS"
+
lmax_flt_scale
;
/// "-NL"+lmax_flt_neglim+"-FH"+lmax_flt_hsigma+"-FL"+lmax_flt_lsigma+"-FS"+lmax_flt_scale+
"-CB"
+
clt_parameters
.
imp
.
cuas_rng_combine
+(
clt_parameters
.
imp
.
cuas_rng_coswnd
?
"-WC"
:
"-WR"
)+
"-UM"
+(
clt_parameters
.
imp
.
cuas_rng_um2
?
"D"
:
""
)
+
clt_parameters
.
imp
.
cuas_rng_um_sigma
+
"-M"
+
clt_parameters
.
imp
.
cuas_mcorr_sel
+
"-"
+
clt_parameters
.
imp
.
cuas_mcorr_sel_lma
;
if
(
center_targ
)
{
ps
+=
"-CENT"
;
}
...
...
src/main/java/com/elphel/imagej/cuas/CuasRanging.java
View file @
6d4eee07
...
...
@@ -226,7 +226,7 @@ public class CuasRanging {
System
.
out
.
println
(
"processMovingTargetsMulti(): FAILED TO READ TARGET DATA FROM "
+
disparity_path
);
}
else
{
targets
=
disparity_targets
;
System
.
out
.
println
(
"processMovingTargetsMulti(): re-using target d
ata
from "
+
disparity_path
);
System
.
out
.
println
(
"processMovingTargetsMulti(): re-using target d
isparities
from "
+
disparity_path
);
}
}
if
(
disparity_targets
==
null
)
{
...
...
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