Toinsson
Toinsson
Hello @Maghoumi, I have started another project (https://github.com/toinsson/pysdtw/) based on your repo. This allowed me to modify a bit the structure and quickly add some improvements/features. There is support for...
**Rounding, could you explain this a bit more?** There is a proper way of computing the interpolated indices, especially with regards to rounding the result of the division between integers....
**The goal is to basically expand (x-y)^2 to x^2 + y^2 - 2xy, right?** Yes, this computation uses the quadratic expansion to save memory. To be precise, in _euclidean_dist_func: `x...
adding `#include ` to `make_opaque_vectors.hpp` solves the issue.
get to that point: `./src/generated_modules/sample_consensus/sac_model.hpp:19:11: error: name defined in alias declaration must be an identifier using typename Class = pcl::Functor; `
Hello, I have pushed a commit to my [fork](https://github.com/toinsson/pclpy/commit/e44d261c4996bc5fd4080bf813542ccdffbca601) in case you want to see the changes I had to implement for getting through the first compilation errors: - some...
see #24
Thanks for the quick reply. I am just running the code from: `https://pizco.readthedocs.io/en/latest/`, and changing `from PyQt4 import pyqtSignal as Signal` to `from PyQt5.QtCore import pyqtSignal as Signal`
Increasing the timeout AND the number of gunicorn workers solved some issues. Pseudocode: ``` trackingServer.extraArgs = --gunicorn-opts="--timeout=3600" trackingServer.workers = 2 ```
True, thanks for pointing this out. Could raise a warning if wrong data type passed and return zeros.