22 bool endpoint =
false,
23 bool pixel_centered =
true);
27 const glm::vec4 &bbox_source,
28 const glm::vec4 &bbox_target,
29 bool endpoint =
false,
30 bool pixel_centered =
true);
34 bool endpoint =
false,
35 bool pixel_centered =
true);
39 const glm::vec4 &bbox_source,
40 const glm::vec4 &bbox_target,
41 bool endpoint =
false,
42 bool pixel_centered =
true);
46 bool endpoint =
false);
50 const glm::vec4 &bbox_source,
51 const glm::vec4 &bbox_target,
52 bool endpoint =
false);
57 const VirtualArray &h_source2,
58 const CoordFrame &t_source1,
59 const CoordFrame &t_source2,
60 const ComputeMode &cm);
63 VirtualArray &h_target,
64 const std::vector<const CoordFrame *> &t_sources,
65 const CoordFrame &t_target,
66 const ComputeMode &cm);
69 VirtualArray &h_target,
70 const CoordFrame &t_source,
71 const CoordFrame &t_target,
72 const ComputeMode &cm);
83 const glm::vec4 &bbox_source,
84 const glm::vec4 &bbox_target);
90 const glm::vec4 &bbox_source,
91 const glm::vec4 &bbox_target);
99 const glm::vec4 &bbox_source,
100 const glm::vec4 &bbox_target);
Declaration of the Array class for 2D floating-point arrays with various mathematical operations and ...
Definition blending.hpp:186
void interpolate_array_bicubic(const Array &source, Array &target)
Definition interpolate_array_gpu.cpp:37
void interpolate_array_bilinear(const Array &source, Array &target)
Definition interpolate_array_gpu.cpp:89
void interpolate_array_nearest(const Array &source, Array &target)
Definition interpolate_array_gpu.cpp:155
void interpolate_array_lagrange(const Array &source, Array &target, int order)
Definition interpolate_array_gpu.cpp:133
Definition algebra.hpp:22
void interpolate_array_bilinear(const Array &source, Array &target, bool endpoint=false, bool pixel_centered=true)
Definition interpolate_array.cpp:105
void interpolate_array_bicubic(const Array &source, Array &target, bool endpoint=false, bool pixel_centered=true)
Definition interpolate_array.cpp:14
void interpolate_heightmap(const VirtualArray &h_source, VirtualArray &h_target, const CoordFrame &t_source, const CoordFrame &t_target, const ComputeMode &cm)
Definition interpolate_heightmap_virtual_array.cpp:80
void interpolate_array_nearest(const Array &source, Array &target, bool endpoint=false)
Definition interpolate_array.cpp:186
void flatten_heightmap(VirtualArray &h_source1, const VirtualArray &h_source2, const CoordFrame &t_source1, const CoordFrame &t_source2, const ComputeMode &cm)
Definition interpolate_heightmap_virtual_array.cpp:14