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
e2478b97
Commit
e2478b97
authored
Jul 08, 2019
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor cleanup
parent
6c2fb8a0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
QuadCLT.java
src/main/java/com/elphel/imagej/tileprocessor/QuadCLT.java
+2
-1
No files found.
src/main/java/com/elphel/imagej/tileprocessor/QuadCLT.java
View file @
e2478b97
...
...
@@ -6793,7 +6793,8 @@ public class QuadCLT {
comp_diff
+=
new_corr
[
0
][
0
][
i
]
*
new_corr
[
0
][
0
][
i
];
}
comp_diff
=
Math
.
sqrt
(
comp_diff
);
boolean
done
=
(
comp_diff
<
min_sym_update
)
||
(
num_iter
==
max_tries
);
boolean
done
=
(
comp_diff
<
min_sym_update
)
||
(
num_iter
==
(
max_tries
-
1
));
// System.out.println("done="+done);
if
(
debugLevel
>
-
10
)
{
// should work even in batch mode
System
.
out
.
println
(
"#### extrinsicsCLT(): iteration step = "
+(
num_iter
+
1
)
+
" ( of "
+
max_tries
+
") change = "
+
comp_diff
+
" ("
+
min_sym_update
+
"), previous RMS = "
+
new_corr
[
0
][
1
][
0
]+
" (debugLevel = "
+
debugLevel
+
")"
);
...
...
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