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
b6394c1f
Commit
b6394c1f
authored
Apr 16, 2023
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Before changing far split format
parent
1ddf4e46
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
88 additions
and
68 deletions
+88
-68
BiQuadParameters.java
...ava/com/elphel/imagej/tileprocessor/BiQuadParameters.java
+3
-3
ImageDtt.java
src/main/java/com/elphel/imagej/tileprocessor/ImageDtt.java
+2
-2
OpticalFlow.java
...ain/java/com/elphel/imagej/tileprocessor/OpticalFlow.java
+83
-63
No files found.
src/main/java/com/elphel/imagej/tileprocessor/BiQuadParameters.java
View file @
b6394c1f
...
...
@@ -267,9 +267,9 @@ public class BiQuadParameters {
public
double
fsplit_neib_str
=
0.4
;
// minimal strength of the neighbor to compare
public
double
fsplit_neib_diff
=
1.5
;
// *** maximal disparity difference to neighbor to use
public
double
fsplit_disp
=
3.0
;
// maximal tile disparity to consider split.
public
double
fsplit_adiff
=
0.04
;
// minimal tile (combo) absolute disparity difference from neighbors
public
double
fsplit_rdiff
=
0.1
;
// minimal tile (combo) relative disparity difference from neighbors
public
double
fsplit_kfg_min
=
0.
1
;
// *** minimal fraction of kfg and (1.0-kfg)
public
double
fsplit_adiff
=
0.0
2
;
//
4;// minimal tile (combo) absolute disparity difference from neighbors
public
double
fsplit_rdiff
=
0.
02
;
//
1; // minimal tile (combo) relative disparity difference from neighbors
public
double
fsplit_kfg_min
=
0.
05
;
// *** minimal fraction of kfg and (1.0-kfg)
public
boolean
mll_generate_scene_outlines
=
false
;
// Uses 2 GB - change format, add dimensions (separate color for ref)
...
...
src/main/java/com/elphel/imagej/tileprocessor/ImageDtt.java
View file @
b6394c1f
...
...
@@ -1961,9 +1961,9 @@ public class ImageDtt extends ImageDttCPU {
// boolean dbg_val=globalDebugLevel>100;
nTile
=
tileY
*
tilesX
+
tileX
;
if
(
tp_tasks
[
iTile
].
getTask
()
==
0
)
continue
;
// nothing to do for this tile
boolean
debugTile0
=(
tileX
==
debug_tileX
)
&&
(
tileY
==
debug_tileY
)
&&
(
globalDebugLevel
>
0
);
// 1);
boolean
debugTile0
=(
tileX
==
debug_tileX
)
&&
(
tileY
>=
debug_tileY
)
&&
(
tileY
<
(
debug_tileY
+
3
)
)
&&
(
globalDebugLevel
>
0
);
// 1);
debugTile0
|=(
tileX
==
debug_tileX
-
1
)
&&
(
tileY
==
debug_tileY
)
&&
(
globalDebugLevel
>
0
);
// 1);
boolean
debugTile1
=(
tileX
==
debug_tileX
)
&&
(
tileY
==
debug_tileY
)
&&
(
globalDebugLevel
>
-
10
);
boolean
debugTile1
=(
tileX
==
debug_tileX
)
&&
(
tileY
>=
debug_tileY
)
&&
(
tileY
<
(
debug_tileY
+
3
)
)
&&
(
globalDebugLevel
>
-
10
);
if
(
debugTile0
)
{
System
.
out
.
println
(
"clt_process_tl_correlations(): tileX="
+
tileX
+
", tileY="
+
tileY
+
", iTile="
+
iTile
+
", nTile="
+
nTile
);
}
...
...
src/main/java/com/elphel/imagej/tileprocessor/OpticalFlow.java
View file @
b6394c1f
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