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
32540c3c
Commit
32540c3c
authored
Aug 15, 2025
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
debugging
parent
270b2b7a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
CuasMotion.java
src/main/java/com/elphel/imagej/cuas/CuasMotion.java
+11
-1
No files found.
src/main/java/com/elphel/imagej/cuas/CuasMotion.java
View file @
32540c3c
...
...
@@ -3119,6 +3119,7 @@ public class CuasMotion {
e
.
printStackTrace
();
}
uas_log_path
=
resourcePath
.
toString
();
System
.
out
.
println
(
"uas_log_path="
+
uas_log_path
);
}
if
(
diamond_path
==
null
)
{
String
resource_name
=
TARGET_ICONS
[
target_type
][
scale2x
?
1
:
0
];
...
...
@@ -3186,7 +3187,10 @@ public class CuasMotion {
}
}
}
if
(
uaslog_pixels
!=
null
)
{
System
.
out
.
println
(
"uaslog_width="
+
uaslog_width
+
"uaslog_height="
+
uaslog_height
);
}
final
int
num_scenes
=
fpixels
.
length
;
final
int
num_pixels
=
fpixels
[
0
].
length
;
...
...
@@ -3315,6 +3319,12 @@ public class CuasMotion {
int
yc
=
(
int
)
Math
.
round
(
scale
*
uas_pXpYD
[
1
]);
int
xl
=
xc
-
uaslog_width
/
2
;
int
yt
=
yc
-
uaslog_height
/
2
;
if
(
nscene
<
10
)
{
System
.
out
.
println
(
String
.
format
(
"uas_pXpYD=[%f,%f,%f]"
,
uas_pXpYD
[
0
],
uas_pXpYD
[
1
],
uas_pXpYD
[
2
]));
System
.
out
.
println
(
String
.
format
(
"xc=%f, yc=%f, xl=%f, yt=%f"
,
xc
,
yc
,
xl
,
yt
));
System
.
out
.
println
(
String
.
format
(
"A=%f, T=%f, R=%f"
,
uasLogReader
.
getCameraATR
()[
0
],
uasLogReader
.
getCameraATR
()[
1
],
uasLogReader
.
getCameraATR
()[
1
]));
System
.
out
.
println
(
String
.
format
(
"titles[nscene]=%s, startTimeStamp=%f"
,
titles
[
nscene
],
uasLogReader
.
getStartTimestamp
()));
}
for
(
int
y
=
0
;
y
<
uaslog_height
;
y
++)
{
int
py
=
yt
+
y
;
if
((
py
>=
0
)
&&
(
py
<
height
))
{
...
...
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