Exemple #1
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))
Exemple #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))
Exemple #3
0
 def slice(self, key=slice(None)):
     """Return a z slice of the PSF with rotational symmetries applied."""
     return _psf.zr2zxy(self.data[key])
Exemple #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])