You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 9, 2020. It is now read-only.
Hi,
I want to use PySESA to decimated my point cloud, but python always sends me the memory problem
I used the following code and 'example_100000pts.xyz' point cloud to do a test :
memory error, using 1.0 max points
memory error, using 1.0 max points
memory error, using 1.0 max points
memory error, using 1.0 max points
memory error, using 1.0 max points
memory error, using 1.0 max points
^CTraceback (most recent call last):
File "Code111.py", line 3, in
pysesa.process(infile, 1, 4, 1, 1024, 0.05, 20, 1, 64, 1, 0)
File "/home/radewane/Bureau/Point-cloud-Rambla/local/lib/python2.7/site-packages/pysesa/_pysesa.py", line 452, in process
nr_pts = pysesa.partition(toproc, out, mxpts, minpts, prc_overlap).getdata() #res, bp
File "pysesa/partition.pyx", line 206, in pysesa.partition.partition.init
mxpts = np.max([1,mxpts-2])
File "/home/radewane/Bureau/Point-cloud-Rambla/local/lib/python2.7/site-packages/numpy/core/fromnumeric.py", line 2505, in amax
initial=initial)
File "/home/radewane/Bureau/Point-cloud-Rambla/local/lib/python2.7/site-packages/numpy/core/fromnumeric.py", line 86, in _wrapreduction
return ufunc.reduce(obj, axis, dtype, out, **passkwargs)
KeyboardInterrupt
Can you help me solve this problem please
Thank you in advance
The text was updated successfully, but these errors were encountered:
@Hout1 my apologies for the delay. I have upgraded the whole package. Please try the new workflow and let me know if you have issues. The following changes have been made:
python 3
new cython modules and a simpler way to compile them
removed nifty package dependency, and all power spectra now computed using numpy
simpler and faster way to compute integral lengthscales
removed plotting libraries (too hard to maintain long-term)
removed savitsky-golay filter (overkill)
no option to 'smooth' the power spectrum (yielding inconsistent and sometimes bizarre results)
spatial statistics no longer use the Knuth and Welford algorithm
conda environment
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi,
I want to use PySESA to decimated my point cloud, but python always sends me the memory problem
I used the following code and 'example_100000pts.xyz' point cloud to do a test :
but I still have the same problem:
memory error, using 1.0 max points
memory error, using 1.0 max points
memory error, using 1.0 max points
memory error, using 1.0 max points
memory error, using 1.0 max points
memory error, using 1.0 max points
^CTraceback (most recent call last):
File "Code111.py", line 3, in
pysesa.process(infile, 1, 4, 1, 1024, 0.05, 20, 1, 64, 1, 0)
File "/home/radewane/Bureau/Point-cloud-Rambla/local/lib/python2.7/site-packages/pysesa/_pysesa.py", line 452, in process
nr_pts = pysesa.partition(toproc, out, mxpts, minpts, prc_overlap).getdata() #res, bp
File "pysesa/partition.pyx", line 206, in pysesa.partition.partition.init
mxpts = np.max([1,mxpts-2])
File "/home/radewane/Bureau/Point-cloud-Rambla/local/lib/python2.7/site-packages/numpy/core/fromnumeric.py", line 2505, in amax
initial=initial)
File "/home/radewane/Bureau/Point-cloud-Rambla/local/lib/python2.7/site-packages/numpy/core/fromnumeric.py", line 86, in _wrapreduction
return ufunc.reduce(obj, axis, dtype, out, **passkwargs)
KeyboardInterrupt
Can you help me solve this problem please
Thank you in advance
The text was updated successfully, but these errors were encountered: