mirror of
https://github.com/ConsistentlyInconsistentYT/Pixeltovoxelprojector.git
synced 2025-10-12 20:02:06 +00:00
Create examplebuildvoxelgridfrommotion.bat
This commit is contained in:
parent
42dd61d195
commit
f006e9aca0
1 changed files with 15 additions and 0 deletions
15
examplebuildvoxelgridfrommotion.bat
Normal file
15
examplebuildvoxelgridfrommotion.bat
Normal file
|
@ -0,0 +1,15 @@
|
|||
@echo off
|
||||
|
||||
rem Build with g++
|
||||
g++ -std=c++17 -O2 ray_voxel.cpp -o ray_voxel
|
||||
if %ERRORLEVEL% NEQ 0 (
|
||||
echo [Error] Compilation failed
|
||||
pause
|
||||
exit /b %ERRORLEVEL%
|
||||
)
|
||||
|
||||
echo [Info] Compilation succeeded.
|
||||
|
||||
rem Now run the compiled program:
|
||||
rem Usage: ray_voxel <metadata.json> <image_folder> <output_voxel_bin>
|
||||
ray_voxel motionimages/metadata.json motionimages voxel_grid.bin
|
Loading…
Add table
Add a link
Reference in a new issue