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
5abeec75
Commit
5abeec75
authored
Mar 14, 2026
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more verbose
parent
723693ce
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
Imx5.java
src/main/java/com/elphel/imagej/ims/Imx5.java
+4
-0
No files found.
src/main/java/com/elphel/imagej/ims/Imx5.java
View file @
5abeec75
...
...
@@ -192,6 +192,10 @@ public class Imx5 {
double
[]
quat
,
// additional correction
double
[]
targ_quat
,
// quaternion to be corrected
boolean
inverse
)
{
if
((
quat
==
null
)
||
(
targ_quat
==
null
))
{
System
.
out
.
println
(
"applyQuaternionToQuaternion(): returning null"
);
return
null
;
}
Rotation
ims_rot
=
new
Rotation
(
quat
[
0
],
quat
[
1
],
quat
[
2
],
quat
[
3
],
true
);
Rotation
targ_rot
=
new
Rotation
(
targ_quat
[
0
],
targ_quat
[
1
],
targ_quat
[
2
],
targ_quat
[
3
],
true
);
Rotation
rslt_rot
;
...
...
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