@@ -313,41 +313,41 @@ class NIFTI1Hdr(t.HasTraits):
313313 Extensions flag.
314314 """
315315
316- littleEndian = t .Bool ().tag (sync = True )
317- dim_info = t .Int ().tag (sync = True )
318- dims = t .List (t .Int ()).tag (sync = True ) # image dimensions
319- intent_p1 = t .Float ().tag (sync = True )
320- intent_p2 = t .Float ().tag (sync = True )
321- intent_p3 = t .Float ().tag (sync = True )
322- intent_code = t .Int ().tag (sync = True )
323- datatypeCode = t .Int ().tag (sync = True )
324- numBitsPerVoxel = t .Int ().tag (sync = True )
325- slice_start = t .Int ().tag (sync = True )
326- slice_end = t .Int ().tag (sync = True )
327- slice_code = t .Int ().tag (sync = True )
328- pixDims = t .List (t .Float ()).tag (sync = True ) # voxel dimensions
329- vox_offset = t .Float ().tag (sync = True )
330- scl_slope = t .Float ().tag (sync = True )
331- scl_inter = t .Float ().tag (sync = True )
332- xyzt_units = t .Int ().tag (sync = True )
333- cal_max = t .Float ().tag (sync = True )
334- cal_min = t .Float ().tag (sync = True )
335- slice_duration = t .Float ().tag (sync = True )
336- toffset = t .Float ().tag (sync = True )
337- description = t .Unicode ().tag (sync = True )
338- aux_file = t .Unicode ().tag (sync = True )
339- intent_name = t .Unicode ().tag (sync = True )
340- qform_code = t .Int ().tag (sync = True )
341- sform_code = t .Int ().tag (sync = True )
342- quatern_b = t .Float ().tag (sync = True )
343- quatern_c = t .Float ().tag (sync = True )
344- quatern_d = t .Float ().tag (sync = True )
345- qoffset_x = t .Float ().tag (sync = True )
346- qoffset_y = t .Float ().tag (sync = True )
347- qoffset_z = t .Float ().tag (sync = True )
348- affine = t .List (t .List (t .Float ())).tag (sync = True )
349- magic = t .Unicode ().tag (sync = True )
350- extensionFlag = t .List (t .Int ()).tag (sync = True )
316+ littleEndian = t .Bool ().tag (sync = False )
317+ dim_info = t .Int ().tag (sync = False )
318+ dims = t .List (t .Int ()).tag (sync = False ) # image dimensions
319+ intent_p1 = t .Float ().tag (sync = False )
320+ intent_p2 = t .Float ().tag (sync = False )
321+ intent_p3 = t .Float ().tag (sync = False )
322+ intent_code = t .Int ().tag (sync = False )
323+ datatypeCode = t .Int ().tag (sync = False )
324+ numBitsPerVoxel = t .Int ().tag (sync = False )
325+ slice_start = t .Int ().tag (sync = False )
326+ slice_end = t .Int ().tag (sync = False )
327+ slice_code = t .Int ().tag (sync = False )
328+ pixDims = t .List (t .Float ()).tag (sync = False ) # voxel dimensions
329+ vox_offset = t .Float ().tag (sync = False )
330+ scl_slope = t .Float ().tag (sync = False )
331+ scl_inter = t .Float ().tag (sync = False )
332+ xyzt_units = t .Int ().tag (sync = False )
333+ cal_max = t .Float ().tag (sync = False )
334+ cal_min = t .Float ().tag (sync = False )
335+ slice_duration = t .Float ().tag (sync = False )
336+ toffset = t .Float ().tag (sync = False )
337+ description = t .Unicode ().tag (sync = False )
338+ aux_file = t .Unicode ().tag (sync = False )
339+ intent_name = t .Unicode ().tag (sync = False )
340+ qform_code = t .Int ().tag (sync = False )
341+ sform_code = t .Int ().tag (sync = False )
342+ quatern_b = t .Float ().tag (sync = False )
343+ quatern_c = t .Float ().tag (sync = False )
344+ quatern_d = t .Float ().tag (sync = False )
345+ qoffset_x = t .Float ().tag (sync = False )
346+ qoffset_y = t .Float ().tag (sync = False )
347+ qoffset_z = t .Float ().tag (sync = False )
348+ affine = t .List (t .List (t .Float ())).tag (sync = False )
349+ magic = t .Unicode ().tag (sync = False )
350+ extensionFlag = t .List (t .Int ()).tag (sync = False )
351351
352352
353353CAMEL_TO_SNAKE_GRAPH = {
0 commit comments