-
Notifications
You must be signed in to change notification settings - Fork 0
Home
- $ git clone [email protected]:svenwanner/pylibs.git
- add to .bashrc: export PYTHONPATH=$PYTHONPATH:/home/where/you/cloned/pylibs
if the PYTHONPATH is added to your .bashrc, install dreampie or IPython and ensure that the following is executed when the interpreter is started in a console (In dreampie go to Edit -> Preferences. In the Tab Shell paste the code below and press CTRL+F6 or restart the interpreter):
#This import some usefule modules, ensure that all are #installed or comment the uninstalled import cv2 import vigra import sys,os import scipy as sp import pylab as plt import numpy as np from scipy import misc from scipy import ndimage as nd
#This imports all available modules so you #can use all defined structures immediately import mypy.image.io as imio import mypy.lightfield.io as lfio import mypy.lightfield.helpers as helpers import mypy.utils.filesystem as filesystem import mypy.visualization.imshow as imshow import mypy.pointclouds.depthToCloud as D2Cl import mypy.lightfield.depth.structureTensor2D as st2D import mypy.lightfield.depth.structureTensor3D as st3D import mypy.workflows.StructureTensor2D as st2D_wflow import mypy.workflows.StructureTensor3D as st3D_wflow
examples can be found in: workflows/examples/structureTensor2D_example.py
copy the script, adapt the parameter and execute it:
$ python my_example.py