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
13959a97
Commit
13959a97
authored
May 30, 2019
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed member access
parent
b3a35acd
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
LwirReader.java
src/main/java/com/elphel/imagej/lwir/LwirReader.java
+1
-1
LwirReaderParameters.java
...ain/java/com/elphel/imagej/lwir/LwirReaderParameters.java
+3
-0
No files found.
src/main/java/com/elphel/imagej/lwir/LwirReader.java
View file @
13959a97
...
...
@@ -567,7 +567,7 @@ public class LwirReader {
}
}
if
(
lrp
.
show_images
)
{
if
(
lrp
.
isShowImages
()
)
{
if
(
imps_avg
!=
null
)
{
for
(
ImagePlus
imp:
imps_avg
)
{
imp
.
show
();
...
...
src/main/java/com/elphel/imagej/lwir/LwirReaderParameters.java
View file @
13959a97
...
...
@@ -82,6 +82,9 @@ public class LwirReaderParameters {
this
.
debug_level
=
level
;
}
public
boolean
isShowImages
()
{
return
show_images
;
}
public
void
setProperties
(
String
prefix
,
Properties
properties
){
properties
.
setProperty
(
prefix
+
"avg_number"
,
this
.
avg_number
+
""
);
properties
.
setProperty
(
prefix
+
"lwir_ffc"
,
this
.
lwir_ffc
+
""
);
...
...
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