Пример #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])