neural-implicit-queries icon indicating copy to clipboard operation
neural-implicit-queries copied to clipboard

Queries on neural implicit surfaces via range analysis: ray casting, intersection, closest point, & more. SIGGRAPH 2022 paper. JAX implementation.

Results 5 neural-implicit-queries issues
Sort by recently updated
recently updated
newest added

installing only the packages listed in the `environment.yml` is not enough and may lead to error ``` libGL error: MESA-LOADER: failed to open swrast: /usr/lib/dri/swrast_dri.so: cannot open shared object file:...

Hi, thanks for the wonderful project and also building tools like polyscope. ``` def save_render_current_view( args, implicit_func, params, cast_frustum, opts, matcaps, surf_color ): root = ps.get_camera_world_position() look, up, left =...

Hi, I've been digging through the kd tree implementation for `closest_point` and noticed a mismatch between the grid cell size and the sample points used for intersection checking. It looks...

hi! It would be very handy if this package was pip-installable with `python -m pip install git+https://github.com/nmwsharp/neural-implicit-queries.git`, which as far as I can tell is not possible with the current...

In the function `outward_normal` in `render.py`, when `method == 'finite_differences'` the gradient is calculated by `tetrahedron` algorithm. This is suitable for SDF, but how about Occupancy Function? Is there any...