RasterProcessTool/SimulationSAR/TBPGPU.cu

29 lines
615 B
Plaintext
Raw Normal View History

2024-11-25 10:09:24 +00:00
#include <iostream>
#include <memory>
#include <cmath>
#include <complex>
#include <cuda_runtime.h>
#include <cublas_v2.h>
/// <summary>
/// TBP GPU<50><55><EFBFBD><EFBFBD>
/// </summary>
/// <param name="antpos_ptr"><3E><><EFBFBD>ǹ<EFBFBD><C7B9><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></param>
/// <param name="echoArr"><3E>ز<EFBFBD><D8B2><EFBFBD><EFBFBD><EFBFBD></param>
/// <param name="img_arr">ͼ<><CDBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD></param>
2024-11-25 17:51:20 +00:00
void TBPImageGPUAlg(std::shared_ptr<float> antPx, std::shared_ptr<float> antPy, std::shared_ptr<float> antPz,
std::shared_ptr<float> antVx, std::shared_ptr<float> antVy, std::shared_ptr<float> antVz,
std::shared_ptr<std::complex<double>> echoArr,std::shared_ptr<std::complex<double>> img_arr) {
2024-11-25 10:09:24 +00:00
}