Commit 124e2062 authored by Davis King's avatar Davis King

Cleaned up the interface for normalization.

parent 1dffd4cd
...@@ -28,10 +28,12 @@ namespace dlib ...@@ -28,10 +28,12 @@ namespace dlib
poly_image( poly_image(
long order_, long order_,
long window_size_ long window_size_,
bool normalization = true
) )
{ {
setup(order_, window_size_); setup(order_, window_size_);
set_uses_normalization(normalization);
} }
poly_image ( poly_image (
...@@ -93,7 +95,7 @@ namespace dlib ...@@ -93,7 +95,7 @@ namespace dlib
bool uses_normalization ( bool uses_normalization (
) const { return normalize; } ) const { return normalize; }
void set_normalization ( void set_uses_normalization (
bool normalization bool normalization
) )
{ {
......
...@@ -53,11 +53,13 @@ namespace dlib ...@@ -53,11 +53,13 @@ namespace dlib
- #get_order() == 3 - #get_order() == 3
- #get_window_size() == 13 - #get_window_size() == 13
- #size() == 0 - #size() == 0
- #uses_normalization() == true
!*/ !*/
poly_image( poly_image(
long order, long order,
long window_size long window_size,
bool normalization = true
); );
/*! /*!
requires requires
...@@ -67,6 +69,7 @@ namespace dlib ...@@ -67,6 +69,7 @@ namespace dlib
- #get_order() == order - #get_order() == order
- #get_window_size() == window_size - #get_window_size() == window_size
- #size() == 0 - #size() == 0
- #uses_normalization() == normalization
!*/ !*/
void clear ( void clear (
...@@ -113,12 +116,12 @@ namespace dlib ...@@ -113,12 +116,12 @@ namespace dlib
and false otherwise. and false otherwise.
!*/ !*/
void set_normalization ( void set_uses_normalization (
bool normalization bool normalization
); );
/*! /*!
ensures ensures
- uses_normalization() == normalization - #uses_normalization() == normalization
!*/ !*/
void copy_configuration ( void copy_configuration (
......
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