pub struct RawImage<'a> {
pub shape: Vec<usize>,
pub bitpix: Bitpix,
pub scaling: Scaling,
/* private fields */
}Expand description
An image read from an HDU, in whichever form the reader could give cheaply —
returned by crate::FitsReader::read_image for both plain and tiled-
compressed images, so callers needn’t know which they have. Carries the shape,
BITPIX, and Scaling; the pixels are exposed lazily through decode,
u8, physical, and unsigned.
A plain image borrows the data unit’s big-endian bytes in place (zero-copy);
a compressed one (ZIMAGE) holds the reconstructed host-endian samples it had
to decompress. The accessors paper over the difference — e.g. u8 is the
zero-copy BITPIX = 8 plane either way — so you only reach for raw_bytes when
you specifically want the undecoded on-disk bytes (plain images only).
Fields§
§shape: Vec<usize>§bitpix: Bitpix§scaling: ScalingImplementations§
Source§impl<'a> RawImage<'a>
impl<'a> RawImage<'a>
Sourcepub fn decode(&self) -> ImageData
pub fn decode(&self) -> ImageData
The host-endian samples. For a plain image this byte-swaps the on-disk bytes into an owned buffer; a compressed image’s pixels are already decoded (cloned out here).
Sourcepub fn u8(&self) -> Option<&[u8]>
pub fn u8(&self) -> Option<&[u8]>
The samples as a borrowed &[u8] when no byte-swap is needed (BITPIX = 8):
a plain image’s borrowed on-disk bytes, or a compressed image’s decoded u8
buffer. None for multi-byte element types — use RawImage::decode.
Sourcepub fn raw_bytes(&self) -> Option<&[u8]>
pub fn raw_bytes(&self) -> Option<&[u8]>
The undecoded big-endian on-disk bytes — Some only for a plain image
(zero-copy borrow); None for a compressed one, whose pixels were
reconstructed and have no on-disk byte form. Use RawImage::decode for the
samples regardless of form.
Sourcepub fn physical(&self) -> Vec<f64>
pub fn physical(&self) -> Vec<f64>
The physical-plane values: BZERO + BSCALE × sample, BLANK → NaN (§3.4).
Sourcepub fn physical_f32(&self) -> Vec<f32>
pub fn physical_f32(&self) -> Vec<f32>
The physical plane narrowed to f32 in a single pass — the compact, lossy
counterpart to physical. The scaling is still evaluated
in f64 (so each value is the correctly-rounded f32), but only one Vec<f32>
is allocated rather than a Vec<f64> the caller then re-walks to narrow. Prefer
it when the consumer wants f32 regardless (display, GPU upload, f32
pipelines); use physical when you need double precision —
e.g. large BITPIX = 64 integers or fine BSCALE/BZERO past f32’s range.
Sourcepub fn unsigned(&self) -> Option<UnsignedView>
pub fn unsigned(&self) -> Option<UnsignedView>
Exact typed integers when the scaling is the FITS unsigned (or signed-byte)
convention; None otherwise — same rule as Image::unsigned.
Sourcepub fn sample_type(&self) -> SampleType
pub fn sample_type(&self) -> SampleType
The effective element type these samples represent, resolving the unsigned and
signed-byte conventions from BITPIX + Scaling without decoding the pixels.
Source§impl RawImage<'_>
impl RawImage<'_>
Sourcepub fn physical_array(&self) -> ArrayD<f64>
Available on crate feature ndarray only.
pub fn physical_array(&self) -> ArrayD<f64>
ndarray only.The physical plane as an N-d f64 array (BZERO + BSCALE × sample, BLANK →
NaN), in FITS axis order — index arr[[x, y]].
Sourcepub fn to_ndarray(&self) -> ImageArray
Available on crate feature ndarray only.
pub fn to_ndarray(&self) -> ImageArray
ndarray only.The samples as a typed N-d ImageArray, in FITS axis order. Decodes into an
owned buffer first (the array then owns it, no further copy).
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for RawImage<'a>
impl<'a> RefUnwindSafe for RawImage<'a>
impl<'a> Send for RawImage<'a>
impl<'a> Sync for RawImage<'a>
impl<'a> Unpin for RawImage<'a>
impl<'a> UnsafeUnpin for RawImage<'a>
impl<'a> UnwindSafe for RawImage<'a>
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
Source§impl<T> FmtForward for T
impl<T> FmtForward for T
Source§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self to use its Binary implementation when Debug-formatted.Source§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self to use its Display implementation when
Debug-formatted.Source§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self to use its LowerExp implementation when
Debug-formatted.Source§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self to use its LowerHex implementation when
Debug-formatted.Source§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self to use its Octal implementation when Debug-formatted.Source§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self to use its Pointer implementation when
Debug-formatted.Source§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self to use its UpperExp implementation when
Debug-formatted.Source§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self to use its UpperHex implementation when
Debug-formatted.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>
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>
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 moreSource§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
Source§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
Source§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self and passes that borrow into the pipe function. Read moreSource§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self and passes that borrow into the pipe function. Read moreSource§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
Source§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
Source§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self, then passes self.as_ref() into the pipe function.Source§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self, then passes self.as_mut() into the pipe
function.Source§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self, then passes self.deref() into the pipe function.Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> Tap for T
impl<T> Tap for T
Source§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B> of a value. Read moreSource§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B> of a value. Read moreSource§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R> view of a value. Read moreSource§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R> view of a value. Read moreSource§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target of a value. Read moreSource§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target of a value. Read moreSource§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap() only in debug builds, and is erased in release builds.Source§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut() only in debug builds, and is erased in release
builds.Source§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow() only in debug builds, and is erased in release
builds.Source§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut() only in debug builds, and is erased in release
builds.Source§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref() only in debug builds, and is erased in release
builds.Source§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut() only in debug builds, and is erased in release
builds.Source§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref() only in debug builds, and is erased in release
builds.