示例#1
0
 public vector_NumFloatImage(vector_NumFloatImage other) : this(VisionLabPINVOKE.new_vector_NumFloatImage__SWIG_1(vector_NumFloatImage.getCPtr(other)), true)
 {
     if (VisionLabPINVOKE.SWIGPendingException.Pending)
     {
         throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
     }
 }
示例#2
0
 public vector_NumFloatImageEnumerator(vector_NumFloatImage collection)
 {
     collectionRef = collection;
     currentIndex  = -1;
     currentObject = null;
     currentSize   = collectionRef.Count;
 }
示例#3
0
 public void SetRange(int index, vector_NumFloatImage values)
 {
     VisionLabPINVOKE.vector_NumFloatImage_SetRange(swigCPtr, index, vector_NumFloatImage.getCPtr(values));
     if (VisionLabPINVOKE.SWIGPendingException.Pending)
     {
         throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
     }
 }
示例#4
0
    public static vector_NumFloatImage Repeat(NumFloatImage value, int count)
    {
        IntPtr cPtr = VisionLabPINVOKE.vector_NumFloatImage_Repeat(NumFloatImage.getCPtr(value), count);
        vector_NumFloatImage ret = (cPtr == IntPtr.Zero) ? null : new vector_NumFloatImage(cPtr, true);

        if (VisionLabPINVOKE.SWIGPendingException.Pending)
        {
            throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
        }
        return(ret);
    }
示例#5
0
    public vector_NumFloatImage GetRange(int index, int count)
    {
        IntPtr cPtr = VisionLabPINVOKE.vector_NumFloatImage_GetRange(swigCPtr, index, count);
        vector_NumFloatImage ret = (cPtr == IntPtr.Zero) ? null : new vector_NumFloatImage(cPtr, true);

        if (VisionLabPINVOKE.SWIGPendingException.Pending)
        {
            throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
        }
        return(ret);
    }
示例#6
0
 internal static HandleRef getCPtr(vector_NumFloatImage obj)
 {
     return((obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr);
 }