mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
17 lines
No EOL
365 B
C++
17 lines
No EOL
365 B
C++
#include "image_meta.h"
|
|
|
|
namespace image
|
|
{
|
|
template <typename T>
|
|
void Image<T>::copy_meta(const Image<T> &img)
|
|
{
|
|
if (img.metadata_obj != nullptr)
|
|
{
|
|
set_metadata(*this, get_metadata(img));
|
|
}
|
|
}
|
|
|
|
// Generate Images for uint16_t and uint8_t
|
|
template class Image<uint8_t>;
|
|
template class Image<uint16_t>;
|
|
} |