Factory function to get an instance of derived classes of class
PlateNum
.
Prototype
std::unique_ptr<
PlateNum
> create(const std::string &model_name, bool need_mean_scale_process=true);
Parameters
The following table lists the create function arguments.
| Type | Member | Description |
|---|---|---|
| bool | need_mean_scale_process | normalize with mean/scale or not, true by default. |
Returns
An instance ofPlateNum
class.