I have been trying to implement the Digital Matting algorithm described in the research paper named Learning Based Digital Matting.
Its MATLAB Code is available here. I am trying to convert the MATLAB code into C++ using OpenCV 2.4.3 and UMFPACK.
The problem is that the function named getLap_iccv09_overlapping (that calculates the Laplacian Matrix of input image) is not available off-the-shelf in OpenCV and I have to write my own implementation in cpp. I am getting incorrect results from my implementation.
Is there any C/C++ library that offers Laplacian Matrix calculation of a matrix/image?
