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
270fcbc6
Commit
270fcbc6
authored
Nov 26, 2022
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Before adding BLUE_SKY to DSI_MAIN
parent
8ee61ae6
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
479 additions
and
466 deletions
+479
-466
OpticalFlow.java
...ain/java/com/elphel/imagej/tileprocessor/OpticalFlow.java
+290
-218
QuadCLT.java
src/main/java/com/elphel/imagej/tileprocessor/QuadCLT.java
+7
-1
TexturedModel.java
...n/java/com/elphel/imagej/tileprocessor/TexturedModel.java
+113
-90
LwirWorld.java
.../java/com/elphel/imagej/tileprocessor/lwoc/LwirWorld.java
+69
-157
No files found.
src/main/java/com/elphel/imagej/tileprocessor/OpticalFlow.java
View file @
270fcbc6
This diff is collapsed.
Click to expand it.
src/main/java/com/elphel/imagej/tileprocessor/QuadCLT.java
View file @
270fcbc6
...
...
@@ -846,7 +846,8 @@ public class QuadCLT extends QuadCLTCPU {
final
double
photo_offs
,
// 21946; // weighted average offset target value, if photo_offs_set (and not photo_offs_balance)
final
int
num_refines
,
// 2
final
int
min_good
,
// minimal number of "good" pixels
final
double
[][]
combo_dsn_final
,
// double [][] combo_dsn_final, // dls,
final
double
[][]
combo_dsn_final
,
// double [][] combo_dsn_final, // dls,
final
boolean
[]
blue_sky
,
int
threadsMax
,
final
boolean
debug
)
{
...
...
@@ -861,6 +862,11 @@ public class QuadCLT extends QuadCLTCPU {
disparity_ref
[
i
]
=
Double
.
NaN
;
}
}
if
(
blue_sky
!=
null
)
{
for
(
int
i
=
0
;
i
<
blue_sky
.
length
;
i
++)
if
(
blue_sky
[
i
])
{
disparity_ref
[
i
]
=
0.0
;
}
}
ImagePlus
img_ref
=
renderGPUFromDSI
(
-
1
,
// final int sensor_mask,
...
...
src/main/java/com/elphel/imagej/tileprocessor/TexturedModel.java
View file @
270fcbc6
This diff is collapsed.
Click to expand it.
src/main/java/com/elphel/imagej/tileprocessor/lwoc/LwirWorld.java
View file @
270fcbc6
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