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
de8d20db
Commit
de8d20db
authored
Aug 09, 2025
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
some optional debug prints
parent
67f71ac1
Changes
1
Hide 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 @
de8d20db
...
@@ -1379,7 +1379,7 @@ public class CuasMotion {
...
@@ -1379,7 +1379,7 @@ public class CuasMotion {
final
boolean
[][]
filter_target
=
new
boolean
[
num_seq
][
num_tiles
];
final
boolean
[][]
filter_target
=
new
boolean
[
num_seq
][
num_tiles
];
final
double
maxxy
=
GPUTileProcessor
.
DTT_SIZE
-
1
-
lma_minxy
;
// lma_minxy=1 - prevent bottom row/righth column
final
double
maxxy
=
GPUTileProcessor
.
DTT_SIZE
-
1
-
lma_minxy
;
// lma_minxy=1 - prevent bottom row/righth column
final
double
minxy
=
-
GPUTileProcessor
.
DTT_SIZE
+
lma_minxy
;
// lma_minxy=1 - prevent top row/left column
final
double
minxy
=
-
GPUTileProcessor
.
DTT_SIZE
+
lma_minxy
;
// lma_minxy=1 - prevent top row/left column
final
int
dbg_tile
=
-(
33
+
34
*
80
);
final
Thread
[]
threads
=
ImageDtt
.
newThreadArray
();
final
Thread
[]
threads
=
ImageDtt
.
newThreadArray
();
final
AtomicInteger
ai
=
new
AtomicInteger
(
0
);
final
AtomicInteger
ai
=
new
AtomicInteger
(
0
);
for
(
int
ithread
=
0
;
ithread
<
threads
.
length
;
ithread
++)
{
for
(
int
ithread
=
0
;
ithread
<
threads
.
length
;
ithread
++)
{
...
@@ -1390,6 +1390,10 @@ public class CuasMotion {
...
@@ -1390,6 +1390,10 @@ public class CuasMotion {
for
(
int
tileY
=
0
;
tileY
<
tilesY
;
tileY
++)
{
for
(
int
tileY
=
0
;
tileY
<
tilesY
;
tileY
++)
{
for
(
int
tileX
=
0
;
tileX
<
tilesX
;
tileX
++)
{
for
(
int
tileX
=
0
;
tileX
<
tilesX
;
tileX
++)
{
int
ntile
=
tileX
+
tilesX
*
tileY
;
int
ntile
=
tileX
+
tilesX
*
tileY
;
if
(
ntile
==
dbg_tile
)
{
System
.
out
.
println
(
"filterTargetsLMA(): ntile = "
+
ntile
);
}
double
[]
lma_rslts
=
target_coords
[
nSeq
][
ntile
];
double
[]
lma_rslts
=
target_coords
[
nSeq
][
ntile
];
if
(
lma_rslts
!=
null
)
{
if
(
lma_rslts
!=
null
)
{
if
(
lma_rslts
[
CuasMotionLMA
.
RSLT_ITERS
]
<
0
)
{
// fitting has not failed
if
(
lma_rslts
[
CuasMotionLMA
.
RSLT_ITERS
]
<
0
)
{
// fitting has not failed
...
...
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