ACloudViewer  3.9.4
A Modern Library for 3D Data Processing
BundlerFilter.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 "FileIOFilter.h"
11 
13 
15 class BundlerFilter : public FileIOFilter {
16 public:
17  BundlerFilter();
18 
19  // inherited from FileIOFilter
20  virtual CC_FILE_ERROR loadFile(const QString& filename,
21  ccHObject& container,
22  LoadParameters& parameters) override;
23 
26  const QString& filename,
27  ccHObject& container,
28  LoadParameters& parameters,
29  const QString& altKeypointsFilename = QString(),
30  bool undistortImages = false,
31  bool generateColoredDTM = false,
32  unsigned coloredDTMVerticesCount = 1000000,
33  float scaleFactor = 1.0f);
34 };
std::string filename
CC_FILE_ERROR
Typical I/O filter errors.
Definition: FileIOFilter.h:20
Noah Snavely's Bundler output file filter.
Definition: BundlerFilter.h:15
CC_FILE_ERROR loadFileExtended(const QString &filename, ccHObject &container, LoadParameters &parameters, const QString &altKeypointsFilename=QString(), bool undistortImages=false, bool generateColoredDTM=false, unsigned coloredDTMVerticesCount=1000000, float scaleFactor=1.0f)
Specific load method.
virtual CC_FILE_ERROR loadFile(const QString &filename, ccHObject &container, LoadParameters &parameters) override
Loads one or more entities from a file.
Generic file I/O filter.
Definition: FileIOFilter.h:46
Hierarchical CLOUDVIEWER Object.
Definition: ecvHObject.h:25
Generic loading parameters.
Definition: FileIOFilter.h:51