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