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
88f25973
Commit
88f25973
authored
Apr 20, 2017
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
debugging plane split
parent
17860d45
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
1106 additions
and
204 deletions
+1106
-204
CLTPass3d.java
src/main/java/CLTPass3d.java
+12
-2
EyesisCorrectionParameters.java
src/main/java/EyesisCorrectionParameters.java
+65
-7
MeasuredLayers.java
src/main/java/MeasuredLayers.java
+1
-1
SuperTiles.java
src/main/java/SuperTiles.java
+554
-88
TilePlanes.java
src/main/java/TilePlanes.java
+330
-14
TileProcessor.java
src/main/java/TileProcessor.java
+144
-92
No files found.
src/main/java/CLTPass3d.java
View file @
88f25973
...
@@ -533,7 +533,8 @@ public class CLTPass3d{
...
@@ -533,7 +533,8 @@ public class CLTPass3d{
double
max_disparity
,
double
max_disparity
,
double
strength_floor
,
double
strength_floor
,
double
strength_pow
,
double
strength_pow
,
double
stBlurSigma
)
double
stBlurSigma
,
int
measSel
)
{
{
this
.
superTiles
=
new
SuperTiles
(
this
.
superTiles
=
new
SuperTiles
(
this
,
this
,
...
@@ -544,9 +545,18 @@ public class CLTPass3d{
...
@@ -544,9 +545,18 @@ public class CLTPass3d{
max_disparity
,
max_disparity
,
strength_floor
,
strength_floor
,
strength_pow
,
strength_pow
,
stBlurSigma
);
stBlurSigma
,
measSel
);
return
this
.
superTiles
;
return
this
.
superTiles
;
}
}
public
double
[]
showDisparityHistogram
(
int
measSel
)
{
if
(
this
.
superTiles
==
null
){
return
null
;
}
return
this
.
superTiles
.
showDisparityHistogram
(
measSel
);
}
public
double
[]
showDisparityHistogram
()
public
double
[]
showDisparityHistogram
()
{
{
if
(
this
.
superTiles
==
null
){
if
(
this
.
superTiles
==
null
){
...
...
src/main/java/EyesisCorrectionParameters.java
View file @
88f25973
This diff is collapsed.
Click to expand it.
src/main/java/MeasuredLayers.java
View file @
88f25973
...
@@ -224,7 +224,7 @@ public class MeasuredLayers {
...
@@ -224,7 +224,7 @@ public class MeasuredLayers {
* @return number of layers (some may be uninitialized
* @return number of layers (some may be uninitialized
*/
*/
public
int
get
n
umLayers
()
public
int
get
N
umLayers
()
{
{
if
(
layers
==
null
){
if
(
layers
==
null
){
return
0
;
return
0
;
...
...
src/main/java/SuperTiles.java
View file @
88f25973
This diff is collapsed.
Click to expand it.
src/main/java/TilePlanes.java
View file @
88f25973
This diff is collapsed.
Click to expand it.
src/main/java/TileProcessor.java
View file @
88f25973
This diff is collapsed.
Click to expand it.
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