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

Method PCAProject

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

Source from the content-addressed store, hash-verified

3122}
3123
3124void cv::PCAProject(InputArray data, InputArray mean,
3125 InputArray eigenvectors, OutputArray result)
3126{
3127 PCA pca;
3128 pca.mean = mean.getMat();
3129 pca.eigenvectors = eigenvectors.getMat();
3130 pca.project(data, result);
3131}
3132
3133void cv::PCABackProject(InputArray data, InputArray mean,
3134 InputArray eigenvectors, OutputArray result)

Callers

nothing calls this directly

Calls 2

projectMethod · 0.80
getMatMethod · 0.45

Tested by

no test coverage detected