Struct tensorflow::ops::NonMaxSuppressionInst
source · pub struct NonMaxSuppressionInst {
pub op: Operation,
}
Expand description
An instance of ‘NonMaxSuppression’ Operation with it’s Outputs and Inputs exposed as methods.
Fields§
§op: Operation
An instance of a fully built NonMaxSuppression Operation in a Tensorflow graph.
Implementations§
source§impl NonMaxSuppressionInst
impl NonMaxSuppressionInst
sourcepub fn selected_indices(&self) -> Output
pub fn selected_indices(&self) -> Output
Returns the ‘selected_indices’ Output of this ‘NonMaxSuppression’ operation.
sourcepub fn boxes(&self) -> Input<'_>
pub fn boxes(&self) -> Input<'_>
Returns the ‘boxes’ Input of this ‘NonMaxSuppression’ operation.
sourcepub fn scores(&self) -> Input<'_>
pub fn scores(&self) -> Input<'_>
Returns the ‘scores’ Input of this ‘NonMaxSuppression’ operation.
sourcepub fn max_output_size(&self) -> Input<'_>
pub fn max_output_size(&self) -> Input<'_>
Returns the ‘max_output_size’ Input of this ‘NonMaxSuppression’ operation.
Trait Implementations§
source§impl Clone for NonMaxSuppressionInst
impl Clone for NonMaxSuppressionInst
source§fn clone(&self) -> NonMaxSuppressionInst
fn clone(&self) -> NonMaxSuppressionInst
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for NonMaxSuppressionInst
impl Debug for NonMaxSuppressionInst
source§impl From<NonMaxSuppressionInst> for Operation
impl From<NonMaxSuppressionInst> for Operation
source§fn from(inst: NonMaxSuppressionInst) -> Operation
fn from(inst: NonMaxSuppressionInst) -> Operation
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for NonMaxSuppressionInst
impl Send for NonMaxSuppressionInst
impl Sync for NonMaxSuppressionInst
impl Unpin for NonMaxSuppressionInst
impl UnwindSafe for NonMaxSuppressionInst
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