cgv
Loading...
Searching...
No Matches
normal_estimation.h
1#pragma once
2
3#include "lib_begin.h"
4
5namespace cgv {
6 namespace math {
7
9
17 extern CGV_API void estimate_normal_ls(unsigned nr_points, const float* _points, float* _normal, float* _evals = 0, float* _mean = 0, float* _evecs = 0);
18
20 extern CGV_API void estimate_normal_wls(unsigned nr_points, const float* _points, const float* _weights, float* _normal, float* _evals = 0, float* _mean = 0, float* _evecs = 0);
21 }
22}
23#include <cgv/config/lib_end.h>
the cgv namespace
Definition print.h:11