Commit Graph

5986 Commits

Author SHA1 Message Date
Davis King
29571888f2 merged 2016-08-15 10:49:48 -04:00
Davis King
d103585570 Changed the DNN API so that sample_expansion_factor is a runtime variable
rather than a compile time constant.  This also removes it from the input layer
interface since the DNN core infers its value at runtime, meaning users that
define their own input layers don't need to specify it anymore.
2016-08-14 19:07:30 -04:00
Davis King
390c8e90aa Made layer_details() part of the SUBNET interface so that user defined layer
details objects can access each other.  Also added the input_layer() global
function for accessing the input layer specifically.
2016-08-14 13:48:18 -04:00
Davis King
285bba7646 Fixed dlib.range's iterator interface to work in python 3. 2016-08-14 09:12:51 -04:00
Davis King
eec40e4fa6 Record last changeset and set PATCH version to 99 2016-08-13 14:09:22 -04:00
Davis King
f80431aa1a Added tag v19.1 for changeset ad6cd2a3bfd5 2016-08-13 14:07:28 -04:00
Davis King
a57b5652fd Created release v19.1 2016-08-13 14:07:28 -04:00
Davis King
af983d8a6b Added a bat file for running all the unit tests through different versions of visual studio. 2016-08-13 12:57:21 -04:00
Davis King
8a9f700f1b Merge 2016-08-13 12:48:25 -04:00
Davis King
0c0bde22a8 New versions of boost and cmake need to be told to look in boost's library folder to find boost's libraries
when building on windows.  Bizarre.
2016-08-13 12:47:55 -04:00
Davis King
f994747f7a We don't use wine anymore 2016-08-13 09:37:19 -04:00
Davis King
3390697315 updated docs 2016-08-13 09:26:33 -04:00
Davis King
cdb181920a updated release notes 2016-08-13 09:09:29 -04:00
Davis King
79a56e5657 Fixed typo and updated references to visual studio. 2016-08-13 09:03:47 -04:00
Davis King
70eecbd6b0 Fixed compiler error on ubuntu 16.04 2016-08-13 09:03:16 -04:00
Davis King
48507ab590 Fixed grammar. 2016-08-13 09:02:57 -04:00
Davis King
02b209316a Added workaround for a bug in cuDNN5.1 which causes
cudnnGetConvolutionBackwardFilterAlgorithm() to pick invalid algorithms,
resulting in cuDNN not working correctly.
2016-08-11 22:12:40 -04:00
Davis King
fde662b31e updated docs 2016-08-11 19:07:30 -04:00
Davis King
480307d03f Added additional search names for boost-python 2016-08-10 09:30:04 -04:00
Davis King
ceb6a119d5 Fixed a bug in the cuDNN binding that on rare occasions caused NaN outputs from
batch normalization.  The running mean and variance need to be initialized when
calling cuDNN, even if the averaging factor is 1.  I don't think this was the
case prior to cuDNN v5, but it certainly is the case now.  This patch fixes
this.
2016-08-09 16:33:44 -04:00
Davis King
98da589f9d merged 2016-08-09 10:48:48 -04:00
Davis King
e6a7f14c0e made unit test more repeatable 2016-08-09 10:36:38 -04:00
Davis King
f01f02b2a5 Added more testing messages 2016-08-06 12:39:13 -04:00
Davis King
2dd89e3f04 CMake change to enable cuda use on ubuntu 16.06 2016-08-06 12:00:41 -04:00
Davis King
e0af06c0db added missing #include file 2016-08-05 19:14:49 -04:00
Davis King
36a0776ad3 Merge branch 'sutr90-lab_pixel' 2016-08-05 08:14:20 -04:00
Davis King
8332489805 Fixed a few places where lab color space still referred to the channels
as being signed rather than unsigned.
2016-08-05 08:13:45 -04:00
Davis King
8db76eb89a Merge branch 'lab_pixel' of git://github.com/sutr90/dlib into sutr90-lab_pixel 2016-08-05 07:11:20 -04:00
sutr90
64e437a320 Added test for RGB to Lab to RGB conversion. 2016-08-05 10:59:07 +02:00
Davis King
8c037c3cb0 Added guards so dlib::async code isn't pulled in when using old versions of visual studio (since they don't support c++11). 2016-08-04 21:12:00 -04:00
Davis King
a5e264cb31 Added check for initializer list support so code compiles in visual studio. 2016-08-04 21:10:12 -04:00
Davis King
87e04764e5 Removed call to std::round() since visual studio 2012 doesn't support it. 2016-08-04 21:09:52 -04:00
Davis King
e282307b64 added missing requirement. 2016-08-03 11:18:37 -04:00
sutr90
fa865c218e Added tests for Lab pixels. 2016-08-03 14:48:59 +02:00
Davis King
bc4b2814af Fixed silly typo in script 2016-07-31 09:49:21 -04:00
Davis King
f2088e832b removed excessive error checking 2016-07-31 09:46:10 -04:00
Davis King
6402a37458 Made --resample use a 64bit hash of the image data
in the file names to make it so there won't ever be any name conflicts
in the cropped images.
2016-07-31 09:11:52 -04:00
Davis King
7c828d0812 Added some scripts that help with imglab XML file management. 2016-07-30 18:33:50 -04:00
Davis King
f77ca0c754 Added --files 2016-07-30 17:19:20 -04:00
Davis King
26c727c79e Added --ignore option. Also improved how scale jittering happens in --resample,
now the output images are always the same dimensions but the objects scale changes.
2016-07-30 14:34:53 -04:00
Davis King
ed78e8b1c0 Made this not use stdin's file descriptor for data transfer between the
processes since sometimes stdin was closed in some environments.  Also cleaned
up the code a little bit.
2016-07-29 09:03:05 -04:00
Davis King
d40e34cf22 merged 2016-07-28 19:13:10 -04:00
Davis King
284ace058a merged 2016-07-28 19:12:48 -04:00
Davis King
3a096469ef Changed code to avoid advancing iterator beyond end since some compilers
complain about this (and it's technically not allowed in C++).
2016-07-28 19:09:07 -04:00
Davis King
edb2790bcc fixed grammar in comment 2016-07-28 17:59:31 -04:00
sutr90
933ab00942 Fixed PNG saving. 2016-07-28 14:07:23 +02:00
sutr90
2c6351bea3 Fixes Lab tests. 2016-07-27 17:51:01 +02:00
sutr90
ebad74aa20 Fixed grayscale assignment. 2016-07-27 17:47:42 +02:00
sutr90
6e06fc873c Changed lab pixel range.
Added clamping on conversion functions.
2016-07-27 17:25:19 +02:00
sutr90
71ab04f7bc Added missing conversion between HSI and CIELab. 2016-07-26 22:11:56 +02:00