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
dbf595ce
Commit
dbf595ce
authored
Aug 28, 2014
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug fix
parent
5c802d75
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
Aberration_Calibration.java
src/main/java/Aberration_Calibration.java
+2
-2
FocusingField.java
src/main/java/FocusingField.java
+1
-1
No files found.
src/main/java/Aberration_Calibration.java
View file @
dbf595ce
...
...
@@ -9805,8 +9805,8 @@ if (MORE_BUTTONS) {
for
(
int
numStep
=
0
;
numStep
<
focusMeasurementParameters
.
scanTiltStepsY
;
numStep
++){
int
delta
=(
int
)
Math
.
round
(
focusMeasurementParameters
.
scanTiltRangeY
*
(
1.0
*
numStep
/(
focusMeasurementParameters
.
scanTiltStepsY
-
1
)
-
0.5
));
scanPos
[
0
]=
centerMotorPos
[
0
]
+
delta
;
scanPos
[
1
]=
centerMotorPos
[
1
]
-
delta
;
scanPos
[
0
]=
centerMotorPos
[
0
]
-
delta
;
scanPos
[
1
]=
centerMotorPos
[
1
]
+
delta
;
scanPos
[
2
]=
centerMotorPos
[
2
]+
0
;
if
(
debugLevel
>
0
)
System
.
out
.
println
(
"Reverse scanning tilt in Y direction, step#"
+(
numStep
+
1
)+
" (of "
+
focusMeasurementParameters
.
scanTiltStepsY
+
") at "
+
IJ
.
d2s
(
0.000000001
*(
System
.
nanoTime
()-
startTime
),
3
));
...
...
src/main/java/FocusingField.java
View file @
dbf595ce
...
...
@@ -866,7 +866,7 @@ private boolean [] filterByValue (
}
}
}
if
(
debugLevel
>
0
)
System
.
out
.
println
(
"filterByValue(): Filtered "
+
numFiltered
+
" samples, left "
+
numLeft
+
" samples"
);
if
(
debugLevel
>
1
)
System
.
out
.
println
(
"filterByValue(): Filtered "
+
numFiltered
+
" samples, left "
+
numLeft
+
" samples"
);
return
enable_out
;
}
...
...
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