#include "aare/core/NDView.hpp"
#include <algorithm>
#include <array>
#include <cmath>
#include <fmt/format.h>
#include <fstream>
#include <iomanip>
#include <iostream>
#include <numeric>
Go to the source code of this file.
|
namespace | aare |
| Frame class to represent a single frame of data model class should be able to work with streams coming from files or network.
|
|
|
template<typename T , ssize_t Ndim> |
void | aare::save (NDArray< T, Ndim > &img, std::string pathname) |
|
template<typename T , ssize_t Ndim> |
NDArray< T, Ndim > | aare::load (const std::string &pathname, std::array< ssize_t, Ndim > shape) |
|