Difference between revisions of "Reality Capture"

From Antoine Vienne | Wiki
Jump to navigation Jump to search
(Created page with "=Reality Capture= === Process multiple scans=== <pre> // Create a first .bat with the list of the assets you want to process - One folder by asset, all in the same directory...")
 
Line 8: Line 8:
 
(for %%a in (%list%) do (  
 
(for %%a in (%list%) do (  
 
   set assetName=%%a
 
   set assetName=%%a
   set Images=\\stord\diskd\Aznavour\setup-hollywood\3d\textures\avienne\Sources\_Voitures\%%a
+
   set Images=\\DISK\PATH\%%a
   call \\stord\diskd\Aznavour\setup-parisLiberation\3d\textures\avienne\Sources\RC_BATCH_SCRIPT\exec_RC.bat
+
   call \\DISK\PATH\exec_RC.bat
 
))
 
))
  
  
 
</pre>
 
</pre>

Revision as of 17:12, 12 September 2023

Reality Capture

Process multiple scans

// Create a first .bat with the list of the assets you want to process - One folder by asset, all in the same directory

set list=asset_001 asset_002 asset_003 asset_004 asset_005 asset_006 asset_007

(for %%a in (%list%) do ( 
   set assetName=%%a
   set Images=\\DISK\PATH\%%a
   call \\DISK\PATH\exec_RC.bat
))