move _histogram.h to _shared/vectorized_ops.h, and copyright info to CONTRIBUTORS.txt

This commit is contained in:
Thouis (Ray) Jones
2013-02-19 21:44:06 -05:00
parent 4af05245ed
commit ba1d27b357
3 changed files with 4 additions and 11 deletions
+3
View File
@@ -132,3 +132,6 @@
- François Boulogne
Andres Method for circle perimeter, ellipse perimeter drawing.
- Thouis Jones
Vectorized operators for arrays of 16-bit ints.
@@ -1,13 +1,3 @@
/*
* Copyright (C) 2013 Thouis "Ray" Jones
* Modified from code
* Copyright (C) 2006 Simon Perreault
*
* Reference: S. Perreault and P. Hébert, "Median Filtering in Constant Time",
* IEEE Transactions on Image Processing, September 2007.
*
*/
/* Intrinsic declarations */
#if defined(__SSE2__)
#include <emmintrin.h>
+1 -1
View File
@@ -17,7 +17,7 @@ cimport cython
from libc.stdlib cimport malloc, free
from libc.string cimport memset
cdef extern from "_histogram.h":
cdef extern from "../_shared/vectorized_ops.h":
void add16(np.uint16_t *dest, np.uint16_t *src)
void sub16(np.uint16_t *dest, np.uint16_t *src)