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
99126b30
Commit
99126b30
authored
Mar 20, 2024
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug fixes
parent
25c2bbf2
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
3 deletions
+11
-3
OrthoMapsCollection.java
...va/com/elphel/imagej/orthomosaic/OrthoMapsCollection.java
+11
-3
No files found.
src/main/java/com/elphel/imagej/orthomosaic/OrthoMapsCollection.java
View file @
99126b30
...
@@ -2670,10 +2670,10 @@ public class OrthoMapsCollection implements Serializable{
...
@@ -2670,10 +2670,10 @@ public class OrthoMapsCollection implements Serializable{
}
}
}
}
System
.
out
.
println
(
"Filtered out "
+
num_removed
+
System
.
out
.
println
(
"Filtered out "
+
num_removed
+
" scenes by the
main scene
filter."
);
" scenes by the filter."
);
// remove = new boolean [match_sort.size()];
// remove = new boolean [match_sort.size()];
}
else
{
}
else
{
System
.
out
.
println
(
"No scenes were filtered out by the
main scene
filter"
);
System
.
out
.
println
(
"No scenes were filtered out by the filter"
);
}
}
System
.
out
.
println
(
match_sort
.
size
()+
" candidates remain"
);
System
.
out
.
println
(
match_sort
.
size
()+
" candidates remain"
);
}
}
...
@@ -2700,6 +2700,10 @@ public class OrthoMapsCollection implements Serializable{
...
@@ -2700,6 +2700,10 @@ public class OrthoMapsCollection implements Serializable{
ImagePlus
[]
imps_extracted
,
// may be null - will not be displayed
ImagePlus
[]
imps_extracted
,
// may be null - will not be displayed
int
debugLevel
int
debugLevel
)
{
)
{
if
(
match_sort
.
isEmpty
())
{
System
.
out
.
println
(
"List of detected objects is empty, nothing to display"
);
return
;
}
PointRoi
roi
=
new
PointRoi
();
PointRoi
roi
=
new
PointRoi
();
roi
.
setOptions
(
"nolabel"
);
// label");
roi
.
setOptions
(
"nolabel"
);
// label");
for
(
int
mn
=
0
;
mn
<
match_sort
.
size
();
mn
++)
{
for
(
int
mn
=
0
;
mn
<
match_sort
.
size
();
mn
++)
{
...
@@ -2752,7 +2756,7 @@ public class OrthoMapsCollection implements Serializable{
...
@@ -2752,7 +2756,7 @@ public class OrthoMapsCollection implements Serializable{
extr_size
,
extr_size
,
prefix
+
"-objects_"
+
scene_num
+(
remove_dc
?
"_no-DC"
:
"_with-DC"
),
prefix
+
"-objects_"
+
scene_num
+(
remove_dc
?
"_no-DC"
:
"_with-DC"
),
extr_titles
);
// test_titles,
extr_titles
);
// test_titles,
imps_extracted
[
scene_num
].
setRoi
(
roi
);
imps_extracted
[
scene_num
].
setRoi
(
roi
);
// null
imps_extracted
[
scene_num
].
show
();
imps_extracted
[
scene_num
].
show
();
}
}
}
}
...
@@ -2770,6 +2774,10 @@ public class OrthoMapsCollection implements Serializable{
...
@@ -2770,6 +2774,10 @@ public class OrthoMapsCollection implements Serializable{
ImagePlus
[]
imps_extracted_corr
,
// may be null - will not be displayed
ImagePlus
[]
imps_extracted_corr
,
// may be null - will not be displayed
ImagePlus
[]
imps_extracted_corr_half
// may be null - will not be displayed
ImagePlus
[]
imps_extracted_corr_half
// may be null - will not be displayed
)
{
)
{
if
(
match_sort
.
isEmpty
())
{
System
.
out
.
println
(
"List of detected objects is empty, nothing to display"
);
return
;
}
PointRoi
roi
=
new
PointRoi
();
PointRoi
roi
=
new
PointRoi
();
roi
.
setOptions
(
"nolabel"
);
// label");
roi
.
setOptions
(
"nolabel"
);
// label");
for
(
int
mn
=
0
;
mn
<
match_sort
.
size
();
mn
++)
{
for
(
int
mn
=
0
;
mn
<
match_sort
.
size
();
mn
++)
{
...
...
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