diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index 9937c8768b2d5b643c8b7751f2c167b3096d00a7..fb7d361b5cbcc49fa55245688624396f0d9e4d7d 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -102,11 +102,11 @@ file(GLOB main ../src/*.cpp) #Main.cpp FrameProcessor.cpp PreProcessor.cpp Video # set(src "../src") # file(GLOB main "${src}/Main.cpp" "${src}/FrameProcessor.cpp" "${src}/PreProcessor.cpp" "${src}/VideoAnalysis.cpp" "${src}/VideoCapture.cpp") file(GLOB demo Demo.cpp) -file(GLOB demo2 Demo2.cpp) +file(GLOB demo_orig Demo_orig.cpp) file(GLOB_RECURSE tools_src ../src/tools/*.cpp) #file(GLOB sources FrameProcessor.cpp PreProcessor.cpp VideoAnalysis.cpp VideoCapture.cpp) -# list(REMOVE_ITEM sources ${demo} ${demo2}) +# list(REMOVE_ITEM sources ${demo} ${demo_orig}) if(BGS_PYTHON_SUPPORT) file(GLOB_RECURSE bgs_src ../algorithms/*.cpp ../algorithms/*.c wrapper_python/*.cpp) @@ -148,7 +148,7 @@ message(STATUS "bgs_src: '${bgs_src}'") message(STATUS "tools_src: '${tools_src}'") message(STATUS "main: '${main}'") message(STATUS "demo: '${demo}'") -message(STATUS "demo2: '${demo2}'") +message(STATUS "demo_orig: '${demo_orig}'") message(STATUS "CMAKE_SOURCE_DIR: '${CMAKE_SOURCE_DIR}'") message(STATUS "CMAKE_BINARY_DIR: '${CMAKE_BINARY_DIR}'") message(STATUS "CMAKE_INCLUDE_PATH: '${CMAKE_INCLUDE_PATH}'") @@ -162,11 +162,11 @@ add_executable(bgslibrary ${main}) target_link_libraries(bgslibrary ${OpenCV_LIBS} libbgs) set_target_properties(bgslibrary PROPERTIES OUTPUT_NAME bgs) -# add_executable(bgs_demo ${demo}) # <<<<<< TODO -# target_link_libraries(bgs_demo ${OpenCV_LIBS} ${LibArchive_LIBRARIES} libbgs) +add_executable(bgs_demo ${demo}) # <<<<<< TODO +target_link_libraries(bgs_demo ${OpenCV_LIBS} ${LibArchive_LIBRARIES} libbgs) -add_executable(bgs_demo2 ${demo2}) -target_link_libraries(bgs_demo2 ${OpenCV_LIBS} ${LibArchive_LIBRARIES} libbgs) +add_executable(bgs_demo_orig ${demo_orig}) +target_link_libraries(bgs_demo_orig ${OpenCV_LIBS} ${LibArchive_LIBRARIES} libbgs) install(TARGETS libbgs bgslibrary RUNTIME DESTINATION bin COMPONENT app diff --git a/examples/Demo.cpp b/examples/Demo.cpp index bcb6c31c81388aa213d952cda3ada324c0e16f98..1b0cbc33f491b535ce4c2c41b0b2724cc9d64e0b 100644 --- a/examples/Demo.cpp +++ b/examples/Demo.cpp @@ -1,6 +1,5 @@ /* -./bgs_demo -i test45/ -a 100 -o test45/results -// -c center? +bgs_demo -i ../../dataset/video.tar -a 100 -o ../../output -c ../../config/centerConfigFile.xml -p ../../config/camParam.xml */ //cpp c @@ -52,15 +51,25 @@ int main(int argc, char * argv[]) std::cout << "using processcenter " << PROCESS_CENTER_VERSION_MAJOR <<"."<< PROCESS_CENTER_VERSION_MINOR<<"."<<PROCESS_CENTER_VERSION_MINOR_FIXES<< endl; std::cout << "Using OpenCV " << CV_MAJOR_VERSION << "." << CV_MINOR_VERSION << "." << CV_SUBMINOR_VERSION << std::endl; + //!** parse programm input****************/ - if(cmdOptionExists(argv, argv+argc, "-h") + if( cmdOptionExists(argv, argv+argc, "-h") + || cmdOptionExists(argv, argv+argc, "-?") || !cmdOptionExists(argv, argv+argc, "-i") || !cmdOptionExists(argv, argv+argc, "-a") || !cmdOptionExists(argv, argv+argc, "-o") || !cmdOptionExists(argv, argv+argc, "-p")) { - cout <<" Usage:\n" << argv[0] << " -i inputTarFile -a amountOfJpgFiles -c exactCenterConfFile.xml -o outPutPath -p camparameterFile.xml"<< endl; + cout <<" Usage:" << endl; + cout << " " << argv[0] << " -i in.tar -a amount -c center.xml -o outPath -p camparameterFile.xml"<< endl << endl; + cout << " Options:" << endl; + cout << " i - input tarfile/dir containing tars ?" << endl; + cout << " a - amount of files/frames ?" << endl; + cout << " c - exact center xml-conf file" << endl; + cout << " o - output path / dir" << endl; + cout << " p - camparameterFile ?" << endl; + return EXIT_FAILURE; } @@ -165,7 +174,7 @@ int main(int argc, char * argv[]) clock_t beginAll = clock(); - //! we read the center config file for cut out the ROI + //! read the center config file to cut out the ROI //TODO merge this config with the Tapter.xml ?? //circle param int circleCenterX = 880; @@ -202,17 +211,23 @@ int main(int argc, char * argv[]) fs.open(camParam, FileStorage::READ); if (!fs.isOpened()) { - cerr << "error during open " << cameraParameterFile << " will abort\n "; + cerr << "error during open " << cameraParameterFile << " will abort" << endl; return -1; } - fs["camera_matrix"] >> intrinsicsCameraMatrix; - std::cout << "camera_matrix = "<< intrinsicsCameraMatrix << endl; + // fs["camera_matrix"] >> intrinsicsCameraMatrix; + // fs["distortion_coefficients"] >> distortionCoeff; - fs["distortion_coefficients"] >> distortionCoeff; - std::cout << "distortion_coefficients"<< distortionCoeff << endl; + intrinsicsCameraMatrix = (int) fs["camera_matrix"]; + // intrinsicsCameraMatrix = fs["camera_matrix"].mat(); + cout << "camera_matrix = "<< intrinsicsCameraMatrix << endl; + + distortionCoeff = (int) fs["distortion_coefficients"]; + // distortionCoeff = fs["distortion_coefficients"].mat(); + cout << "distortion_coefficients = " << distortionCoeff << endl; } + cout.flush(); cout <<"a) we process all frames "<<endl; @@ -225,11 +240,7 @@ int main(int argc, char * argv[]) vector<string> myFileListNoContour; //list for no contours found; vector<string> myFileListAfterContourSelection; //list for no contours found after selection; - //the corruption check is done beforehand - //vector<string> myFileListCorrupted; //list all corrupted jpg files - - - //here we loop over all picture of the tar archive, independing how many this are + //loop over all picture of the tar archive, independing how many this are for (;;) { @@ -238,20 +249,20 @@ int main(int argc, char * argv[]) std::vector<char> vec; //we read the next header - r = corruption(archive, &entry); + r = archive_read_next_header(archive, &entry); if (r == ARCHIVE_EOF) break; if (r != ARCHIVE_OK) { - cerr<<"archive_read_next_header: error: "<< archive_error_string(archive) <<" will abort"<< endl; + cerr << "archive_read_next_header: error: "<< archive_error_string(archive) <<" will abort"<< endl; exit(1); } - //we get the filename + // get filename const char *fileNamePtr = archive_entry_pathname(entry); std::string filename(fileNamePtr,strlen(fileNamePtr) ); //cout << "fileName: "<< filename <<endl; - //we convert it to a framenumber + // convert it to a framenumber frameCounter = toFrameNumber(filename); if(frameCounterOld>frameCounter) @@ -269,9 +280,7 @@ int main(int argc, char * argv[]) myFileTarWriterHeaderCounter++; continue; //we overjump all in our for loop } - //else - //{ - //we copy all data to the buffer vector + vec = copyDataInBuffer(archive); if(vec.empty()) cerr << "error during load data into buffer"; @@ -282,8 +291,8 @@ int main(int argc, char * argv[]) cerr<<"archive_write_finish_entry: error: "<< archive_error_string(ext) <<" will abort"<< endl; exit(1); } - //} - //we read the image buffer as a jpg picture and decode it + + // read the image buffer as a jpg picture and decode it Mat img_input = imdecode(Mat(vec), 1); // //we define the type better to prevent error @@ -313,7 +322,7 @@ int main(int argc, char * argv[]) bgs->process(img_input, img_mask, img_bkgmodel); // by default, it shows automatically the foreground mask image - //! step 3) we make we apply a edge detection + //! step 3) apply edge detection //TODO make this in a function, how many times is this listed ?? //TODO read from tapter config //TODO all parameter from applyCannyEdgeAndCalcCountours also !! @@ -523,21 +532,12 @@ int main(int argc, char * argv[]) myFileErrorList.push_back(filename); } - // }//end if not corrupted picture - // else - // { - // cerr<<"error file: "<< fileName<<" is corrupted, will ignore it"<<endl; - // myFileListCorrupted.push_back(fileName); - - // } - - - //we calc the time which we used for a picture + //calc the time which we used for a picture clock_t end = clock(); double elapsedSecs = double(end - begin) / CLOCKS_PER_SEC; - //we calc the time which was used for all picture + //calc the time which was used for all pictures clock_t endAll = clock(); double elapsedSecTotal = double(endAll - beginAll) / CLOCKS_PER_SEC; cout <<"process single pic:\t"<<elapsedSecs<<" s - \t\t"<<(int)(elapsedSecTotal/60)<<" min -\t"<<(int)(elapsedSecTotal/60/60)<<" h"<<endl; @@ -578,11 +578,6 @@ int main(int argc, char * argv[]) cout <<"amount contour errors after selection: "<< myFileListAfterContourSelection.size()<<endl; fs2 << "fileErrorNoContoursAfterSelections" << myFileListAfterContourSelection; - - // //we write error list no contours found in file - // cout <<"amount of corrupted jpg files: "<< myFileListCorrupted.size()<<endl; - // fs2 << "fileErrorIOcorruptFiles" << myFileListCorrupted; - //the bgs related things delete bgs; @@ -624,7 +619,7 @@ std::vector<char> copyDataInBuffer(struct archive *aw) if (r != ARCHIVE_OK) { - cerr << "error during read archive "<<endl; + cerr << "error during read archive " << endl; return vec; } @@ -640,6 +635,7 @@ std::vector<char> copyDataInBuffer(struct archive *aw) return vec; } + void my_handler(int signum) { if (signum == SIGUSR1) diff --git a/examples/Demo2.cpp b/examples/Demo2.cpp deleted file mode 100644 index b3f130bd3e02aae44e16ec124ead6329dc220723..0000000000000000000000000000000000000000 --- a/examples/Demo2.cpp +++ /dev/null @@ -1,300 +0,0 @@ -/* -./bgs_demo -i test45/ -a 100 -o test45/results/ -based on original demo.cpp -*/ - -// c - -#include <sys/types.h> -#include <sys/stat.h> -#include <archive.h> -#include <archive_entry.h> -#include <fcntl.h> -#include <string.h> -#include <unistd.h> - -//cpp c -#include <iostream> -#include <algorithm> -#include <vector> -#include <cstdlib> -#include <stdio.h> /* printf, scanf, puts, NULL */ -#include <stdlib.h> /* srand, rand */ -#include <time.h> /* time */ -#include <ctime> - -#define PROCESS_CENTER_VERSION_MAJOR 0 -#define PROCESS_CENTER_VERSION_MINOR 2 - -#include <opencv2/opencv.hpp> //opencv -#include "../src/algorithms/algorithms.h" //bgs - -using namespace bgslibrary::algorithms; -using namespace cv; -using namespace std; - -char* getCmdOption(char ** begin, char ** end, const std::string & option) -{ - char ** itr = std::find(begin, end, option); - if (itr != end && ++itr != end) - { - return *itr; - } - return 0; -} - -bool cmdOptionExists(char** begin, char** end, const std::string& option) -{ - return std::find(begin, end, option) != end; -} - - -static std::vector<char> copyDataInBuffer(struct archive *aw); - -//static void errmsg(const char *); -//static void fail(const char *, const char *, int); -//static void msg(const char *); -//static void warn(const char *, const char *); - - - -int main(int argc, char * argv[]) -{ - std::cout << "using produce bk " <<PROCESS_CENTER_VERSION_MAJOR <<"."<< PROCESS_CENTER_VERSION_MINOR << endl; - std::cout << "Using OpenCV " << CV_MAJOR_VERSION << "." << CV_MINOR_VERSION << "." << CV_SUBMINOR_VERSION << std::endl; - //!** parse programm input****************/ - if(cmdOptionExists(argv, argv+argc, "-h")) - { - cout <<" error: please use command as\n./bgs_demo -i pathToInputDir -a amountOfJpgFiles -c exactCenterConfFile.xml -o outPutPath"<<endl; - return EXIT_FAILURE; - } - if(!cmdOptionExists(argv, argv+argc, "-i")||!cmdOptionExists(argv, argv+argc, "-a")||!cmdOptionExists(argv, argv+argc, "-o") ) - { - cout <<" error: please use command as\n./bgs_demo -i pathToInputDir -a amountOfJpgFiles -c exactCenterConfFile.xml -o outPutPath"<<endl; - return EXIT_FAILURE; - } - - char *testInputDir = getCmdOption(argv, argv + argc, "-i"); - string inputDir("."); - if (testInputDir) - { - //test dir exists - inputDir = string(testInputDir); - } - int amountFiles = -1; - char *testFileAmount = getCmdOption(argv, argv + argc, "-a"); - if (testFileAmount) - { - string s(testFileAmount); - stringstream foo(s); - foo >> amountFiles; - } - - - char *centerFile = getCmdOption(argv, argv + argc, "-c"); - string centerFileString("."); - if (centerFile) - { - //test dir exists - centerFileString = string(centerFile); - } - - char *testOutputDir = getCmdOption(argv, argv + argc, "-o"); - string outputDir("."); - if (testOutputDir) - { - //test dir exists - outputDir = string(testOutputDir); - } - - struct archive *archive; - struct archive *ext; - struct archive_entry *entry; - int r; - int flags = ARCHIVE_EXTRACT_TIME; // see https://linux.die.net/man/3/archive_write_disk for more flags - const char *filename = "data_sized.tar"; - - archive = archive_read_new(); - ext = archive_write_disk_new(); - archive_write_disk_set_options(ext, flags); - - archive_read_support_format_tar(archive); - - //we get the filename - if (filename != NULL && strcmp(filename, "-") == 0) - filename = NULL; - - //and open the handler - if ((r = archive_read_open_filename(archive, filename, 10240))) - { - cerr<<"archive_read_open_filename: error: "<< archive_error_string(archive) <<" will abort"<< endl; - exit(1); - // fail("archive_read_open_filename()", - // archive_error_string(a), r); - } - - int counter = 0; - for (;;) { - r = archive_read_next_header(archive, &entry); - if (r == ARCHIVE_EOF) - break; - if (r != ARCHIVE_OK) - { - cerr<<"archive_read_next_header: error: "<< archive_error_string(archive) <<" will abort"<< endl; - exit(1); - // fail("archive_read_next_header()", - // archive_error_string(a), 1); - } - //msg("x "); - ///char *buffer = malloc (sizeof(char) * 400000); - //Mat img =Mat::zeros(1936,1456,CV_8UC3); - - //new way - //std::ifstream file("img.jpg"); - std::vector<char> vec; - - // file >> std::noskipws; - // std::copy(std::istream_iterator<char>(file), std::istream_iterator<char>(), std::back_inserter(data)); - - const char *fileNamePtr = archive_entry_pathname(entry); - std::string filename(fileNamePtr,strlen(fileNamePtr) ); - cout << "fileName: "<< filename <<endl; - - //TODO we should test what file we have, this filenumber n = n - 1 ?? - - //msg(archive_entry_pathname(entry)); - r = archive_write_header(ext, entry); - if (r != ARCHIVE_OK) - { - cerr<<"archive_write_header() error: "<< archive_error_string(ext)<<endl; - } - else - { - vec = copyDataInBuffer(archive);//no // we cast the data pointer to void, because we know what we do ?? - if(vec.empty()) - cerr << "error during load data into buffer"; - - r = archive_write_finish_entry(ext); - if (r != ARCHIVE_OK) - { - cerr<<"archive_write_finish_entry: error: "<< archive_error_string(ext) <<" will abort"<< endl; - exit(1); - -// fail("archive_write_finish_entry()", -// archive_error_string(ext), 1); - } - } - //we read the image buffer as a jpg picture and decode it - Mat img2 = imdecode(Mat(vec), 1); - -// //here we could use our image -// //we show what we got -// namedWindow( "Display window", WINDOW_AUTOSIZE );// Create a window for display. -// imshow( "Display window", img2 ); // Show our image inside it. -// cv::imwrite("foo.jpg", img2); - -// //msg("\n"); - if(counter > 10) exit(1); - counter ++; - -// waitKey(0); - - - } - archive_read_close(archive); - archive_read_free(archive); - - archive_write_close(ext); - archive_write_free(ext); - - return 0; -} - -static std::vector<char> copyDataInBuffer(struct archive *aw) -{ - int r; - const void *buff; - std::vector<char> vec; - size_t size; -#if ARCHIVE_VERSION_NUMBER >= 3000000 - int64_t offset; -#else - off_t offset; -#endif - // unsigned int myOffsetCounter = 0; - // int counterIteration = 0; - - // ofstream myfile; - // myfile.open ("tmpPicture.jpg", ios::out | ios::binary); - // if (!myfile.is_open()) - // return vec; - - for (;;) { - r = archive_read_data_block(aw, &buff, &size, &offset); - if (r == ARCHIVE_EOF) - { - return vec; // everything fine, were are just at the end - } - - if (r != ARCHIVE_OK) - { - cerr << "error during read archive "<<endl; - return vec; - } - //r = archive_write_data_block(aw, buff, size, offset); - //we mem copy the buffer - //cout <<counterIteration++<< " offset: "<< offset<< " size: "<< size<<endl; - - //memcpy( &buffer[myOffsetCounter], (char*) buff, size * sizeof( char ) ); - //we simply copy it to the end - //std::copy ( buff, buff+size, vec.end() ); - //myOffsetCounter += size; - - //a good discussion : https://stackoverflow.com/questions/259297/how-do-you-copy-the-contents-of-an-array-to-a-stdvector-in-c-without-looping - // Method 4: vector::insert - { - //we rename our pointer to avoid a weird compiler warning - char *foo = (char*) buff; - vec.insert(vec.end(), &foo[0], &foo[size]); - } - - - //myfile.write ((char*)buff,size); - // if (r != ARCHIVE_OK) { - // warn("archive_write_data_block()", - // archive_error_string(aw)); - // return (r); - // } - } - //myfile.close(); - - return vec; -} - -//static void -//msg(const char *m) -//{ -// write(1, m, strlen(m)); -//} - -//static void -//errmsg(const char *m) -//{ -// write(2, m, strlen(m)); -//} - -//static void -//warn(const char *f, const char *m) -//{ -// errmsg(f); -// errmsg(" failed: "); -// errmsg(m); -// errmsg("\n"); -//} - -//static void -//fail(const char *f, const char *m, int r) -//{ -// warn(f, m); -// exit(r); -//} diff --git a/examples/Demo3.cpp b/examples/Demo_orig.cpp similarity index 100% rename from examples/Demo3.cpp rename to examples/Demo_orig.cpp diff --git a/examples/ct-examples.sublime-project b/examples/ct-examples.sublime-project index e878665cdfbb54e59b9390e5db30ba547927f35c..dddd133fa428f32bdfc7d752a93a79753c19e035 100644 --- a/examples/ct-examples.sublime-project +++ b/examples/ct-examples.sublime-project @@ -23,1259 +23,1275 @@ [ { "name": "clean", - "shell_cmd": "make -j8 clean" + "shell_cmd": "make -j8 clean", }, { "name": "install/strip", - "shell_cmd": "make -j8 install/strip" + "shell_cmd": "make -j8 install/strip", }, { "name": "install", - "shell_cmd": "make -j8 install" + "shell_cmd": "make -j8 install", }, { "name": "list_install_components", - "shell_cmd": "make -j8 list_install_components" + "shell_cmd": "make -j8 list_install_components", }, { "name": "rebuild_cache", - "shell_cmd": "make -j8 rebuild_cache" + "shell_cmd": "make -j8 rebuild_cache", }, { - "name": "bgs_demo2", - "shell_cmd": "make -j8 bgs_demo2" + "name": "bgs_demo_orig", + "shell_cmd": "make -j8 bgs_demo_orig", + }, + { + "name": "bgs_demo", + "shell_cmd": "make -j8 bgs_demo", }, { "name": "install/local", - "shell_cmd": "make -j8 install/local" + "shell_cmd": "make -j8 install/local", }, { "name": "bgslibrary", - "shell_cmd": "make -j8 bgslibrary" + "shell_cmd": "make -j8 bgslibrary", }, { "name": "libbgs", - "shell_cmd": "make -j8 libbgs" + "shell_cmd": "make -j8 libbgs", }, { - "name": "Demo2.o", - "shell_cmd": "make -j8 Demo2.o" + "name": "Demo.o", + "shell_cmd": "make -j8 Demo.o", }, { - "name": "Demo2.i", - "shell_cmd": "make -j8 Demo2.i" + "name": "Demo.i", + "shell_cmd": "make -j8 Demo.i", }, { - "name": "Demo2.s", - "shell_cmd": "make -j8 Demo2.s" + "name": "Demo.s", + "shell_cmd": "make -j8 Demo.s", + }, + { + "name": "Demo_orig.o", + "shell_cmd": "make -j8 Demo_orig.o", + }, + { + "name": "Demo_orig.i", + "shell_cmd": "make -j8 Demo_orig.i", + }, + { + "name": "Demo_orig.s", + "shell_cmd": "make -j8 Demo_orig.s", }, { "name": "home/sugu/code/idiv/camtron/src/FrameProcessor.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/FrameProcessor.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/FrameProcessor.o", }, { "name": "home/sugu/code/idiv/camtron/src/FrameProcessor.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/FrameProcessor.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/FrameProcessor.i", }, { "name": "home/sugu/code/idiv/camtron/src/FrameProcessor.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/FrameProcessor.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/FrameProcessor.s", }, { "name": "home/sugu/code/idiv/camtron/src/Main.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/Main.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/Main.o", }, { "name": "home/sugu/code/idiv/camtron/src/Main.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/Main.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/Main.i", }, { "name": "home/sugu/code/idiv/camtron/src/Main.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/Main.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/Main.s", }, { "name": "home/sugu/code/idiv/camtron/src/PreProcessor.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/PreProcessor.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/PreProcessor.o", }, { "name": "home/sugu/code/idiv/camtron/src/PreProcessor.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/PreProcessor.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/PreProcessor.i", }, { "name": "home/sugu/code/idiv/camtron/src/PreProcessor.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/PreProcessor.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/PreProcessor.s", }, { "name": "home/sugu/code/idiv/camtron/src/VideoAnalysis.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/VideoAnalysis.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/VideoAnalysis.o", }, { "name": "home/sugu/code/idiv/camtron/src/VideoAnalysis.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/VideoAnalysis.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/VideoAnalysis.i", }, { "name": "home/sugu/code/idiv/camtron/src/VideoAnalysis.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/VideoAnalysis.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/VideoAnalysis.s", }, { "name": "home/sugu/code/idiv/camtron/src/VideoCapture.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/VideoCapture.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/VideoCapture.o", }, { "name": "home/sugu/code/idiv/camtron/src/VideoCapture.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/VideoCapture.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/VideoCapture.i", }, { "name": "home/sugu/code/idiv/camtron/src/VideoCapture.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/VideoCapture.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/VideoCapture.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/AdaptiveBackgroundLearning.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/AdaptiveBackgroundLearning.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/AdaptiveBackgroundLearning.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/AdaptiveBackgroundLearning.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/AdaptiveBackgroundLearning.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/AdaptiveBackgroundLearning.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/AdaptiveBackgroundLearning.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/AdaptiveBackgroundLearning.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/AdaptiveBackgroundLearning.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/AdaptiveSelectiveBackgroundLearning.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/AdaptiveSelectiveBackgroundLearning.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/AdaptiveSelectiveBackgroundLearning.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/AdaptiveSelectiveBackgroundLearning.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/AdaptiveSelectiveBackgroundLearning.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/AdaptiveSelectiveBackgroundLearning.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/AdaptiveSelectiveBackgroundLearning.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/AdaptiveSelectiveBackgroundLearning.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/AdaptiveSelectiveBackgroundLearning.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/CodeBook.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/CodeBook.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/CodeBook.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/CodeBook.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/CodeBook.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/CodeBook.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/CodeBook.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/CodeBook.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/CodeBook.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/DPAdaptiveMedian.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPAdaptiveMedian.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPAdaptiveMedian.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/DPAdaptiveMedian.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPAdaptiveMedian.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPAdaptiveMedian.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/DPAdaptiveMedian.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPAdaptiveMedian.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPAdaptiveMedian.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/DPEigenbackground.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPEigenbackground.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPEigenbackground.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/DPEigenbackground.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPEigenbackground.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPEigenbackground.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/DPEigenbackground.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPEigenbackground.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPEigenbackground.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/DPGrimsonGMM.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPGrimsonGMM.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPGrimsonGMM.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/DPGrimsonGMM.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPGrimsonGMM.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPGrimsonGMM.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/DPGrimsonGMM.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPGrimsonGMM.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPGrimsonGMM.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/DPMean.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPMean.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPMean.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/DPMean.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPMean.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPMean.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/DPMean.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPMean.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPMean.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/DPPratiMediod.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPPratiMediod.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPPratiMediod.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/DPPratiMediod.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPPratiMediod.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPPratiMediod.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/DPPratiMediod.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPPratiMediod.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPPratiMediod.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/DPTexture.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPTexture.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPTexture.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/DPTexture.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPTexture.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPTexture.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/DPTexture.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPTexture.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPTexture.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/DPWrenGA.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPWrenGA.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPWrenGA.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/DPWrenGA.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPWrenGA.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPWrenGA.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/DPWrenGA.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPWrenGA.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPWrenGA.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/DPZivkovicAGMM.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPZivkovicAGMM.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPZivkovicAGMM.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/DPZivkovicAGMM.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPZivkovicAGMM.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPZivkovicAGMM.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/DPZivkovicAGMM.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPZivkovicAGMM.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPZivkovicAGMM.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/FrameDifference.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/FrameDifference.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/FrameDifference.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/FrameDifference.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/FrameDifference.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/FrameDifference.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/FrameDifference.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/FrameDifference.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/FrameDifference.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/FuzzyChoquetIntegral.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/FuzzyChoquetIntegral.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/FuzzyChoquetIntegral.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/FuzzyChoquetIntegral.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/FuzzyChoquetIntegral.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/FuzzyChoquetIntegral.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/FuzzyChoquetIntegral.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/FuzzyChoquetIntegral.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/FuzzyChoquetIntegral.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/FuzzySugenoIntegral.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/FuzzySugenoIntegral.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/FuzzySugenoIntegral.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/FuzzySugenoIntegral.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/FuzzySugenoIntegral.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/FuzzySugenoIntegral.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/FuzzySugenoIntegral.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/FuzzySugenoIntegral.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/FuzzySugenoIntegral.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/GMG.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/GMG.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/GMG.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/GMG.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/GMG.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/GMG.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/GMG.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/GMG.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/GMG.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/IMBS/IMBS.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/IMBS/IMBS.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/IMBS/IMBS.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/IMBS/IMBS.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/IMBS/IMBS.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/IMBS/IMBS.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/IMBS/IMBS.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/IMBS/IMBS.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/IMBS/IMBS.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/KDE.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KDE.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KDE.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/KDE.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KDE.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KDE.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/KDE.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KDE.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KDE.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/KDE/KernelTable.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KDE/KernelTable.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KDE/KernelTable.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/KDE/KernelTable.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KDE/KernelTable.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KDE/KernelTable.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/KDE/KernelTable.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KDE/KernelTable.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KDE/KernelTable.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/KDE/NPBGSubtractor.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KDE/NPBGSubtractor.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KDE/NPBGSubtractor.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/KDE/NPBGSubtractor.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KDE/NPBGSubtractor.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KDE/NPBGSubtractor.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/KDE/NPBGSubtractor.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KDE/NPBGSubtractor.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KDE/NPBGSubtractor.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/KDE/NPBGmodel.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KDE/NPBGmodel.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KDE/NPBGmodel.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/KDE/NPBGmodel.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KDE/NPBGmodel.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KDE/NPBGmodel.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/KDE/NPBGmodel.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KDE/NPBGmodel.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KDE/NPBGmodel.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/KNN.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KNN.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KNN.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/KNN.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KNN.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KNN.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/KNN.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KNN.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KNN.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBAdaptiveSOM.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBAdaptiveSOM.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBAdaptiveSOM.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBAdaptiveSOM.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBAdaptiveSOM.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBAdaptiveSOM.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBAdaptiveSOM.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBAdaptiveSOM.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBAdaptiveSOM.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBFuzzyAdaptiveSOM.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBFuzzyAdaptiveSOM.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBFuzzyAdaptiveSOM.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBFuzzyAdaptiveSOM.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBFuzzyAdaptiveSOM.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBFuzzyAdaptiveSOM.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBFuzzyAdaptiveSOM.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBFuzzyAdaptiveSOM.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBFuzzyAdaptiveSOM.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBFuzzyGaussian.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBFuzzyGaussian.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBFuzzyGaussian.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBFuzzyGaussian.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBFuzzyGaussian.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBFuzzyGaussian.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBFuzzyGaussian.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBFuzzyGaussian.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBFuzzyGaussian.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBMixtureOfGaussians.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBMixtureOfGaussians.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBMixtureOfGaussians.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBMixtureOfGaussians.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBMixtureOfGaussians.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBMixtureOfGaussians.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBMixtureOfGaussians.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBMixtureOfGaussians.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBMixtureOfGaussians.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEDefs.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEDefs.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEDefs.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEDefs.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEDefs.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEDefs.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEDefs.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEDefs.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEDefs.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEHistogram.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEHistogram.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEHistogram.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEHistogram.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEHistogram.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEHistogram.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEHistogram.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEHistogram.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEHistogram.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEImage.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEImage.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEImage.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEImage.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEImage.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEImage.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEImage.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEImage.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEImage.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MotionDetection.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MotionDetection.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MotionDetection.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MotionDetection.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MotionDetection.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MotionDetection.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MotionDetection.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MotionDetection.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MotionDetection.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/graph.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/graph.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/graph.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/graph.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/graph.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/graph.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/graph.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/graph.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/graph.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/maxflow.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/maxflow.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/maxflow.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/maxflow.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/maxflow.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/maxflow.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/maxflow.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/maxflow.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/maxflow.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLBSP.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLBSP.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLBSP.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLBSP.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLBSP.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLBSP.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLBSP.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLBSP.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLBSP.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLBSP_.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLBSP_.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLBSP_.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLBSP_.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLBSP_.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLBSP_.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLBSP_.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLBSP_.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLBSP_.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLOBSTER.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLOBSTER.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLOBSTER.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLOBSTER.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLOBSTER.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLOBSTER.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLOBSTER.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLOBSTER.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLOBSTER.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorPAWCS.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorPAWCS.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorPAWCS.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorPAWCS.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorPAWCS.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorPAWCS.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorPAWCS.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorPAWCS.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorPAWCS.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorSuBSENSE.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorSuBSENSE.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorSuBSENSE.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorSuBSENSE.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorSuBSENSE.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorSuBSENSE.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorSuBSENSE.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorSuBSENSE.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorSuBSENSE.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBSP/LBSP.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/LBSP.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/LBSP.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBSP/LBSP.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/LBSP.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/LBSP.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBSP/LBSP.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/LBSP.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/LBSP.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBSP/LBSP_.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/LBSP_.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/LBSP_.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBSP/LBSP_.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/LBSP_.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/LBSP_.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBSP/LBSP_.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/LBSP_.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/LBSP_.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBSimpleGaussian.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSimpleGaussian.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSimpleGaussian.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBSimpleGaussian.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSimpleGaussian.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSimpleGaussian.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LBSimpleGaussian.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSimpleGaussian.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSimpleGaussian.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LOBSTER.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LOBSTER.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LOBSTER.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LOBSTER.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LOBSTER.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LOBSTER.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/LOBSTER.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LOBSTER.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LOBSTER.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/MixtureOfGaussianV1.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MixtureOfGaussianV1.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MixtureOfGaussianV1.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/MixtureOfGaussianV1.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MixtureOfGaussianV1.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MixtureOfGaussianV1.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/MixtureOfGaussianV1.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MixtureOfGaussianV1.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MixtureOfGaussianV1.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/MixtureOfGaussianV2.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MixtureOfGaussianV2.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MixtureOfGaussianV2.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/MixtureOfGaussianV2.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MixtureOfGaussianV2.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MixtureOfGaussianV2.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/MixtureOfGaussianV2.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MixtureOfGaussianV2.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MixtureOfGaussianV2.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/MultiCue.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiCue.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiCue.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/MultiCue.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiCue.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiCue.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/MultiCue.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiCue.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiCue.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/MultiLayer.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/MultiLayer.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/MultiLayer.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/BlobExtraction.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/BlobExtraction.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/BlobExtraction.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/BlobExtraction.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/BlobExtraction.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/BlobExtraction.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/BlobExtraction.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/BlobExtraction.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/BlobExtraction.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/BlobResult.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/BlobResult.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/BlobResult.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/BlobResult.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/BlobResult.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/BlobResult.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/BlobResult.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/BlobResult.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/BlobResult.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/CMultiLayerBGS.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/CMultiLayerBGS.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/CMultiLayerBGS.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/CMultiLayerBGS.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/CMultiLayerBGS.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/CMultiLayerBGS.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/CMultiLayerBGS.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/CMultiLayerBGS.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/CMultiLayerBGS.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/LocalBinaryPattern.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/LocalBinaryPattern.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/LocalBinaryPattern.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/LocalBinaryPattern.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/LocalBinaryPattern.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/LocalBinaryPattern.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/LocalBinaryPattern.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/LocalBinaryPattern.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/LocalBinaryPattern.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/blob.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/blob.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/blob.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/blob.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/blob.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/blob.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/blob.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/blob.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/blob.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/PAWCS.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/PAWCS.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/PAWCS.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/PAWCS.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/PAWCS.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/PAWCS.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/PAWCS.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/PAWCS.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/PAWCS.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/PBAS/PBAS.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/PBAS/PBAS.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/PBAS/PBAS.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/PBAS/PBAS.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/PBAS/PBAS.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/PBAS/PBAS.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/PBAS/PBAS.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/PBAS/PBAS.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/PBAS/PBAS.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/PixelBasedAdaptiveSegmenter.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/PixelBasedAdaptiveSegmenter.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/PixelBasedAdaptiveSegmenter.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/PixelBasedAdaptiveSegmenter.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/PixelBasedAdaptiveSegmenter.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/PixelBasedAdaptiveSegmenter.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/PixelBasedAdaptiveSegmenter.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/PixelBasedAdaptiveSegmenter.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/PixelBasedAdaptiveSegmenter.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/SigmaDelta.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/SigmaDelta.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/SigmaDelta.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/SigmaDelta.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/SigmaDelta.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/SigmaDelta.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/SigmaDelta.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/SigmaDelta.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/SigmaDelta.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/SigmaDelta/sdLaMa091.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/SigmaDelta/sdLaMa091.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/SigmaDelta/sdLaMa091.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/SigmaDelta/sdLaMa091.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/SigmaDelta/sdLaMa091.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/SigmaDelta/sdLaMa091.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/SigmaDelta/sdLaMa091.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/SigmaDelta/sdLaMa091.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/SigmaDelta/sdLaMa091.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/StaticFrameDifference.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/StaticFrameDifference.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/StaticFrameDifference.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/StaticFrameDifference.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/StaticFrameDifference.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/StaticFrameDifference.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/StaticFrameDifference.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/StaticFrameDifference.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/StaticFrameDifference.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/SuBSENSE.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/SuBSENSE.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/SuBSENSE.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/SuBSENSE.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/SuBSENSE.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/SuBSENSE.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/SuBSENSE.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/SuBSENSE.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/SuBSENSE.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/T2F/MRF.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2F/MRF.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2F/MRF.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/T2F/MRF.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2F/MRF.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2F/MRF.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/T2F/MRF.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2F/MRF.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2F/MRF.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/T2F/T2FGMM.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2F/T2FGMM.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2F/T2FGMM.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/T2F/T2FGMM.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2F/T2FGMM.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2F/T2FGMM.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/T2F/T2FGMM.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2F/T2FGMM.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2F/T2FGMM.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/T2F/T2FMRF.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2F/T2FMRF.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2F/T2FMRF.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/T2F/T2FMRF.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2F/T2FMRF.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2F/T2FMRF.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/T2F/T2FMRF.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2F/T2FMRF.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2F/T2FMRF.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/T2FGMM_UM.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2FGMM_UM.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2FGMM_UM.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/T2FGMM_UM.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2FGMM_UM.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2FGMM_UM.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/T2FGMM_UM.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2FGMM_UM.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2FGMM_UM.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/T2FGMM_UV.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2FGMM_UV.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2FGMM_UV.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/T2FGMM_UV.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2FGMM_UV.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2FGMM_UV.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/T2FGMM_UV.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2FGMM_UV.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2FGMM_UV.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/T2FMRF_UM.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2FMRF_UM.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2FMRF_UM.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/T2FMRF_UM.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2FMRF_UM.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2FMRF_UM.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/T2FMRF_UM.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2FMRF_UM.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2FMRF_UM.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/T2FMRF_UV.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2FMRF_UV.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2FMRF_UV.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/T2FMRF_UV.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2FMRF_UV.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2FMRF_UV.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/T2FMRF_UV.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2FMRF_UV.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2FMRF_UV.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/Tapter.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/Tapter.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/Tapter.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/Tapter.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/Tapter.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/Tapter.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/Tapter.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/Tapter.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/Tapter.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/TwoPoints.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/TwoPoints.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/TwoPoints.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/TwoPoints.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/TwoPoints.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/TwoPoints.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/TwoPoints.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/TwoPoints.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/TwoPoints.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/TwoPoints/two_points.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/TwoPoints/two_points.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/TwoPoints/two_points.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/TwoPoints/two_points.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/TwoPoints/two_points.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/TwoPoints/two_points.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/TwoPoints/two_points.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/TwoPoints/two_points.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/TwoPoints/two_points.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/ViBe.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/ViBe.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/ViBe.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/ViBe.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/ViBe.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/ViBe.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/ViBe.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/ViBe.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/ViBe.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/ViBe/vibe-background-sequential.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/ViBe/vibe-background-sequential.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/ViBe/vibe-background-sequential.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/ViBe/vibe-background-sequential.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/ViBe/vibe-background-sequential.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/ViBe/vibe-background-sequential.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/ViBe/vibe-background-sequential.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/ViBe/vibe-background-sequential.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/ViBe/vibe-background-sequential.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/VuMeter.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/VuMeter.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/VuMeter.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/VuMeter.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/VuMeter.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/VuMeter.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/VuMeter.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/VuMeter.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/VuMeter.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/VuMeter/TBackground.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/VuMeter/TBackground.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/VuMeter/TBackground.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/VuMeter/TBackground.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/VuMeter/TBackground.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/VuMeter/TBackground.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/VuMeter/TBackground.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/VuMeter/TBackground.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/VuMeter/TBackground.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/VuMeter/TBackgroundVuMeter.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/VuMeter/TBackgroundVuMeter.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/VuMeter/TBackgroundVuMeter.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/VuMeter/TBackgroundVuMeter.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/VuMeter/TBackgroundVuMeter.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/VuMeter/TBackgroundVuMeter.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/VuMeter/TBackgroundVuMeter.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/VuMeter/TBackgroundVuMeter.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/VuMeter/TBackgroundVuMeter.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/WeightedMovingMean.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/WeightedMovingMean.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/WeightedMovingMean.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/WeightedMovingMean.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/WeightedMovingMean.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/WeightedMovingMean.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/WeightedMovingMean.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/WeightedMovingMean.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/WeightedMovingMean.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/WeightedMovingVariance.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/WeightedMovingVariance.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/WeightedMovingVariance.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/WeightedMovingVariance.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/WeightedMovingVariance.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/WeightedMovingVariance.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/WeightedMovingVariance.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/WeightedMovingVariance.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/WeightedMovingVariance.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/_template_/MyBGS.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/_template_/MyBGS.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/_template_/MyBGS.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/_template_/MyBGS.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/_template_/MyBGS.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/_template_/MyBGS.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/_template_/MyBGS.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/_template_/MyBGS.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/_template_/MyBGS.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/algorithms.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/algorithms.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/algorithms.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/algorithms.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/algorithms.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/algorithms.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/algorithms.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/algorithms.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/algorithms.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/dp/AdaptiveMedianBGS.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/AdaptiveMedianBGS.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/AdaptiveMedianBGS.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/dp/AdaptiveMedianBGS.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/AdaptiveMedianBGS.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/AdaptiveMedianBGS.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/dp/AdaptiveMedianBGS.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/AdaptiveMedianBGS.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/AdaptiveMedianBGS.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/dp/Eigenbackground.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/Eigenbackground.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/Eigenbackground.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/dp/Eigenbackground.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/Eigenbackground.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/Eigenbackground.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/dp/Eigenbackground.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/Eigenbackground.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/Eigenbackground.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/dp/Error.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/Error.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/Error.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/dp/Error.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/Error.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/Error.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/dp/Error.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/Error.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/Error.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/dp/GrimsonGMM.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/GrimsonGMM.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/GrimsonGMM.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/dp/GrimsonGMM.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/GrimsonGMM.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/GrimsonGMM.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/dp/GrimsonGMM.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/GrimsonGMM.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/GrimsonGMM.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/dp/Image.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/Image.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/Image.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/dp/Image.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/Image.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/Image.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/dp/Image.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/Image.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/Image.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/dp/MeanBGS.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/MeanBGS.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/MeanBGS.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/dp/MeanBGS.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/MeanBGS.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/MeanBGS.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/dp/MeanBGS.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/MeanBGS.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/MeanBGS.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/dp/PratiMediodBGS.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/PratiMediodBGS.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/PratiMediodBGS.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/dp/PratiMediodBGS.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/PratiMediodBGS.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/PratiMediodBGS.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/dp/PratiMediodBGS.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/PratiMediodBGS.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/PratiMediodBGS.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/dp/TextureBGS.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/TextureBGS.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/TextureBGS.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/dp/TextureBGS.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/TextureBGS.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/TextureBGS.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/dp/TextureBGS.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/TextureBGS.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/TextureBGS.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/dp/WrenGA.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/WrenGA.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/WrenGA.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/dp/WrenGA.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/WrenGA.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/WrenGA.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/dp/WrenGA.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/WrenGA.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/WrenGA.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/dp/ZivkovicAGMM.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/ZivkovicAGMM.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/ZivkovicAGMM.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/dp/ZivkovicAGMM.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/ZivkovicAGMM.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/ZivkovicAGMM.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/dp/ZivkovicAGMM.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/ZivkovicAGMM.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/ZivkovicAGMM.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/lb/BGModel.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModel.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModel.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/lb/BGModel.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModel.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModel.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/lb/BGModel.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModel.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModel.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelFuzzyGauss.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelFuzzyGauss.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelFuzzyGauss.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelFuzzyGauss.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelFuzzyGauss.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelFuzzyGauss.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelFuzzyGauss.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelFuzzyGauss.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelFuzzyGauss.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelFuzzySom.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelFuzzySom.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelFuzzySom.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelFuzzySom.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelFuzzySom.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelFuzzySom.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelFuzzySom.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelFuzzySom.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelFuzzySom.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelGauss.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelGauss.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelGauss.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelGauss.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelGauss.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelGauss.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelGauss.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelGauss.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelGauss.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelMog.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelMog.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelMog.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelMog.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelMog.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelMog.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelMog.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelMog.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelMog.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelSom.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelSom.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelSom.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelSom.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelSom.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelSom.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelSom.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelSom.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelSom.s", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/ttoolbox.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/ttoolbox.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/ttoolbox.o", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/ttoolbox.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/ttoolbox.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/ttoolbox.i", }, { "name": "home/sugu/code/idiv/camtron/src/algorithms/ttoolbox.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/ttoolbox.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/ttoolbox.s", }, { "name": "home/sugu/code/idiv/camtron/src/tools/ForegroundMaskAnalysis.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/tools/ForegroundMaskAnalysis.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/tools/ForegroundMaskAnalysis.o", }, { "name": "home/sugu/code/idiv/camtron/src/tools/ForegroundMaskAnalysis.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/tools/ForegroundMaskAnalysis.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/tools/ForegroundMaskAnalysis.i", }, { "name": "home/sugu/code/idiv/camtron/src/tools/ForegroundMaskAnalysis.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/tools/ForegroundMaskAnalysis.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/tools/ForegroundMaskAnalysis.s", }, { "name": "home/sugu/code/idiv/camtron/src/tools/FuzzyUtils.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/tools/FuzzyUtils.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/tools/FuzzyUtils.o", }, { "name": "home/sugu/code/idiv/camtron/src/tools/FuzzyUtils.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/tools/FuzzyUtils.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/tools/FuzzyUtils.i", }, { "name": "home/sugu/code/idiv/camtron/src/tools/FuzzyUtils.s", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/tools/FuzzyUtils.s" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/tools/FuzzyUtils.s", }, { "name": "home/sugu/code/idiv/camtron/src/tools/PerformanceUtils.o", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/tools/PerformanceUtils.o" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/tools/PerformanceUtils.o", }, { "name": "home/sugu/code/idiv/camtron/src/tools/PerformanceUtils.i", - "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/tools/PerformanceUtils.i" + "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/tools/PerformanceUtils.i", }, { "name": "home/sugu/code/idiv/camtron/src/tools/PerformanceUtils.s", @@ -1292,9 +1308,9 @@ { "name": "home/sugu/code/idiv/camtron/src/tools/PixelUtils.s", "shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/tools/PixelUtils.s" - } + }, ], - "working_dir": "$folder/build" + "working_dir": "$folder/build", } ], }