|
| PIPNet (const std::string &model_file, const std::string ¶ms_file="", const RuntimeOption &custom_option=RuntimeOption(), const ModelFormat &model_format=ModelFormat::ONNX) |
| Set path of model file and the configuration of runtime. More...
|
|
std::string | ModelName () const |
| Get model's name.
|
|
virtual bool | Predict (cv::Mat *im, FaceAlignmentResult *result) |
| Predict the face detection result for an input image. More...
|
|
int | GetNumLandmarks () |
| Get the number of landmakrs. More...
|
|
std::vector< float > | GetMeanVals () |
| Get the mean values for normalization. More...
|
|
std::vector< float > | GetStdVals () |
| Get the std values for normalization. More...
|
|
std::vector< int > | GetSize () |
| Get the input size of image. More...
|
|
void | SetNumLandmarks (const int &num_landmarks) |
| Set the number of landmarks. More...
|
|
void | SetMeanVals (const std::vector< float > &mean_vals) |
| Set the mean values for normalization. More...
|
|
void | SetStdVals (const std::vector< float > &std_vals) |
| Set the std values for normalization. More...
|
|
void | SetSize (const std::vector< int > &size) |
| Set the input size of image. More...
|
|
virtual bool | Infer (std::vector< FDTensor > &input_tensors, std::vector< FDTensor > *output_tensors) |
| Inference the model by the runtime. This interface is included in the Predict() function, so we don't call Infer() directly in most common situation.
|
|
virtual bool | Infer () |
| Inference the model by the runtime. This interface is using class member reused_input_tensors_ to do inference and writing results to reused_output_tensors_.
|
|
virtual int | NumInputsOfRuntime () |
| Get number of inputs for this model.
|
|
virtual int | NumOutputsOfRuntime () |
| Get number of outputs for this model.
|
|
virtual TensorInfo | InputInfoOfRuntime (int index) |
| Get input information for this model.
|
|
virtual TensorInfo | OutputInfoOfRuntime (int index) |
| Get output information for this model.
|
|
virtual bool | Initialized () const |
| Check if the model is initialized successfully.
|
|
virtual void | EnableRecordTimeOfRuntime () |
| This is a debug interface, used to record the time of runtime (backend + h2d + d2h) More...
|
|
virtual void | DisableRecordTimeOfRuntime () |
| Disable to record the time of runtime, see EnableRecordTimeOfRuntime() for more detail.
|
|
virtual std::map< std::string, float > | PrintStatisInfoOfRuntime () |
| Print the statistic information of runtime in the console, see function EnableRecordTimeOfRuntime() for more detail.
|
|
virtual bool | EnabledRecordTimeOfRuntime () |
| Check if the EnableRecordTimeOfRuntime() method is enabled.
|
|
virtual double | GetProfileTime () |
| Get profile time of Runtime after the profile process is done.
|
|
virtual void | ReleaseReusedBuffer () |
| Release reused input/output buffers.
|
|
PIPNet model object used when to load a PIPNet model exported by PIPNet.