dlib/dlib/image_io.h
Davis King d3a73bdbae Added the load_image() function which just looks at a file's extension and
then calls the appropriate image loading function.
2011-05-27 19:19:11 -04:00

15 lines
427 B
C

// Copyright (C) 2006 Davis E. King (davis@dlib.net)
// License: Boost Software License See LICENSE.txt for the full license.
#ifndef DLIB_IMAGe_IO_
#define DLIB_IMAGe_IO_
#include "image_loader/image_loader.h"
#include "image_loader/png_loader.h"
#include "image_loader/jpeg_loader.h"
#include "image_loader/load_image.h"
#include "image_saver/image_saver.h"
#include "image_saver/save_png.h"
#endif // DLIB_IMAGe_IO_