We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
First of all good job on MTCNN GPU version!
why the image size need to configure up front in the constructor? is there a resin why you comment the mtcnn::~mtcnn()?
The text was updated successfully, but these errors were encountered:
Q1: TensorRT doesn't support dynamic input size, so the image size should be configured previously. Q2: There is something wrong with the destructor
Sorry, something went wrong.
thanks for the answer about the destructor, I change the code there and I don't have any issue mtcnn::~mtcnn(){
delete[] pnet_engine; delete rnet_engine; delete onet_engine; for (int i = 0;i<scales_.size();i++) { delete(simpleFace_[i]); } delete[] simpleFace_; simpleFace_ = NULL; delete refineNet; delete outNet; free(boxes_data); CHECK(cudaFree(gpu_boxes_data));
}
No branches or pull requests
First of all good job on MTCNN GPU version!
why the image size need to configure up front in the constructor?
is there a resin why you comment the mtcnn::~mtcnn()?
The text was updated successfully, but these errors were encountered: