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
fd4fdfae
Commit
fd4fdfae
authored
Sep 26, 2014
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed "No-move measure", reduced debug output
parent
6e8225bb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
Aberration_Calibration.java
src/main/java/Aberration_Calibration.java
+1
-0
FocusingField.java
src/main/java/FocusingField.java
+2
-1
No files found.
src/main/java/Aberration_Calibration.java
View file @
fd4fdfae
...
...
@@ -5241,6 +5241,7 @@ if (MORE_BUTTONS) {
double
[][][]
sampleCoord
=
null
;
if
(
FOCUSING_FIELD
!=
null
){
sampleCoord
=
FOCUSING_FIELD
.
getSampleCoord
();
FOCUSING_FIELD
.
testQualB
(
false
);
// optimize qualB, store results in this.qualBOptimizationResults
}
else
{
sampleCoord
=
FOCUS_MEASUREMENT_PARAMETERS
.
sampleCoordinates
(
FOCUS_MEASUREMENT_PARAMETERS
.
result_PX0
,
...
...
src/main/java/FocusingField.java
View file @
fd4fdfae
...
...
@@ -4267,7 +4267,8 @@ public double [] findAdjustZ(
System
.
out
.
println
(
"findAdjustZ(): z="
+
z
+
" tx="
+
tx
+
" ty="
+
ty
+
" rms="
+
rms
+
" used "
+
numEn
+
" samples"
);
}
}
if
(
debugLevel
>
0
)
System
.
out
.
println
(
"findAdjustZ()-> z="
+
zBest
+
" tx="
+
tXBest
+
" ty="
+
tYBest
+
" (best RMS = "
+
bestRMS
+
" used "
+
bestEn
+
" samples)"
);
// if (debugLevel>0) System.out.println("findAdjustZ()-> z(absolute)="+zBest+" tx="+tXBest+" ty="+tYBest+" (best RMS = "+bestRMS+" used "+bestEn+" samples)");
if
(
debugLevel
>
1
)
System
.
out
.
println
(
"findAdjustZ()-> z(absolute)="
+
zBest
+
" tx="
+
tXBest
+
" ty="
+
tYBest
+
" (best RMS = "
+
bestRMS
+
" used "
+
bestEn
+
" samples)"
);
double
[]
result
={
zBest
,
tXBest
,
tYBest
};
return
result
;
}
...
...
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