Integrate FalconCV to boost image processing (#332)

* Rename GetCpuMat to GetOpenCVMat

* refine code structure
This commit is contained in:
Jason
2022-10-16 14:49:57 +08:00
committed by GitHub
parent c7fbc0375c
commit 24c8fdc27d
25 changed files with 267 additions and 71 deletions

View File

@@ -35,7 +35,8 @@ struct FDInferDeleter {
template <typename T>
void operator()(T* obj) const {
if (obj) {
obj->destroy();
delete obj;
// obj->destroy();
}
}
};