Is there a fast way to compute an array of sum-of-squared-differences
between a (small)  K x K array and all K x K sub-arrays of a larger array?
(i.e. each element x,y in the output array is the SSD between the small
array and the sub-array (x:x+K, y:y+K)

My current implementation loops over each sub-array and computes the SSD
with something like ((A-B)**2).sum().

Cheers,
Alex
_______________________________________________
NumPy-Discussion mailing list
NumPy-Discussion@scipy.org
http://mail.scipy.org/mailman/listinfo/numpy-discussion

Reply via email to