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§
source§impl GPCTree_Node
impl GPCTree_Node
pub fn equals(self, n: GPCTree_Node) -> Result<bool>
Trait Implementations§
source§impl Clone for GPCTree_Node
impl Clone for GPCTree_Node
source§fn clone(&self) -> GPCTree_Node
fn clone(&self) -> GPCTree_Node
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 GPCTree_Node
impl Debug for GPCTree_Node
source§impl PartialEq for GPCTree_Node
impl PartialEq for GPCTree_Node
source§fn 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 ==
.impl Copy for GPCTree_Node
impl StructuralPartialEq for GPCTree_Node
Auto Trait Implementations§
impl Freeze for GPCTree_Node
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§
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