Blame view

grids/image_stack.h 244 Bytes
1d08c377   David Mayerich   added grids subdi...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  #ifndef STIM_IMAGE_STACK_H
  #define STIM_IMAGE_STACK_H
  
  
  namespace stim{
  
  //this creates a class that can be used to load 3D grid data from stacks of images
  template<typename T>
  class image_stack : public virtual grid_data<T, 3>{
  
  };
  
  
  }
  
  #endif