コード例 #1
0
 public static void SigmaFilter(FloatImage src, FloatImage dest, float deviation, FixEdge edge, Mask_Int32 mask) {
   VisionLabPINVOKE.SigmaFilter__SWIG_5(FloatImage.getCPtr(src), FloatImage.getCPtr(dest), deviation, (int)edge, Mask_Int32.getCPtr(mask));
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
 }
コード例 #2
0
 public static void SNN_MeanFilter(FloatImage src, FloatImage dest, float radius, FixEdge edge) {
   VisionLabPINVOKE.SNN_MeanFilter__SWIG_5(FloatImage.getCPtr(src), FloatImage.getCPtr(dest), radius, (int)edge);
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
 }
コード例 #3
0
 public static void NthFilter(Int16Image src, Int16Image dest, int nth, FixEdge edge, Mask_Int32 mask) {
   VisionLabPINVOKE.NthFilter__SWIG_3(Int16Image.getCPtr(src), Int16Image.getCPtr(dest), nth, (int)edge, Mask_Int32.getCPtr(mask));
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
 }
コード例 #4
0
 public static void RangeFilter(Int32Image src, Int32Image dest, FixEdge edge, Mask_Int32 mask) {
   VisionLabPINVOKE.RangeFilter__SWIG_4(Int32Image.getCPtr(src), Int32Image.getCPtr(dest), (int)edge, Mask_Int32.getCPtr(mask));
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
 }
コード例 #5
0
 public static void LocalMinFilter(DoubleImage src, DoubleImage dest, double backGround, FixEdge edge, Mask_Int32 mask) {
   VisionLabPINVOKE.LocalMinFilter__SWIG_6(DoubleImage.getCPtr(src), DoubleImage.getCPtr(dest), backGround, (int)edge, Mask_Int32.getCPtr(mask));
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
 }
コード例 #6
0
 public static void MinimumFilter(ByteImage src, ByteImage dest, FixEdge edge, Mask_Int32 mask) {
   VisionLabPINVOKE.MinimumFilter__SWIG_1(ByteImage.getCPtr(src), ByteImage.getCPtr(dest), (int)edge, Mask_Int32.getCPtr(mask));
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
 }
コード例 #7
0
 public static void KuwaharaFilter(Int32Image src, Int32Image dest, int radius, FixEdge edge) {
   VisionLabPINVOKE.KuwaharaFilter__SWIG_4(Int32Image.getCPtr(src), Int32Image.getCPtr(dest), radius, (int)edge);
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
 }
コード例 #8
0
 public static HeightWidth VarianceFilterHW(Image src, FixEdge edge, MaskBase mask) {
   HeightWidth ret = new HeightWidth(VisionLabPINVOKE.VarianceFilterHW(Image.getCPtr(src), (int)edge, MaskBase.getCPtr(mask)), true);
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
   return ret;
 }
コード例 #9
0
 public static void Convolution(FloatImage src, FloatImage dest, float divideFactor, FixEdge edge, Mask_Float mask) {
   VisionLabPINVOKE.Convolution__SWIG_6(FloatImage.getCPtr(src), FloatImage.getCPtr(dest), divideFactor, (int)edge, Mask_Float.getCPtr(mask));
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
 }
コード例 #10
0
 public static void Convolution(DoubleImage src, DoubleImage dest, int divideFactor, FixEdge edge, Mask_Int32 mask) {
   VisionLabPINVOKE.Convolution__SWIG_12(DoubleImage.getCPtr(src), DoubleImage.getCPtr(dest), divideFactor, (int)edge, Mask_Int32.getCPtr(mask));
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
 }
コード例 #11
0
 public static void Convolution(Int16Image src, Int16Image dest, short divideFactor, FixEdge edge, Mask_Int16 mask) {
   VisionLabPINVOKE.Convolution__SWIG_4(Int16Image.getCPtr(src), Int16Image.getCPtr(dest), divideFactor, (int)edge, Mask_Int16.getCPtr(mask));
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
 }
コード例 #12
0
 public static void Convolution(ByteImage src, ByteImage dest, byte divideFactor, FixEdge edge, Mask_Byte mask) {
   VisionLabPINVOKE.Convolution__SWIG_2(ByteImage.getCPtr(src), ByteImage.getCPtr(dest), divideFactor, (int)edge, Mask_Byte.getCPtr(mask));
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
 }
コード例 #13
0
 public static string FixEdgeToStr(FixEdge edge) {
   string ret = VisionLabPINVOKE.FixEdgeToStr((int)edge);
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
   return ret;
 }
コード例 #14
0
 public static void SNN_MedianFilter(DoubleImage src, DoubleImage dest, double radius, FixEdge edge) {
   VisionLabPINVOKE.SNN_MedianFilter__SWIG_6(DoubleImage.getCPtr(src), DoubleImage.getCPtr(dest), radius, (int)edge);
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
 }
コード例 #15
0
 public static void LocalMaxFilter(FloatImage src, FloatImage dest, float backGround, FixEdge edge, Mask_Int32 mask) {
   VisionLabPINVOKE.LocalMaxFilter__SWIG_5(FloatImage.getCPtr(src), FloatImage.getCPtr(dest), backGround, (int)edge, Mask_Int32.getCPtr(mask));
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
 }
コード例 #16
0
 public static void VarianceFilter(DoubleImage src, DoubleImage dest, FixEdge edge, Mask_Int32 mask) {
   VisionLabPINVOKE.VarianceFilter__SWIG_6(DoubleImage.getCPtr(src), DoubleImage.getCPtr(dest), (int)edge, Mask_Int32.getCPtr(mask));
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
 }
コード例 #17
0
 public static void FixEdges(ComplexDoubleImage src, ComplexDoubleImage dest, FixEdge edge, int upper, int lower, int left, int right) {
   VisionLabPINVOKE.FixEdges__SWIG_14(ComplexDoubleImage.getCPtr(src), ComplexDoubleImage.getCPtr(dest), (int)edge, upper, lower, left, right);
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
 }