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
42058891
Commit
42058891
authored
Apr 10, 2024
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improved reporting/logging results
parent
b70fdc39
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1279 additions
and
901 deletions
+1279
-901
CalibrationFileManagement.java
.../elphel/imagej/calibration/CalibrationFileManagement.java
+5
-1
OrthoMap.java
src/main/java/com/elphel/imagej/orthomosaic/OrthoMap.java
+1
-1
OrthoMapsCollection.java
...va/com/elphel/imagej/orthomosaic/OrthoMapsCollection.java
+453
-899
OrthoMapsParameters.java
...va/com/elphel/imagej/orthomosaic/OrthoMapsParameters.java
+820
-0
No files found.
src/main/java/com/elphel/imagej/calibration/CalibrationFileManagement.java
View file @
42058891
...
...
@@ -183,9 +183,13 @@ public class CalibrationFileManagement {
}
public
static
void
saveStringToFile
(
String
path
,
String
data
){
saveStringToFile
(
path
,
data
,
false
);
}
public
static
void
saveStringToFile
(
String
path
,
String
data
,
boolean
append
){
BufferedWriter
writer
=
null
;
try
{
writer
=
new
BufferedWriter
(
new
FileWriter
(
path
));
writer
=
new
BufferedWriter
(
new
FileWriter
(
path
,
append
));
writer
.
write
(
data
);
}
catch
(
IOException
e
)
{
...
...
src/main/java/com/elphel/imagej/orthomosaic/OrthoMap.java
View file @
42058891
...
...
@@ -3711,7 +3711,7 @@ public class OrthoMap implements Comparable <OrthoMap>, Serializable{
final
int
blank_xy
,
//
final
int
[]
wh
,
// result size
final
int
debugLevel
){
final
int
dbg_x
=
1144
;
// -2668;
final
int
dbg_x
=
-
1144
;
// -2668;
final
int
dbg_y
=
199
;
// 256;
final
int
height
=
data
.
length
/
width
;
...
...
src/main/java/com/elphel/imagej/orthomosaic/OrthoMapsCollection.java
View file @
42058891
This source diff could not be displayed because it is too large. You can
view the blob
instead.
src/main/java/com/elphel/imagej/orthomosaic/OrthoMapsParameters.java
0 → 100644
View file @
42058891
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