Files
scikit-image/scikits/image
Zachary Pincus 56a5cadde2 Performance fix for heap; correctness for _mcp
(1) normalize_indices in _mcp.pyx should convert indices to ints: fixed
(2) huge (order of magnitude) performance problems in heap.pyx from changing
lines like:
ii = (i-1)/2 # CalcPrevAbs

to:
ii = (int)(i-1)/2 # CalcPrevAbs

for some reason,  the latter goes through the python division machinery!
However, the former is invalid for cython >=0.12, so the proper solution is:
ii = (i-1)//2 # CalcPrevAbs
2010-04-08 18:11:47 -04:00
..
2009-10-23 15:06:27 +02:00
2009-12-03 09:58:00 +02:00
2010-01-01 13:08:33 +02:00
2009-11-12 22:13:19 +02:00
2009-10-04 02:02:51 +02:00
2009-12-03 10:12:02 +02:00
2009-12-03 09:36:10 +02:00