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
fce7f058
Commit
fce7f058
authored
3 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
TEST: Test loadData behaviour
parent
33a09260
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
tests/test_image_advanced.py
+23
-0
23 additions, 0 deletions
tests/test_image_advanced.py
with
23 additions
and
0 deletions
tests/test_image_advanced.py
+
23
−
0
View file @
fce7f058
...
@@ -321,3 +321,26 @@ def _test_image_calcRange(threaded):
...
@@ -321,3 +321,26 @@ def _test_image_calcRange(threaded):
if
threaded
:
if
threaded
:
img
.
getImageWrapper
().
getTaskThread
().
waitUntilIdle
()
img
.
getImageWrapper
().
getTaskThread
().
waitUntilIdle
()
assert
img
.
dataRange
==
(
0
,
1
)
assert
img
.
dataRange
==
(
0
,
1
)
# sanity check - make sure data is not loaded
# when loadData is False (fsl/fslpy#374)
def
test_Image_loadData
():
with
tests
.
testdir
()
as
testdir
:
filename
=
'
image.nii.gz
'
# Data range grows with volume
data
=
np
.
zeros
((
50
,
50
,
50
,
50
))
for
vol
in
range
(
data
.
shape
[
-
1
]):
data
[...,
vol
]
=
vol
fslimage
.
Image
(
data
).
save
(
filename
)
img
=
fslimage
.
Image
(
filename
,
loadData
=
False
)
assert
not
img
.
getImageWrapper
().
dataIsLoaded
img
=
fslimage
.
Image
(
filename
,
loadData
=
False
,
calcRange
=
False
)
assert
not
img
.
getImageWrapper
().
dataIsLoaded
img
=
fslimage
.
Image
(
filename
,
loadData
=
False
,
calcRange
=
True
)
assert
not
img
.
getImageWrapper
().
dataIsLoaded
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