Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Bioimage Analysis
Active Contour
Commits
073cce11
Commit
073cce11
authored
Jan 29, 2020
by
Stephane Dallongeville
Browse files
merged
parent
a4e34e47
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/adufour/activecontours/DeformationProfiler.java
View file @
073cce11
...
...
@@ -83,7 +83,7 @@ public class DeformationProfiler extends PluginTrackManagerProcessor implements
}
}
private
JComboBox
<
Descriptors
>
jComboDescriptors
=
new
JComboBox
<
Descriptors
>
(
Descriptors
.
values
());
private
JComboBox
jComboDescriptors
=
new
JComboBox
(
Descriptors
.
values
());
private
JButton
jButtonSaveToVTK
=
new
JButton
(
"Export meshes to VTK files"
);
...
...
@@ -1102,10 +1102,11 @@ public class DeformationProfiler extends PluginTrackManagerProcessor implements
return
new
Matrix
(
diag
);
}
private
static
Matrix
ones
(
int
m
,
int
n
)
{
double
[][]
array
=
new
double
[
m
][
n
];
for
(
double
[]
row
:
array
)
Arrays
.
fill
(
row
,
1.0
);
return
new
Matrix
(
array
,
m
,
n
);
}>>>>>>>
f5df793f8888f26b414aeecdb3fbc0732db1e1dc
private
static
Matrix
ones
(
int
m
,
int
n
)
{
double
[][]
array
=
new
double
[
m
][
n
];
for
(
double
[]
row
:
array
)
Arrays
.
fill
(
row
,
1.0
);
return
new
Matrix
(
array
,
m
,
n
);
}
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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