tidy up
This commit is contained in:
parent
6b401b8424
commit
935d6414b5
@ -18,7 +18,7 @@ using Poco::Thread;
|
|||||||
|
|
||||||
void CamNoiseAnalysis::setup(int camWidth, int camHeight)
|
void CamNoiseAnalysis::setup(int camWidth, int camHeight)
|
||||||
{
|
{
|
||||||
DELTA_T_SAVE = 100;//200;
|
DELTA_T_SAVE = 200;
|
||||||
NUM_PHASE = 1;
|
NUM_PHASE = 1;
|
||||||
NUM_RUN = 1;
|
NUM_RUN = 1;
|
||||||
NUM_SAVE_PER_RUN = 100;
|
NUM_SAVE_PER_RUN = 100;
|
||||||
@ -67,7 +67,7 @@ void CamNoiseAnalysis::synthesise()
|
|||||||
int index=0;
|
int index=0;
|
||||||
|
|
||||||
//if you want to see what this looks like with real data ignore the new filenames and load teh old ones.
|
//if you want to see what this looks like with real data ignore the new filenames and load teh old ones.
|
||||||
bool debug=true;
|
bool debug=false;
|
||||||
if(debug){
|
if(debug){
|
||||||
_saved_filenames.clear();
|
_saved_filenames.clear();
|
||||||
_saved_filenames=getListOfImageFilePaths("MIDDLESBOROUGH", _name);
|
_saved_filenames=getListOfImageFilePaths("MIDDLESBOROUGH", _name);
|
||||||
|
|||||||
@ -45,7 +45,7 @@ using Poco::Thread;
|
|||||||
|
|
||||||
void ColorMultiAnalysis::setup(int camWidth, int camHeight)
|
void ColorMultiAnalysis::setup(int camWidth, int camHeight)
|
||||||
{
|
{
|
||||||
DELTA_T_SAVE = 50;//150; // the right number is about 300
|
DELTA_T_SAVE = 150; // the right number is about 300
|
||||||
NUM_PHASE = 1;
|
NUM_PHASE = 1;
|
||||||
NUM_RUN = 1;
|
NUM_RUN = 1;
|
||||||
NUM_SAVE_PER_RUN = 100;//;
|
NUM_SAVE_PER_RUN = 100;//;
|
||||||
|
|||||||
@ -18,7 +18,7 @@ using Poco::Thread;
|
|||||||
|
|
||||||
void ColorSingleAnalysis::setup(int camWidth, int camHeight)
|
void ColorSingleAnalysis::setup(int camWidth, int camHeight)
|
||||||
{
|
{
|
||||||
DELTA_T_SAVE = 100;//300;
|
DELTA_T_SAVE = 300;
|
||||||
NUM_PHASE = 1;
|
NUM_PHASE = 1;
|
||||||
NUM_RUN = 1;
|
NUM_RUN = 1;
|
||||||
NUM_SAVE_PER_RUN = 100;
|
NUM_SAVE_PER_RUN = 100;
|
||||||
@ -72,7 +72,7 @@ void ColorSingleAnalysis::synthesise()
|
|||||||
int index=0;
|
int index=0;
|
||||||
|
|
||||||
//if you want to see what this looks like with real data ignore the new filenames and load teh old ones.
|
//if you want to see what this looks like with real data ignore the new filenames and load teh old ones.
|
||||||
bool debug=true;
|
bool debug=false;
|
||||||
if(debug){
|
if(debug){
|
||||||
_saved_filenames.clear();
|
_saved_filenames.clear();
|
||||||
_saved_filenames=getListOfImageFilePaths("MIDDLESBOROUGH", _name);
|
_saved_filenames=getListOfImageFilePaths("MIDDLESBOROUGH", _name);
|
||||||
|
|||||||
@ -18,7 +18,7 @@ using Poco::Thread;
|
|||||||
|
|
||||||
void DiffNoiseAnalysis::setup(int camWidth, int camHeight)
|
void DiffNoiseAnalysis::setup(int camWidth, int camHeight)
|
||||||
{
|
{
|
||||||
DELTA_T_SAVE = 100;//600; // right number is about 450
|
DELTA_T_SAVE = 600; // right number is about 450
|
||||||
NUM_PHASE = 1;
|
NUM_PHASE = 1;
|
||||||
NUM_RUN = 1;
|
NUM_RUN = 1;
|
||||||
NUM_SAVE_PER_RUN = 50;
|
NUM_SAVE_PER_RUN = 50;
|
||||||
@ -67,7 +67,7 @@ void DiffNoiseAnalysis::synthesise()
|
|||||||
int index=0;
|
int index=0;
|
||||||
|
|
||||||
//if you want to see what this looks like with real data ignore the new filenames and load teh old ones.
|
//if you want to see what this looks like with real data ignore the new filenames and load teh old ones.
|
||||||
bool debug=true;
|
bool debug=false;
|
||||||
if(debug){
|
if(debug){
|
||||||
_saved_filenames.clear();
|
_saved_filenames.clear();
|
||||||
_saved_filenames=getListOfImageFilePaths("MIDDLESBOROUGH", _name);
|
_saved_filenames=getListOfImageFilePaths("MIDDLESBOROUGH", _name);
|
||||||
|
|||||||
@ -22,7 +22,7 @@ void IResponseAnalysis::setup(int camWidth, int camHeight)
|
|||||||
DELTA_T_SAVE = 100;
|
DELTA_T_SAVE = 100;
|
||||||
NUM_PHASE = 1;
|
NUM_PHASE = 1;
|
||||||
NUM_RUN = 1;
|
NUM_RUN = 1;
|
||||||
NUM_SAVE_PER_RUN = 50;//100;
|
NUM_SAVE_PER_RUN = 100;
|
||||||
|
|
||||||
create_dir();
|
create_dir();
|
||||||
_frame_cnt = 0;
|
_frame_cnt = 0;
|
||||||
@ -68,7 +68,7 @@ void IResponseAnalysis::synthesise()
|
|||||||
int index=0;
|
int index=0;
|
||||||
|
|
||||||
//if you want to see what this looks like with real data ignore the new filenames and load teh old ones.
|
//if you want to see what this looks like with real data ignore the new filenames and load teh old ones.
|
||||||
bool debug=true;
|
bool debug=false;
|
||||||
if(debug){
|
if(debug){
|
||||||
_saved_filenames.clear();
|
_saved_filenames.clear();
|
||||||
_saved_filenames=getListOfImageFilePaths("MIDDLESBOROUGH", _name);
|
_saved_filenames=getListOfImageFilePaths("MIDDLESBOROUGH", _name);
|
||||||
|
|||||||
@ -18,10 +18,10 @@ using Poco::Thread;
|
|||||||
|
|
||||||
void RelaxRateAnalysis::setup(int camWidth, int camHeight)
|
void RelaxRateAnalysis::setup(int camWidth, int camHeight)
|
||||||
{
|
{
|
||||||
DELTA_T_SAVE = 100;//300;
|
DELTA_T_SAVE = 1300;
|
||||||
NUM_PHASE = 1;
|
NUM_PHASE = 1;
|
||||||
NUM_RUN = 1;
|
NUM_RUN = 1;
|
||||||
NUM_SAVE_PER_RUN = 50;//100;
|
NUM_SAVE_PER_RUN = 100;
|
||||||
|
|
||||||
create_dir();
|
create_dir();
|
||||||
|
|
||||||
@ -69,7 +69,7 @@ void RelaxRateAnalysis::synthesise()
|
|||||||
int index=0;
|
int index=0;
|
||||||
|
|
||||||
//if you want to see what this looks like with real data ignore the new filenames and load teh old ones.
|
//if you want to see what this looks like with real data ignore the new filenames and load teh old ones.
|
||||||
bool debug=true;
|
bool debug=false;
|
||||||
if(debug){
|
if(debug){
|
||||||
_saved_filenames.clear();
|
_saved_filenames.clear();
|
||||||
_saved_filenames=getListOfImageFilePaths("MIDDLESBOROUGH", _name);
|
_saved_filenames=getListOfImageFilePaths("MIDDLESBOROUGH", _name);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user