-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Lucas
authored and
Lucas
committed
May 5, 2020
1 parent
648f92c
commit 87d93be
Showing
8 changed files
with
97 additions
and
20 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,2 @@ | ||
#!/bin/bash | ||
export POINTCLOUD_SDK_PATH="./../../../../libs/windows" | ||
export DYLD_LIBRARY_PATH="$DYLD_LIBRARY_PATH:$POINTCLOUD_SDK_PATH/lib" | ||
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$POINTCLOUD_SDK_PATH/lib" | ||
export PYTHONPATH=$POINTCLOUD_SDK_PATH/lib/python3:$PYTHONPATH | ||
echo "$PYTHONPATH" | ||
python3 vxltocsv.py | ||
|
||
python vxltocsv.py |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
## Python versin | ||
1. For windows ,please use python 3.5.4 32bit | ||
2. For mac , please use python 3.5.4 64bit | ||
3. For ubuntu , please use python 3.6.5 64bit | ||
|
||
## Path setting | ||
|
||
In the PATH variable of the environment variable in the control panel of windows, add an item as below: | ||
|
||
"E:\workspace\libPointCloud-master\libs\windows\lib" | ||
|
||
PS. Please modify "E:\workspace\libPointCloud-master" to your real path. | ||
|
||
|
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,14 @@ | ||
#!/bin/bash | ||
export POINTCLOUD_SDK_PATH="./../../../../libs/windows" | ||
export DYLD_LIBRARY_PATH="$DYLD_LIBRARY_PATH:$POINTCLOUD_SDK_PATH/lib" | ||
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$POINTCLOUD_SDK_PATH/lib" | ||
export PYTHONPATH=$POINTCLOUD_SDK_PATH/lib/python3:$PYTHONPATH | ||
echo "$PYTHONPATH" | ||
python3 ShowDepthNoGUI.py | ||
|
||
echo curent folder : "%~dp0" | ||
echo current path : "%~f0" | ||
set POINTCLOUD_SDK_PATH="%~dp0..\..\..\..\libs\windows" | ||
echo POINTCLOUD_SDK_PATH : %POINTCLOUD_SDK_PATH% | ||
set DYLD_LIBRARY_PATH="$DYLD_LIBRARY_PATH:$POINTCLOUD_SDK_PATH/lib" | ||
set LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$POINTCLOUD_SDK_PATH/lib" | ||
set PYTHONPATH="E:\workspace\libPointCloud-master\libs\windows\lib\python3 | ||
echo "%POINTCLOUD_SDK_PATH%" | ||
echo "%PYTHONPATH%" | ||
set PATH= %~dp0..\..\..\..\libs\windows\lib;%~dp0..\..\..\..\libs\windows\lib\python3;%PATH% | ||
echo %PATH% | ||
|
||
python ShowDepthNoGUI.py |
This file contains 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