示例#1
0
文件: psf.py 项目: cgohlke/psf
    def volume(self):
        """Return a 3D volume of the PSF with all symmetries applied.

        The shape of the returned array is
            (2*self.shape[0]-1, 2*self.shape[1]-1, 2*self.shape[1]-1)

        """
        return mirror_symmetry(_psf.zr2zxy(self.data))
示例#2
0
    def volume(self):
        """Return a 3D volume of the PSF with all symmetries applied.

        The shape of the returned array is
            (2*self.shape[0]-1, 2*self.shape[1]-1, 2*self.shape[1]-1)

        """
        return mirror_symmetry(_psf.zr2zxy(self.data))
示例#3
0
文件: psf.py 项目: cgohlke/psf
 def slice(self, key=slice(None)):
     """Return a z slice of the PSF with rotational symmetries applied."""
     return _psf.zr2zxy(self.data[key])
示例#4
0
 def slice(self, key=slice(None)):
     """Return a z slice of the PSF with rotational symmetries applied."""
     return _psf.zr2zxy(self.data[key])