Struct opencv::optflow::GPCTree_Node
source · [−]#[repr(C)]pub struct GPCTree_Node {
pub coef: VecN<f64, 18>,
pub rhs: f64,
pub left: u32,
pub right: u32,
}
Fields
coef: VecN<f64, 18>
Hyperplane coefficients
rhs: f64
Bias term of the hyperplane
left: u32
right: u32
Implementations
sourceimpl GPCTree_Node
impl GPCTree_Node
pub fn equals(self, n: GPCTree_Node) -> Result<bool>
Trait Implementations
sourceimpl Clone for GPCTree_Node
impl Clone for GPCTree_Node
sourcefn clone(&self) -> GPCTree_Node
fn clone(&self) -> GPCTree_Node
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for GPCTree_Node
impl Debug for GPCTree_Node
sourceimpl PartialEq<GPCTree_Node> for GPCTree_Node
impl PartialEq<GPCTree_Node> for GPCTree_Node
sourcefn eq(&self, other: &GPCTree_Node) -> bool
fn eq(&self, other: &GPCTree_Node) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl Copy for GPCTree_Node
impl StructuralPartialEq for GPCTree_Node
Auto Trait Implementations
impl RefUnwindSafe for GPCTree_Node
impl Send for GPCTree_Node
impl Sync for GPCTree_Node
impl Unpin for GPCTree_Node
impl UnwindSafe for GPCTree_Node
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more