GPUImageAnalysis: Spot finder again produces 1-bit result (similar to FPGA) reduced on CPU + mask is not applied on GPU
This commit is contained in:
@@ -8,8 +8,8 @@ struct CudaStreamWrapper {
|
||||
int32_t just_anything_as_this_wont_be_used;
|
||||
};
|
||||
|
||||
GPUImageAnalysis::GPUImageAnalysis(int32_t in_xpixels, int32_t in_ypixels, const std::vector<uint8_t> &mask) :
|
||||
xpixels(in_xpixels), ypixels(in_ypixels), gpu_out(nullptr), rad_integration_nbins(0) {
|
||||
GPUImageAnalysis::GPUImageAnalysis(int32_t in_xpixels, int32_t in_ypixels) :
|
||||
xpixels(in_xpixels), ypixels(in_ypixels), gpu_out(nullptr) {
|
||||
}
|
||||
|
||||
GPUImageAnalysis::~GPUImageAnalysis() {}
|
||||
@@ -32,6 +32,6 @@ void GPUImageAnalysis::RegisterBuffer() {}
|
||||
|
||||
void GPUImageAnalysis::UnregisterBuffer() {}
|
||||
|
||||
void GPUImageAnalysis::LoadDataToGPU(bool apply_pixel_mask_on_gpu) {}
|
||||
void GPUImageAnalysis::LoadDataToGPU() {}
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user