43 lines
950 B
C++
43 lines
950 B
C++
// Copyright (C) 2003 Davis E. King (davis@dlib.net)
|
|
// License: Boost Software License See LICENSE.txt for the full license.
|
|
#ifndef DLIB_ENTROPY_ENCODEr_
|
|
#define DLIB_ENTROPY_ENCODEr_
|
|
|
|
#include "entropy_encoder/entropy_encoder_kernel_1.h"
|
|
#include "entropy_encoder/entropy_encoder_kernel_2.h"
|
|
#include "entropy_encoder/entropy_encoder_kernel_c.h"
|
|
|
|
|
|
|
|
|
|
namespace dlib
|
|
{
|
|
|
|
|
|
class entropy_encoder
|
|
{
|
|
entropy_encoder() {}
|
|
|
|
|
|
public:
|
|
|
|
//----------- kernels ---------------
|
|
|
|
// kernel_1a
|
|
typedef entropy_encoder_kernel_1
|
|
kernel_1a;
|
|
typedef entropy_encoder_kernel_c<kernel_1a>
|
|
kernel_1a_c;
|
|
|
|
|
|
// kernel_2a
|
|
typedef entropy_encoder_kernel_2
|
|
kernel_2a;
|
|
typedef entropy_encoder_kernel_c<kernel_2a>
|
|
kernel_2a_c;
|
|
|
|
};
|
|
}
|
|
|
|
#endif // DLIB_ENTROPY_ENCODEr_
|
|
|