條碼控件Barcode Xpress如何得到條碼檢測結果

條碼控件 Barcode Xpress提供了 條碼檢測和條碼建立的的功能,使用Barcode Xpress將會更加輕鬆的添加優秀的條碼功能到Windows應用程序中。Barcode Xpress支持一系列的1D和2D的條形碼,並能夠在圖像中自動檢測全部的條碼,還會對檢測的全部的條碼返回一個詳細的且完善的檢測結果。

    每一個條碼結果包含如下的屬性參數: ide

    Barcode value spa

    Barcode type code

    Confidence 排序

    Location get

    Skew io

>>>Barcode Xpress 下載 下載

    因爲Barcode Xpress能夠從一個單一的掃描中返回多個條碼結果,檢測的條碼結果均可以按照下面的標準來進行存儲,可是須要注意的是全部解決了的條碼將會排在沒有解決的條碼以前。 程序

    1. Confidence因素是決定條碼結果排序的條件,通常是從高往低排列。Confidence屬性將會得到已經識別過的條碼的Confidence。
    2. 下面,對於有着相同的Confidence的任意條碼,將會從上到下,而後從左往右的經過位置來進行排序。

  1. Sort the results top to bottom  
  2.         Dim BarcodeArray() As BarcodeInfo  
  3.         Redim BarcodeArray(0 To BarcodeXpress1.NumBarcodes - 1)  
  4.         ' fill the user type array  
  5.         For i = 0 To BarcodeXpress1.NumBarcodes - 1  
  6.             BarcodeXpress1.GetBarcode i  
  7.             BarcodeArray(i).CodeName = BarcodeXpress1.BarcodeCodeName  
  8.             BarcodeArray(i).result = BarcodeXpress1.BarcodeResult  
  9.             BarcodeArray(i).CheckSumOK = BarcodeXpress1.CheckSumOK  
  10.             BarcodeArray(i).Confidence = BarcodeXpress1.Confidence  
  11.             BarcodeArray(i).Length = BarcodeXpress1.ResultLen  
  12.             BarcodeArray(i).X = BarcodeXpress1.BarcodeX  
  13.             BarcodeArray(i).Y = BarcodeXpress1.BarcodeY  
  14.             BarcodeArray(i).H = BarcodeXpress1.BarcodeH  
  15.             BarcodeArray(i).W = BarcodeXpress1.BarcodeW  
  16.         Next i  
  17.         ' actual sort results top to bottom  
  18.         Dim temp As BarcodeInfo  
  19.         For i = Ubound(BarcodeArray) - 1 To 0 Step -1  
  20.             For j = 0 To i  
  21.                 If BarcodeArray(j).Y > BarcodeArray(j + 1).Y Then  
  22.                     temp = BarcodeArray(j + 1)  
  23.                     BarcodeArray(j + 1) = BarcodeArray(j)  
  24.                     BarcodeArray(j) = temp  
  25.                 End If  
  26.             Next  
  27.         Next
相關文章
相關標籤/搜索