CellProfiler / centrosome

An open source image processing library
Other
17 stars 35 forks source link

Add a weight parameter to construct_zernike_polynomials #52

Open LeeKamentsky opened 8 years ago

LeeKamentsky commented 8 years ago

so that the Zernike of an image can be taken.

LeeKamentsky commented 8 years ago

Duh:

x = construct_zernike_polynomials(..., weights=weights)
y = construct_zernike_polynomials(...) * weights
assert np.all(x == y)

why bother?