pub struct PsfGrid { /* private fields */ }Implementations§
Source§impl PsfGrid
impl PsfGrid
pub fn new( label: &'static str, grid: GRID2D, directory_path: &'static str, center_fits_keys: (&'static str, &'static str), ) -> PsfGrid
pub fn load_data_frames(&mut self, x_num: usize, y_num: usize)
pub fn validate(&mut self) -> bool
pub fn interpolated_psf(&self, point: &Point) -> Vec<Vec<f64>>
pub fn grid_psf(&self, index: usize) -> Vec<Vec<f64>>
pub fn gaussian_blur(&self, blurred_directory: &'static str, std_in_pixels: f64)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PsfGrid
impl RefUnwindSafe for PsfGrid
impl Send for PsfGrid
impl Sync for PsfGrid
impl Unpin for PsfGrid
impl UnsafeUnpin for PsfGrid
impl UnwindSafe for PsfGrid
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more