mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
13 lines
No EOL
203 B
C++
13 lines
No EOL
203 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include "image.h"
|
|
|
|
namespace image
|
|
{
|
|
// Forward FFT
|
|
void fft_forward(Image<uint16_t> &image);
|
|
|
|
// Inverse FFT
|
|
void fft_inverse(Image<uint16_t> &image);
|
|
} |