mirror of
https://github.com/wassname/scikit-image.git
synced 2026-07-13 17:45:20 +08:00
move _histogram.h to _shared/vectorized_ops.h, and copyright info to CONTRIBUTORS.txt
This commit is contained in:
@@ -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>
|
||||
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user