Commit ecf74421 authored by Davis King's avatar Davis King

Removed the kernel_type typedef from the normalized function since this

meta-object should be capable of working with non-kernel decision functions.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%404034
parent 743985a1
......@@ -369,7 +369,6 @@ namespace dlib
>
struct normalized_function
{
typedef typename function_type::kernel_type kernel_type;
typedef typename function_type::scalar_type scalar_type;
typedef typename function_type::sample_type sample_type;
typedef typename function_type::mem_manager_type mem_manager_type;
......
......@@ -390,13 +390,12 @@ namespace dlib
WHAT THIS OBJECT REPRESENTS
This object represents a container for another function
object and an instance of a normlizer function.
object and an instance of a normalizer function.
It automatically noramlizes all inputs before passing them
It automatically normalizes all inputs before passing them
off to the contained function object.
!*/
typedef typename function_type::kernel_type kernel_type;
typedef typename function_type::scalar_type scalar_type;
typedef typename function_type::sample_type sample_type;
typedef typename function_type::mem_manager_type mem_manager_type;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment