Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fslpy
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FSL
fslpy
Commits
6e91d3fb
Commit
6e91d3fb
authored
4 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
RF: Handle -t/-K for 3D images/single label
parent
b8a733e9
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
fsl/wrappers/fslstats.py
+5
-5
5 additions, 5 deletions
fsl/wrappers/fslstats.py
with
5 additions
and
5 deletions
fsl/wrappers/fslstats.py
+
5
−
5
View file @
6e91d3fb
...
...
@@ -95,9 +95,9 @@ class fslstats(object):
The ``fslstats`` command can be executed via the :meth:`run` method.
Normally, the results will be returned as a
list of
floating point
numbers
. Pre-options will affect the structure of the return
value - see
:meth:`__init__` for details.
Normally, the results will be returned as a
scalar
floating point
number,
or a ``numpy`` array
. Pre-options will affect the structure of the return
value - see
:meth:`__init__` for details.
Attribute and method calls can be chained together, so a complete
...
...
@@ -162,7 +162,7 @@ class fslstats(object):
def
__getattr__
(
self
,
name
):
"""
Intercepts attribute accesses and
stag
es ``fslstats`` command-line
"""
Intercepts attribute accesses and
accumulat
es ``fslstats`` command-line
flags accordingly.
"""
...
...
@@ -238,7 +238,7 @@ class fslstats(object):
# reshape the result into
# (nvals, nvols, nlbls)
nlbls
=
int
(
len
(
result
)
/
nvols
)
result
=
result
.
reshape
((
nvols
,
nlbls
,
-
1
))
result
=
result
.
reshape
((
nvols
,
nlbls
,
-
1
))
.
squeeze
()
# Scalar - use numpy indexing weirdness
# to get our single value out.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment