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
b7b5500e
Commit
b7b5500e
authored
Jun 08, 2021
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug fixes
parent
cde73fef
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
83 additions
and
12 deletions
+83
-12
DistortionCalibrationData.java
.../elphel/imagej/calibration/DistortionCalibrationData.java
+76
-11
Lwir16Reader.java
src/main/java/com/elphel/imagej/lwir/Lwir16Reader.java
+7
-1
No files found.
src/main/java/com/elphel/imagej/calibration/DistortionCalibrationData.java
View file @
b7b5500e
This diff is collapsed.
Click to expand it.
src/main/java/com/elphel/imagej/lwir/Lwir16Reader.java
View file @
b7b5500e
...
...
@@ -1162,7 +1162,13 @@ public class Lwir16Reader {
if
(
dt
==
null
)
{
System
.
out
.
println
(
"i="
+
i
+
", dt is NULL!"
);
}
img_seconds
[
i
]
=
Double
.
parseDouble
(
dt
.
substring
(
dt
.
lastIndexOf
(
":"
)+
1
));
try
{
img_seconds
[
i
]
=
Double
.
parseDouble
(
dt
.
substring
(
dt
.
lastIndexOf
(
":"
)+
1
));
}
catch
(
Exception
e
)
{
System
.
out
.
println
(
"i="
+
i
+
", dt="
+
dt
);
System
.
out
.
println
(
"i="
+
i
+
", dt="
+
dt
);
}
try
{
img_numbers
[
i
]
=
Integer
.
parseInt
((
String
)
imps
[
i
].
getProperty
(
"STD_Image_Number"
));
}
catch
(
Exception
e
)
{
...
...
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