This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SecurityMode.Transport enables HTTPS | |
var binding = new WSHttpBinding(SecurityMode.Transport) | |
{ | |
Security = | |
{ | |
Mode = SecurityMode.Transport, | |
Message = {ClientCredentialType = MessageCredentialType.None}, | |
Transport = | |
{ | |
ClientCredentialType = HttpClientCredentialType.InheritedFromHost, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SecurityMode.Transport enables HTTPS | |
var binding = new WSHttpBinding(SecurityMode.Transport) | |
{ | |
Security = | |
{ | |
Mode = SecurityMode.Transport, | |
Message = {ClientCredentialType = MessageCredentialType.None}, | |
Transport = | |
{ | |
ClientCredentialType = HttpClientCredentialType.InheritedFromHost, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.IO; | |
using System.Linq; | |
using System.Threading; | |
using Intrada.ALPR; | |
namespace RecognizeHotFolder | |
{ | |
class Program | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.IO; | |
using System.Linq; | |
using System.Threading; | |
using Intrada.ALPR; | |
namespace RecognizeDirMultiThreaded | |
{ | |
class Program | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.IO; | |
using System.Linq; | |
using System.Threading; | |
using Intrada.ALPR; | |
namespace RecognizeDirMultiThreaded | |
{ | |
class Program | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Imports System.IO | |
Imports Intrada.ALPR | |
Module RecognizeDir | |
Sub Main() | |
Try | |
Dim filenames() As String = Directory.GetFiles(".", "*.jpg", SearchOption.AllDirectories) | |
Dim intrada As IntradaALPR = New IntradaALPR("<COMPANY_NAME>", "<COMPANY_KEY>") | |
Dim context As IntradaALPR.RecognitionContext = intrada.CreateNewRecognitionContext() | |
context.LoadSettings("settings.txt") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.IO; | |
using System.Linq; | |
using Intrada.ALPR; | |
namespace RecognizeDirSingleThreaded | |
{ | |
class Program | |
{ | |
static void Main(string[] args) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
IntradaFinit (); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
IntradaCreateSettings ("Settings", &settings); | |
IntradaSetCountries (settings, "NL"); | |
IntradaCreateData (&data); | |
while (continue) | |
{ | |
IntradaLoadImage (next_image_name, 1, &image); | |
IntradaDataSetImage (data, image); | |
IntradaRecognize (settings, data); | |
IntradaGetNumberOfPlates (data, &nr_plates); | |
if (nr_plates > 0) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
IntradaSetErrorHandler (NULL, NULL); | |
IntradaInitLibrary ("Company Name", "Options", "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX"); |
NewerOlder