public vector_ComplexDoubleImage(vector_ComplexDoubleImage other) : this(VisionLabPINVOKE.new_vector_ComplexDoubleImage__SWIG_1(vector_ComplexDoubleImage.getCPtr(other)), true)
 {
     if (VisionLabPINVOKE.SWIGPendingException.Pending)
     {
         throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
     }
 }
 public vector_ComplexDoubleImageEnumerator(vector_ComplexDoubleImage collection)
 {
     collectionRef = collection;
     currentIndex  = -1;
     currentObject = null;
     currentSize   = collectionRef.Count;
 }
 public void SetRange(int index, vector_ComplexDoubleImage values)
 {
     VisionLabPINVOKE.vector_ComplexDoubleImage_SetRange(swigCPtr, index, vector_ComplexDoubleImage.getCPtr(values));
     if (VisionLabPINVOKE.SWIGPendingException.Pending)
     {
         throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
     }
 }
    public static vector_ComplexDoubleImage Repeat(ComplexDoubleImage value, int count)
    {
        IntPtr cPtr = VisionLabPINVOKE.vector_ComplexDoubleImage_Repeat(ComplexDoubleImage.getCPtr(value), count);
        vector_ComplexDoubleImage ret = (cPtr == IntPtr.Zero) ? null : new vector_ComplexDoubleImage(cPtr, true);

        if (VisionLabPINVOKE.SWIGPendingException.Pending)
        {
            throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
        }
        return(ret);
    }
    public vector_ComplexDoubleImage GetRange(int index, int count)
    {
        IntPtr cPtr = VisionLabPINVOKE.vector_ComplexDoubleImage_GetRange(swigCPtr, index, count);
        vector_ComplexDoubleImage ret = (cPtr == IntPtr.Zero) ? null : new vector_ComplexDoubleImage(cPtr, true);

        if (VisionLabPINVOKE.SWIGPendingException.Pending)
        {
            throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
        }
        return(ret);
    }
 internal static HandleRef getCPtr(vector_ComplexDoubleImage obj)
 {
     return((obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr);
 }
 internal static global::System.Runtime.InteropServices.HandleRef getCPtr(vector_ComplexDoubleImage obj)
 {
     return((obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr);
 }