clean array2D.h dependencies

This commit is contained in:
Ingo Weyrich
2019-11-18 21:08:56 +01:00
parent 62eb970aee
commit cbfda6b125
4 changed files with 4 additions and 2 deletions

View File

@@ -20,11 +20,12 @@
#pragma once
#include "array2D.h"
template<typename T> class array2D;
namespace rtengine
{
void guidedFilter(const array2D<float> &guide, const array2D<float> &src, array2D<float> &dst, int r, float epsilon, bool multithread, int subsampling=0);
} // namespace rtengine

View File

@@ -18,6 +18,7 @@
* along with RawTherapee. If not, see <https://www.gnu.org/licenses/>.
*/
#include "array2D.h"
#include "color.h"
#include "curves.h"
#include "guidedfilter.h"

View File

@@ -20,6 +20,7 @@
#include "improcfun.h"
#include "array2D.h"
#include "color.h"
#include "curves.h"
#include "gauss.h"

View File

@@ -18,7 +18,6 @@
*/
#pragma once
#include "array2D.h"
#include "iimage.h"
class EditDataProvider;