當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。