* Kurita, T., &
Boulanger, P. (1992). Computation of Surface Curvature from Range
Images Using Geometrically Intrinsic Weights. In
MVA (pp.
389-392).
* Zhao, C., Zhao,
D., & Chen, Y. (1996, August). Simplified Gaussian and mean
curvatures to range image segmentation. In Pattern
Recognition, 1996., Proceedings of the 13th International
Conference on (Vol. 2, pp. 427-431). IEEE.
If appropriate let me know and I will read the
contribution/development documentation, make the code more robust
and submit formally.
Regards,
Michael.
--
Here is a basic outline of the code (H and K are used as they
appear common terms used in the literature) :
---------------BEGIN CODE--------------
import numpy as np
Zy, Zx =
np.gradient(Z)
Zxy, Zxx =
np.gradient(Zx)
Zyy, _ = np.gradient(Zy)
# Mean Curvature - equation (3) from Kurita and Boulanger (1992)
paper