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
Looks like memory leak is still in place in case of some data.
Test data: https://drive.google.com/file/d/145nGKKlH93v8WIg2IEnZ5e0_GFXCynJQ/view?usp=sharing
Code to reproduce:
import os, psutil import cv2 import numpy as np from pylsd.lsd import lsd img = np.load('array.bin.npy') process = psutil.Process(os.getpid()) if len(img.shape) == 3: img = cv2.cvtColor(img, cv2.COLOR_RGB2GRAY) while True: lines = lsd(img, quant=0.7) print(process.memory_info().rss)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Looks like memory leak is still in place in case of some data.
Test data:
https://drive.google.com/file/d/145nGKKlH93v8WIg2IEnZ5e0_GFXCynJQ/view?usp=sharing
Code to reproduce:
The text was updated successfully, but these errors were encountered: