mirror of
https://github.com/davisking/dlib.git
synced 2024-11-01 10:14:53 +08:00
d3a73bdbae
then calls the appropriate image loading function.
15 lines
427 B
C
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_
|
|
|