Commit 36392bb2 authored by Davis King's avatar Davis King

Minor tweaks to spec

parent 483e6ab4
...@@ -1182,6 +1182,8 @@ namespace dlib ...@@ -1182,6 +1182,8 @@ namespace dlib
- for all valid i: - for all valid i:
- chip_locations[i].rect.is_empty() == false - chip_locations[i].rect.is_empty() == false
- chip_locations[i].size() != 0 - chip_locations[i].size() != 0
- interpolation_type == interpolate_nearest_neighbor, interpolate_bilinear,
interpolate_quadratic, or a type with a compatible interface.
ensures ensures
- This function extracts "chips" from an image. That is, it takes a list of - This function extracts "chips" from an image. That is, it takes a list of
rectangular sub-windows (i.e. chips) within an image and extracts those rectangular sub-windows (i.e. chips) within an image and extracts those
...@@ -1213,7 +1215,7 @@ namespace dlib ...@@ -1213,7 +1215,7 @@ namespace dlib
/*! /*!
ensures ensures
- This function is a simple convenience / compatibility wrapper that calls the - This function is a simple convenience / compatibility wrapper that calls the
above-defined extract_image_chips function using bilinear interpolation. above-defined extract_image_chips() function using bilinear interpolation.
!*/ !*/
// ---------------------------------------------------------------------------------------- // ----------------------------------------------------------------------------------------
...@@ -1232,7 +1234,8 @@ namespace dlib ...@@ -1232,7 +1234,8 @@ namespace dlib
/*! /*!
ensures ensures
- This function simply calls extract_image_chips() with a single chip location - This function simply calls extract_image_chips() with a single chip location
and stores the single output chip into #chip. and stores the single output chip into #chip. It uses the provided
interpolation method.
!*/ !*/
template < template <
...@@ -1247,7 +1250,7 @@ namespace dlib ...@@ -1247,7 +1250,7 @@ namespace dlib
/*! /*!
ensures ensures
- This function is a simple convenience / compatibility wrapper that calls the - This function is a simple convenience / compatibility wrapper that calls the
above-defined extract_image_chip function using bilinear interpolation. above-defined extract_image_chip() function using bilinear interpolation.
!*/ !*/
// ---------------------------------------------------------------------------------------- // ----------------------------------------------------------------------------------------
......
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