• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C# Int8Image类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

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



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

示例1: Extract1Channel

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


示例2: ClassifyOutputTab

 public double ClassifyOutputTab(Int8Image image, vector_ClassOutput outputTab) {
   double ret = VisionLabPINVOKE.BPN_ImageClassifier_Int8_ClassifyOutputTab(swigCPtr, Int8Image.getCPtr(image), vector_ClassOutput.getCPtr(outputTab));
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
   return ret;
 }
开发者ID:eddiesprietsma,项目名称:licplates11Okt12_b,代码行数:5,代码来源:BPN_ImageClassifier_Int8.cs


示例3: GetImage

 public Int8Image GetImage(int classId, int imageIndex) {
   Int8Image ret = new Int8Image(VisionLabPINVOKE.ClassImageSet_Int8_GetImage__SWIG_1(swigCPtr, classId, imageIndex), false);
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
   return ret;
 }
开发者ID:eddiesprietsma,项目名称:licplates11Okt12_b,代码行数:5,代码来源:ClassImageSet_Int8.cs


示例4: DeInterlace

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


示例5: TrainImage

 public double TrainImage(double learnRate, double momentum, Int8Image image, int classNr) {
   double ret = VisionLabPINVOKE.BPN_ImageClassifier_Int8_TrainImage(swigCPtr, learnRate, momentum, Int8Image.getCPtr(image), classNr);
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
   return ret;
 }
开发者ID:eddiesprietsma,项目名称:licplates11Okt12_b,代码行数:5,代码来源:BPN_ImageClassifier_Int8.cs


示例6: AddBorder

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


示例7: CircleShape

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


示例8: InvertLUT

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


示例9: LUT

 public static void LUT(Int8Image image, char minPixel, vector_char tab) {
   VisionLabPINVOKE.LUT__SWIG_5(Int8Image.getCPtr(image), minPixel, vector_char.getCPtr(tab));
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
 }
开发者ID:eddiesprietsma,项目名称:licplates11Okt12_b,代码行数:4,代码来源:VisionLab.cs


示例10: GammaLUT

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


示例11: HistogramEqualize

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


示例12: ContrastStretchLUT

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


示例13: CalcHistogram0

 public static void CalcHistogram0(Int8Image image, int hisSize, SWIGTYPE_p_int his) {
   VisionLabPINVOKE.CalcHistogram0__SWIG_2(Int8Image.getCPtr(image), hisSize, SWIGTYPE_p_int.getCPtr(his));
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
 }
开发者ID:eddiesprietsma,项目名称:licplates11Okt12_b,代码行数:4,代码来源:VisionLab.cs


示例14: CalcHistogram

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


示例15: ThresholdIsoData

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


示例16: Remainder

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


示例17: ThresholdMulti

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


示例18: SetMultiToValueLUT

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


示例19: BlockPattern

 public static void BlockPattern(Int8Image image, XYCoord leftTop, int height, int width, char value, int repeatx, int repeaty) {
   VisionLabPINVOKE.BlockPattern__SWIG_5(Int8Image.getCPtr(image), XYCoord.getCPtr(leftTop), height, width, value, repeatx, repeaty);
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
 }
开发者ID:eddiesprietsma,项目名称:licplates11Okt12_b,代码行数:4,代码来源:VisionLab.cs


示例20: SumIntPixels

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



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# IntPoint类代码示例发布时间:2022-05-24
下一篇:
C# Int64类代码示例发布时间:2022-05-24
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap