source: GTP/trunk/Lib/Vis/Preprocessing/scripts/generate_viewcells.sh @ 2064

Revision 2064, 678 bytes checked in by mattausch, 17 years ago (diff)
  • Property svn:executable set to *
Line 
1#!/bin/sh
2
3# add bin to path
4export PATH=../bin:$PATH
5
6#TARGET=debug
7TARGET=release
8
9PROGRAM=../bin/$TARGET/Preprocessor.exe
10
11#SCENE=vienna_cropped
12SCENE=soda5
13
14LOG_PREFIX=../scripts/$SCENE
15ENVIRONMENT=generate_viewcells.env
16
17echo "starting $TARGET mode for $SCENE scene"
18
19#!/bin/sh
20
21PROGRAM=../bin/release/Preprocessor.exe
22SCENE=generate_viewcells
23
24LOG_PREFIX=../scripts/vienna
25
26ENVIRONMENT=$SCENE.env
27
28
29###############################################
30
31METHOD=avs
32echo "$SCENE $METHOD"
33
34$PROGRAM $ENVIRONMENT \
35-view_cells_type=vspBspTree \
36-view_cells_filename=$LOG_PREFIX-visibility.xml.zip
37
38mv debug.log $LOG_PREFIX-$METHOD-debug.log
39
Note: See TracBrowser for help on using the repository browser.