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