1. 31 Aug, 2017 3 commits
  2. 28 Aug, 2017 7 commits
  3. 27 Aug, 2017 18 commits
  4. 26 Aug, 2017 7 commits
  5. 25 Aug, 2017 5 commits
    • Davis King's avatar
      Changed the functions that transform between input tensor coordinates and · 02cf246d
      Davis King authored
      output tensor coordinates to use dpoint instead of point.  This way, we can
      obtain sub-pixel coordinates if we need them.
      02cf246d
    • Davis King's avatar
      Made resize_image() and functions that use it like the pyramid objects produce · 2883650b
      Davis King authored
      better results when run on float and double images.  There was needless
      rounding to integers happening in the bilinear interpolation.  Now if you work
      with a float image the entire process will run without integer rounding.
      2883650b
    • Davis King's avatar
      Clarified spec · 5a0824c0
      Davis King authored
      5a0824c0
    • Davis King's avatar
      Clarified spec · e7774a4c
      Davis King authored
      e7774a4c
    • Deniz Evrenci's avatar
      C++11 features (#778) · 6fbe3c60
      Deniz Evrenci authored
      * Make noncopyable constructor and destructor default
      
      C++11 provides the functionality.
      Defining empty functions cause all classes derived from noncopyable
      to be non-trivially constructible and non-trivially destructible.
      
      For example, matrix with compile-time layout by definition does not
      require an explicit destructor and should be trivially destructible
      ; however, deriving from noncopyable makes it non-trivially
      destrutible. This also affects vector<T, 2> and vector<T, 3>.
      
      * Delete array2d copy constructor and assignment operators
      6fbe3c60