/* * LImUn - Library for ImageT Understanding * - libimage - An ImageT library * See file License for license information. */ #include "core/image/ImageAccessT.h" namespace NICE { template int ImageAccessT

::getPixelInt(int x, int y) const { throw( "this type is not implemented\n" ); return -1; } template double ImageAccessT

::getPixelFloat(int x, int y) const { throw( "this type is not implemented\n" ); return -1.0; } template void ImageAccessT

::setPixelInt(int x, int y, int pixel) { throw( "this type is not implemented\n" ); } template void ImageAccessT

::setPixelFloat(int x, int y, double pixel) { throw( "this type is not implemented\n" ); } } // namespace