3.3.9.3.1.1. Program Listing for File debug.hΒΆ

#ifndef SIRIUS_UTILS_DEBUG_H_
#define SIRIUS_UTILS_DEBUG_H_

#include <string>

#include <fftw3.h>

#include "sirius/types.h"

namespace sirius {
namespace debug {

void SaveFFTAsImage(const fftw_complex* fft, const Size& image_size,
                    const std::string& output_filepath);

}  // debug
}  // sirius

#endif  // SIRIUS_UTILS_DEBUG_H_