From 445d9db73824bbfa250b0c4ac603566e5cb9d4cb Mon Sep 17 00:00:00 2001 From: David Date: Mon, 5 Jan 2015 15:21:15 -0600 Subject: [PATCH] fixed directory error --- grids/image_stack.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/grids/image_stack.h b/grids/image_stack.h index f70f8f5..de02005 100644 --- a/grids/image_stack.h +++ b/grids/image_stack.h @@ -33,7 +33,7 @@ public: } //get the list of files - std::vector file_list;// = file_path.get_list + std::vector file_list = file_path.get_list(); //if there are no matching files, exit if(file_list.size() == 0){ @@ -42,6 +42,7 @@ public: } //load the first image and set all of the image_stack properties + std::cout<<"File to Load: "< I(file_list[0].str()); //set the image resolution and number of channels -- libgit2 0.21.4