123456789101112131415161718 |
- #ifndef _NICE_CORE_THREECHANNELIMAGE_H
- #define _NICE_CORE_THREECHANNELIMAGE_H
- #include <core/image/MultiChannelImageT.h>;
- namespace NICE {
- /**
- * An color image consisting of three separately stored channels.
- * FIXME implementation missing
- */
- template <class P>
- class ThreeChannelImageT : public MultiChannelImageT<P> {
- };
- } // namespace
- #endif
|