DimensionsLookupTable.h
Go to the documentation of this file.
1 //
3 // \file
4 // \brief Header file for the DimensionsLookupTable methods that allow
5 // standard and non standard video image dimensions to be
6 // converted to and from a dimensions index integer.
7 //
9 // Copyright (c) 2017 Digital Barriers
11 
16 #pragma once
17 
18 #include "VideoFormats.h"
19 #include <string>
20 #include <stdint.h>
21 
22 namespace EdgeVisSDKCore
23 {
24  int32_t GetDimensionsIdx(
25  int16_t width,
26  int16_t height,
27  CIFFormat format = CF_CIF,
28  bool allowPack = false
29  );
30 
31  bool GetDimensions(
32  int32_t idx,
33  int16_t& width,
34  int16_t& height,
35  CIFFormat& format,
36  bool allowUnpack = false
37  );
38 
39  const int32_t GetStdDimensionsSize();
40 
41  const std::wstring GetFormatAsString( CIFFormat f );
42 }
Definition: AreaOfInterestConfig.h:32