Commit 445d9db73824bbfa250b0c4ac603566e5cb9d4cb

Authored by David Mayerich
1 parent 5cda84ab

fixed directory error

Showing 1 changed file with 2 additions and 1 deletions   Show diff stats
grids/image_stack.h
... ... @@ -33,7 +33,7 @@ public:
33 33 }
34 34  
35 35 //get the list of files
36   - std::vector<stim::filename> file_list;// = file_path.get_list
  36 + std::vector<stim::filename> file_list = file_path.get_list();
37 37  
38 38 //if there are no matching files, exit
39 39 if(file_list.size() == 0){
... ... @@ -42,6 +42,7 @@ public:
42 42 }
43 43  
44 44 //load the first image and set all of the image_stack properties
  45 + std::cout<<"File to Load: "<<file_list[0].str()<<std::endl;
45 46 stim::image<T> I(file_list[0].str());
46 47  
47 48 //set the image resolution and number of channels
... ...