You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Where the *tuple is a tuple describing the framework location of the requested data. For example, if I wanted to extract frame 1001 from volume 200 in hypercube 3, I would call
frame=data.readFrame( (3,200,1001) )
Or, if the dataset is only 4D (no hyper dimension), I would call
frame=data.readFrame( (200,1001) )
Also pluralized versions that accept lists in the tuples would be helpful, i.e.
# read frames 1000-2000 in hyper 3, volume 200frame=data.readFrames( (3,200,[1000,2000]) ) # or something like that!
The text was updated successfully, but these errors were encountered:
Add convenience methods to
jsdataset
for reading that use frame values instead of logical frame index. I would like to the following APIs:Where the
*tuple
is a tuple describing the framework location of the requested data. For example, if I wanted to extract frame 1001 from volume 200 in hypercube 3, I would callOr, if the dataset is only 4D (no hyper dimension), I would call
Also pluralized versions that accept lists in the tuples would be helpful, i.e.
The text was updated successfully, but these errors were encountered: