Package pyopencv :: Module pyopencvext :: Class Point3f
[hide private]
[frames] | no frames]

Class Point3f

 object --+    
          |    
??.instance --+
              |
             Point3f


Property 'ndarray' provides a numpy.ndarray view on the object.
If you create a reference to 'ndarray', you must keep the object unchanged until your reference is deleted, or Python may crash!

To create an instance of Point3f that shares the same data with an ndarray instance, use:
    'Point3f.from_ndarray(a)' or 'asPoint3f(a)
where 'a' is an ndarray instance. Similarly, to avoid a potential Python crash, you must keep the current instance unchanged until the reference is deleted.

Instance Methods [hide private]
 
__add__(...)
__add__( (Point3f)arg1, (Point3f)arg2) -> Point3f :
 
__eq__(...)
__eq__( (Point3f)arg1, (Point3f)arg2) -> bool :
 
__getitem__(self, *args, **kwds)
 
__getslice__(self, *args, **kwds)
 
__iadd__(...)
__iadd__( (Point3f)arg1, (Point3f)arg2) -> Point3f :
 
__imul__(...)
__imul__( (Point3f)arg1, (object)arg2) -> Point3f :
 
__init__(...)
__init__( (object)arg1) -> None :
 
__isub__(...)
__isub__( (Point3f)arg1, (Point3f)arg2) -> Point3f :
 
__iter__(self, *args, **kwds)
 
__mul__(...)
__mul__( (Point3f)arg1, (object)arg2) -> Point3f :
 
__neg__(...)
__neg__( (Point3f)arg1) -> Point3f :
 
__reduce__(...)
helper for pickle
 
__repr__(self)
repr(x)
 
__rmul__(...)
__rmul__( (object)arg1, (Point3f)arg2) -> Point3f :
 
__setitem__(self, *args, **kwds)
 
__setslice__(self, *args, **kwds)
 
__sub__(...)
__sub__( (Point3f)arg1, (Point3f)arg2) -> Point3f :
 
__temp_func(...)
__temp_func( (Point3f)arg1) -> CvPoint3D32f :
 
assign(...)
assign( (Point3f)arg1, (Point3f)pt) -> Point3f :
 
ddot(...)
ddot( (Point3f)arg1, (Point3f)pt) -> float :
 
dot(...)
dot( (Point3f)arg1, (Point3f)pt) -> float :

Inherited from unreachable.instance: __new__

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __reduce_ex__, __setattr__, __sizeof__, __str__, __subclasshook__

Static Methods [hide private]
 
from_ndarray(...)
from_ndarray( (numpy.ndarray)inst_ndarray) -> object :
Class Variables [hide private]
  __instance_size__ = 20
Properties [hide private]
  ndarray
  this
  x
  y
  z

Inherited from object: __class__

Method Details [hide private]

__add__(...)
(Addition operator)

 

__add__( (Point3f)arg1, (Point3f)arg2) -> Point3f :

    C++ signature :
        cv::Point3_<float> __add__(cv::Point3_<float>,cv::Point3_<float>)

__eq__(...)
(Equality operator)

 

__eq__( (Point3f)arg1, (Point3f)arg2) -> bool :

    C++ signature :
        bool __eq__(cv::Point3_<float>,cv::Point3_<float>)

__iadd__(...)

 

__iadd__( (Point3f)arg1, (Point3f)arg2) -> Point3f :

    C++ signature :
        cv::Point3_<float> {lvalue} __iadd__(cv::Point3_<float> {lvalue},cv::Point3_<float>)

__imul__(...)

 

__imul__( (Point3f)arg1, (object)arg2) -> Point3f :

    C++ signature :
        cv::Point3_<float> {lvalue} __imul__(cv::Point3_<float> {lvalue},double)

__init__(...)
(Constructor)

 

__init__( (object)arg1) -> None :

    C++ signature :
        void __init__(_object*)

__init__( (object)arg1, (object)_x, (object)_y, (object)_z) -> None :

    C++ signature :
        void __init__(_object*,float,float,float)

__init__( (object)arg1, (Point3f)pt) -> None :

    C++ signature :
        void __init__(_object*,cv::Point3_<float>)

__init__( (object)arg1, (Point2f)pt) -> None :

    C++ signature :
        void __init__(_object*,cv::Point_<float>)

__init__( (object)arg1, (CvPoint3D32f)pt) -> None :

    C++ signature :
        void __init__(_object*,CvPoint3D32f)

__init__( (object)arg1, (Vec3f)v) -> None :

    C++ signature :
        void __init__(_object*,cv::Vec<float, 3>)

Overrides: object.__init__

__isub__(...)

 

__isub__( (Point3f)arg1, (Point3f)arg2) -> Point3f :

    C++ signature :
        cv::Point3_<float> {lvalue} __isub__(cv::Point3_<float> {lvalue},cv::Point3_<float>)

__mul__(...)

 

__mul__( (Point3f)arg1, (object)arg2) -> Point3f :

    C++ signature :
        cv::Point3_<float> __mul__(cv::Point3_<float>,double)

__neg__(...)

 

__neg__( (Point3f)arg1) -> Point3f :

    C++ signature :
        cv::Point3_<float> __neg__(cv::Point3_<float>)

__reduce__(...)

 

helper for pickle

Overrides: object.__reduce__
(inherited documentation)

__repr__(self)
(Representation operator)

 

repr(x)

Overrides: object.__repr__
(inherited documentation)

__rmul__(...)

 

__rmul__( (object)arg1, (Point3f)arg2) -> Point3f :

    C++ signature :
        cv::Point3_<float> __rmul__(double,cv::Point3_<float>)

__sub__(...)
(Subtraction operator)

 

__sub__( (Point3f)arg1, (Point3f)arg2) -> Point3f :

    C++ signature :
        cv::Point3_<float> __sub__(cv::Point3_<float>,cv::Point3_<float>)

__temp_func(...)

 

__temp_func( (Point3f)arg1) -> CvPoint3D32f :
    
    Wrapped function:
        operator ::CvPoint3D32f

    C++ signature :
        CvPoint3D32f __temp_func(cv::Point3_<float> {lvalue})

__temp_func( (Point3f)arg1) -> Vec3f :
    
    Wrapped function:
        operator ::cv::Vec<float, 3>

    C++ signature :
        cv::Vec<float, 3> __temp_func(cv::Point3_<float> {lvalue})

assign(...)

 

assign( (Point3f)arg1, (Point3f)pt) -> Point3f :
    
    Wrapped function:
        operator=

    C++ signature :
        cv::Point3_<float> {lvalue} assign(cv::Point3_<float> {lvalue},cv::Point3_<float>)

ddot(...)

 

ddot( (Point3f)arg1, (Point3f)pt) -> float :

    C++ signature :
        double ddot(cv::Point3_<float> {lvalue},cv::Point3_<float>)

dot(...)

 

dot( (Point3f)arg1, (Point3f)pt) -> float :

    C++ signature :
        float dot(cv::Point3_<float> {lvalue},cv::Point3_<float>)

from_ndarray(...)
Static Method

 


from_ndarray( (numpy.ndarray)inst_ndarray) -> object :

    C++ signature :
        boost::python::api::object from_ndarray(sdcpp::ndarray)
    Creates a Point3f view on an ndarray instance.


Property Details [hide private]

ndarray

Get Method:
unreachable(...)

this

Get Method:
unreachable(...)

x

Get Method:
unreachable(...)
Set Method:
unreachable(...)

y

Get Method:
unreachable(...)
Set Method:
unreachable(...)

z

Get Method:
unreachable(...)
Set Method:
unreachable(...)