Wildmeshing Toolkit
Loading...
Searching...
No Matches
load_image_exr.hpp
Go to the documentation of this file.
1#pragma once
2#include <Eigen/Core>
3#include <array>
4#include <cmath>
5#include <filesystem>
7
8auto load_image_exr_red_channel(const std::filesystem::path& path)
9 -> std::tuple<size_t, size_t, std::vector<float>>;
10
11auto load_image_exr_split_3channels(const std::filesystem::path& path) -> std::tuple<
12 size_t,
13 size_t,
14 int,
15 int,
16 int,
17 std::vector<float>,
18 std::vector<float>,
19 std::vector<float>>;
20} // namespace wmtk::components::adaptive_tessellation::image
auto load_image_exr_red_channel(const std::filesystem::path &path) -> std::tuple< size_t, size_t, std::vector< float > >
auto load_image_exr_split_3channels(const std::filesystem::path &path) -> std::tuple< size_t, size_t, int, int, int, std::vector< float >, std::vector< float >, std::vector< float > >