Add first python-based plugin (SectionalView filter)
This branch adds a first python-based plugin (implementing subclasses of VTKPythonAlgorithmBase
)
It sets a new location for filters, sources, etc implemented in python:
SectionalViewFilter is installed as part of the lidarviewpythonplugin
python
module.
In order to use it within python, just add import lidarviewpythonplugin
at the beginning of a python script
In order to use them with Lidarview, add to your applogic.py
:
\# At the beginning of the file
import lidarviewpythonplugin
\# When loading other plugins
smp.LoadPlugin(lidarviewpythonplugin.__file__, remote=False, ns=globals())
SectionalViewFilter to create a sectional "view" along a given plane in python (in the form of a pointcloud projected on the XY plane)
Edited by Julia Sanchez