ACloudViewer  3.9.4
A Modern Library for 3D Data Processing
NormalEstimation.h
Go to the documentation of this file.
1 // ----------------------------------------------------------------------------
2 // - CloudViewer: www.cloudViewer.org -
3 // ----------------------------------------------------------------------------
4 // Copyright (c) 2018-2024 www.cloudViewer.org
5 // SPDX-License-Identifier: MIT
6 // ----------------------------------------------------------------------------
7 
8 #pragma once
9 
10 #include "BasePclModule.h"
11 
13 
15 public:
17  virtual ~NormalEstimation();
18 
19  // inherited from BasePclModule
20  virtual int compute();
21 
22 protected:
23  // inherited from BasePclModule
24  virtual int openInputDialog();
25  virtual void getParametersFromDialog();
26 
29  float m_radius;
30  bool m_useKnn;
32 };
Base abstract class for each implemented PCL filter.
Definition: BasePclModule.h:53
virtual int compute()
Performs the actual filter job.
virtual int openInputDialog()
NormalEstimationDialog * m_dialog
virtual void getParametersFromDialog()
Collects parameters from the filter dialog (if openDialog is successful)
virtual ~NormalEstimation()