Francesco Ferroni
Francesco Ferroni
https://github.com/r0nn13/conditional-dcgan-keras/blob/master/conditional_gan.py#L193 This creates an array of all zeros. Surely half should be zero and the other half ones?
Hello, What is the required orientation of the extracted point clouds? I tried running the PointNet on a different extracted frustum of points, but the results were strange. I tried...
Hi, Was trying to use this for a GPU accelerated knn implementation. For example, finding the closest neighbor to a set of points. ``` import time import numpy from libKMCUDA...
Hello, Great work on Open3D version 0.5.0 I was just wondering what your motivation was to use FLANN rather than use i.e. an octree data-structure to run the ThreeNN operations...
Hello, The output sequence length in the implementation is the same as the input sequence length. Perhaps I have misunderstood, but is this a required feature? In the BaBi task...
Hi, I am trying to replicate the same model but for the 500x500 version in the paper. Apart from the input image_shape, and the priors, what other parameters need to...
Hello, I am wondering if someone has done a parallel implementation (i.e. in OpenMP) or with threads in a successful manner? I see a for loop when evaluating the various...
Hello, Are there any Python bindings for VFH estimation? http://pointclouds.org/documentation/tutorials/vfh_estimation.php These are some commands that work in Python ``` import pcl import numpy as np points = pcl.PointCloud(np.random.random((100,3)).astype(np.float32)) search_method =...
Hi, Nice work! 1. Using the demo app, whenever one clicks on a "Add mask" and then switches to a new frame, and then adds another mask, _all_ masks from...
Hello, Do you support or plan on supporting SQ compression? I see you support PQ compression. FAISS also supports milder SQ compression which for my use-cases works better. Wondering if...