I'm trying to perform an AABB-tringle intersection with the triangles coming from a tria mesh and the AABB being the individual cells from a structured 3D grid/Voxel. Are there any smart ways/ algorithms I could use to filter out and reduce the number of triangles and AABB combinations I would have to perform the SAT test against? As it stands I'm checking every triangle against every cell from the grid which isn't efficient. I was also considering filtering out the triangles based on distance of centroid and maximum triangle size in the tria mesh as a tolerance. But this again would involve looping over all the triangles. I was also considering K-nearest neighbors.
Fast ways to filter out a list of triangles before performing SAT test against AABB
180 Views Asked by Shriram Krishna At
1
There are 1 best solutions below
Related Questions in C++
- C++ using std::vector across boundaries
- Linked list without struct
- Connecting Signal QML to C++ (Qt5)
- how to get the reference of struct soap inherited in C++ Proxy/Service class
- Why we can't assign value to pointer
- Conversion of objects in c++
- shared_ptr: "is not a type" error
- C++ template using pointer and non pointer arguments in a QVector
- C++ SFML 2.2 vectors
- Lifetime of temporary objects
- I want to be able to use 4 different variables in a select statement in c ++
- segmentation fault: 11, extracting data in vector
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- How can I print all the values in this linked list inside a hash table?
- Configured TTL for A record(s) backing CNAME records
Related Questions in MESH
- Cells in grid crossed by a line ( PHP )
- Detect hole in geometry
- Trimesh - leak memory
- Set mesh transparency Meshlab
- How to generate a 2d mesh from a binary image in python?
- Interactive Meshes in Three.js
- What programs export .mesh?
- Get the mesh name from the selected vertex
- How to move multiple meshs in different directions with three.js?
- How to draw each a vertex of a mesh as a circle
- How can creat mesh using matlab?
- Split Matrix and Use Mesh to Plot in Matlab
- Unity3D only first submeshed is rendered
- How to unite gameobject meshes?
- Stop Mesh rendering if it intersect
Related Questions in INTERSECTION
- Math/Physics: Given angle and vector find point of intersection?
- Java 2D game random rectangles
- How can I find a common volume of three cones intersecting each other in MATLAB?
- creating polygons based on intersection
- Ray/Rectangle intersection in 3D space
- Intersecting many Points with many Polygons
- Program not outputting data correctly
- Getting Geometry of Intersection of Road SQL and Inserting Into Table
- Finding n numbers common over N lists
- Intersection of data in oracle
- How to split a self-intersection polygon to multipolygon
- Find the Intersection points of 2 rectangles
- how to check if two points are on the same line in postgis
- How to Check intersection between two images on a specific location?
- SVG intersection of elements with transforms
Related Questions in VOXEL
- Hashing integer coordinates of different sizes
- Is there a Universal Voxel Translator available?
- Unity3D best way to create an editable voxel environment
- Under which conditions can I leave out the perspective division?
- VTK: create cubes from pointcoud
- Trilinear Interpolation on Voxels at specific angle
- Extract voxel coordinates from file
- Voxelize STL file?
- Creating a voxel system and got stuck, finding myself in the need of information on how to implement it
- Reusing three.js meshes (for voxel worlds)
- How to use matplotlib.gridspec for plotting voxels with different aspect?
- Why my PCA is not invariant to rotation and axis swap?
- Plot 3D cubes (like voxels) with XYZ labels and different XYZ dimensions
- Ellipsoid made out of voxels in Python
- Converting a 3D array to a 3D model
Related Questions in SEPARATING-AXIS-THEOREM
- Separating axis theorem: rotation around center of mass
- Separating axis theorem algorithm not working
- Triangle to AABB collision code not working
- Separating axis in matlab
- Fast ways to filter out a list of triangles before performing SAT test against AABB
- Can I simplify this implementation of the separating axis theorem?
- Separating Axis Theorem function fails when met with acute angles
- SAT Minimum Translation Vector isn't correct
- Calculating the resultant velocity vector after a 2D collision
- Point of intersection between Oriented Boxes (or OBB)
- Separating axis theorem difficulties
- Separating axis theorem falsely triggers
- Polygon to Sphere using the SAT algorithm
- SAT Collision detection - Corners fix
- How get a collision point with SAT
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
There are a few well known techniques such as:
give an AABB to each triangle. So you do AABB vs AABB intersection first. The goal is discarding quicky the non-intersecting triangles.
Once you have all triangles inside an AABB, you can do massive inter-AABB's collision detection using algorithms such as I-COLLIDE. You can also create an AABB-tree (also known as Bounding-Volume-Hierarchy or BVH) for the mesh in order to discard massive amount of non-intersecting triangles at once.
Once you have reduced the set of triangles which AABB intersect the AABB of the cell, then you need to perform the actual AABB/triangle test for which you can use the separating axis theorem.