Struct tensorflow::eager::raw_ops::NonMaxSuppressionWithOverlaps
source · pub struct NonMaxSuppressionWithOverlaps { /* private fields */ }
Expand description
NonMaxSuppressionWithOverlaps
See : https://www.tensorflow.org/api_docs/python/tf/raw_ops/NonMaxSuppressionWithOverlaps
Implementations§
source§impl NonMaxSuppressionWithOverlaps
impl NonMaxSuppressionWithOverlaps
sourcepub fn target_device_name<ArgType: Into<String>>(self, value: ArgType) -> Self
pub fn target_device_name<ArgType: Into<String>>(self, value: ArgType) -> Self
Sets the `` attribute.
sourcepub fn call<'a, T0: ToTensorHandle<'a>, T1: ToTensorHandle<'a>, T2: ToTensorHandle<'a>, T3: ToTensorHandle<'a>, T4: ToTensorHandle<'a>>(
&self,
ctx: &'a Context,
overlaps: &T0,
scores: &T1,
max_output_size: &T2,
overlap_threshold: &T3,
score_threshold: &T4
) -> Result<TensorHandle<'a>>
pub fn call<'a, T0: ToTensorHandle<'a>, T1: ToTensorHandle<'a>, T2: ToTensorHandle<'a>, T3: ToTensorHandle<'a>, T4: ToTensorHandle<'a>>( &self, ctx: &'a Context, overlaps: &T0, scores: &T1, max_output_size: &T2, overlap_threshold: &T3, score_threshold: &T4 ) -> Result<TensorHandle<'a>>
Execute non_max_suppression_with_overlaps.
Trait Implementations§
source§impl Clone for NonMaxSuppressionWithOverlaps
impl Clone for NonMaxSuppressionWithOverlaps
source§fn clone(&self) -> NonMaxSuppressionWithOverlaps
fn clone(&self) -> NonMaxSuppressionWithOverlaps
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 moreAuto Trait Implementations§
impl RefUnwindSafe for NonMaxSuppressionWithOverlaps
impl Send for NonMaxSuppressionWithOverlaps
impl Sync for NonMaxSuppressionWithOverlaps
impl Unpin for NonMaxSuppressionWithOverlaps
impl UnwindSafe for NonMaxSuppressionWithOverlaps
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