mirror of
https://github.com/kerberos-io/openalpr-base.git
synced 2025-10-07 04:50:54 +08:00
Detecting regions hierarchically. Starting with the biggest boxes, and then moving into their children if the bigger box was not detected.
This commit is contained in:
@@ -123,6 +123,13 @@ class PlateDispatcher
|
||||
return plateRegion;
|
||||
}
|
||||
|
||||
void appendPlate(PlateRegion plate)
|
||||
{
|
||||
tthread::lock_guard<tthread::mutex> guard(mMutex);
|
||||
|
||||
plateRegions.push_back(plate);
|
||||
}
|
||||
|
||||
void addResult(AlprResult recognitionResult)
|
||||
{
|
||||
tthread::lock_guard<tthread::mutex> guard(mMutex);
|
||||
|
Reference in New Issue
Block a user