Implement dlib_vector_length to calculate the euclidean distance of the vectors

It not use the 'length' native versions of dlib, due I have to convert the
array to the vector, which will take the same time, and then I will use the
native method.
This commit is contained in:
Matias De lellis
2020-04-14 09:45:16 -03:00
parent 78819eb815
commit 4a2e4ff112
7 changed files with 94 additions and 8 deletions

View File

@@ -31,7 +31,7 @@ extern "C" {
extern zend_module_entry pdlib_module_entry;
#define phpext_pdlib_ptr &pdlib_module_entry
#define PHP_PDLIB_VERSION "1.0.1" /* Replace with version number for your extension */
#define PHP_PDLIB_VERSION "1.0.2" /* Replace with version number for your extension */
#ifdef PHP_WIN32
# define PHP_PDLIB_API __declspec(dllexport)