Cogs.Core
DepthResampleTask.h
1#pragma once
2#include <vector>
3namespace Cogs
4{
5 namespace Core
6 {
7 template<typename Element>
8 struct MappedStream;
9
10 namespace EchoSounder
11 {
12
14 {
15 float* valuesOut;
16 const float depthStepOut;
17 const int sampleCountOut;
18 const float* valuesIn;
19 const float depthStepIn;
20 const int sampleCountIn;
21 const int beamBegin;
22 const int beamEnd;
23
24 DepthResampleTask(float* valuesOut,
25 const float depthStepOut,
26 const int sampleCountOut,
27 const float* valuesIn,
28 const float depthStepIn,
29 const int sampleCountIn,
30 const int beamBegin,
31 const int beamEnd);
32
33
34 void operator()();
35
36 };
37
38 }
39 }
40}
Contains all Cogs related functionality.
Definition: FieldSetter.h:23