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
67f71ac1
Commit
67f71ac1
authored
Aug 09, 2025
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
debugging
parent
9ac7e2a0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
CuasMotion.java
src/main/java/com/elphel/imagej/cuas/CuasMotion.java
+5
-1
No files found.
src/main/java/com/elphel/imagej/cuas/CuasMotion.java
View file @
67f71ac1
...
...
@@ -1059,7 +1059,8 @@ public class CuasMotion {
param_select
[
CuasMotionLMA
.
INDX_C
]
=
lma_fit_c
;
param_select
[
CuasMotionLMA
.
INDX_RR0
]
=
lma_fit_r
;
param_select
[
CuasMotionLMA
.
INDX_K
]
=
lma_fit_k
;
final
int
dbg_tile
=
(
38
+
45
*
80
);
final
int
dbg_seq
=
15
;
final
boolean
[]
fpn_mask
=
no_border
?
(
new
boolean
[
0
])
:
null
;
for
(
int
ithread
=
0
;
ithread
<
threads
.
length
;
ithread
++)
{
threads
[
ithread
]
=
new
Thread
()
{
...
...
@@ -1072,6 +1073,9 @@ public class CuasMotion {
// may be faster if process only where vector_field[nseq][ntile] is not null
for
(
int
nSeq
=
ai
.
getAndIncrement
();
nSeq
<
num_seq
;
nSeq
=
ai
.
getAndIncrement
())
{
for
(
int
ntile
=
0
;
ntile
<
num_tiles
;
ntile
++)
{
if
((
nSeq
==
dbg_seq
)
&&
(
ntile
==
dbg_tile
))
{
System
.
out
.
println
(
"getAccumulatedCoordinates(): nSeq="
+
nSeq
+
", ntile="
+
ntile
);
}
if
(
vector_fields
[
nSeq
][
ntile
]
!=
null
)
{
int
tileX
=
ntile
%
tilesX
;
int
tileY
=
ntile
/
tilesX
;
...
...
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