wu_xinjun
2022-03-24 225e18670eed17c3732b1ae97cdc8198161748d4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
@echo off
 
@REM change to the filepath
cd %~dp0
cd ..
 
set aerialpython=%cd%/.env/python.exe
set envsetting=%cd%/env/SettingEnv.bat
 
@REM Setting the env
if not exist %aerialpython% (
    call %envsetting% 
)
cd %~dp0
cd ..
 
echo change to path: %cd%
 
@REM please the folder path of the bin files.
@REM set BINfolder=./Manual_Microwave/pod1-2012-12-12-12-12-12/
 
@REM ---------------Usage: bin2ply.py [BINfolder]
%aerialpython% ./scripts/bin2ply.py %BINfolder%
pause