octnet
octnet copied to clipboard
OctNet: Learning Deep 3D Representations at High Resolutions
I am working on this data structure and I would like to know if it can be applied on .stl data type and if so what are the required changes
I'd be interested in making this into an extension for pytorch, if anyone is also working on this, or would like to help, please let me know
[An extra null pointer check is not needed in a function](https://isocpp.org/wiki/faq/freestore-mgmt#delete-handles-null "Do I need to check for null before delete p?") like [the destructor for the class “ot_data_t_buffer_cpu”](https://github.com/griegler/octnet/blob/2406d4c1efaa0051d54ebb8de7b22f1190ad55b1/core/include/octnet/cpu/buffer.h#L43 "Update candidate").
Could you provide the semantic segmentation code?
I saw I can write point cloud back from octree using ' vis.write_ply_voxels('oc_from_dense1.ply', oc_from_dense1.to_cdhw())' , Is there functions to write dense volume and mesh from octree?
Hi, thank you for the source code! The "build_all.sh" was successed. But when I tried the example00, I got errors. **When I use python3.5, I got:** Traceback (most recent call...
Hi, Could you please introduce what tools do you use for Octree visualization? Thanks.
Hey, I want to read octree using python since octree is generated using python itself, pyoctnet.Octree.create_from_off Could you please let me know whether there are any in-built functionalities for this(may...
below is the script i am doing testing stuff on loading octree data: ``` package.path = package.path .. ';'.. '/home/name/project/octnet/th/oc/init.lua' require 'oc' data_cpu = oc.FloatOctree() -- works okay data_cpu:read_from_bin_batch({'./test_octrees/chair_128.oc'}) --...
After calling `input, target = data_loader:getBatch()` I am trying to resize the input variable. ``` local inputSz = input:size() inputSz[1] = inputSz[1]*2 input:resize(inputSz) ``` The resulting error is this: ```...