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
lafabregue
MultiCube
Commits
3125ae9f
Commit
3125ae9f
authored
Apr 19, 2018
by
lafabregue
Browse files
Update MultiResolutionClusterMap.java
parent
343ad356
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/mustic/utils/image/viewer/MultiResolutionClusterMap.java
View file @
3125ae9f
...
...
@@ -41,13 +41,9 @@ public class MultiResolutionClusterMap {
private
void
generateMaps
(
int
[]
map
)
{
int
[][]
newMap
=
new
int
[
width
][
height
];
// double step = 100./(height*width);
// double progress = imageResultPanel.getClassification().getProgress()+step;
for
(
int
j
=
0
;
j
<
height
;
j
++)
{
for
(
int
i
=
0
;
i
<
width
;
i
++)
{
newMap
[
i
][
j
]
=
map
[
i
+
j
*
width
];
// progress+=step;
// imageResultPanel.getClassification().setProgress((int)progress);
}
}
this
.
maps
.
add
(
newMap
);
...
...
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