Click here to Skip to main content
15,887,683 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
VB
' use for  camera
Imports AForge
Imports AForge.Imaging
Imports AForge.Video
Imports AForge.Video.VFW
Imports AForge.Video.DirectShow
Imports AForge.Vision.Motion

' use for License Plate Recognition
Imports SimpleLPR2

'-----------------------------------------------------
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

    Dim lpr As SimpleLPR2.ISimpleLPR
    Dim proc As SimpleLPR2.IProcessor
    Dim cds As List(Of Candidate)

    lpr = SimpleLPR.Setup()
    lpr.set_countryWeight(CUInt(12), 1.0F)
    lpr.realizeCountryWeights()
    proc = lpr.createProcessor() ' THis line error. Error show " LICENSE EXPIRED"
  
   
End sub

Please help me how to fix it.
Posted
Updated 20-Feb-17 21:11pm
v2
Comments
RaisKazi 28-Nov-11 6:08am    
Edited: Added "pre" tag.
thatraja 28-Nov-11 6:17am    
THis line error. Error show " LICENSE EXPIRED"
The message clearly tells the thing. You need to extend the license.
Philippe Mori 25-Oct-16 21:10pm    
Buy the software component!

1 solution

Bit of a guess, has your license for SimpleLPR expired?
 
Share this answer
 
Comments
thatraja 28-Nov-11 6:16am    
Ofcourse Right guess, 5!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900