ccSORFilterDlg.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. //##########################################################################
  2. //# #
  3. //# CLOUDCOMPARE #
  4. //# #
  5. //# This program is free software; you can redistribute it and/or modify #
  6. //# it under the terms of the GNU General Public License as published by #
  7. //# the Free Software Foundation; version 2 or later of the License. #
  8. //# #
  9. //# This program is distributed in the hope that it will be useful, #
  10. //# but WITHOUT ANY WARRANTY; without even the implied warranty of #
  11. //# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
  12. //# GNU General Public License for more details. #
  13. //# #
  14. //# COPYRIGHT: EDF R&D / TELECOM ParisTech (ENST-TSI) #
  15. //# #
  16. //##########################################################################
  17. #ifndef CC_SOR_FILTER_DLG_HEADER
  18. #define CC_SOR_FILTER_DLG_HEADER
  19. #include <QDialog>
  20. namespace Ui {
  21. class SorFilterDialog;
  22. }
  23. //! Dialog to choose which dimension(s) (X, Y or Z) should be exported as SF(s)
  24. class ccSORFilterDlg : public QDialog
  25. {
  26. Q_OBJECT
  27. public:
  28. //! Default constructor
  29. explicit ccSORFilterDlg(QWidget* parent = nullptr);
  30. ~ccSORFilterDlg();
  31. int KNN() const;
  32. void setKNN( int knn );
  33. double nSigma() const;
  34. void setNSigma( double nSigma );
  35. private:
  36. Ui::SorFilterDialog* m_ui;
  37. };
  38. #endif //CC_SOR_FILTER_DLG_HEADER