launch runThisBatch.bat as it performs three consecutive steps explained below in one click




ShapeCorresponderSymFlip_x86.exe <sourceID> <targetID> <meshFormat> <symFlipStep> <trackTillLevel> <levelToInterpolate>\n\n";
<sourceID>: ID of source mesh
<targetID>: ID of target mesh
<meshFormat>: input mesh file in 1: obj, 2: off, 3: ply format
<symFlipStep>: 1 to create top10 initial mappings to be tracked until level <trackTillLevel>
	       2 to track top10 mappings to learn the min-cost mapping at level <trackTillLevel>
	       3 to start w/ the advertised mapping and go until dense correspondence achieved**
	       7 to evaluate the computed/stored correspondence [not in use]
	       77 to interpolate coarse correspondence into full dense map
<trackTillLevel>: top10 maps will be tracked until this level (inclusive), which is typically 4
<levelToInterpolate>: level on which interpolation is performed towards dense matching [active only if symFlipStep = 4]
**<maxLevel>: proceed until maxLevel in [0,13], i.e., an intermediate level; use other numbers for automatic maxLevel leading to the full dense map [active only if symFlipStep = 3]

due to memory limitation of x86 mode (at most 4gb), using **<maxLevel> = 6 here; i have used x64 mode in paper


:::::::: step 1 ::::::::
//prepare 10 good initial mappings to be tracked until level $trackTillLevel$, which is typically 4

//example # 1
ShapeCorresponderSymFlip_x86.exe 60 70 3 1 4 -1 -1
	output\60-70 level0.dat created (redundant at this time)
	output\SymFlipCare\symHeal60-70_8x8.dat created (gives top10 below, unnecessary for the next step)
	output\SymFlipCare\symHeal60-70_8x8top10.dat (crucial for the next step) 

//example # 2
ShapeCorresponderSymFlip_x86.exe 13 55 2 1 4 -1 -1
	output\13-55 level0.dat created (redundant at this time)
	output\SymFlipCare\symHeal13-55_8x8.dat created (gives top10 below, unnecessary for the next step)
	output\SymFlipCare\symHeal13-55_8x8top10.dat (crucial for the next step) 


:::::::: step 2 ::::::::
//track 10 good initial mappings until level $trackTillLevel$; so, 10 runs of C2F matching until level $trackTillLevel$

//example # 1
ShapeCorresponderSymFlip_x86.exe 60 70 3 2 4 -1 -1
	output\SymFlipCare\symHeal60-70_8x8out track levelX.dat created (crucial)

//example # 2
ShapeCorresponderSymFlip_x86.exe 13 55 2 2 4 -1 -1
	output\SymFlipCare\symHeal13-55_8x8out track levelX.dat created (crucial)


:::::::: step 3 ::::::::
//start level0 version of the advertised mapping from step 2 and go until full dense map reached

//example # 1
ShapeCorresponderSymFlip_x86.exe 60 70 3 3 4 -1 6
	output\60-70 level0.dat created
	output\60-70 level1.dat created
	.
	.
	output\60-70 level6.dat created (dense map not achieved at this level but gotto stop for memory limitation)

//example # 2
ShapeCorresponderSymFlip_x86.exe 13 55 2 3 4 -1 6
	output\13-55 level0.dat created
	output\13-55 level1.dat created
	.
	.
	output\13-55 level6.dat created (dense map not achieved at this level but gotto stop for memory limitation)




:::::::: irrelevant step :::::::: [not in use; play w/ the code to enable it if my evaluation fits to yours]
//evaluate the quality of the computed corrsepondence of level X later (make sure computeCorrespondenceErrorC2F() call is active during compilation):
ShapeCorresponderSymFlip_x86.exe 13 55 2 7 4 0 0 [not in use]

:::::::: another irrelevant step ::::::::
//interpolate the map at given level (6th parameter) to a full dense map as described in Blended Intrinsic Maps

//example # 1
ShapeCorresponderSymFlip_x86.exe 60 70 3 77 -1 3 -1
	184 secs for 12.5K SCAPE vs. 12.5K SCAPE pair

//example # 2
ShapeCorresponderSymFlip_x86.exe 13 55 2 77 -1 3 -1
	1753 secs for 52K david vs. 45K victoria pair



--ysf
