File failed to load: https://isis.astrogeology.usgs.gov/8.3.0/Object/assets/jax/output/NativeMML/config.js
Isis 3 Programmer Reference
VecFilter.h
1#ifndef VecFilter_h
2#define VecFilter_h
8/* SPDX-License-Identifier: CC0-1.0 */
9
10#include <vector>
11#include <QString>
12
13namespace Isis {
31 class VecFilter {
32 public:
33 VecFilter();
34 ~VecFilter();
35
36 std::vector<double> LowPass(std::vector<double> invec, int boxsize);
37 std::vector<double> HighPass(std::vector<double> invec1, std::vector<double> invec2);
38 std::vector<double> HighPass(std::vector<double> pdInVector1, std::vector<double> pdInVector2,
39 std::vector<int> piValidPntsVector, int piMaxPoints, const QString & psMode="SUBTRACT");
40
41 private:
42 };
43} // end namespace isis
44
45#endif
46
This class is used to perform filter operations on vectors.
Definition VecFilter.h:31
VecFilter()
Constructs a VecFilter object.
Definition VecFilter.cpp:19
~VecFilter()
Destroys the VecFilter object.
Definition VecFilter.cpp:22
std::vector< double > LowPass(std::vector< double > invec, int boxsize)
Perform a lowpass filter on an input vector.
Definition VecFilter.cpp:35
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16

U.S. Department of the Interior | U.S. Geological Survey
ISIS | Privacy & Disclaimers | Astrogeology Research Program
To contact us, please post comments and questions on the USGS Astrogeology Discussion Board
To report a bug, or suggest a feature go to: ISIS Github
File Modified: 02/24/2025 16:15:19