18#include <matrix/vlVector.h>
19#include <matrix/vlTaitBryan.h>
DtBaseMessage()
Default constructor.
virtual ~DtImageRequest()
Virtual destructor.
DtImageRequest()
Default constructor.
DtImageResponse()
Default constructor.
virtual ~DtImageResponse()
Virtual destructor.
Defines export macros for the RadarFx Shared library.
#define RFX_DLL_SHARED
Export/import macro for non-Windows platforms (empty)
Definition export.h:25
Definition radarFxConnectorDriver.h:21
DtImageRotation
Image orientation enumeration.
Definition rfxImageMessage.h:43
@ TRACK_UP
Image is oriented with the platform track direction at the top.
Definition rfxImageMessage.h:45
@ NORTH_UP
Image is oriented with north at the top.
Definition rfxImageMessage.h:44
DtImageFormat
Image format enumeration for radar images.
Definition rfxImageMessage.h:29
@ NITF
National Imagery Transmission Format.
Definition rfxImageMessage.h:34
@ JPG
JPEG compressed format.
Definition rfxImageMessage.h:32
@ GTIF
GeoTIFF format.
Definition rfxImageMessage.h:36
@ RAW
Raw uncompressed image data.
Definition rfxImageMessage.h:30
@ PNG
PNG compressed format.
Definition rfxImageMessage.h:33
@ BMP
Windows Bitmap format.
Definition rfxImageMessage.h:31
@ RAW_RG
Raw Range/Doppler image data.
Definition rfxImageMessage.h:35
DtImageReturnMethod
Image delivery method enumeration.
Definition rfxImageMessage.h:52
@ STREAM
Return image data directly in the response message.
Definition rfxImageMessage.h:53
@ FILESYSTEM
Save image to a file and return the file path.
Definition rfxImageMessage.h:54
DtImageError
Error codes for radar image responses.
Definition rfxImageMessage.h:119
@ FAILED_RENDER
Failed to render the image.
Definition rfxImageMessage.h:121
@ IMAGE_NO_ERROR
No error, image was generated successfully.
Definition rfxImageMessage.h:120
@ FAILED_ENTITY_LOOKUP
Failed to find the specified entity.
Definition rfxImageMessage.h:123
@ FAILED_OTHER
Other unspecified error.
Definition rfxImageMessage.h:124
@ FAILED_FILESAVE
Failed to save the image to file (when using FILESYSTEM return method)
Definition rfxImageMessage.h:122
DtImageDataType
Image data type enumeration.
Definition rfxImageMessage.h:61
@ FLOAT
32-bit floating point
Definition rfxImageMessage.h:64
@ BYTE
8-bit unsigned integer
Definition rfxImageMessage.h:62
@ SHORT
16-bit signed integer
Definition rfxImageMessage.h:63
DtImageWarning
Warning codes for radar image responses.
Definition rfxImageMessage.h:131
@ NO_WARNING
No warnings.
Definition rfxImageMessage.h:132
@ WARNING_TERRAIN_TIMEOUT
Terrain data loading timed out, partial data used.
Definition rfxImageMessage.h:133
Defines the base message class for RadarFX client-server communication.
DtImageSize()
Default constructor.
Definition rfxImageMessage.h:75
int y
Image height in pixels.
Definition rfxImageMessage.h:94
DtImageSize(int imgX, int imgY)
Constructor with specific dimensions.
Definition rfxImageMessage.h:84
int x
Image width in pixels.
Definition rfxImageMessage.h:91