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


C# BlobAnalyse类代码示例

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


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

示例1: GrayScaleBlobAnalysis

 public static void GrayScaleBlobAnalysis(ByteImage labelledImage, ByteImage grayImage, SWIGTYPE_p_std__setT_JL_VisionLib_V3__BlobAnalyse_t s, int maxLabelNr, vector_Blob blobs, SortOrder so, BlobAnalyse sortBA, UseXOrY xy, BlobAnalyseModifier baMod) {
   VisionLabPINVOKE.GrayScaleBlobAnalysis__SWIG_5(ByteImage.getCPtr(labelledImage), ByteImage.getCPtr(grayImage), SWIGTYPE_p_std__setT_JL_VisionLib_V3__BlobAnalyse_t.getCPtr(s), maxLabelNr, vector_Blob.getCPtr(blobs), (int)so, (int)sortBA, (int)xy, BlobAnalyseModifier.getCPtr(baMod));
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
 }
开发者ID:eddiesprietsma,项目名称:licplates11Okt12_b,代码行数:4,代码来源:VisionLab.cs

示例2: BlobFieldToDouble

 public static double BlobFieldToDouble(Blob b, BlobAnalyse ba) {
   double ret = VisionLabPINVOKE.BlobFieldToDouble__SWIG_1(Blob.getCPtr(b), (int)ba);
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
   return ret;
 }
开发者ID:eddiesprietsma,项目名称:licplates11Okt12_b,代码行数:5,代码来源:VisionLab.cs

示例3: BlobAnalysis

 public static void BlobAnalysis(Int16Image labelledImage, SWIGTYPE_p_std__setT_JL_VisionLib_V3__BlobAnalyse_t s, int maxLabelNr, vector_Blob blobs, SortOrder so, BlobAnalyse sortBA, UseXOrY xy) {
   VisionLabPINVOKE.BlobAnalysis__SWIG_16(Int16Image.getCPtr(labelledImage), SWIGTYPE_p_std__setT_JL_VisionLib_V3__BlobAnalyse_t.getCPtr(s), maxLabelNr, vector_Blob.getCPtr(blobs), (int)so, (int)sortBA, (int)xy);
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
 }
开发者ID:eddiesprietsma,项目名称:licplates11Okt12_b,代码行数:4,代码来源:VisionLab.cs

示例4: GrayScaleBlobMeasure

 public static void GrayScaleBlobMeasure(Int16Image labelledImage, Int16Image grayImage, BlobAnalyse meas, short scale, UseXOrY xy) {
   VisionLabPINVOKE.GrayScaleBlobMeasure__SWIG_13(Int16Image.getCPtr(labelledImage), Int16Image.getCPtr(grayImage), (int)meas, scale, (int)xy);
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
 }
开发者ID:eddiesprietsma,项目名称:licplates11Okt12_b,代码行数:4,代码来源:VisionLab.cs

示例5: BlobMeasure

 public static void BlobMeasure(Int8Image labelledImage, BlobAnalyse meas, char scale, UseXOrY xy) {
   VisionLabPINVOKE.BlobMeasure__SWIG_18(Int8Image.getCPtr(labelledImage), (int)meas, scale, (int)xy);
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
 }
开发者ID:eddiesprietsma,项目名称:licplates11Okt12_b,代码行数:4,代码来源:VisionLab.cs

示例6: FindSpecificGrayScaleHoles

 public static int FindSpecificGrayScaleHoles(Int32Image image, Int32Image grayImage, Connected connected, BlobAnalyse ba, double low, double high) {
   int ret = VisionLabPINVOKE.FindSpecificGrayScaleHoles__SWIG_14(Int32Image.getCPtr(image), Int32Image.getCPtr(grayImage), (int)connected, (int)ba, low, high);
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
   return ret;
 }
开发者ID:eddiesprietsma,项目名称:licplates11Okt12_b,代码行数:5,代码来源:VisionLab.cs

示例7: RemoveBlobs

 public static int RemoveBlobs(Int16Image image, Connected connected, BlobAnalyse ba, double low, double high) {
   int ret = VisionLabPINVOKE.RemoveBlobs__SWIG_11(Int16Image.getCPtr(image), (int)connected, (int)ba, low, high);
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
   return ret;
 }
开发者ID:eddiesprietsma,项目名称:licplates11Okt12_b,代码行数:5,代码来源:VisionLab.cs

示例8: FindSpecificHoles

 public static int FindSpecificHoles(Int16Image image, Connected connected, BlobAnalyse ba, double low, double high, UseXOrY xy) {
   int ret = VisionLabPINVOKE.FindSpecificHoles__SWIG_10(Int16Image.getCPtr(image), (int)connected, (int)ba, low, high, (int)xy);
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
   return ret;
 }
开发者ID:eddiesprietsma,项目名称:licplates11Okt12_b,代码行数:5,代码来源:VisionLab.cs

示例9: FillSpecificHoles

 public static int FillSpecificHoles(ByteImage image, Connected connected, BlobAnalyse ba, double low, double high) {
   int ret = VisionLabPINVOKE.FillSpecificHoles__SWIG_5(ByteImage.getCPtr(image), (int)connected, (int)ba, low, high);
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
   return ret;
 }
开发者ID:eddiesprietsma,项目名称:licplates11Okt12_b,代码行数:5,代码来源:VisionLab.cs

示例10: BlobAnalyseToStr

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

示例11: BlobFieldToInt

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

示例12: RemoveGrayScaleBlobs

 public static int RemoveGrayScaleBlobs(Int32Image image, Int32Image grayImage, Connected connected, BlobAnalyse ba, double low, double high, UseXOrY xy) {
   int ret = VisionLabPINVOKE.RemoveGrayScaleBlobs__SWIG_13(Int32Image.getCPtr(image), Int32Image.getCPtr(grayImage), (int)connected, (int)ba, low, high, (int)xy);
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
   return ret;
 }
开发者ID:eddiesprietsma,项目名称:licplates11Okt12_b,代码行数:5,代码来源:VisionLab.cs

示例13: RemoveLabels

 public static int RemoveLabels(Int32Image image, BlobAnalyse ba, double low, double high, UseXOrY xy) {
   int ret = VisionLabPINVOKE.RemoveLabels__SWIG_13(Int32Image.getCPtr(image), (int)ba, low, high, (int)xy);
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
   return ret;
 }
开发者ID:eddiesprietsma,项目名称:licplates11Okt12_b,代码行数:5,代码来源:VisionLab.cs

示例14: RemoveGrayScaleLabels

 public static int RemoveGrayScaleLabels(Int16Image image, Int16Image grayImage, BlobAnalyse ba, double low, double high, UseXOrY xy, BlobAnalyseModifier baMod) {
   int ret = VisionLabPINVOKE.RemoveGrayScaleLabels__SWIG_9(Int16Image.getCPtr(image), Int16Image.getCPtr(grayImage), (int)ba, low, high, (int)xy, BlobAnalyseModifier.getCPtr(baMod));
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
   return ret;
 }
开发者ID:eddiesprietsma,项目名称:licplates11Okt12_b,代码行数:5,代码来源:VisionLab.cs

示例15: BlobUpCompare

 public BlobUpCompare(BlobAnalyse b) : this(VisionLabPINVOKE.new_BlobUpCompare__SWIG_1((int)b), true) {
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
 }
开发者ID:eddiesprietsma,项目名称:licplates11Okt12_b,代码行数:3,代码来源:BlobUpCompare.cs


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