https://github.com/agalex1974/EGTPointCloudSmoothing
Raw File
Tip revision: 648238aa02d2653b452d3312664d96958e8718f6 authored by agalex1974 on 25 May 2022, 10:34:25 UTC
Update README.md
Tip revision: 648238a
EGT.cuh
//
// Created by agalex on 11/10/21.
//

#ifndef SMOOTHINGOFPOINTCLOUD_EGT_CUH
#define SMOOTHINGOFPOINTCLOUD_EGT_CUH

void EGTsmoothing(float* in_x, float* in_y, float* in_z, int count, float lambda, float mu,
                  int* neighbors, int maxNeighbors, float* out_x, float* out_y, float* out_z,
                  int iterationCount, int isRegularized, float ratio);

#endif //SMOOTHINGOFPOINTCLOUD_EGT_CUH
back to top