New probe filter and massively improve interpolate filter#842
Merged
banesullivan merged 7 commits intomasterfrom Jul 24, 2020
Merged
New probe filter and massively improve interpolate filter#842banesullivan merged 7 commits intomasterfrom
banesullivan merged 7 commits intomasterfrom
Conversation
akaszynski
approved these changes
Jul 23, 2020
Member
akaszynski
left a comment
There was a problem hiding this comment.
I've added example docs and tests, otherwise I think it's good to merge. Thanks for your work!
adeak
added a commit
to adeak/pyvista
that referenced
this pull request
Nov 9, 2020
* upstream/master: (37 commits) 🔧 Fix unused variables (pyvista#847) Add better Unstructured Grid Documentation (pyvista#845) Fix typo in plotting.py (pyvista#846) Feat: Implement compute_derivative (pyvista#837) New probe filter and massively improve interpolate filter (pyvista#842) Clarify clip filter docstring (pyvista#840) Update create-structured-surface.py (pyvista#844) Update topo-map.py (pyvista#841) Add release suffix to version string (pyvista#817) Add pathlib Support (pyvista#836) Add tolerance argument to sample_over_line (pyvista#828) vector slice from pyvista/pyvista-support#134 (pyvista#808) Fix is_all_triangles (pyvista#832) Misc. documentation fixes (pyvista#829) Follow up pyvista#793: fix get_data_range (pyvista#818) Fix GPU info in scooby report (pyvista#825) Patch for auto_close warning (pyvista#798) Add texture demo with scalar data (pyvista#821) MAINT: Log init start/stop (pyvista#819) Add PolyData strip filter (pyvista#807) ...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Overview
This introduces a new
probefilter based onvtkProbeFilterper pyvista/pyvista-support#203 and has some massive improvements to theinterpolatefilter.cc @jrwrigh
Details
interpolatefilter was wildly inefficient for large datasets and required the use of an intermediateUniformGridduring the interpolation. This removes that intermediate step so that the gaussian interpolation happens directly on the calling mesh. This has drastic performance differences when interpolating large meshes and yields the exact same results for our example use cases. The arguments for the method have rightfully changed (DEPRECATION), but it's well worth the improvement