예제 #1
0
 public vector_Int32Image(vector_Int32Image other) : this(VisionLabPINVOKE.new_vector_Int32Image__SWIG_1(vector_Int32Image.getCPtr(other)), true)
 {
     if (VisionLabPINVOKE.SWIGPendingException.Pending)
     {
         throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
     }
 }
예제 #2
0
 public vector_Int32ImageEnumerator(vector_Int32Image collection)
 {
     collectionRef = collection;
     currentIndex  = -1;
     currentObject = null;
     currentSize   = collectionRef.Count;
 }
 public void GetSets(vector_Int32Image images, vector_int classIds)
 {
     VisionLabPINVOKE.ClassImageSet_Int32_GetSets(swigCPtr, vector_Int32Image.getCPtr(images), vector_int.getCPtr(classIds));
     if (VisionLabPINVOKE.SWIGPendingException.Pending)
     {
         throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
     }
 }
예제 #4
0
 public void SetRange(int index, vector_Int32Image values)
 {
     VisionLabPINVOKE.vector_Int32Image_SetRange(swigCPtr, index, vector_Int32Image.getCPtr(values));
     if (VisionLabPINVOKE.SWIGPendingException.Pending)
     {
         throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
     }
 }
예제 #5
0
 public virtual void SnapShotROIs(vector_Int32Image images)
 {
     VisionLabPINVOKE.Camera_Int32_SnapShotROIs__SWIG_1(swigCPtr, vector_Int32Image.getCPtr(images));
     if (VisionLabPINVOKE.SWIGPendingException.Pending)
     {
         throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
     }
 }
    public double EvaluateImageSet(vector_Int32Image images, vector_int classesExp, vector_int classesRes, vector_double confidencies, vector_vector_double outputs, ref double meanError)
    {
        double ret = VisionLabPINVOKE.BPN_ImageClassifier_Int32_EvaluateImageSet(swigCPtr, vector_Int32Image.getCPtr(images), vector_int.getCPtr(classesExp), vector_int.getCPtr(classesRes), vector_double.getCPtr(confidencies), vector_vector_double.getCPtr(outputs), ref meanError);

        if (VisionLabPINVOKE.SWIGPendingException.Pending)
        {
            throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
        }
        return(ret);
    }
    public double TrainImageSet(int nrOfEpochs, double learnRate, double momentum, vector_Int32Image images, vector_int classes, ref double meanError)
    {
        double ret = VisionLabPINVOKE.BPN_ImageClassifier_Int32_TrainImageSet(swigCPtr, nrOfEpochs, learnRate, momentum, vector_Int32Image.getCPtr(images), vector_int.getCPtr(classes), ref meanError);

        if (VisionLabPINVOKE.SWIGPendingException.Pending)
        {
            throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
        }
        return(ret);
    }
예제 #8
0
    public vector_Int32Image GetRange(int index, int count)
    {
        IntPtr            cPtr = VisionLabPINVOKE.vector_Int32Image_GetRange(swigCPtr, index, count);
        vector_Int32Image ret  = (cPtr == IntPtr.Zero) ? null : new vector_Int32Image(cPtr, true);

        if (VisionLabPINVOKE.SWIGPendingException.Pending)
        {
            throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
        }
        return(ret);
    }
예제 #9
0
    public static vector_Int32Image Repeat(Int32Image value, int count)
    {
        IntPtr            cPtr = VisionLabPINVOKE.vector_Int32Image_Repeat(Int32Image.getCPtr(value), count);
        vector_Int32Image ret  = (cPtr == IntPtr.Zero) ? null : new vector_Int32Image(cPtr, true);

        if (VisionLabPINVOKE.SWIGPendingException.Pending)
        {
            throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
        }
        return(ret);
    }
 public double EvaluateImageSet(vector_Int32Image images, vector_int classesExp, vector_int classesRes, vector_double confidencies, vector_vector_double outputs, ref double meanError) {
   double ret = VisionLabPINVOKE.BPN_ImageClassifier_Int32_EvaluateImageSet(swigCPtr, vector_Int32Image.getCPtr(images), vector_int.getCPtr(classesExp), vector_int.getCPtr(classesRes), vector_double.getCPtr(confidencies), vector_vector_double.getCPtr(outputs), ref meanError);
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
   return ret;
 }
 public double TrainImageSet(int nrOfEpochs, double learnRate, double momentum, vector_Int32Image images, vector_int classes, ref double meanError) {
   double ret = VisionLabPINVOKE.BPN_ImageClassifier_Int32_TrainImageSet(swigCPtr, nrOfEpochs, learnRate, momentum, vector_Int32Image.getCPtr(images), vector_int.getCPtr(classes), ref meanError);
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
   return ret;
 }
예제 #12
0
 public static vector_HoughCircle HTBestCircles(vector_Int32Image srcTab, double minR, double maxR, double deltaR) {
   vector_HoughCircle ret = new vector_HoughCircle(VisionLabPINVOKE.HTBestCircles__SWIG_19(vector_Int32Image.getCPtr(srcTab), minR, maxR, deltaR), true);
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
   return ret;
 }
예제 #13
0
 public static void FastHoughCircleT(Int32Image src, CircleBrightness brightness, int edgeMin, double minR, double maxR, double deltaR, vector_Int32Image destTab) {
   VisionLabPINVOKE.FastHoughCircleT__SWIG_4(Int32Image.getCPtr(src), (int)brightness, edgeMin, minR, maxR, deltaR, vector_Int32Image.getCPtr(destTab));
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
 }
예제 #14
0
 public static void HoughCircleT(Int32Image src, double minR, double maxR, double deltaR, vector_Int32Image destTab) {
   VisionLabPINVOKE.HoughCircleT__SWIG_4(Int32Image.getCPtr(src), minR, maxR, deltaR, vector_Int32Image.getCPtr(destTab));
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
 }
 public void GetSets(vector_Int32Image images, vector_int classIds) {
   VisionLabPINVOKE.ClassImageSet_Int32_GetSets(swigCPtr, vector_Int32Image.getCPtr(images), vector_int.getCPtr(classIds));
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
 }
예제 #16
0
 internal static HandleRef getCPtr(vector_Int32Image obj)
 {
     return((obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr);
 }
 internal static global::System.Runtime.InteropServices.HandleRef getCPtr(vector_Int32Image obj)
 {
     return((obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr);
 }