当前位置: 首页>>代码示例>>C#>>正文


C# Int16Image类代码示例

本文整理汇总了C#中Int16Image的典型用法代码示例。如果您正苦于以下问题:C# Int16Image类的具体用法?C# Int16Image怎么用?C# Int16Image使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


Int16Image类属于命名空间,在下文中一共展示了Int16Image类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: FindBestCircles

 public static vector_HoughCircle FindBestCircles(Int16Image src, double minR, double maxR, double deltaR) {
   vector_HoughCircle ret = new vector_HoughCircle(VisionLabPINVOKE.FindBestCircles__SWIG_15(Int16Image.getCPtr(src), minR, maxR, deltaR), true);
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
   return ret;
 }
开发者ID:eddiesprietsma,项目名称:licplates11Okt12_b,代码行数:5,代码来源:VisionLab.cs

示例2: CircleShape

 public static void CircleShape(Int16Image image, XYCoord centre, int r, short value, ZeroOrOriginal zorg) {
   VisionLabPINVOKE.CircleShape__SWIG_6(Int16Image.getCPtr(image), XYCoord.getCPtr(centre), r, value, (int)zorg);
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
 }
开发者ID:eddiesprietsma,项目名称:licplates11Okt12_b,代码行数:4,代码来源:VisionLab.cs

示例3: DeInterlace

 public static void DeInterlace(Int16Image image) {
   VisionLabPINVOKE.DeInterlace__SWIG_3(Int16Image.getCPtr(image));
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
 }
开发者ID:eddiesprietsma,项目名称:licplates11Okt12_b,代码行数:4,代码来源:VisionLab.cs

示例4: ThresholdIsoData

 public static int ThresholdIsoData(Int16Image image, Int16Image roi, ObjectBrightness arg2) {
   int ret = VisionLabPINVOKE.ThresholdIsoData__SWIG_7(Int16Image.getCPtr(image), Int16Image.getCPtr(roi), (int)arg2);
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
   return ret;
 }
开发者ID:eddiesprietsma,项目名称:licplates11Okt12_b,代码行数:5,代码来源:VisionLab.cs

示例5: AddBorder

 public static void AddBorder(Int16Image src, Int16Image dest, int top, int left, int right, int bottom, short value) {
   VisionLabPINVOKE.AddBorder__SWIG_3(Int16Image.getCPtr(src), Int16Image.getCPtr(dest), top, left, right, bottom, value);
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
 }
开发者ID:eddiesprietsma,项目名称:licplates11Okt12_b,代码行数:4,代码来源:VisionLab.cs

示例6: SwapAxis

 public static void SwapAxis(Int16Image src, Int16Image dest, ViewPoint viewPoint, int scale) {
   VisionLabPINVOKE.SwapAxis__SWIG_3(Int16Image.getCPtr(src), Int16Image.getCPtr(dest), (int)viewPoint, scale);
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
 }
开发者ID:eddiesprietsma,项目名称:licplates11Okt12_b,代码行数:4,代码来源:VisionLab.cs

示例7: ThresholdFast

 public static void ThresholdFast(Int16Image image, short low, short high) {
   VisionLabPINVOKE.ThresholdFast__SWIG_23(Int16Image.getCPtr(image), low, high);
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
 }
开发者ID:eddiesprietsma,项目名称:licplates11Okt12_b,代码行数:4,代码来源:VisionLab.cs

示例8: Extract1Channel

 public static void Extract1Channel(HSV161616Image image, HSVColor plane, Int16Image chan) {
   VisionLabPINVOKE.Extract1Channel__SWIG_60(HSV161616Image.getCPtr(image), (int)plane, Int16Image.getCPtr(chan));
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
 }
开发者ID:eddiesprietsma,项目名称:licplates11Okt12_b,代码行数:4,代码来源:VisionLab.cs

示例9: CalcHistogram

 public static Histogram CalcHistogram(Int16Image image, Int16Image roi) {
   Histogram ret = new Histogram(VisionLabPINVOKE.CalcHistogram__SWIG_15(Int16Image.getCPtr(image), Int16Image.getCPtr(roi)), true);
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
   return ret;
 }
开发者ID:eddiesprietsma,项目名称:licplates11Okt12_b,代码行数:5,代码来源:VisionLab.cs

示例10: FindFastBestLine

 public static HoughLine FindFastBestLine(Int16Image src, HLParams p, short edgeMin) {
   HoughLine ret = new HoughLine(VisionLabPINVOKE.FindFastBestLine__SWIG_3(Int16Image.getCPtr(src), HLParams.getCPtr(p), edgeMin), true);
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
   return ret;
 }
开发者ID:eddiesprietsma,项目名称:licplates11Okt12_b,代码行数:5,代码来源:VisionLab.cs

示例11: FindFastBestLines

 public static vector_HoughLine FindFastBestLines(Int16Image src, HLParams p, short edgeMin, int nrLines, double minR, double minPhi, int minHits) {
   vector_HoughLine ret = new vector_HoughLine(VisionLabPINVOKE.FindFastBestLines__SWIG_3(Int16Image.getCPtr(src), HLParams.getCPtr(p), edgeMin, nrLines, minR, minPhi, minHits), true);
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
   return ret;
 }
开发者ID:eddiesprietsma,项目名称:licplates11Okt12_b,代码行数:5,代码来源:VisionLab.cs

示例12: HTBestLine

 public static HoughLine HTBestLine(Int16Image src, HLParams p) {
   HoughLine ret = new HoughLine(VisionLabPINVOKE.HTBestLine__SWIG_3(Int16Image.getCPtr(src), HLParams.getCPtr(p)), true);
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
   return ret;
 }
开发者ID:eddiesprietsma,项目名称:licplates11Okt12_b,代码行数:5,代码来源:VisionLab.cs

示例13: FastHoughLineT

 public static void FastHoughLineT(Int16Image src, HLParams p, short edgeMin, Int16Image dest) {
   VisionLabPINVOKE.FastHoughLineT__SWIG_3(Int16Image.getCPtr(src), HLParams.getCPtr(p), edgeMin, Int16Image.getCPtr(dest));
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
 }
开发者ID:eddiesprietsma,项目名称:licplates11Okt12_b,代码行数:4,代码来源:VisionLab.cs

示例14: FindFastBestCircles

 public static vector_HoughCircle FindFastBestCircles(Int16Image src, CircleBrightness brightness, short edgeMin, double minR, double maxR, double deltaR) {
   vector_HoughCircle ret = new vector_HoughCircle(VisionLabPINVOKE.FindFastBestCircles__SWIG_15(Int16Image.getCPtr(src), (int)brightness, edgeMin, minR, maxR, deltaR), true);
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
   return ret;
 }
开发者ID:eddiesprietsma,项目名称:licplates11Okt12_b,代码行数:5,代码来源:VisionLab.cs

示例15: SetMultiToValueLUT

 public static void SetMultiToValueLUT(Int16Image image, SWIGTYPE_p_std__setT_short_t selectSet, short value) {
   VisionLabPINVOKE.SetMultiToValueLUT__SWIG_3(Int16Image.getCPtr(image), SWIGTYPE_p_std__setT_short_t.getCPtr(selectSet), value);
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
 }
开发者ID:eddiesprietsma,项目名称:licplates11Okt12_b,代码行数:4,代码来源:VisionLab.cs


注:本文中的Int16Image类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。