Skip to content
Snippets Groups Projects
Commit c65caa5a authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

TEST: Test for RGB images

parent d4a505f2
No related branches found
No related tags found
No related merge requests found
......@@ -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)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment