DataBlock = 1; SeqTemplate = 'G:\Cam_2007_01_14\EgoBoost_trax\05VD_v01_'; numDigs = 4; outBaseName = 'G:\MotBoostData01\Meta\Seq05VD_f'; iFirsts = [0 750 1500 2500 3500 4500 5500]; iLasts = [800 1550 2550 3550 4550 5550 6598]; sEvalFramesList = sprintf( '%sEvalFrames.txt', SeqTemplate ); frameList = load( sEvalFramesList ); %%frameList = [0:6598]'; % Temporary, see above for nice movie. for( iFrame = 1:size(frameList,1) ) % Process: Loop over each frame in frameList frameNum = frameList(iFrame); %iFrame = find(frameList == 3390); frameNum = frameList( iFrame ); fprintf( 1, 'Processing %dth frame, #%d \t \t of %s \n', iFrame, frameNum, SeqTemplate ); MotBoostEvalOneFrame( frameNum, SeqTemplate, numDigs, outBaseName, iFirsts, iLasts, DataBlock ); end; DataBlock = 2; SeqTemplate = 'G:\Cam_2007_01_14\EgoBoost_trax\16E5_v01_'; numDigs = 5; outBaseName = 'G:\MotBoostData01\Meta\0016E5_'; iFirsts = [0 950 1950 2950 3950 4950 5950 6950 7950 8950 9950 10950]; iLasts = [1000 2000 3000 4000 5000 6000 7000 8000 9000 10000 11000 11380]; sEvalFramesList = sprintf( '%sEvalFrames.txt', SeqTemplate ); frameList = load( sEvalFramesList ); for( iFrame = 1:size(frameList,1) ) % Process: Loop over each frame in frameList frameNum = frameList(iFrame); fprintf( 1, 'Processing %dth frame, #%d \t \t of %s \n', iFrame, frameNum, SeqTemplate ); MotBoostEvalOneFrame( frameNum, SeqTemplate, numDigs, outBaseName, iFirsts, iLasts, DataBlock ); end; DataBlock = 3; SeqTemplate = 'G:\Cam_2007_01_14\EgoBoost_trax\06R0_v01_'; numDigs = 5; outBaseName = 'G:\MotBoostData01\Meta\0006R0_f'; iFirsts = [0 950 1950 2950 3950 4950 5950]; iLasts = [1000 2000 3000 4000 5000 6000 7168]; sEvalFramesList = sprintf( '%sEvalFrames.txt', SeqTemplate ); frameList = load( sEvalFramesList ); for( iFrame = 1:size(frameList,1) ) % Process: Loop over each frame in frameList frameNum = frameList(iFrame); fprintf( 1, 'Processing %dth frame, #%d \t \t of %s \n', iFrame, frameNum, SeqTemplate ); MotBoostEvalOneFrame( frameNum, SeqTemplate, numDigs, outBaseName, iFirsts, iLasts, DataBlock ); end; DataBlock = 4; SeqTemplate = 'G:\data\CambridgeTraffic\01TP_trax\0001TP_v01_'; numDigs = 6; outBaseName = 'G:\MotBoostData01\Meta\0001TP_'; iFirsts = [6690]; iLasts = [10380]; sEvalFramesList = sprintf( '%sEvalFrames.txt', SeqTemplate ); frameList = load( sEvalFramesList ); for( iFrame = 1:size(frameList,1) ) % Process: Loop over each frame in frameList frameNum = frameList(iFrame); %iFrame = find(frameList == 2100); frameNum = frameList( iFrame ); fprintf( 1, 'Processing %dth frame, #%d \t \t of %s \n', iFrame, frameNum, SeqTemplate ); MotBoostEvalOneFrame( frameNum, SeqTemplate, numDigs, outBaseName, iFirsts, iLasts, DataBlock ); end;