small fix - analysis and synthesis were writing to the same folder - better now

This commit is contained in:
Jamie Allen 2012-02-27 02:46:18 +01:00
parent 7a7614d02d
commit 5d48d6ef6a

View File

@ -155,7 +155,7 @@ void AbstractAnalysis::saveImageSynthesis(string filename, ofxCvImage* newPixels
#ifdef TARGET_OSX #ifdef TARGET_OSX
ofSaveImage(newPixels->getPixelsRef(), _whole_file_path_analysis+"/"+filename, OF_IMAGE_QUALITY_BEST); ofSaveImage(newPixels->getPixelsRef(), _whole_file_path_synthesis+"/"+filename, OF_IMAGE_QUALITY_BEST);
#elif defined(TARGET_WIN32) #elif defined(TARGET_WIN32)
@ -173,7 +173,7 @@ void AbstractAnalysis::saveImageSynthesis(string filename, ofxCvImage* newPixels
#endif #endif
_saved_filenames_synthesis.push_back(_whole_file_path_analysis+"/"+filename); _saved_filenames_synthesis.push_back(_whole_file_path_synthesis+"/"+filename);
} }