RadarFX API Documentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
rfxSarCaptureProcess.h
Go to the documentation of this file.
1 /*********************************************************************************
2 ** Copyright (c) 2022 MAK Technologies, Inc.
3 ** All rights reserved.
4 *********************************************************************************/
5 
6 #pragma once
7 
8 #include <radarFxServer/export.h>
9 
11 
12 namespace makVrv
13 {
14  class DtDe;
15  class DtVideoStream;
16  class DtObserver;
17  class DtVideoFrameBuffer;
18  class DtSensor;
19 }
20 
21 namespace makRadarFx
22 {
23  class DtSarRequest;
24  struct DtObserverState;
25 
26 
29  {
30  public:
31 
34  DtSarCaptureProcess(makVrv::DtDe& de, DtImageRequest* request);
35  virtual ~DtSarCaptureProcess();
36 
38  virtual void processFrame(makVrv::DtVideoFrameBuffer* frame);
39 
41  virtual bool isReadyToProcess();
42 
43  protected:
44 
47  {
49  float myCrossrange;
50  float myDownrange;
51  float myPower;
52  DtVector32 myOwnshipVelocity;
54  };
55 
56  protected:
57 
58  //Called in the constructor so it is not virtual!!
59  DtImageCaptureConfig* createCaptureConfiguration(DtImageRequest* msg);
60 
63  virtual void configureSensor(const std::string& sensorName);
64 
66  virtual void respondError(std::string errorMsg, DtImageError err);
67 
68  };
69 
72  {
73 
74  public:
75 
77  DtSarCaptureProcessCreator(makVrv::DtDe& de);
79 
81  virtual DtBaseProcess* create(DtBaseMessage* message);
82 
83  private:
84  makVrv::DtDe& myDe;
85  };
86 
87 
88 }


Copyright © 2024 MAK Technologies, Inc. All Rights Reserved (www.mak.com)