Struct tensorflow::ops::ImageProjectiveTransformV2
source · pub struct ImageProjectiveTransformV2 { /* private fields */ }
Expand description
Builder for the ImageProjectiveTransformV2
operation.
Implementations§
source§impl ImageProjectiveTransformV2
impl ImageProjectiveTransformV2
sourcepub fn interpolation<ArgType: Into<String>>(self, value: ArgType) -> Self
pub fn interpolation<ArgType: Into<String>>(self, value: ArgType) -> Self
Sets the interpolation
attribute.
sourcepub fn fill_mode<ArgType: Into<String>>(self, value: ArgType) -> Self
pub fn fill_mode<ArgType: Into<String>>(self, value: ArgType) -> Self
Sets the fill_mode
attribute.
sourcepub fn add_control_input(self, op: Operation) -> Self
pub fn add_control_input(self, op: Operation) -> Self
Adds a control input.
sourcepub fn build<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>>(
&self,
images: O0,
transforms: O1,
output_shape: O2,
scope: &mut Scope
) -> Result<Operation>
pub fn build<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>>( &self, images: O0, transforms: O1, output_shape: O2, scope: &mut Scope ) -> Result<Operation>
Builds the ImageProjectiveTransformV2
operation.
sourcepub fn build_instance(
&self,
images: Output,
transforms: Output,
output_shape: Output,
scope: &mut Scope
) -> Result<ImageProjectiveTransformV2Inst>
pub fn build_instance( &self, images: Output, transforms: Output, output_shape: Output, scope: &mut Scope ) -> Result<ImageProjectiveTransformV2Inst>
Builds a new instance of ‘ImageProjectiveTransformV2’ Operation with it’s Outputs and Inputs exposed as methods.
Trait Implementations§
source§impl Debug for ImageProjectiveTransformV2
impl Debug for ImageProjectiveTransformV2
source§impl Default for ImageProjectiveTransformV2
impl Default for ImageProjectiveTransformV2
source§fn default() -> ImageProjectiveTransformV2
fn default() -> ImageProjectiveTransformV2
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for ImageProjectiveTransformV2
impl Send for ImageProjectiveTransformV2
impl Sync for ImageProjectiveTransformV2
impl Unpin for ImageProjectiveTransformV2
impl UnwindSafe for ImageProjectiveTransformV2
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