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
I'm running your code with KITTI datasets, which has thounds of images in a sequence. And a serious memory leak problem has appeared.
KITTI
I've tried to manually call free_image_double(image_double), but recieved an error: double free or corruption (out).
free_image_double(image_double)
double free or corruption (out)
I guess the image_double has been freed by your code, but there are still some other memory leak problems inside your implementation.
image_double
Is there any way to quickly fix it?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm running your code with
KITTI
datasets, which has thounds of images in a sequence. And a serious memory leak problem has appeared.I've tried to manually call
free_image_double(image_double)
, but recieved an error:double free or corruption (out)
.I guess the
image_double
has been freed by your code, but there are still some other memory leak problems inside your implementation.Is there any way to quickly fix it?
The text was updated successfully, but these errors were encountered: