delta.pipeline.Position.save¶
- Position.save(filename: Optional[Union[str, Path]] = None, frames: Optional[List[int]] = None, save_format: Tuple[str, ...] = ('pickle', 'movie'))¶
Save to disk
- Parameters
- filenamestr or None, optional
File name for save file. If None, the file will be saved to PositionXXXXXX in the current directory. The default is None.
- frameslist of int or None, optional
List of frames to save in movie. If None, all frames are run. The default is None.
- save_formattuple of str, optional
Formats to save the data to. Options are “pickle’, ‘legacy’ (ie Matlab format), and “movie’ for saving an mp4 movie. The default is (“pickle’, ‘movie’).
- Returns
- None.