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

Cleaned up the interface for normalization.

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