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
758adc65
Commit
758adc65
authored
Mar 28, 2024
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Working with single-image higher AGL (75 and 100)
parent
5e4e5577
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
866 additions
and
276 deletions
+866
-276
GenericJTabbedDialog.java
...n/java/com/elphel/imagej/common/GenericJTabbedDialog.java
+25
-0
ComboMatch.java
src/main/java/com/elphel/imagej/orthomosaic/ComboMatch.java
+145
-109
OrthoMap.java
src/main/java/com/elphel/imagej/orthomosaic/OrthoMap.java
+233
-1
OrthoMapsCollection.java
...va/com/elphel/imagej/orthomosaic/OrthoMapsCollection.java
+463
-166
No files found.
src/main/java/com/elphel/imagej/common/GenericJTabbedDialog.java
View file @
758adc65
...
@@ -216,6 +216,31 @@ public class GenericJTabbedDialog implements ActionListener {
...
@@ -216,6 +216,31 @@ public class GenericJTabbedDialog implements ActionListener {
inp_units
.
putClientProperty
(
"type"
,
"combo"
);
inp_units
.
putClientProperty
(
"type"
,
"combo"
);
// combo.setPreferredSize(new Dimension(200));
// combo.setPreferredSize(new Dimension(200));
// combo.setSize(200, combo.getPreferredSize().height);
// combo.setSize(200, combo.getPreferredSize().height);
// combo.setMaximumSize(20); // combo.getPreferredSize() );
inp_units
.
setLayout
(
new
FlowLayout
(
FlowLayout
.
LEFT
));
addLine
(
label
,
inp_units
,
tooltip
);
}
public
void
addChoice
(
String
label
,
String
[]
items
,
String
defaultItem
,
String
tooltip
,
int
count
)
{
int
index
=
0
;
if
(
defaultItem
!=
null
)
{
for
(
int
i
=
0
;
i
<
items
.
length
;
i
++)
if
(
items
[
i
].
equals
(
defaultItem
))
{
index
=
i
;
break
;
}
}
JComboBox
<
String
>
combo
=
new
JComboBox
<
String
>(
items
);
combo
.
setSelectedIndex
(
index
);
JPanel
inp_units
=
new
JPanel
(
false
);
inp_units
.
add
(
combo
);
inp_units
.
putClientProperty
(
"type"
,
"combo"
);
if
(
count
>
0
)
{
combo
.
setMaximumRowCount
(
count
);
}
// combo.setPreferredSize(new Dimension(200));
// combo.setSize(200, combo.getPreferredSize().height);
// combo.setMaximumSize(20); // combo.getPreferredSize() );
// combo.setMaximumSize(20); // combo.getPreferredSize() );
inp_units
.
setLayout
(
new
FlowLayout
(
FlowLayout
.
LEFT
));
inp_units
.
setLayout
(
new
FlowLayout
(
FlowLayout
.
LEFT
));
...
...
src/main/java/com/elphel/imagej/orthomosaic/ComboMatch.java
View file @
758adc65
This diff is collapsed.
Click to expand it.
src/main/java/com/elphel/imagej/orthomosaic/OrthoMap.java
View file @
758adc65
This diff is collapsed.
Click to expand it.
src/main/java/com/elphel/imagej/orthomosaic/OrthoMapsCollection.java
View file @
758adc65
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