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
df789de8
Commit
df789de8
authored
Jan 21, 2023
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added multi-cluster backdrop
parent
6315c513
Changes
3
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
487 additions
and
65 deletions
+487
-65
CLTParameters.java
src/main/java/com/elphel/imagej/cameras/CLTParameters.java
+11
-4
TexturedModel.java
...n/java/com/elphel/imagej/tileprocessor/TexturedModel.java
+251
-18
TileProcessor.java
...n/java/com/elphel/imagej/tileprocessor/TileProcessor.java
+225
-43
No files found.
src/main/java/com/elphel/imagej/cameras/CLTParameters.java
View file @
df789de8
...
...
@@ -520,6 +520,7 @@ public class CLTParameters {
public
boolean
lre_show_textures_slice
=
false
;
//true;
public
boolean
lre_show_textures_combo
=
false
;
//true;
public
boolean
lre_show_textures_tiles
=
false
;
//true;
public
boolean
lre_show_sky_textures
=
false
;
//true;
public
double
pt_super_trust
=
1.6
;
// If strength exceeds ex_strength * super_trust, do not apply ex_nstrength and plate_ds
public
boolean
pt_keep_raw_fg
=
true
;
// Do not replace raw tiles by the plates, if raw is closer (like poles)
...
...
@@ -1626,6 +1627,8 @@ public class CLTParameters {
properties
.
setProperty
(
prefix
+
"lre_show_textures_combo"
,
this
.
lre_show_textures_combo
+
""
);
// boolean
properties
.
setProperty
(
prefix
+
"lre_show_textures_tiles"
,
this
.
lre_show_textures_tiles
+
""
);
// boolean
properties
.
setProperty
(
prefix
+
"lre_show_sky_textures"
,
this
.
lre_show_sky_textures
+
""
);
// boolean
properties
.
setProperty
(
prefix
+
"pt_super_trust"
,
this
.
pt_super_trust
+
""
);
properties
.
setProperty
(
prefix
+
"pt_keep_raw_fg"
,
this
.
pt_keep_raw_fg
+
""
);
properties
.
setProperty
(
prefix
+
"pt_scale_pre"
,
this
.
pt_scale_pre
+
""
);
...
...
@@ -2607,6 +2610,7 @@ public class CLTParameters {
if
(
properties
.
getProperty
(
prefix
+
"lre_show_textures_combo"
)!=
null
)
this
.
lre_show_textures_combo
=
Boolean
.
parseBoolean
(
properties
.
getProperty
(
prefix
+
"lre_show_textures_combo"
));
// boolean
if
(
properties
.
getProperty
(
prefix
+
"lre_show_textures_tiles"
)!=
null
)
this
.
lre_show_textures_tiles
=
Boolean
.
parseBoolean
(
properties
.
getProperty
(
prefix
+
"lre_show_textures_tiles"
));
// boolean
if
(
properties
.
getProperty
(
prefix
+
"lre_show_sky_textures"
)!=
null
)
this
.
lre_show_sky_textures
=
Boolean
.
parseBoolean
(
properties
.
getProperty
(
prefix
+
"lre_show_sky_textures"
));
// boolean
if
(
properties
.
getProperty
(
prefix
+
"pt_super_trust"
)!=
null
)
this
.
pt_super_trust
=
Double
.
parseDouble
(
properties
.
getProperty
(
prefix
+
"pt_super_trust"
));
if
(
properties
.
getProperty
(
prefix
+
"pt_keep_raw_fg"
)!=
null
)
this
.
pt_keep_raw_fg
=
Boolean
.
parseBoolean
(
properties
.
getProperty
(
prefix
+
"pt_keep_raw_fg"
));
...
...
@@ -3857,6 +3861,8 @@ public class CLTParameters {
"Show all-slice combined images for textures calculation."
);
gd
.
addCheckbox
(
"Show tile-resolution images"
,
this
.
lre_show_textures_tiles
,
// false;
"Show all-slices texture debug images with tile resolution (80x64 for Boson 640)."
);
gd
.
addCheckbox
(
"Show sky/backdrop texture expanding"
,
this
.
lre_show_sky_textures
,
// false;
"Show how sky/backdrop texture is cut and extrapolated."
);
gd
.
addTab
(
"Plates"
,
"Plates filtering when building initial z-map"
);
gd
.
addMessage
(
"********* Plates filtering when building initial z-map *********"
);
...
...
@@ -4971,8 +4977,9 @@ public class CLTParameters {
this
.
lre_show_textures_slice
=
gd
.
getNextBoolean
();
// boolean
this
.
lre_show_textures_combo
=
gd
.
getNextBoolean
();
// boolean
this
.
lre_show_textures_tiles
=
gd
.
getNextBoolean
();
// boolean
// end of gd.addtab ("Lateral resolution enhancement");
this
.
lre_show_sky_textures
=
gd
.
getNextBoolean
();
// boolean
// end of gd.addtab ("Lateral resolution enhancement");
this
.
pt_super_trust
=
gd
.
getNextNumber
();
this
.
pt_keep_raw_fg
=
gd
.
getNextBoolean
();
...
...
src/main/java/com/elphel/imagej/tileprocessor/TexturedModel.java
View file @
df789de8
This diff is collapsed.
Click to expand it.
src/main/java/com/elphel/imagej/tileprocessor/TileProcessor.java
View file @
df789de8
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