From 8275176cb50502c0d995b7df2d5b27db862a72e4 Mon Sep 17 00:00:00 2001 From: Matt Hill Date: Wed, 10 Dec 2014 22:17:02 -0500 Subject: [PATCH] Added comments to alpr.h AlprPlateResult --- src/openalpr/alpr.h | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/openalpr/alpr.h b/src/openalpr/alpr.h index 45899a7..4356287 100644 --- a/src/openalpr/alpr.h +++ b/src/openalpr/alpr.h @@ -65,14 +65,22 @@ namespace alpr AlprPlateResult() {}; virtual ~AlprPlateResult() {}; + // The number requested is always >= the topNPlates count int requested_topn; + // the best plate is the topNPlate with the highest confidence AlprPlate bestPlate; + + // A list of possible plate number permutations std::vector topNPlates; + // The processing time for this plate float processing_time_ms; + + // the X/Y coordinates of the corners of the plate (clock-wise from top-left) AlprCoordinate plate_points[4]; - + + // When region detection is enabled, this returns the region. Region detection is experimental int regionConfidence; std::string region; };