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
d302d6e1
Commit
d302d6e1
authored
Jul 20, 2018
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor fixes
parent
88908dd7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
3 deletions
+5
-3
QuadCLT.java
src/main/java/QuadCLT.java
+1
-0
TilePlanes.java
src/main/java/TilePlanes.java
+1
-1
TwoQuadCLT.java
src/main/java/TwoQuadCLT.java
+3
-2
No files found.
src/main/java/QuadCLT.java
View file @
d302d6e1
...
...
@@ -3366,6 +3366,7 @@ public class QuadCLT {
boolean
[][]
saturation_imp
,
int
debugLevel
)
{
this
.
image_name
=
set_name
;
ImagePlus
[]
imp_srcs
=
new
ImagePlus
[
channelFiles
.
length
];
this
.
geometryCorrection
.
woi_tops
=
new
int
[
channelFiles
.
length
];
// double [] scaleExposures = new double[channelFiles.length]; //
...
...
src/main/java/TilePlanes.java
View file @
d302d6e1
...
...
@@ -3510,7 +3510,7 @@ public class TilePlanes {
}
catch
(
Exception
e
)
{
System
.
out
.
println
(
"Problem in getWorldSin2():"
);
// TODO Auto-generated catch block
e
.
printStackTrace
();
//
e.printStackTrace();
// do nothing, just keep
return
1.0
;
}
...
...
src/main/java/TwoQuadCLT.java
View file @
d302d6e1
...
...
@@ -2086,9 +2086,10 @@ if (debugLevel > -100) return true; // temporarily !
double
[][]
rig_disparity_strength
=
clt_parameters
.
rig
.
ml_poles
?
quadCLT_main
.
tp
.
rig_post_poles_ds
:
quadCLT_main
.
tp
.
rig_pre_poles_ds
;
if
(
rig_disparity_strength
==
null
)
{
System
.
out
.
println
(
"DSI data for the scene after poles extraction is not available. You may enable it and re-run \"Ground truth\" command or run \"Poles GT\""
);
return
;
rig_disparity_strength
=
quadCLT_main
.
tp
.
rig_pre_poles_ds
;
System
.
out
.
println
(
"Using pre-poles data for ML output"
);
}
if
(
debugLevel
>
-
4
)
{
if
(
debugLevel
>
-
6
)
{
if
(
clt_parameters
.
rig
.
ml_poles
)
{
System
.
out
.
println
(
"==== Generating ML data for the DSI that includes extracted vertical poles ===="
);
}
else
{
...
...
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