Hello,
I am trying to use SRVF framework and fs.fdacurve with planar curves.
I was able to compute the functional principal components, using the following code:
obj = fs.fdacurve(beta,N=M)
obj.karcher_mean(rotation=False)
obj.srvf_align(rotation=False)
obj.karcher_cov()
obj.shape_pca(no=5)
However, I am not sure how can i reconstruct the original planar functions using functional principal scores stored in obj.coef.
The goal would be to reconstruct the original shapes and after compute a reconstruction error metric
Can you please help?