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
b7ce93be
Commit
b7ce93be
authored
May 31, 2026
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Made refineMotionVectors work with fast targets
parent
b691e9f3
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
149 additions
and
80 deletions
+149
-80
CuasMotion.java
src/main/java/com/elphel/imagej/cuas/CuasMotion.java
+147
-78
CuasMotionLMA.java
src/main/java/com/elphel/imagej/cuas/CuasMotionLMA.java
+2
-2
No files found.
src/main/java/com/elphel/imagej/cuas/CuasMotion.java
View file @
b7ce93be
This diff is collapsed.
Click to expand it.
src/main/java/com/elphel/imagej/cuas/CuasMotionLMA.java
View file @
b7ce93be
...
...
@@ -166,7 +166,7 @@ public class CuasMotionLMA {
"Phase1-index"
,
"Phase1-score"
,
"Phase1-amplitude"
,
"Phase1-mscore"
,
"Phase1-vstr"
,
"Phase1-vboost"
,
"Phase1-exp_boost"
};
public
static
final
String
EXTRA_SLICE_DISCARD_ON_LOAD
=
"Targets"
;
public
static
final
int
FAIL_PENDING
=
-
1
;
// By Claude on 05/07/2026: motion sentinel — tile tracked but not yet processed by LMA
//
public static final int FAIL_PENDING = -1; // By Claude on 05/07/2026: motion sentinel — tile tracked but not yet processed by LMA
public
static
final
int
FAIL_NONE
=
0
;
public
static
final
int
FAIL_MOTION
=
1
;
// motion strength/fraction too low, also - motion score too low
public
static
final
int
FAIL_NO_MAX
=
2
;
// no suitable local maximum
...
...
@@ -184,7 +184,7 @@ public class CuasMotionLMA {
public
static
final
int
FAIL_K_LOW
=
14
;
// Overshoot is too low (not used, it can be down to 0)
public
static
final
int
FAIL_K_HIGH
=
15
;
// Overshoot is too high
public
static
final
int
FAIL_FAR
=
16
;
// Peak is too far from the center
public
static
final
int
FAIL_BOOSTS
=
17
;
// Tried to use short exposure for slow motion
public
static
final
int
FAIL_BOOSTS
=
17
;
// Tried to use short exposure for slow motion
public
static
final
int
FAIL_VCORR
=
18
;
// MV refinement (fine pass) resulted in a too high correction (not yet checked)
public
static
final
int
FAIL_HORIZON
=
19
;
// Peak is below horizon
public
static
final
int
FAIL_MISMATCH
=
20
;
// Mismatch on both ends is too high
...
...
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