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
21d3229b
Commit
21d3229b
authored
Jan 29, 2020
by
Stephane Dallongeville
Browse files
fixed my previous correction (Stephane)
parent
bf80f720
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/adufour/activecontours/DeformationProfiler.java
View file @
21d3229b
...
...
@@ -306,7 +306,7 @@ public class DeformationProfiler extends PluginTrackManagerProcessor implements
// FIX: better to use last detection time point in this case
if
(
seq
==
null
)
sizeT
=
trackPool
.
getLastDetectionTimePoint
();
sizeT
=
trackPool
.
getLastDetectionTimePoint
()
+
1
;
else
sizeT
=
seq
.
getSizeT
();
...
...
@@ -337,7 +337,7 @@ public class DeformationProfiler extends PluginTrackManagerProcessor implements
// FIX: better to use last detection time point in this case
if
(
seq
==
null
)
sizeT
=
trackPool
.
getLastDetectionTimePoint
();
sizeT
=
trackPool
.
getLastDetectionTimePoint
()
+
1
;
else
sizeT
=
seq
.
getSizeT
();
...
...
@@ -368,7 +368,7 @@ public class DeformationProfiler extends PluginTrackManagerProcessor implements
// FIX: better to use last detection time point in this case
if
(
seq
==
null
)
sizeT
=
trackPool
.
getLastDetectionTimePoint
();
sizeT
=
trackPool
.
getLastDetectionTimePoint
()
+
1
;
else
sizeT
=
seq
.
getSizeT
();
...
...
@@ -487,16 +487,10 @@ public class DeformationProfiler extends PluginTrackManagerProcessor implements
// FIX: better to use last detection time point in this case
if
(
seq
==
null
)
sizeT
=
trackPool
.
getLastDetectionTimePoint
();
sizeT
=
trackPool
.
getLastDetectionTimePoint
()
+
1
;
else
sizeT
=
seq
.
getSizeT
();
// time labels
for
(
int
t
=
0
;
t
<
sizeT
;
t
++)
XLSUtil
.
setCellNumber
(
sheet
,
t
+
1
,
0
,
t
*
tScale
);
// time labels
for
(
int
t
=
0
;
t
<
sizeT
;
t
++)
XLSUtil
.
setCellNumber
(
sheet
,
t
+
1
,
0
,
t
*
tScale
);
...
...
@@ -527,7 +521,7 @@ public class DeformationProfiler extends PluginTrackManagerProcessor implements
// FIX: better to use last detection time point in this case
if
(
seq
==
null
)
sizeT
=
trackPool
.
getLastDetectionTimePoint
();
sizeT
=
trackPool
.
getLastDetectionTimePoint
()
+
1
;
else
sizeT
=
seq
.
getSizeT
();
...
...
@@ -589,7 +583,7 @@ public class DeformationProfiler extends PluginTrackManagerProcessor implements
// FIX: better to use last detection time point in this case
if
(
seq
==
null
)
sizeT
=
trackPool
.
getLastDetectionTimePoint
();
sizeT
=
trackPool
.
getLastDetectionTimePoint
()
+
1
;
else
sizeT
=
seq
.
getSizeT
();
...
...
@@ -625,7 +619,7 @@ public class DeformationProfiler extends PluginTrackManagerProcessor implements
// FIX: better to use last detection time point in this case
if
(
seq
==
null
)
sizeT
=
trackPool
.
getLastDetectionTimePoint
();
sizeT
=
trackPool
.
getLastDetectionTimePoint
()
+
1
;
else
sizeT
=
seq
.
getSizeT
();
...
...
@@ -658,7 +652,7 @@ public class DeformationProfiler extends PluginTrackManagerProcessor implements
// FIX: better to use last detection time point in this case
if
(
seq
==
null
)
sizeT
=
trackPool
.
getLastDetectionTimePoint
();
sizeT
=
trackPool
.
getLastDetectionTimePoint
()
+
1
;
else
sizeT
=
seq
.
getSizeT
();
...
...
@@ -716,7 +710,7 @@ public class DeformationProfiler extends PluginTrackManagerProcessor implements
// FIX: better to use last detection time point in this case
if
(
seq
==
null
)
sizeT
=
trackPool
.
getLastDetectionTimePoint
();
sizeT
=
trackPool
.
getLastDetectionTimePoint
()
+
1
;
else
sizeT
=
seq
.
getSizeT
();
...
...
@@ -841,7 +835,7 @@ public class DeformationProfiler extends PluginTrackManagerProcessor implements
// FIX: better to use last detection time point in this case
if
(
seq
==
null
)
sizeT
=
trackPool
.
getLastDetectionTimePoint
();
sizeT
=
trackPool
.
getLastDetectionTimePoint
()
+
1
;
else
sizeT
=
seq
.
getSizeT
();
...
...
@@ -898,7 +892,7 @@ public class DeformationProfiler extends PluginTrackManagerProcessor implements
// FIX: better to use last detection time point in this case
if
(
seq
==
null
)
sizeT
=
trackPool
.
getLastDetectionTimePoint
();
sizeT
=
trackPool
.
getLastDetectionTimePoint
()
+
1
;
else
sizeT
=
seq
.
getSizeT
();
...
...
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