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

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

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