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
c65caa5a
Commit
c65caa5a
authored
5 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
TEST: Test for RGB images
parent
d4a505f2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/test_image.py
+24
-0
24 additions, 0 deletions
tests/test_image.py
with
24 additions
and
0 deletions
tests/test_image.py
+
24
−
0
View file @
c65caa5a
...
...
@@ -1147,3 +1147,27 @@ def _test_Image_init_xform(imgtype):
del
fimg
del
img
img
=
None
def
test_rgb_image
():
with
tempdir
():
dtype
=
np
.
dtype
([(
'
R
'
,
'
uint8
'
),
(
'
G
'
,
'
uint8
'
),
(
'
B
'
,
'
uint8
'
)])
data
=
np
.
zeros
((
20
,
20
,
20
),
dtype
=
dtype
)
for
i
in
np
.
ndindex
(
data
.
shape
):
data
[
'
R
'
][
i
]
=
np
.
random
.
randint
(
0
,
100
)
data
[
'
G
'
][
i
]
=
np
.
random
.
randint
(
100
,
200
)
data
[
'
B
'
][
i
]
=
np
.
random
.
randint
(
200
,
256
)
# fix the data limits
data
[
'
R
'
][
0
,
0
,
0
]
=
0
data
[
'
B
'
][
0
,
0
,
0
]
=
255
nib
.
Nifti1Image
(
data
,
np
.
eye
(
4
)).
to_filename
(
'
rgb.nii
'
)
img
=
fslimage
.
Image
(
'
rgb.nii
'
)
assert
img
.
dataRange
==
(
0
,
255
)
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