Detecting the barcodes on an image is as easy as:
'[Visual Basic .NET]
Imports gmse.Imaging
Public Class gmseImagingTest
Public Sub Scan(ByVal FileName As String)
Dim img As New gmseBitmap(FileName)
Dim bcs As gmseBarcodeInfoCollection
Dim bc As gmseBarcodeInfo
' Read the barcodes
bcs = img.ReadBarcodes
' Print the barcodes
For Each bc In bcs
Debug.WriteLine(bc.Text)
Next
End Sub
End Class