MCPcopy Create free account
hub / github.com/creatale/node-dv / PCABackProject

Method PCABackProject

deps/opencv/modules/core/src/matmul.cpp:3133–3140  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3131}
3132
3133void cv::PCABackProject(InputArray data, InputArray mean,
3134 InputArray eigenvectors, OutputArray result)
3135{
3136 PCA pca;
3137 pca.mean = mean.getMat();
3138 pca.eigenvectors = eigenvectors.getMat();
3139 pca.backProject(data, result);
3140}
3141
3142
3143/****************************************************************************************\

Callers

nothing calls this directly

Calls 2

backProjectMethod · 0.80
getMatMethod · 0.45

Tested by

no test coverage detected