本文介绍了使用SimpleLPR 2识别车牌的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
' 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.
推荐答案
这篇关于使用SimpleLPR 2识别车牌的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!