mirror of
https://github.com/davisking/dlib.git
synced 2024-11-01 10:14:53 +08:00
fa2499d8e2
This is the dlib/image_processing/generic_image.h file. Then I changed all the image processing functions so that they use this interface. All the changes are very minor, but there are just a lot of them. Any user code that was using array2d objects to represent images will still work. However, this change makes it so that users can use their own custom image objects with dlib by simply implementing a few global functions for their image object.
13 lines
328 B
C
13 lines
328 B
C
// Copyright (C) 2006 Davis E. King (davis@dlib.net)
|
|
// License: Boost Software License See LICENSE.txt for the full license.
|
|
#ifndef DLIB_ARRAY2d_
|
|
#define DLIB_ARRAY2d_
|
|
|
|
|
|
#include "array2d/array2d_kernel.h"
|
|
#include "array2d/serialize_pixel_overloads.h"
|
|
#include "array2d/array2d_generic_image.h"
|
|
|
|
#endif // DLIB_ARRAY2d_
|
|
|