Example #1
0
 public DoubleMatList(DoubleMatList other) : this(LandmarkDetectorPINVOKE.new_DoubleMatList__SWIG_1(DoubleMatList.getCPtr(other)), true)
 {
     if (LandmarkDetectorPINVOKE.SWIGPendingException.Pending)
     {
         throw LandmarkDetectorPINVOKE.SWIGPendingException.Retrieve();
     }
 }
Example #2
0
 public DoubleMatListEnumerator(DoubleMatList collection)
 {
     collectionRef = collection;
     currentIndex  = -1;
     currentObject = null;
     currentSize   = collectionRef.Count;
 }
Example #3
0
 public void SetRange(int index, DoubleMatList values)
 {
     LandmarkDetectorPINVOKE.DoubleMatList_SetRange(swigCPtr, index, DoubleMatList.getCPtr(values));
     if (LandmarkDetectorPINVOKE.SWIGPendingException.Pending)
     {
         throw LandmarkDetectorPINVOKE.SWIGPendingException.Retrieve();
     }
 }
Example #4
0
        public static DoubleMatList Repeat(SWIGTYPE_p_cv__Mat_T_double_t value, int count)
        {
            global::System.IntPtr cPtr = LandmarkDetectorPINVOKE.DoubleMatList_Repeat(SWIGTYPE_p_cv__Mat_T_double_t.getCPtr(value), count);
            DoubleMatList         ret  = (cPtr == global::System.IntPtr.Zero) ? null : new DoubleMatList(cPtr, true);

            if (LandmarkDetectorPINVOKE.SWIGPendingException.Pending)
            {
                throw LandmarkDetectorPINVOKE.SWIGPendingException.Retrieve();
            }
            return(ret);
        }
Example #5
0
        public DoubleMatList GetRange(int index, int count)
        {
            global::System.IntPtr cPtr = LandmarkDetectorPINVOKE.DoubleMatList_GetRange(swigCPtr, index, count);
            DoubleMatList         ret  = (cPtr == global::System.IntPtr.Zero) ? null : new DoubleMatList(cPtr, true);

            if (LandmarkDetectorPINVOKE.SWIGPendingException.Pending)
            {
                throw LandmarkDetectorPINVOKE.SWIGPendingException.Retrieve();
            }
            return(ret);
        }
Example #6
0
 internal static global::System.Runtime.InteropServices.HandleRef getCPtr(DoubleMatList obj)
 {
     return((obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr);
 }