ThreeChannelImageT.h 352 B

123456789101112131415161718
  1. #ifndef _NICE_CORE_THREECHANNELIMAGE_H
  2. #define _NICE_CORE_THREECHANNELIMAGE_H
  3. #include <core/image/MultiChannelImageT.h>;
  4. namespace NICE {
  5. /**
  6. * An color image consisting of three separately stored channels.
  7. * FIXME implementation missing
  8. */
  9. template <class P>
  10. class ThreeChannelImageT : public MultiChannelImageT<P> {
  11. };
  12. } // namespace
  13. #endif