diff --git a/doxygen.log b/doxygen.log index a58f630a..24ee84d2 100644 --- a/doxygen.log +++ b/doxygen.log @@ -1225,5 +1225,5 @@ Generating file index... Generating file member index... Generating example index... finalizing index lists... -lookup cache used 4921/65536 hits=38133 misses=5281 +lookup cache used 4927/65536 hits=38198 misses=5288 finished... diff --git a/html/array_8hpp_source.html b/html/array_8hpp_source.html index 0773e3ba..b580f3c4 100644 --- a/html/array_8hpp_source.html +++ b/html/array_8hpp_source.html @@ -130,177 +130,188 @@ $(document).ready(function(){initNavTree('array_8hpp_source.html','');});
48 
56  Array(const std::vector<int>& sizes, const T value);
57 
-
66  Array<T>(const Array<T>& array);
-
67 
-
74  Array<T>& operator=(const Array<T>& array);
+
65  Array(const int size, T* const dataPtr);
+
66 
+
74  Array(const std::vector<int>& sizes, T* const dataPtr);
75 
-
81  Array<T>(Array<T>&& array);
-
82 
-
89  Array<T>& operator=(Array<T>&& array);
-
90 
-
98  Array<T> clone() const;
-
99 
-
106  void reset(const int size);
-
107 
-
115  void reset(const std::vector<int>& sizes = {});
-
116 
-
124  void reset(const int size, const T value);
+
84  Array<T>(const Array<T>& array);
+
85 
+
92  Array<T>& operator=(const Array<T>& array);
+
93 
+
99  Array<T>(Array<T>&& array);
+
100 
+
107  Array<T>& operator=(Array<T>&& array);
+
108 
+
116  Array<T> clone() const;
+
117 
+
124  void reset(const int size);
125 
-
134  void reset(const std::vector<int>& sizes, const T value);
-
135 
-
141  void setFrom(const cv::Mat& cvMat);
-
142 
-
148  void setTo(const T value);
-
149 
-
150 
-
151 
-
152  // ------------------------------ Data Information Functions ------------------------------ //
-
157  inline bool empty() const
-
158  {
-
159  return (mVolume == 0);
-
160  }
-
161 
-
167  inline std::vector<int> getSize() const
-
168  {
-
169  return mSize;
-
170  }
-
171 
-
178  int getSize(const int index) const;
+
133  void reset(const std::vector<int>& sizes = {});
+
134 
+
142  void reset(const int size, const T value);
+
143 
+
152  void reset(const std::vector<int>& sizes, const T value);
+
153 
+
159  void setFrom(const cv::Mat& cvMat);
+
160 
+
166  void setTo(const T value);
+
167 
+
168 
+
169 
+
170  // ------------------------------ Data Information Functions ------------------------------ //
+
175  inline bool empty() const
+
176  {
+
177  return (mVolume == 0);
+
178  }
179 
-
185  std::string printSize() const;
-
186 
-
191  inline size_t getNumberDimensions() const
-
192  {
-
193  return mSize.size();
-
194  }
-
195 
-
201  inline size_t getVolume() const
-
202  {
-
203  return mVolume;
-
204  }
-
205 
-
213  size_t getVolume(const int indexA, const int indexB) const;
-
214 
-
220  std::vector<int> getStride() const;
-
221 
-
226  int getStride(const int index) const;
-
227 
-
228 
-
229 
-
230  // ------------------------------ Data Access Functions And Operators ------------------------------ //
-
237  inline T* getPtr()
-
238  {
-
239  return spData.get();
-
240  }
-
241 
-
246  inline const T* getConstPtr() const
-
247  {
-
248  return spData.get();
-
249  }
-
250 
-
263  const cv::Mat& getConstCvMat() const;
-
264 
-
272  cv::Mat& getCvMat();
-
273 
-
282  inline T& operator[](const int index)
-
283  {
-
284  #ifdef NDEBUG
-
285  return spData.get()[index];
-
286  #else
-
287  return at(index);
-
288  #endif
-
289  }
-
290 
-
298  inline const T& operator[](const int index) const
-
299  {
-
300  #ifdef NDEBUG
-
301  return spData.get()[index];
-
302  #else
-
303  return at(index);
-
304  #endif
-
305  }
-
306 
-
315  inline T& operator[](const std::vector<int>& indexes)
-
316  {
-
317  return operator[](getIndex(indexes));
-
318  }
-
319 
-
327  inline const T& operator[](const std::vector<int>& indexes) const
-
328  {
-
329  return operator[](getIndex(indexes));
-
330  }
-
331 
-
339  inline T& at(const int index)
-
340  {
-
341  return commonAt(index);
-
342  }
-
343 
-
351  inline const T& at(const int index) const
-
352  {
-
353  return commonAt(index);
-
354  }
-
355 
-
363  inline T& at(const std::vector<int>& indexes)
-
364  {
-
365  return at(getIndexAndCheck(indexes));
-
366  }
-
367 
-
375  inline const T& at(const std::vector<int>& indexes) const
-
376  {
-
377  return at(getIndexAndCheck(indexes));
-
378  }
-
379 
-
392  const std::string toString() const;
-
393 
-
394  private:
-
395  std::vector<int> mSize;
-
396  size_t mVolume;
-
397  std::shared_ptr<T> spData;
-
398  std::pair<bool, cv::Mat> mCvMatData;
-
399 
-
407  int getIndex(const std::vector<int>& indexes) const;
-
408 
-
416  int getIndexAndCheck(const std::vector<int>& indexes) const;
-
417 
-
423  T& commonAt(const int index) const;
-
424 
-
429  void setCvMatFromSharedPtr();
-
430  };
-
431 
-
432  // Static methods
-
433  OVERLOAD_C_OUT(Array)
-
434 }
-
435 
-
436 #endif // OPENPOSE_CORE_ARRAY_HPP
+
185  inline std::vector<int> getSize() const
+
186  {
+
187  return mSize;
+
188  }
+
189 
+
196  int getSize(const int index) const;
+
197 
+
203  std::string printSize() const;
+
204 
+
209  inline size_t getNumberDimensions() const
+
210  {
+
211  return mSize.size();
+
212  }
+
213 
+
219  inline size_t getVolume() const
+
220  {
+
221  return mVolume;
+
222  }
+
223 
+
231  size_t getVolume(const int indexA, const int indexB) const;
+
232 
+
238  std::vector<int> getStride() const;
+
239 
+
244  int getStride(const int index) const;
+
245 
+
246 
+
247 
+
248  // ------------------------------ Data Access Functions And Operators ------------------------------ //
+
255  inline T* getPtr()
+
256  {
+
257  return pData; // spData.get()
+
258  }
+
259 
+
264  inline const T* getConstPtr() const
+
265  {
+
266  return pData; // spData.get()
+
267  }
+
268 
+
274  inline T* getPybindPtr() const
+
275  {
+
276  return pData; // spData.get()
+
277  }
+
278 
+
291  const cv::Mat& getConstCvMat() const;
+
292 
+
300  cv::Mat& getCvMat();
+
301 
+
310  inline T& operator[](const int index)
+
311  {
+
312  #ifdef NDEBUG
+
313  return pData[index]; // spData.get()[index]
+
314  #else
+
315  return at(index);
+
316  #endif
+
317  }
+
318 
+
326  inline const T& operator[](const int index) const
+
327  {
+
328  #ifdef NDEBUG
+
329  return pData[index]; // spData.get()[index]
+
330  #else
+
331  return at(index);
+
332  #endif
+
333  }
+
334 
+
343  inline T& operator[](const std::vector<int>& indexes)
+
344  {
+
345  return operator[](getIndex(indexes));
+
346  }
+
347 
+
355  inline const T& operator[](const std::vector<int>& indexes) const
+
356  {
+
357  return operator[](getIndex(indexes));
+
358  }
+
359 
+
367  inline T& at(const int index)
+
368  {
+
369  return commonAt(index);
+
370  }
+
371 
+
379  inline const T& at(const int index) const
+
380  {
+
381  return commonAt(index);
+
382  }
+
383 
+
391  inline T& at(const std::vector<int>& indexes)
+
392  {
+
393  return at(getIndexAndCheck(indexes));
+
394  }
+
395 
+
403  inline const T& at(const std::vector<int>& indexes) const
+
404  {
+
405  return at(getIndexAndCheck(indexes));
+
406  }
+
407 
+
420  const std::string toString() const;
+
421 
+
422  private:
+
423  std::vector<int> mSize;
+
424  size_t mVolume;
+
425  std::shared_ptr<T> spData;
+
426  T* pData; // pData is a wrapper of spData. Used for Pybind11 binding.
+
427  std::pair<bool, cv::Mat> mCvMatData;
+
428 
+
436  int getIndex(const std::vector<int>& indexes) const;
+
437 
+
445  int getIndexAndCheck(const std::vector<int>& indexes) const;
+
446 
+
452  T& commonAt(const int index) const;
+
453 
+
454  void resetAuxiliary(const std::vector<int>& sizes, T* const dataPtr = nullptr);
+
455  };
+
456 
+
457  // Static methods
+
458  OVERLOAD_C_OUT(Array)
+
459 }
+
460 
+
461 #endif // OPENPOSE_CORE_ARRAY_HPP
op::Array::getConstCvMat
const cv::Mat & getConstCvMat() const
op::Array::clone
Array< T > clone() const
cl::array
std::array< T, N > array
Definition: cl2.hpp:594
-
op::Array::operator[]
T & operator[](const std::vector< int > &indexes)
Definition: array.hpp:315
-
op::Array::at
T & at(const int index)
Definition: array.hpp:339
+
op::Array::operator[]
T & operator[](const std::vector< int > &indexes)
Definition: array.hpp:343
+
op::Array::at
T & at(const int index)
Definition: array.hpp:367
op::Array::setFrom
void setFrom(const cv::Mat &cvMat)
op::Array::getStride
std::vector< int > getStride() const
op::Array::operator=
Array< T > & operator=(const Array< T > &array)
-
op::Array::getNumberDimensions
size_t getNumberDimensions() const
Definition: array.hpp:191
-
op::Array::at
const T & at(const std::vector< int > &indexes) const
Definition: array.hpp:375
+
op::Array::getNumberDimensions
size_t getNumberDimensions() const
Definition: array.hpp:209
+
op::Array::at
const T & at(const std::vector< int > &indexes) const
Definition: array.hpp:403
op::Array::setTo
void setTo(const T value)
-
op::Array::at
const T & at(const int index) const
Definition: array.hpp:351
+
op::Array::at
const T & at(const int index) const
Definition: array.hpp:379
OVERLOAD_C_OUT
#define OVERLOAD_C_OUT(className)
Definition: macros.hpp:60
-
op::Array::getPtr
T * getPtr()
Definition: array.hpp:237
-
op::Array::empty
bool empty() const
Definition: array.hpp:157
-
op::Array::getVolume
size_t getVolume() const
Definition: array.hpp:201
+
op::Array::getPtr
T * getPtr()
Definition: array.hpp:255
+
op::Array::empty
bool empty() const
Definition: array.hpp:175
+
op::Array::getVolume
size_t getVolume() const
Definition: array.hpp:219
op::Array::getCvMat
cv::Mat & getCvMat()
-
op::Array::operator[]
T & operator[](const int index)
Definition: array.hpp:282
+
op::Array::operator[]
T & operator[](const int index)
Definition: array.hpp:310
+
op::Array::getPybindPtr
T * getPybindPtr() const
Definition: array.hpp:274
op::Array::reset
void reset(const int size)
macros.hpp
-
op::Array::operator[]
const T & operator[](const std::vector< int > &indexes) const
Definition: array.hpp:327
+
op::Array::operator[]
const T & operator[](const std::vector< int > &indexes) const
Definition: array.hpp:355
op::Array
Definition: array.hpp:20
-
op::Array::getConstPtr
const T * getConstPtr() const
Definition: array.hpp:246
+
op::Array::getConstPtr
const T * getConstPtr() const
Definition: array.hpp:264
op::Array::toString
const std::string toString() const
op::Array::Array
Array(const int size)
op::Array::printSize
std::string printSize() const
-
op::Array::operator[]
const T & operator[](const int index) const
Definition: array.hpp:298
-
op::Array::at
T & at(const std::vector< int > &indexes)
Definition: array.hpp:363
-
op::Array::getSize
std::vector< int > getSize() const
Definition: array.hpp:167
+
op::Array::operator[]
const T & operator[](const int index) const
Definition: array.hpp:326
+
op::Array::at
T & at(const std::vector< int > &indexes)
Definition: array.hpp:391
+
op::Array::getSize
std::vector< int > getSize() const
Definition: array.hpp:185
cl::string
std::string string
Definition: cl2.hpp:574
diff --git a/html/classop_1_1_array-members.html b/html/classop_1_1_array-members.html index 58043350..b9d28243 100644 --- a/html/classop_1_1_array-members.html +++ b/html/classop_1_1_array-members.html @@ -116,6 +116,8 @@ $(document).ready(function(){initNavTree('classop_1_1_array.html','');}); Array(const std::vector< int > &sizes={})op::Array< T >explicit Array(const int size, const T value)op::Array< T > Array(const std::vector< int > &sizes, const T value)op::Array< T > + Array(const int size, T *const dataPtr)op::Array< T > + Array(const std::vector< int > &sizes, T *const dataPtr)op::Array< T > Array(const Array< T > &array)op::Array< T > Array(Array< T > &&array)op::Array< T > at(const int index)op::Array< T >inline @@ -129,26 +131,27 @@ $(document).ready(function(){initNavTree('classop_1_1_array.html','');}); getCvMat()op::Array< T > getNumberDimensions() const op::Array< T >inline getPtr()op::Array< T >inline - getSize() const op::Array< T >inline - getSize(const int index) const op::Array< T > - getStride() const op::Array< T > - getStride(const int index) const op::Array< T > - getVolume() const op::Array< T >inline - getVolume(const int indexA, const int indexB) const op::Array< T > - operator=(const Array< T > &array)op::Array< T > - operator=(Array< T > &&array)op::Array< T > - operator[](const int index)op::Array< T >inline - operator[](const int index) const op::Array< T >inline - operator[](const std::vector< int > &indexes)op::Array< T >inline - operator[](const std::vector< int > &indexes) const op::Array< T >inline - printSize() const op::Array< T > - reset(const int size)op::Array< T > - reset(const std::vector< int > &sizes={})op::Array< T > - reset(const int size, const T value)op::Array< T > - reset(const std::vector< int > &sizes, const T value)op::Array< T > - setFrom(const cv::Mat &cvMat)op::Array< T > - setTo(const T value)op::Array< T > - toString() const op::Array< T > + getPybindPtr() const op::Array< T >inline + getSize() const op::Array< T >inline + getSize(const int index) const op::Array< T > + getStride() const op::Array< T > + getStride(const int index) const op::Array< T > + getVolume() const op::Array< T >inline + getVolume(const int indexA, const int indexB) const op::Array< T > + operator=(const Array< T > &array)op::Array< T > + operator=(Array< T > &&array)op::Array< T > + operator[](const int index)op::Array< T >inline + operator[](const int index) const op::Array< T >inline + operator[](const std::vector< int > &indexes)op::Array< T >inline + operator[](const std::vector< int > &indexes) const op::Array< T >inline + printSize() const op::Array< T > + reset(const int size)op::Array< T > + reset(const std::vector< int > &sizes={})op::Array< T > + reset(const int size, const T value)op::Array< T > + reset(const std::vector< int > &sizes, const T value)op::Array< T > + setFrom(const cv::Mat &cvMat)op::Array< T > + setTo(const T value)op::Array< T > + toString() const op::Array< T > diff --git a/html/classop_1_1_array.html b/html/classop_1_1_array.html index 369ec29f..de070b21 100644 --- a/html/classop_1_1_array.html +++ b/html/classop_1_1_array.html @@ -125,6 +125,10 @@ Public Member Functions    Array (const std::vector< int > &sizes, const T value)   + Array (const int size, T *const dataPtr) +  + Array (const std::vector< int > &sizes, T *const dataPtr) +   Array (const Array< T > &array)   Array< T > & operator= (const Array< T > &array) @@ -169,6 +173,8 @@ Public Member Functions   const T * getConstPtr () const   +T * getPybindPtr () const +  const cv::Mat & getConstCvMat () const   cv::Mat & getCvMat () @@ -334,6 +340,78 @@ template<typename T> + + + +
+
+
+template<typename T>
+ + + + + + + + + + + + + + + + + + +
op::Array< T >::Array (const int size,
T *const dataPtr 
)
+
+

Array constructor. Equivalent to default constructor, but it does not allocate memory, but rather use dataPtr.

+
Parameters
+ + + +
sizeInteger with the number of T element to be allocated. E.g., size = 5 is internally similar to new T[5].
dataPtrPointer to the memory to be used by the Array.
+
+
+ +
+
+ +
+
+
+template<typename T>
+ + + + + + + + + + + + + + + + + + +
op::Array< T >::Array (const std::vector< int > & sizes,
T *const dataPtr 
)
+
+

Array constructor. Equivalent to default constructor, but it does not allocate memory, but rather use dataPtr.

+
Parameters
+ + + +
sizesVector with the size of each dimension. E.g., size = {3, 5, 2} is internally similar to: new T[3*5*2].
dataPtrPointer to the memory to be used by the Array.
+
+
+
@@ -686,6 +764,33 @@ template<typename T>

Return a raw pointer to the data. Similar to: std::shared_ptr::get(). Note: if you modify the pointer data, you will directly modify it in the Array<T> instance too. If you know you do not want to modify the data, then use getConstPtr() instead.

Returns
A raw pointer to the data.
+ + + +
+
+
+template<typename T>
+ + + + + +
+ + + + + + + +
T* op::Array< T >::getPybindPtr () const
+
+inline
+
+

Similar to getConstPtr(), but it allows the data to be edited. This function is only implemented for Pybind11 usage.

+
Returns
A raw pointer to the data.
+
diff --git a/html/classop_1_1_array.js b/html/classop_1_1_array.js index a957f660..a6f2c776 100644 --- a/html/classop_1_1_array.js +++ b/html/classop_1_1_array.js @@ -4,6 +4,8 @@ var classop_1_1_array = [ "Array", "classop_1_1_array.html#a48c1ba1f7017b5aa8e0451079dd3a6d3", null ], [ "Array", "classop_1_1_array.html#ac833fdcb245fcc3135ce65227bb9e4b2", null ], [ "Array", "classop_1_1_array.html#a959ede0df7e535d2d3ac40d098541c27", null ], + [ "Array", "classop_1_1_array.html#a9cd386050e94c29b3c4ee40cafcacc46", null ], + [ "Array", "classop_1_1_array.html#a90895562def04a81db0b3e7eaa3722c7", null ], [ "Array", "classop_1_1_array.html#a5a68cca98a3ebaf565f1e546eebd9f01", null ], [ "Array", "classop_1_1_array.html#a7a7d854d63815e10e158fe889d17a88e", null ], [ "at", "classop_1_1_array.html#a6e0afd5f447efbfc29efbeac62716eff", null ], @@ -17,6 +19,7 @@ var classop_1_1_array = [ "getCvMat", "classop_1_1_array.html#ac817621e848601cf7d6571e75d8f6865", null ], [ "getNumberDimensions", "classop_1_1_array.html#adeb008e878709bb5a51e26be55a5452d", null ], [ "getPtr", "classop_1_1_array.html#af4715967fd2b028a97fd30257e697275", null ], + [ "getPybindPtr", "classop_1_1_array.html#af5d640c725808d858b47be62ee402187", null ], [ "getSize", "classop_1_1_array.html#a2330657a79a444d1ab44370423be006e", null ], [ "getSize", "classop_1_1_array.html#a146d6e773e14dd7aaa29a73f878358e1", null ], [ "getStride", "classop_1_1_array.html#afeacae113dd204df98b78353205c05f1", null ], diff --git a/html/functions.html b/html/functions.html index 7939859e..3bd2c97d 100644 --- a/html/functions.html +++ b/html/functions.html @@ -216,7 +216,7 @@ $(document).ready(function(){initNavTree('functions.html','');}); : op::JsonOfstream
  • at() -: op::Array< T > +: op::Array< T >
  • diff --git a/html/functions_func.html b/html/functions_func.html index c8557339..158ad6b1 100644 --- a/html/functions_func.html +++ b/html/functions_func.html @@ -179,7 +179,7 @@ $(document).ready(function(){initNavTree('functions_func.html','');}); : op::JsonOfstream
  • at() -: op::Array< T > +: op::Array< T >
  • diff --git a/html/functions_func_g.html b/html/functions_func_g.html index 65659fa2..9c015acc 100644 --- a/html/functions_func_g.html +++ b/html/functions_func_g.html @@ -346,11 +346,14 @@ $(document).ready(function(){initNavTree('functions_func_g.html','');}); : op::PersonTrackerEntry
  • getProfilingInfo() -: cl::Event +: cl::Event
  • getPtr() : op::Array< T >
  • +
  • getPybindPtr() +: op::Array< T > +
  • getRawFrame() : op::Producer , op::VideoCaptureReader @@ -377,7 +380,7 @@ $(document).ready(function(){initNavTree('functions_func_g.html','');}); : op::Array< T >
  • getStride() -: op::Array< T > +: op::Array< T >
  • getSupportedImageFormats() : cl::Context diff --git a/html/functions_g.html b/html/functions_g.html index 4cd746aa..524c100d 100644 --- a/html/functions_g.html +++ b/html/functions_g.html @@ -357,6 +357,9 @@ $(document).ready(function(){initNavTree('functions_g.html','');});
  • getPtr() : op::Array< T >
  • +
  • getPybindPtr() +: op::Array< T > +
  • getRawFrame() : op::Producer , op::VideoCaptureReader @@ -407,7 +410,7 @@ $(document).ready(function(){initNavTree('functions_g.html','');}); : op::Array< T >
  • getWorkGroupInfo() -: cl::Kernel +: cl::Kernel
  • gpuNumber : op::WrapperStructPose diff --git a/html/functions_s.html b/html/functions_s.html index b488e0ea..9c378740 100644 --- a/html/functions_s.html +++ b/html/functions_s.html @@ -384,7 +384,7 @@ $(document).ready(function(){initNavTree('functions_s.html','');}); : op::SubThreadQueueOut< TDatums, TWorker, TQueue >
  • SVMAllocator() -: cl::SVMAllocator< T, SVMTrait > +: cl::SVMAllocator< T, SVMTrait > , cl::SVMAllocator< void, SVMTrait >
  • switchFullScreenMode() diff --git a/html/globals.html b/html/globals.html index b99709ec..15d3239b 100644 --- a/html/globals.html +++ b/html/globals.html @@ -346,6 +346,15 @@ $(document).ready(function(){initNavTree('globals.html','');});
  • POSE_CAR_12_SCALES_RENDER_GPU : poseParametersRender.hpp
  • +
  • POSE_CAR_22_COLORS_RENDER_GPU +: poseParametersRender.hpp +
  • +
  • POSE_CAR_22_PAIRS_RENDER_GPU +: poseParametersRender.hpp +
  • +
  • POSE_CAR_22_SCALES_RENDER_GPU +: poseParametersRender.hpp +
  • POSE_COCO_COLORS_RENDER_GPU : poseParametersRender.hpp
  • diff --git a/html/globals_defs.html b/html/globals_defs.html index d50e1a08..1f0c4b27 100644 --- a/html/globals_defs.html +++ b/html/globals_defs.html @@ -322,6 +322,15 @@ $(document).ready(function(){initNavTree('globals_defs.html','');});
  • POSE_CAR_12_SCALES_RENDER_GPU : poseParametersRender.hpp
  • +
  • POSE_CAR_22_COLORS_RENDER_GPU +: poseParametersRender.hpp +
  • +
  • POSE_CAR_22_PAIRS_RENDER_GPU +: poseParametersRender.hpp +
  • +
  • POSE_CAR_22_SCALES_RENDER_GPU +: poseParametersRender.hpp +
  • POSE_COCO_COLORS_RENDER_GPU : poseParametersRender.hpp
  • diff --git a/html/index.html b/html/index.html index 67cd9484..567eb7bc 100644 --- a/html/index.html +++ b/html/index.html @@ -241,7 +241,7 @@ $(document).ready(function(){initNavTree('index.html','');}); year = {2016} }

    License

    -

    OpenPose is freely available for free non-commercial use, and may be redistributed under these conditions. Please, see the [license](LICENSE) for further details. Interested in a commercial license? Check this link. For commercial queries, contact Yaser Sheikh.

    +

    OpenPose is freely available for free non-commercial use, and may be redistributed under these conditions. Please, see the [license](LICENSE) for further details. Interested in a commercial license? Check this FlintBox link. For commercial queries, check the contact information provided in the FlintBox link and also cc Yaser Sheikh in that email.

    diff --git a/html/namespacemembers_c.html b/html/namespacemembers_c.html index 3c973bad..061af2e7 100644 --- a/html/namespacemembers_c.html +++ b/html/namespacemembers_c.html @@ -148,6 +148,9 @@ $(document).ready(function(){initNavTree('namespacemembers_c.html','');});
  • CAR_12 : op
  • +
  • CAR_22 +: op +
  • charRound() : op
  • @@ -188,7 +191,7 @@ $(document).ready(function(){initNavTree('namespacemembers_c.html','');}); : op
  • COMPILE_TEMPLATE_DATUM() -: op +: op
  • configureThreadManager() : op @@ -212,7 +215,7 @@ $(document).ready(function(){initNavTree('namespacemembers_c.html','');}); : op
  • copy() -: cl +: cl
  • Cpu : op diff --git a/html/namespacemembers_eval.html b/html/namespacemembers_eval.html index 02c18f2d..4796f83c 100644 --- a/html/namespacemembers_eval.html +++ b/html/namespacemembers_eval.html @@ -217,6 +217,9 @@ $(document).ready(function(){initNavTree('namespacemembers_eval.html','');});
  • CAR_12 : op
  • +
  • CAR_22 +: op +
  • COCO_18 : op
  • diff --git a/html/namespaceop.html b/html/namespaceop.html index f55404c8..ce576cb3 100644 --- a/html/namespaceop.html +++ b/html/namespaceop.html @@ -467,6 +467,7 @@ Enumerations
      PoseModel::BODY_25D, PoseModel::BODY_23, +PoseModel::CAR_22, PoseModel::Size
    } @@ -1429,6 +1430,9 @@ Variables BODY_23 

    Experimental. Do not use.

    +CAR_22  +

    Experimental. Do not use.

    + Size  diff --git a/html/navtree.js b/html/navtree.js index 302039d8..cbf92529 100644 --- a/html/navtree.js +++ b/html/navtree.js @@ -42,14 +42,14 @@ var NAVTREEINDEX = "3d_2headers_8hpp.html", "classcl_1_1_enqueue_args.html#a1ab03b76ada8edb5440ba19905848e5f", "classcl_1_1_sampler.html#ad26196f0282429667828b5b39bbc97f1", -"classop_1_1_hand_extractor_net.html#a3743bf97fd19ee7d52ffd1019baa0c46", -"classop_1_1_queue_base.html#a49c1d6740f2ce7f26eae606f109b5738", -"classop_1_1_w_heat_map_saver.html#aa651ec613c81cf9a19222428bd59feed", -"fast_math_8hpp.html#a65c35aa5a4461e819a01371f152a7407", -"gui_2enum_classes_8hpp.html#ae52707752b1872b39f0306cc4f6c6ae6a3bd9369403112127ae7db2f866002be2", -"pose_parameters_8hpp.html#ade70b024ee461ae04e7233bf3937c5c6", -"structop_1_1_point.html#ac97b928be312686c6438f0260ff4e004", -"w_pose_extractor_8hpp.html#a020603e3ad6326cb1dce43485157f768" +"classop_1_1_hand_extractor_net.html#a2638c2c03b0aed0b14114968dedd612c", +"classop_1_1_queue_base.html#a32ac0e4b14a310aee62ce817e86c0356", +"classop_1_1_w_heat_map_saver.html#a20e82b121a580c578f69cbb0401c4cb0", +"fast_math_8hpp.html", +"gui_2enum_classes_8hpp.html#ae52707752b1872b39f0306cc4f6c6ae6", +"pose_parameters_8hpp.html#aab3de911b04b96c1850cc05c6947e184", +"structop_1_1_point.html#aa902ce5b63f3cb8b8b0b04e2f40288fe", +"w_people_json_saver_8hpp.html" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/html/navtreeindex10.js b/html/navtreeindex10.js index 1e64e82c..9ee10b9e 100644 --- a/html/navtreeindex10.js +++ b/html/navtreeindex10.js @@ -1,5 +1,12 @@ var NAVTREEINDEX10 = { +"w_people_json_saver_8hpp.html":[2,0,0,0,4,19], +"w_people_json_saver_8hpp.html#a774871462f7fefb8cadea1e49f501e45":[2,0,0,0,4,19,1], +"w_people_json_saver_8hpp_source.html":[2,0,0,0,4,19], +"w_person_id_extractor_8hpp.html":[2,0,0,0,12,4], +"w_person_id_extractor_8hpp.html#a674a652ad38b355285417529fc050847":[2,0,0,0,12,4,1], +"w_person_id_extractor_8hpp_source.html":[2,0,0,0,12,4], +"w_pose_extractor_8hpp.html":[2,0,0,0,9,11], "w_pose_extractor_8hpp.html#a020603e3ad6326cb1dce43485157f768":[2,0,0,0,9,11,1], "w_pose_extractor_8hpp_source.html":[2,0,0,0,9,11], "w_pose_extractor_net_8hpp.html":[2,0,0,0,9,12], diff --git a/html/navtreeindex2.js b/html/navtreeindex2.js index 589d35c9..8e709ddc 100644 --- a/html/navtreeindex2.js +++ b/html/navtreeindex2.js @@ -51,43 +51,46 @@ var NAVTREEINDEX2 = "classcl_1_1detail_1_1_wrapper_3_01cl__device__id_01_4.html#af4d44970789f15174e584bedeb9f3f97":[1,0,2,1,14,8], "classes.html":[1,1], "classop_1_1_array.html":[1,0,3,5], -"classop_1_1_array.html#a04d04645dd2b2f21492b2ad7a5b87828":[1,0,3,5,22], -"classop_1_1_array.html#a0ad0232daa69783cf2c8f7a0ff5b3b0c":[1,0,3,5,31], -"classop_1_1_array.html#a12e538b09e98bf0900163031602ed2ed":[1,0,3,5,30], -"classop_1_1_array.html#a146d6e773e14dd7aaa29a73f878358e1":[1,0,3,5,18], -"classop_1_1_array.html#a17a44d11cf476f705ce4a5223cfb4f81":[1,0,3,5,13], -"classop_1_1_array.html#a2330657a79a444d1ab44370423be006e":[1,0,3,5,17], -"classop_1_1_array.html#a28f09d11de753a741334ee8094296acb":[1,0,3,5,35], -"classop_1_1_array.html#a337e33980c231bc207ea7d31ffa84fe3":[1,0,3,5,29], -"classop_1_1_array.html#a3f6c6f7ddeed3d1edbc907441888a8cf":[1,0,3,5,28], +"classop_1_1_array.html#a04d04645dd2b2f21492b2ad7a5b87828":[1,0,3,5,25], +"classop_1_1_array.html#a0ad0232daa69783cf2c8f7a0ff5b3b0c":[1,0,3,5,34], +"classop_1_1_array.html#a12e538b09e98bf0900163031602ed2ed":[1,0,3,5,33], +"classop_1_1_array.html#a146d6e773e14dd7aaa29a73f878358e1":[1,0,3,5,21], +"classop_1_1_array.html#a17a44d11cf476f705ce4a5223cfb4f81":[1,0,3,5,15], +"classop_1_1_array.html#a2330657a79a444d1ab44370423be006e":[1,0,3,5,20], +"classop_1_1_array.html#a28f09d11de753a741334ee8094296acb":[1,0,3,5,38], +"classop_1_1_array.html#a337e33980c231bc207ea7d31ffa84fe3":[1,0,3,5,32], +"classop_1_1_array.html#a3f6c6f7ddeed3d1edbc907441888a8cf":[1,0,3,5,31], "classop_1_1_array.html#a48c1ba1f7017b5aa8e0451079dd3a6d3":[1,0,3,5,1], -"classop_1_1_array.html#a5a68cca98a3ebaf565f1e546eebd9f01":[1,0,3,5,4], -"classop_1_1_array.html#a5cb014203b418de3996b90597df53b6e":[1,0,3,5,9], -"classop_1_1_array.html#a6bf43d039478797722cf9401ceb951e9":[1,0,3,5,34], -"classop_1_1_array.html#a6e0afd5f447efbfc29efbeac62716eff":[1,0,3,5,6], +"classop_1_1_array.html#a5a68cca98a3ebaf565f1e546eebd9f01":[1,0,3,5,6], +"classop_1_1_array.html#a5cb014203b418de3996b90597df53b6e":[1,0,3,5,11], +"classop_1_1_array.html#a6bf43d039478797722cf9401ceb951e9":[1,0,3,5,37], +"classop_1_1_array.html#a6e0afd5f447efbfc29efbeac62716eff":[1,0,3,5,8], "classop_1_1_array.html#a793b9851c7490bc98d4dd52020c0cd3c":[1,0,3,5,0], -"classop_1_1_array.html#a7a7d854d63815e10e158fe889d17a88e":[1,0,3,5,5], -"classop_1_1_array.html#a8eebb6c34642cdf19ac74c7ed38d128b":[1,0,3,5,8], +"classop_1_1_array.html#a7a7d854d63815e10e158fe889d17a88e":[1,0,3,5,7], +"classop_1_1_array.html#a8eebb6c34642cdf19ac74c7ed38d128b":[1,0,3,5,10], +"classop_1_1_array.html#a90895562def04a81db0b3e7eaa3722c7":[1,0,3,5,5], "classop_1_1_array.html#a959ede0df7e535d2d3ac40d098541c27":[1,0,3,5,3], -"classop_1_1_array.html#a95e83e3379fd43460db68c2adb61f981":[1,0,3,5,7], -"classop_1_1_array.html#a9c8e006e0eea472485f37971330ecbab":[1,0,3,5,23], -"classop_1_1_array.html#aa40dc59e800d3c4cce623d560c0e0fad":[1,0,3,5,25], -"classop_1_1_array.html#aada0f1bd6e9eb73b4f977e62da536f58":[1,0,3,5,27], -"classop_1_1_array.html#ab70165463db3e2fb3f15ad14001eb592":[1,0,3,5,12], -"classop_1_1_array.html#ac7183eb2f4e78a6941da3a2079b9ed32":[1,0,3,5,32], -"classop_1_1_array.html#ac817621e848601cf7d6571e75d8f6865":[1,0,3,5,14], +"classop_1_1_array.html#a95e83e3379fd43460db68c2adb61f981":[1,0,3,5,9], +"classop_1_1_array.html#a9c8e006e0eea472485f37971330ecbab":[1,0,3,5,26], +"classop_1_1_array.html#a9cd386050e94c29b3c4ee40cafcacc46":[1,0,3,5,4], +"classop_1_1_array.html#aa40dc59e800d3c4cce623d560c0e0fad":[1,0,3,5,28], +"classop_1_1_array.html#aada0f1bd6e9eb73b4f977e62da536f58":[1,0,3,5,30], +"classop_1_1_array.html#ab70165463db3e2fb3f15ad14001eb592":[1,0,3,5,14], +"classop_1_1_array.html#ac7183eb2f4e78a6941da3a2079b9ed32":[1,0,3,5,35], +"classop_1_1_array.html#ac817621e848601cf7d6571e75d8f6865":[1,0,3,5,16], "classop_1_1_array.html#ac833fdcb245fcc3135ce65227bb9e4b2":[1,0,3,5,2], -"classop_1_1_array.html#ad51b6ac12ed115f1056effefd6fa878b":[1,0,3,5,11], -"classop_1_1_array.html#add2eeccd967cdf0900449649cb6f5afb":[1,0,3,5,33], -"classop_1_1_array.html#adeb008e878709bb5a51e26be55a5452d":[1,0,3,5,15], -"classop_1_1_array.html#ae388368128afac05369172198911e05d":[1,0,3,5,24], -"classop_1_1_array.html#ae3ec6553128d77b0c26b848c0a0f81ca":[1,0,3,5,36], -"classop_1_1_array.html#aeccfa42607d5deb5039ff260eb980abc":[1,0,3,5,26], -"classop_1_1_array.html#af318ada5d29b0d22e6c94dc62055793b":[1,0,3,5,20], -"classop_1_1_array.html#af42f4570122d1b8259c211f52335909b":[1,0,3,5,10], -"classop_1_1_array.html#af4715967fd2b028a97fd30257e697275":[1,0,3,5,16], -"classop_1_1_array.html#afeacae113dd204df98b78353205c05f1":[1,0,3,5,19], -"classop_1_1_array.html#afee5e6149bc917586b3fd56323d20a87":[1,0,3,5,21], +"classop_1_1_array.html#ad51b6ac12ed115f1056effefd6fa878b":[1,0,3,5,13], +"classop_1_1_array.html#add2eeccd967cdf0900449649cb6f5afb":[1,0,3,5,36], +"classop_1_1_array.html#adeb008e878709bb5a51e26be55a5452d":[1,0,3,5,17], +"classop_1_1_array.html#ae388368128afac05369172198911e05d":[1,0,3,5,27], +"classop_1_1_array.html#ae3ec6553128d77b0c26b848c0a0f81ca":[1,0,3,5,39], +"classop_1_1_array.html#aeccfa42607d5deb5039ff260eb980abc":[1,0,3,5,29], +"classop_1_1_array.html#af318ada5d29b0d22e6c94dc62055793b":[1,0,3,5,23], +"classop_1_1_array.html#af42f4570122d1b8259c211f52335909b":[1,0,3,5,12], +"classop_1_1_array.html#af4715967fd2b028a97fd30257e697275":[1,0,3,5,18], +"classop_1_1_array.html#af5d640c725808d858b47be62ee402187":[1,0,3,5,19], +"classop_1_1_array.html#afeacae113dd204df98b78353205c05f1":[1,0,3,5,22], +"classop_1_1_array.html#afee5e6149bc917586b3fd56323d20a87":[1,0,3,5,24], "classop_1_1_body_part_connector_caffe.html":[1,0,3,72], "classop_1_1_body_part_connector_caffe.html#a0bad959b2da005b62cab962327ccba01":[1,0,3,72,12], "classop_1_1_body_part_connector_caffe.html#a104744fdab14d4c1335eb8778edea21e":[1,0,3,72,11], @@ -246,8 +249,5 @@ var NAVTREEINDEX2 = "classop_1_1_hand_extractor_caffe.html#add0603118d06a1dbeb5c6095e6ca77f3":[1,0,3,62,2], "classop_1_1_hand_extractor_caffe.html#aee681b43b8691ac1f07e08616522f6af":[1,0,3,62,1], "classop_1_1_hand_extractor_net.html":[1,0,3,63], -"classop_1_1_hand_extractor_net.html#a0981f4dfd15ce4a13de9d166cad9e1d4":[1,0,3,63,10], -"classop_1_1_hand_extractor_net.html#a2638c2c03b0aed0b14114968dedd612c":[1,0,3,63,2], -"classop_1_1_hand_extractor_net.html#a2a969145bac891cef2683cae440c5f79":[1,0,3,63,15], -"classop_1_1_hand_extractor_net.html#a2ee9d38650ed3138fa74fae2cad4bd77":[1,0,3,63,9] +"classop_1_1_hand_extractor_net.html#a0981f4dfd15ce4a13de9d166cad9e1d4":[1,0,3,63,10] }; diff --git a/html/navtreeindex3.js b/html/navtreeindex3.js index 8f01f209..0ade1603 100644 --- a/html/navtreeindex3.js +++ b/html/navtreeindex3.js @@ -1,5 +1,8 @@ var NAVTREEINDEX3 = { +"classop_1_1_hand_extractor_net.html#a2638c2c03b0aed0b14114968dedd612c":[1,0,3,63,2], +"classop_1_1_hand_extractor_net.html#a2a969145bac891cef2683cae440c5f79":[1,0,3,63,15], +"classop_1_1_hand_extractor_net.html#a2ee9d38650ed3138fa74fae2cad4bd77":[1,0,3,63,9], "classop_1_1_hand_extractor_net.html#a3743bf97fd19ee7d52ffd1019baa0c46":[1,0,3,63,1], "classop_1_1_hand_extractor_net.html#a37d86377da41c576c4d54027a9762733":[1,0,3,63,6], "classop_1_1_hand_extractor_net.html#a557b50d687fb9529306b33d0710a9f41":[1,0,3,63,0], @@ -246,8 +249,5 @@ var NAVTREEINDEX3 = "classop_1_1_queue_base.html#a22c5e2964e9d9c18a9f02b8d2e0f30b4":[1,0,3,99,26], "classop_1_1_queue_base.html#a247f435c95709f3246d352eee4f757af":[1,0,3,99,4], "classop_1_1_queue_base.html#a25255992523051f7d2a82694ffe7a1cf":[1,0,3,99,9], -"classop_1_1_queue_base.html#a2c7b3d0fa6502c644c3083dd68332542":[1,0,3,99,21], -"classop_1_1_queue_base.html#a32ac0e4b14a310aee62ce817e86c0356":[1,0,3,99,15], -"classop_1_1_queue_base.html#a35f0547f6020f22e49835b147b7ec52e":[1,0,3,99,19], -"classop_1_1_queue_base.html#a42a873f65588219449e21ac4927311d7":[1,0,3,99,11] +"classop_1_1_queue_base.html#a2c7b3d0fa6502c644c3083dd68332542":[1,0,3,99,21] }; diff --git a/html/navtreeindex4.js b/html/navtreeindex4.js index 58119eca..db56cbe8 100644 --- a/html/navtreeindex4.js +++ b/html/navtreeindex4.js @@ -1,5 +1,8 @@ var NAVTREEINDEX4 = { +"classop_1_1_queue_base.html#a32ac0e4b14a310aee62ce817e86c0356":[1,0,3,99,15], +"classop_1_1_queue_base.html#a35f0547f6020f22e49835b147b7ec52e":[1,0,3,99,19], +"classop_1_1_queue_base.html#a42a873f65588219449e21ac4927311d7":[1,0,3,99,11], "classop_1_1_queue_base.html#a49c1d6740f2ce7f26eae606f109b5738":[1,0,3,99,31], "classop_1_1_queue_base.html#a5b28915cc58e040aca673bdfdf7c8be3":[1,0,3,99,12], "classop_1_1_queue_base.html#a5e52b4ab7e310373e3d1f1d42cfe4549":[1,0,3,99,18], @@ -246,8 +249,5 @@ var NAVTREEINDEX4 = "classop_1_1_w_hand_saver.html#ab41ecc429abfe0a1424facd6ee4acd1f":[1,0,3,45,0], "classop_1_1_w_hand_saver.html#abf4a45c6ebe82fca1e0f0db1d3e2af79":[1,0,3,45,1], "classop_1_1_w_hand_saver.html#afc3976b394070927b9396163137317e5":[1,0,3,45,3], -"classop_1_1_w_heat_map_saver.html":[1,0,3,46], -"classop_1_1_w_heat_map_saver.html#a20e82b121a580c578f69cbb0401c4cb0":[1,0,3,46,2], -"classop_1_1_w_heat_map_saver.html#a5b72d5f3bcbdacb26ba440b80eef0109":[1,0,3,46,0], -"classop_1_1_w_heat_map_saver.html#a5fd729a47f0cdbe94001219f971f8f51":[1,0,3,46,3] +"classop_1_1_w_heat_map_saver.html":[1,0,3,46] }; diff --git a/html/navtreeindex5.js b/html/navtreeindex5.js index 94dc4aa9..6c9875b0 100644 --- a/html/navtreeindex5.js +++ b/html/navtreeindex5.js @@ -1,5 +1,8 @@ var NAVTREEINDEX5 = { +"classop_1_1_w_heat_map_saver.html#a20e82b121a580c578f69cbb0401c4cb0":[1,0,3,46,2], +"classop_1_1_w_heat_map_saver.html#a5b72d5f3bcbdacb26ba440b80eef0109":[1,0,3,46,0], +"classop_1_1_w_heat_map_saver.html#a5fd729a47f0cdbe94001219f971f8f51":[1,0,3,46,3], "classop_1_1_w_heat_map_saver.html#aa651ec613c81cf9a19222428bd59feed":[1,0,3,46,1], "classop_1_1_w_id_generator.html":[1,0,3,107], "classop_1_1_w_id_generator.html#a03bd005cf88749702fb8a29c20d4cb91":[1,0,3,107,3], @@ -246,8 +249,5 @@ var NAVTREEINDEX5 = "face_parameters_8hpp.html#abd0ef2306478c3295283e7f1b59e3aff":[2,0,0,0,3,6,12], "face_parameters_8hpp_source.html":[2,0,0,0,3,6], "face_renderer_8hpp.html":[2,0,0,0,3,7], -"face_renderer_8hpp_source.html":[2,0,0,0,3,7], -"fast_math_8hpp.html":[2,0,0,0,13,3], -"fast_math_8hpp.html#a2dafd3db8f922405b38240345dd1dce5":[2,0,0,0,13,3,3], -"fast_math_8hpp.html#a61240e5fbd4ea84a2cfdc89407bcb1ae":[2,0,0,0,13,3,8] +"face_renderer_8hpp_source.html":[2,0,0,0,3,7] }; diff --git a/html/navtreeindex6.js b/html/navtreeindex6.js index 3117676d..1025c7c2 100644 --- a/html/navtreeindex6.js +++ b/html/navtreeindex6.js @@ -1,5 +1,8 @@ var NAVTREEINDEX6 = { +"fast_math_8hpp.html":[2,0,0,0,13,3], +"fast_math_8hpp.html#a2dafd3db8f922405b38240345dd1dce5":[2,0,0,0,13,3,3], +"fast_math_8hpp.html#a61240e5fbd4ea84a2cfdc89407bcb1ae":[2,0,0,0,13,3,8], "fast_math_8hpp.html#a65c35aa5a4461e819a01371f152a7407":[2,0,0,0,13,3,7], "fast_math_8hpp.html#a6e1d1f90ef06cc7af576fdaad4b4e320":[2,0,0,0,13,3,2], "fast_math_8hpp.html#a757a5cc88734e7be9e910e7d8213c282":[2,0,0,0,13,3,10], @@ -246,8 +249,5 @@ var NAVTREEINDEX6 = "gui_2enum_classes_8hpp.html":[2,0,0,0,6,0], "gui_2enum_classes_8hpp.html#a6c22a72ce93c64e7582cb670492a50bf":[2,0,0,0,6,0,1], "gui_2enum_classes_8hpp.html#a6c22a72ce93c64e7582cb670492a50bfab13311ab51c4c34757f67f26580018dd":[2,0,0,0,6,0,1,1], -"gui_2enum_classes_8hpp.html#a6c22a72ce93c64e7582cb670492a50bfae7ec409749889353b8f83a6b04159420":[2,0,0,0,6,0,1,0], -"gui_2enum_classes_8hpp.html#ae52707752b1872b39f0306cc4f6c6ae6":[2,0,0,0,6,0,0], -"gui_2enum_classes_8hpp.html#ae52707752b1872b39f0306cc4f6c6ae6a105036ef087117869f656cd72bfd8dd6":[2,0,0,0,6,0,0,1], -"gui_2enum_classes_8hpp.html#ae52707752b1872b39f0306cc4f6c6ae6a28b652e57d2da6b7c939166be21efd9a":[2,0,0,0,6,0,0,0] +"gui_2enum_classes_8hpp.html#a6c22a72ce93c64e7582cb670492a50bfae7ec409749889353b8f83a6b04159420":[2,0,0,0,6,0,1,0] }; diff --git a/html/navtreeindex7.js b/html/navtreeindex7.js index b6d025d6..b76239d2 100644 --- a/html/navtreeindex7.js +++ b/html/navtreeindex7.js @@ -1,5 +1,8 @@ var NAVTREEINDEX7 = { +"gui_2enum_classes_8hpp.html#ae52707752b1872b39f0306cc4f6c6ae6":[2,0,0,0,6,0,0], +"gui_2enum_classes_8hpp.html#ae52707752b1872b39f0306cc4f6c6ae6a105036ef087117869f656cd72bfd8dd6":[2,0,0,0,6,0,0,1], +"gui_2enum_classes_8hpp.html#ae52707752b1872b39f0306cc4f6c6ae6a28b652e57d2da6b7c939166be21efd9a":[2,0,0,0,6,0,0,0], "gui_2enum_classes_8hpp.html#ae52707752b1872b39f0306cc4f6c6ae6a3bd9369403112127ae7db2f866002be2":[2,0,0,0,6,0,0,2], "gui_2enum_classes_8hpp.html#ae52707752b1872b39f0306cc4f6c6ae6a442304e26339521bc296bdc47ff5fddf":[2,0,0,0,6,0,0,4], "gui_2enum_classes_8hpp.html#ae52707752b1872b39f0306cc4f6c6ae6ae18221460ca8434295f980225fd6a91b":[2,0,0,0,6,0,0,3], @@ -117,8 +120,8 @@ var NAVTREEINDEX7 = "namespacemembers_enum.html":[0,1,4], "namespacemembers_eval.html":[0,1,5], "namespacemembers_f.html":[0,1,0,5], -"namespacemembers_func.html":[0,1,1,0], "namespacemembers_func.html":[0,1,1], +"namespacemembers_func.html":[0,1,1,0], "namespacemembers_func_c.html":[0,1,1,1], "namespacemembers_func_d.html":[0,1,1,2], "namespacemembers_func_e.html":[0,1,1,3], @@ -157,8 +160,8 @@ var NAVTREEINDEX7 = "namespacemembers_x.html":[0,1,0,22], "namespacemembers_y.html":[0,1,0,23], "namespacemembers_z.html":[0,1,0,24], -"namespaceop.html":[1,0,3], "namespaceop.html":[0,0,3], +"namespaceop.html":[1,0,3], "namespaceop_1_1_configure_error.html":[1,0,3,0], "namespaceop_1_1_configure_error.html":[0,0,3,0], "namespaceop_1_1_configure_log.html":[1,0,3,1], @@ -209,10 +212,11 @@ var NAVTREEINDEX7 = "pose_2enum_classes_8hpp.html#af5b3ce2a5d3de87cb31b9b67e96f261f":[2,0,0,0,9,0,0], "pose_2enum_classes_8hpp.html#af5b3ce2a5d3de87cb31b9b67e96f261fa003cc3795b0eeed2af2dfd34ed482794":[2,0,0,0,9,0,0,13], "pose_2enum_classes_8hpp.html#af5b3ce2a5d3de87cb31b9b67e96f261fa0c4a19d9254adcb3ca1f0f527ee141fd":[2,0,0,0,9,0,0,1], +"pose_2enum_classes_8hpp.html#af5b3ce2a5d3de87cb31b9b67e96f261fa372b9885bba8bc32ad323fffcf99e39e":[2,0,0,0,9,0,0,14], "pose_2enum_classes_8hpp.html#af5b3ce2a5d3de87cb31b9b67e96f261fa529c87ac399e5fd6f0fa4a360c032568":[2,0,0,0,9,0,0,12], "pose_2enum_classes_8hpp.html#af5b3ce2a5d3de87cb31b9b67e96f261fa66ae79a5ac5fa502ae8bbecd3e07e71c":[2,0,0,0,9,0,0,11], "pose_2enum_classes_8hpp.html#af5b3ce2a5d3de87cb31b9b67e96f261fa68aa8b41e419d187d9f7daff5d65708f":[2,0,0,0,9,0,0,6], -"pose_2enum_classes_8hpp.html#af5b3ce2a5d3de87cb31b9b67e96f261fa6f6cb72d544962fa333e2e34ce64f719":[2,0,0,0,9,0,0,14], +"pose_2enum_classes_8hpp.html#af5b3ce2a5d3de87cb31b9b67e96f261fa6f6cb72d544962fa333e2e34ce64f719":[2,0,0,0,9,0,0,15], "pose_2enum_classes_8hpp.html#af5b3ce2a5d3de87cb31b9b67e96f261fa70cbb3c96651173a004502efc5aef942":[2,0,0,0,9,0,0,9], "pose_2enum_classes_8hpp.html#af5b3ce2a5d3de87cb31b9b67e96f261fa71e915c88449606c6498d33dd7c98e84":[2,0,0,0,9,0,0,3], "pose_2enum_classes_8hpp.html#af5b3ce2a5d3de87cb31b9b67e96f261fa9a87ca5ab7b20c2bd4f8d5379956e6f6":[2,0,0,0,9,0,0,0], @@ -245,9 +249,5 @@ var NAVTREEINDEX7 = "pose_parameters_8hpp.html#a59616e83eefc182f8eb6ae51d6425938":[2,0,0,0,9,7,15], "pose_parameters_8hpp.html#a692472b562fba051964f9ddea07b97d7":[2,0,0,0,9,7,2], "pose_parameters_8hpp.html#a84d87ec0e4ed3cf75a37ce99d0d25ef7":[2,0,0,0,9,7,6], -"pose_parameters_8hpp.html#aa170c3107396e4d0e4214bb0c1b78f08":[2,0,0,0,9,7,5], -"pose_parameters_8hpp.html#aab3de911b04b96c1850cc05c6947e184":[2,0,0,0,9,7,0], -"pose_parameters_8hpp.html#aacf6e688031bb116e4878b811e8dbc23":[2,0,0,0,9,7,14], -"pose_parameters_8hpp.html#ab48e314ecd19f55f664b14da1d83312f":[2,0,0,0,9,7,7], -"pose_parameters_8hpp.html#ad7ca8d89f9045481075902c8bd98b8f4":[2,0,0,0,9,7,8] +"pose_parameters_8hpp.html#aa170c3107396e4d0e4214bb0c1b78f08":[2,0,0,0,9,7,5] }; diff --git a/html/navtreeindex8.js b/html/navtreeindex8.js index 993b3a63..e9ef04f9 100644 --- a/html/navtreeindex8.js +++ b/html/navtreeindex8.js @@ -1,40 +1,47 @@ var NAVTREEINDEX8 = { +"pose_parameters_8hpp.html#aab3de911b04b96c1850cc05c6947e184":[2,0,0,0,9,7,0], +"pose_parameters_8hpp.html#aacf6e688031bb116e4878b811e8dbc23":[2,0,0,0,9,7,14], +"pose_parameters_8hpp.html#ab48e314ecd19f55f664b14da1d83312f":[2,0,0,0,9,7,7], +"pose_parameters_8hpp.html#ad7ca8d89f9045481075902c8bd98b8f4":[2,0,0,0,9,7,8], "pose_parameters_8hpp.html#ade70b024ee461ae04e7233bf3937c5c6":[2,0,0,0,9,7,12], "pose_parameters_8hpp.html#ae0730c6559abdb976423ecf81eac4620":[2,0,0,0,9,7,11], "pose_parameters_8hpp.html#af1ed202254520cd489723052d1f5a86d":[2,0,0,0,9,7,4], "pose_parameters_8hpp_source.html":[2,0,0,0,9,7], "pose_parameters_render_8hpp.html":[2,0,0,0,9,8], -"pose_parameters_render_8hpp.html#a016abefba53293ed2ffe3a3c3bd88dd0":[2,0,0,0,9,8,27], -"pose_parameters_render_8hpp.html#a11bd7e53698eabe32b69b48708cf7b19":[2,0,0,0,9,8,25], +"pose_parameters_render_8hpp.html#a0065da73d9e649360d458fc670ee0f95":[2,0,0,0,9,8,19], +"pose_parameters_render_8hpp.html#a016abefba53293ed2ffe3a3c3bd88dd0":[2,0,0,0,9,8,30], +"pose_parameters_render_8hpp.html#a0afb6a9782a4ad8bd3ac41bd2436fefc":[2,0,0,0,9,8,20], +"pose_parameters_render_8hpp.html#a11bd7e53698eabe32b69b48708cf7b19":[2,0,0,0,9,8,28], "pose_parameters_render_8hpp.html#a17cec2005928720d6da0e83ba26cca01":[2,0,0,0,9,8,0], "pose_parameters_render_8hpp.html#a216b861af0ff0c237be529dc204ed05e":[2,0,0,0,9,8,7], -"pose_parameters_render_8hpp.html#a21fcb98366f6ea8895fc7f527f232db5":[2,0,0,0,9,8,29], +"pose_parameters_render_8hpp.html#a21fcb98366f6ea8895fc7f527f232db5":[2,0,0,0,9,8,32], "pose_parameters_render_8hpp.html#a253206407787fc26629e6e46f60d7be2":[2,0,0,0,9,8,16], "pose_parameters_render_8hpp.html#a28c039598f94c77f8f977c862d6df856":[2,0,0,0,9,8,10], -"pose_parameters_render_8hpp.html#a32e98c9dd9e6f38c597c7924582570d0":[2,0,0,0,9,8,23], +"pose_parameters_render_8hpp.html#a32e98c9dd9e6f38c597c7924582570d0":[2,0,0,0,9,8,26], "pose_parameters_render_8hpp.html#a34637840213b1396ad021a2e21320b5a":[2,0,0,0,9,8,13], "pose_parameters_render_8hpp.html#a456b8ce498f455af926215d91f6b6087":[2,0,0,0,9,8,6], "pose_parameters_render_8hpp.html#a497bfbf7fddb6e960565ec70bb6b2ad1":[2,0,0,0,9,8,1], -"pose_parameters_render_8hpp.html#a5afab27fbbebc71b8753a20dd6c9a322":[2,0,0,0,9,8,19], +"pose_parameters_render_8hpp.html#a5afab27fbbebc71b8753a20dd6c9a322":[2,0,0,0,9,8,22], "pose_parameters_render_8hpp.html#a5f3db3bbb18fe8d978661f3c5417c110":[2,0,0,0,9,8,4], "pose_parameters_render_8hpp.html#a6be8d3dedaf015f795625d1df19876aa":[2,0,0,0,9,8,15], "pose_parameters_render_8hpp.html#a6f6e1ac673349dd346b77983de0072cc":[2,0,0,0,9,8,12], "pose_parameters_render_8hpp.html#a7382830f0c24beaea601444cb5962f06":[2,0,0,0,9,8,17], "pose_parameters_render_8hpp.html#a791ed14d0f2a65f850c94154b996826c":[2,0,0,0,9,8,2], -"pose_parameters_render_8hpp.html#a7987426d997b6b040302d25fd07403ac":[2,0,0,0,9,8,22], -"pose_parameters_render_8hpp.html#a7fdd75b1478d65f11ebc77144662958c":[2,0,0,0,9,8,21], -"pose_parameters_render_8hpp.html#a8b293ab02337be3f90218c5b824ece06":[2,0,0,0,9,8,18], -"pose_parameters_render_8hpp.html#a8cd3d34880f73dc73b2feb28370e86ec":[2,0,0,0,9,8,20], +"pose_parameters_render_8hpp.html#a7987426d997b6b040302d25fd07403ac":[2,0,0,0,9,8,25], +"pose_parameters_render_8hpp.html#a7fdd75b1478d65f11ebc77144662958c":[2,0,0,0,9,8,24], +"pose_parameters_render_8hpp.html#a8b293ab02337be3f90218c5b824ece06":[2,0,0,0,9,8,21], +"pose_parameters_render_8hpp.html#a8cd3d34880f73dc73b2feb28370e86ec":[2,0,0,0,9,8,23], "pose_parameters_render_8hpp.html#aa257db7f46ddaa7fe838f659b8e5ed66":[2,0,0,0,9,8,5], +"pose_parameters_render_8hpp.html#aaecdba75da05e8bfc90e4393c88ab6e6":[2,0,0,0,9,8,18], "pose_parameters_render_8hpp.html#ab5e61b3d6ac3e12ad87cc78689516bc9":[2,0,0,0,9,8,11], -"pose_parameters_render_8hpp.html#abb49286241ba7a1d754b31dee333274a":[2,0,0,0,9,8,26], +"pose_parameters_render_8hpp.html#abb49286241ba7a1d754b31dee333274a":[2,0,0,0,9,8,29], "pose_parameters_render_8hpp.html#abcf4268a8395cd7d537e41327bd121d9":[2,0,0,0,9,8,9], "pose_parameters_render_8hpp.html#acd8e0edca2b6e048332a9a807e38f606":[2,0,0,0,9,8,14], "pose_parameters_render_8hpp.html#ae30e7b56c09200d60f05acba38a8bf05":[2,0,0,0,9,8,8], "pose_parameters_render_8hpp.html#aeb1e2dd8178c15024e372185e2e5cf54":[2,0,0,0,9,8,3], -"pose_parameters_render_8hpp.html#aebff78a4cfbef1cf1b2e03066d88564c":[2,0,0,0,9,8,24], -"pose_parameters_render_8hpp.html#af45cddacd69fff73a4ea4acbbbac43e0":[2,0,0,0,9,8,28], +"pose_parameters_render_8hpp.html#aebff78a4cfbef1cf1b2e03066d88564c":[2,0,0,0,9,8,27], +"pose_parameters_render_8hpp.html#af45cddacd69fff73a4ea4acbbbac43e0":[2,0,0,0,9,8,31], "pose_parameters_render_8hpp_source.html":[2,0,0,0,9,8], "pose_renderer_8hpp.html":[2,0,0,0,9,9], "pose_renderer_8hpp_source.html":[2,0,0,0,9,9], @@ -242,12 +249,5 @@ var NAVTREEINDEX8 = "structop_1_1_point.html#a9759f95e852025014cb071aefb242cef":[1,0,3,13,5], "structop_1_1_point.html#a9f80114d18ec8055360222d975bcd5a8":[1,0,3,13,0], "structop_1_1_point.html#aa389e5c56126074997b4a6fb1a471b45":[1,0,3,13,12], -"structop_1_1_point.html#aa50152ec0736b622c159eb0ec8f7ad2b":[1,0,3,13,8], -"structop_1_1_point.html#aa902ce5b63f3cb8b8b0b04e2f40288fe":[1,0,3,13,15], -"structop_1_1_point.html#aabc0dee51a101fefbf1fdcd56f54b48c":[1,0,3,13,11], -"structop_1_1_point.html#aada0e9eecee2fb30fb903b32f9f33047":[1,0,3,13,19], -"structop_1_1_point.html#ab3b92e4a40cd58d948647484f21dd9ef":[1,0,3,13,2], -"structop_1_1_point.html#aba8ffdc78fdec7d45222f640eb130874":[1,0,3,13,3], -"structop_1_1_point.html#abf2bb2d2d5b3dba3424b489b99faa760":[1,0,3,13,14], -"structop_1_1_point.html#ac8596f2b3b50464b6c6eaa34b0a2c48b":[1,0,3,13,20] +"structop_1_1_point.html#aa50152ec0736b622c159eb0ec8f7ad2b":[1,0,3,13,8] }; diff --git a/html/navtreeindex9.js b/html/navtreeindex9.js index 4d02efd1..94eac915 100644 --- a/html/navtreeindex9.js +++ b/html/navtreeindex9.js @@ -1,5 +1,12 @@ var NAVTREEINDEX9 = { +"structop_1_1_point.html#aa902ce5b63f3cb8b8b0b04e2f40288fe":[1,0,3,13,15], +"structop_1_1_point.html#aabc0dee51a101fefbf1fdcd56f54b48c":[1,0,3,13,11], +"structop_1_1_point.html#aada0e9eecee2fb30fb903b32f9f33047":[1,0,3,13,19], +"structop_1_1_point.html#ab3b92e4a40cd58d948647484f21dd9ef":[1,0,3,13,2], +"structop_1_1_point.html#aba8ffdc78fdec7d45222f640eb130874":[1,0,3,13,3], +"structop_1_1_point.html#abf2bb2d2d5b3dba3424b489b99faa760":[1,0,3,13,14], +"structop_1_1_point.html#ac8596f2b3b50464b6c6eaa34b0a2c48b":[1,0,3,13,20], "structop_1_1_point.html#ac97b928be312686c6438f0260ff4e004":[1,0,3,13,18], "structop_1_1_point.html#ad1bbf8b8bb32aedc9e6dbab99c82e1e9":[1,0,3,13,22], "structop_1_1_point.html#ad42deecd0077f7c962ca383cbc87e08f":[1,0,3,13,13], @@ -242,12 +249,5 @@ var NAVTREEINDEX9 = "w_keypoint_scaler_8hpp_source.html":[2,0,0,0,2,19], "w_op_output_to_cv_mat_8hpp.html":[2,0,0,0,2,20], "w_op_output_to_cv_mat_8hpp.html#a1d9f50688522ed7368acc33a09ae9ece":[2,0,0,0,2,20,1], -"w_op_output_to_cv_mat_8hpp_source.html":[2,0,0,0,2,20], -"w_people_json_saver_8hpp.html":[2,0,0,0,4,19], -"w_people_json_saver_8hpp.html#a774871462f7fefb8cadea1e49f501e45":[2,0,0,0,4,19,1], -"w_people_json_saver_8hpp_source.html":[2,0,0,0,4,19], -"w_person_id_extractor_8hpp.html":[2,0,0,0,12,4], -"w_person_id_extractor_8hpp.html#a674a652ad38b355285417529fc050847":[2,0,0,0,12,4,1], -"w_person_id_extractor_8hpp_source.html":[2,0,0,0,12,4], -"w_pose_extractor_8hpp.html":[2,0,0,0,9,11] +"w_op_output_to_cv_mat_8hpp_source.html":[2,0,0,0,2,20] }; diff --git a/html/pose_2enum_classes_8hpp.html b/html/pose_2enum_classes_8hpp.html index e8f9d1fd..823264f8 100644 --- a/html/pose_2enum_classes_8hpp.html +++ b/html/pose_2enum_classes_8hpp.html @@ -138,6 +138,7 @@ Enumerations
      op::PoseModel::BODY_25D, op::PoseModel::BODY_23, +op::PoseModel::CAR_22, op::PoseModel::Size
    } diff --git a/html/pose_2enum_classes_8hpp.js b/html/pose_2enum_classes_8hpp.js index f1dad939..bfb2fd0c 100644 --- a/html/pose_2enum_classes_8hpp.js +++ b/html/pose_2enum_classes_8hpp.js @@ -15,6 +15,7 @@ var pose_2enum_classes_8hpp = [ "CAR_12", "pose_2enum_classes_8hpp.html#af5b3ce2a5d3de87cb31b9b67e96f261fa66ae79a5ac5fa502ae8bbecd3e07e71c", null ], [ "BODY_25D", "pose_2enum_classes_8hpp.html#af5b3ce2a5d3de87cb31b9b67e96f261fa529c87ac399e5fd6f0fa4a360c032568", null ], [ "BODY_23", "pose_2enum_classes_8hpp.html#af5b3ce2a5d3de87cb31b9b67e96f261fa003cc3795b0eeed2af2dfd34ed482794", null ], + [ "CAR_22", "pose_2enum_classes_8hpp.html#af5b3ce2a5d3de87cb31b9b67e96f261fa372b9885bba8bc32ad323fffcf99e39e", null ], [ "Size", "pose_2enum_classes_8hpp.html#af5b3ce2a5d3de87cb31b9b67e96f261fa6f6cb72d544962fa333e2e34ce64f719", null ] ] ], [ "PoseProperty", "pose_2enum_classes_8hpp.html#a37c58b781e5bcd9fee67a7768afc5d0e", [ diff --git a/html/pose_2enum_classes_8hpp_source.html b/html/pose_2enum_classes_8hpp_source.html index dcfd7d9d..9832771f 100644 --- a/html/pose_2enum_classes_8hpp_source.html +++ b/html/pose_2enum_classes_8hpp_source.html @@ -128,21 +128,22 @@ $(document).ready(function(){initNavTree('pose_2enum_classes_8hpp_source.html','
    25  CAR_12,
    26  BODY_25D,
    27  BODY_23,
    -
    28  Size,
    -
    29  };
    -
    30 
    -
    31  enum class PoseProperty : unsigned char
    -
    32  {
    -
    33  NMSThreshold = 0,
    -
    34  ConnectInterMinAboveThreshold,
    -
    35  ConnectInterThreshold,
    -
    36  ConnectMinSubsetCnt,
    -
    37  ConnectMinSubsetScore,
    -
    38  Size,
    -
    39  };
    -
    40 }
    -
    41 
    -
    42 #endif // OPENPOSE_POSE_ENUM_CLASSES_HPP
    +
    28  CAR_22,
    +
    29  Size,
    +
    30  };
    +
    31 
    +
    32  enum class PoseProperty : unsigned char
    +
    33  {
    +
    34  NMSThreshold = 0,
    +
    35  ConnectInterMinAboveThreshold,
    +
    36  ConnectInterThreshold,
    +
    37  ConnectMinSubsetCnt,
    +
    38  ConnectMinSubsetScore,
    +
    39  Size,
    +
    40  };
    +
    41 }
    +
    42 
    +
    43 #endif // OPENPOSE_POSE_ENUM_CLASSES_HPP
    op::PoseModel::MPI_15_4
    op::PoseModel
    PoseModel
    Definition: enumClasses.hpp:9
    op::PoseModel::BODY_25D
    @@ -151,8 +152,9 @@ $(document).ready(function(){initNavTree('pose_2enum_classes_8hpp_source.html','
    op::PoseProperty::Size
    op::PoseModel::BODY_65
    op::PoseModel::COCO_18
    -
    op::PoseProperty
    PoseProperty
    Definition: enumClasses.hpp:31
    +
    op::PoseProperty
    PoseProperty
    Definition: enumClasses.hpp:32
    op::PoseModel::BODY_19_X2
    +
    op::PoseModel::CAR_22
    op::PoseModel::MPI_15
    op::PoseModel::BODY_19N
    op::PoseProperty::ConnectInterMinAboveThreshold
    diff --git a/html/pose_extractor_net_8hpp_source.html b/html/pose_extractor_net_8hpp_source.html index 11c7d20b..2549ad33 100644 --- a/html/pose_extractor_net_8hpp_source.html +++ b/html/pose_extractor_net_8hpp_source.html @@ -197,7 +197,7 @@ $(document).ready(function(){initNavTree('pose_extractor_net_8hpp_source.html','
    common.hpp
    op::ScaleMode::ZeroToOne
    op::PoseExtractorNet::mPoseModel
    const PoseModel mPoseModel
    Definition: poseExtractorNet.hpp:57
    -
    op::PoseProperty
    PoseProperty
    Definition: enumClasses.hpp:31
    +
    op::PoseProperty
    PoseProperty
    Definition: enumClasses.hpp:32
    op::ScaleMode
    ScaleMode
    Definition: enumClasses.hpp:6
    op::Array< float >
    cl::vector
    std::vector< T, Alloc > vector
    Definition: cl2.hpp:567
    diff --git a/html/pose_parameters_render_8hpp.html b/html/pose_parameters_render_8hpp.html index fd5a1e30..513c99f0 100644 --- a/html/pose_parameters_render_8hpp.html +++ b/html/pose_parameters_render_8hpp.html @@ -172,6 +172,12 @@ Macros   #define POSE_CAR_12_COLORS_RENDER_GPU   +#define POSE_CAR_22_PAIRS_RENDER_GPU +  +#define POSE_CAR_22_SCALES_RENDER_GPU   0.625 +  +#define POSE_CAR_22_COLORS_RENDER_GPU +  @@ -502,6 +508,74 @@ Variables

    Functions

    +
    + + +
    +
    + + + + +
    #define POSE_CAR_22_COLORS_RENDER_GPU
    +
    +Value:
    255.f, 128.f, 128.f, \
    +
    255.f, 0.f, 0.f, \
    +
    64.f, 0.f, 0.f, \
    +
    255.f, 0.f, 0.f, \
    +
    \
    +
    0.f, 255.f, 0.f, \
    +
    0.f, 255.f, 0.f, \
    +
    \
    +
    0.f, 0.f, 64.f, \
    +
    128.f, 128.f, 255.f, \
    +
    \
    +
    0.f, 255.f, 0.f, \
    +
    0.f, 255.f, 0.f, \
    +
    \
    +
    0.f, 255.f, 0.f, \
    +
    0.f, 255.f, 0.f, \
    +
    \
    +
    64.f, 0.f, 0.f, \
    +
    255.f, 128.f, 128.f, \
    +
    255.f, 0.f, 0.f, \
    +
    255.f, 0.f, 0.f, \
    +
    \
    +
    0.f, 0.f, 255.f, \
    +
    0.f, 0.f, 255.f, \
    +
    \
    +
    0.f, 255.f, 0.f, \
    +
    0.f, 255.f, 0.f, \
    +
    \
    +
    0.f, 0.f, 255.f, \
    +
    0.f, 0.f, 64.f
    +
    +
    +
    + +
    +
    + + + + +
    #define POSE_CAR_22_PAIRS_RENDER_GPU
    +
    +Value:
    0,1,1,3,3,2,2,0, 6,7,7,16,16,17,17,6, 12,13,13,14,14,15,15,12, 6,8,7,8,6,9,7,9,6,4,7,5, 12,11,13,10, \
    +
    16,18,17,18,16,19,17,19, 6,21,7,20
    +
    +
    +
    + +
    +
    + + + + +
    #define POSE_CAR_22_SCALES_RENDER_GPU   0.625
    +
    +
    diff --git a/html/pose_parameters_render_8hpp.js b/html/pose_parameters_render_8hpp.js index 540cd718..103fb745 100644 --- a/html/pose_parameters_render_8hpp.js +++ b/html/pose_parameters_render_8hpp.js @@ -18,6 +18,9 @@ var pose_parameters_render_8hpp = [ "POSE_CAR_12_COLORS_RENDER_GPU", "pose_parameters_render_8hpp.html#a6be8d3dedaf015f795625d1df19876aa", null ], [ "POSE_CAR_12_PAIRS_RENDER_GPU", "pose_parameters_render_8hpp.html#a253206407787fc26629e6e46f60d7be2", null ], [ "POSE_CAR_12_SCALES_RENDER_GPU", "pose_parameters_render_8hpp.html#a7382830f0c24beaea601444cb5962f06", null ], + [ "POSE_CAR_22_COLORS_RENDER_GPU", "pose_parameters_render_8hpp.html#aaecdba75da05e8bfc90e4393c88ab6e6", null ], + [ "POSE_CAR_22_PAIRS_RENDER_GPU", "pose_parameters_render_8hpp.html#a0065da73d9e649360d458fc670ee0f95", null ], + [ "POSE_CAR_22_SCALES_RENDER_GPU", "pose_parameters_render_8hpp.html#a0afb6a9782a4ad8bd3ac41bd2436fefc", null ], [ "POSE_COCO_COLORS_RENDER_GPU", "pose_parameters_render_8hpp.html#a8b293ab02337be3f90218c5b824ece06", null ], [ "POSE_COCO_PAIRS_RENDER_GPU", "pose_parameters_render_8hpp.html#a5afab27fbbebc71b8753a20dd6c9a322", null ], [ "POSE_COCO_SCALES_RENDER_GPU", "pose_parameters_render_8hpp.html#a8cd3d34880f73dc73b2feb28370e86ec", null ], diff --git a/html/pose_parameters_render_8hpp_source.html b/html/pose_parameters_render_8hpp_source.html index 044a2872..ebb1a065 100644 --- a/html/pose_parameters_render_8hpp_source.html +++ b/html/pose_parameters_render_8hpp_source.html @@ -431,14 +431,51 @@ $(document).ready(function(){initNavTree('pose_parameters_render_8hpp_source.htm
    322  255.f, 0.f, 255.f, \
    323  255.f, 0.f, 255.f
    324 
    -
    325  // Rendering functions
    -
    326  OP_API const std::vector<float>& getPoseScales(const PoseModel poseModel);
    -
    327  OP_API const std::vector<float>& getPoseColors(const PoseModel poseModel);
    -
    328  OP_API const std::vector<unsigned int>& getPoseBodyPartPairsRender(const PoseModel poseModel);
    -
    329  OP_API unsigned int getNumberElementsToRender(const PoseModel poseModel);
    -
    330 }
    -
    331 
    -
    332 #endif // OPENPOSE_POSE_POSE_PARAMETERS_RENDER_HPP
    +
    325  // CAR_22
    +
    326  #define POSE_CAR_22_PAIRS_RENDER_GPU \
    +
    327  0,1,1,3,3,2,2,0, 6,7,7,16,16,17,17,6, 12,13,13,14,14,15,15,12, 6,8,7,8,6,9,7,9,6,4,7,5, 12,11,13,10, \
    +
    328  16,18,17,18,16,19,17,19, 6,21,7,20
    +
    329  #define POSE_CAR_22_SCALES_RENDER_GPU 0.625
    +
    330  #define POSE_CAR_22_COLORS_RENDER_GPU \
    +
    331  255.f, 128.f, 128.f, \
    +
    332  255.f, 0.f, 0.f, \
    +
    333  64.f, 0.f, 0.f, \
    +
    334  255.f, 0.f, 0.f, \
    +
    335  \
    +
    336  0.f, 255.f, 0.f, \
    +
    337  0.f, 255.f, 0.f, \
    +
    338  \
    +
    339  0.f, 0.f, 64.f, \
    +
    340  128.f, 128.f, 255.f, \
    +
    341  \
    +
    342  0.f, 255.f, 0.f, \
    +
    343  0.f, 255.f, 0.f, \
    +
    344  \
    +
    345  0.f, 255.f, 0.f, \
    +
    346  0.f, 255.f, 0.f, \
    +
    347  \
    +
    348  64.f, 0.f, 0.f, \
    +
    349  255.f, 128.f, 128.f, \
    +
    350  255.f, 0.f, 0.f, \
    +
    351  255.f, 0.f, 0.f, \
    +
    352  \
    +
    353  0.f, 0.f, 255.f, \
    +
    354  0.f, 0.f, 255.f, \
    +
    355  \
    +
    356  0.f, 255.f, 0.f, \
    +
    357  0.f, 255.f, 0.f, \
    +
    358  \
    +
    359  0.f, 0.f, 255.f, \
    +
    360  0.f, 0.f, 64.f
    +
    361 
    +
    362  // Rendering functions
    +
    363  OP_API const std::vector<float>& getPoseScales(const PoseModel poseModel);
    +
    364  OP_API const std::vector<float>& getPoseColors(const PoseModel poseModel);
    +
    365  OP_API const std::vector<unsigned int>& getPoseBodyPartPairsRender(const PoseModel poseModel);
    +
    366  OP_API unsigned int getNumberElementsToRender(const PoseModel poseModel);
    +
    367 }
    +
    368 
    +
    369 #endif // OPENPOSE_POSE_POSE_PARAMETERS_RENDER_HPP
    enumClasses.hpp
    op::getPoseBodyPartPairsRender
    OP_API const std::vector< unsigned int > & getPoseBodyPartPairsRender(const PoseModel poseModel)
    op::getNumberElementsToRender
    OP_API unsigned int getNumberElementsToRender(const PoseModel poseModel)
    diff --git a/html/search/all_0.js b/html/search/all_0.js index cb4cc210..0de7f2b0 100644 --- a/html/search/all_0.js +++ b/html/search/all_0.js @@ -23,7 +23,7 @@ var searchData= ['arg0_5f',['arg0_',['../structcl_1_1detail_1_1_get_info_functor0.html#a605bdef653bbdc6f4a05394b17f18704',1,'cl::detail::GetInfoFunctor0::arg0_()'],['../structcl_1_1detail_1_1_get_info_functor1.html#a27ebe3bdb4a032c5304f4fda99e32704',1,'cl::detail::GetInfoFunctor1::arg0_()']]], ['arg1_5f',['arg1_',['../structcl_1_1detail_1_1_get_info_functor1.html#a6b7246c928c1ec4950b748173a67aba4',1,'cl::detail::GetInfoFunctor1']]], ['array',['Array',['../classop_1_1_array.html',1,'op']]], - ['array',['Array',['../classop_1_1_array.html#a793b9851c7490bc98d4dd52020c0cd3c',1,'op::Array::Array(const int size)'],['../classop_1_1_array.html#a48c1ba1f7017b5aa8e0451079dd3a6d3',1,'op::Array::Array(const std::vector< int > &sizes={})'],['../classop_1_1_array.html#ac833fdcb245fcc3135ce65227bb9e4b2',1,'op::Array::Array(const int size, const T value)'],['../classop_1_1_array.html#a959ede0df7e535d2d3ac40d098541c27',1,'op::Array::Array(const std::vector< int > &sizes, const T value)'],['../classop_1_1_array.html#a5a68cca98a3ebaf565f1e546eebd9f01',1,'op::Array::Array(const Array< T > &array)'],['../classop_1_1_array.html#a7a7d854d63815e10e158fe889d17a88e',1,'op::Array::Array(Array< T > &&array)'],['../namespacecl.html#a8856ce875094624efdce0a49496d695e',1,'cl::array()']]], + ['array',['Array',['../classop_1_1_array.html#a793b9851c7490bc98d4dd52020c0cd3c',1,'op::Array::Array(const int size)'],['../classop_1_1_array.html#a48c1ba1f7017b5aa8e0451079dd3a6d3',1,'op::Array::Array(const std::vector< int > &sizes={})'],['../classop_1_1_array.html#ac833fdcb245fcc3135ce65227bb9e4b2',1,'op::Array::Array(const int size, const T value)'],['../classop_1_1_array.html#a959ede0df7e535d2d3ac40d098541c27',1,'op::Array::Array(const std::vector< int > &sizes, const T value)'],['../classop_1_1_array.html#a9cd386050e94c29b3c4ee40cafcacc46',1,'op::Array::Array(const int size, T *const dataPtr)'],['../classop_1_1_array.html#a90895562def04a81db0b3e7eaa3722c7',1,'op::Array::Array(const std::vector< int > &sizes, T *const dataPtr)'],['../classop_1_1_array.html#a5a68cca98a3ebaf565f1e546eebd9f01',1,'op::Array::Array(const Array< T > &array)'],['../classop_1_1_array.html#a7a7d854d63815e10e158fe889d17a88e',1,'op::Array::Array(Array< T > &&array)'],['../namespacecl.html#a8856ce875094624efdce0a49496d695e',1,'cl::array()']]], ['array_2ehpp',['array.hpp',['../array_8hpp.html',1,'']]], ['array_3c_20float_20_3e',['Array< float >',['../classop_1_1_array.html',1,'op']]], ['array_3c_20long_20long_20_3e',['Array< long long >',['../classop_1_1_array.html',1,'op']]], diff --git a/html/search/all_12.js b/html/search/all_12.js index 140e8e8f..f4204038 100644 --- a/html/search/all_12.js +++ b/html/search/all_12.js @@ -62,7 +62,7 @@ var searchData= ['setto',['setTo',['../classop_1_1_array.html#a28f09d11de753a741334ee8094296acb',1,'op::Array']]], ['setworker',['setWorker',['../classop_1_1_wrapper_t.html#a81fc761f8616b44c40d8f0b5338d754d',1,'op::WrapperT']]], ['shared_5fptr',['shared_ptr',['../classboost_1_1shared__ptr.html',1,'boost']]], - ['size',['size',['../classcl_1_1_n_d_range.html#a31018e7478f8ce3a129dee14abf53719',1,'cl::NDRange::size()'],['../structcl_1_1detail_1_1_kernel_argument_handler_3_01_t_00_01typename_01std_1_1enable__if_3_9std_10affa824618af864313998f2e6bcf08f.html#ab26d77fd61e872fcf0bc9345dcb0192c',1,'cl::detail::KernelArgumentHandler< T, typename std::enable_if<!std::is_base_of< cl::Memory, T >::value >::type >::size()'],['../structcl_1_1detail_1_1_kernel_argument_handler_3_01_t_00_01typename_01std_1_1enable__if_3_01std_cb5bfaca8096193f715a7bbe8a3fa84f.html#aab115c561c430a368dcf3fab65debf42',1,'cl::detail::KernelArgumentHandler< T, typename std::enable_if< std::is_base_of< cl::Memory, T >::value >::type >::size()'],['../structcl_1_1detail_1_1_kernel_argument_handler_3_01_local_space_arg_00_01void_01_4.html#adcc5bbbbc8975491e859042d6764372c',1,'cl::detail::KernelArgumentHandler< LocalSpaceArg, void >::size()'],['../structcl_1_1detail_1_1_kernel_argument_handler_3_01cl_1_1_device_command_queue_00_01void_01_4.html#aaca22313c85e1f71a41f5695c21aeea0',1,'cl::detail::KernelArgumentHandler< cl::DeviceCommandQueue, void >::size()'],['../classop_1_1_queue_base.html#a12cdec56bfe72e722ecc722774989d1b',1,'op::QueueBase::size()'],['../classop_1_1_hand_detector.html#a4d058446e66aff15d8702558fd256b73a6f6cb72d544962fa333e2e34ce64f719',1,'op::HandDetector::Size()'],['../namespaceop.html#adbb34b5c8f2b6f0c051f831f18582e7fa6f6cb72d544962fa333e2e34ce64f719',1,'op::Size()'],['../namespaceop.html#af5b3ce2a5d3de87cb31b9b67e96f261fa6f6cb72d544962fa333e2e34ce64f719',1,'op::Size()'],['../namespaceop.html#a37c58b781e5bcd9fee67a7768afc5d0ea6f6cb72d544962fa333e2e34ce64f719',1,'op::Size()'],['../namespaceop.html#abc501c56c6cf6cf1989c84b1692cb774a6f6cb72d544962fa333e2e34ce64f719',1,'op::Size()'],['../namespaceop.html#a970a2a768a2ace81605b1558c9fdec18a6f6cb72d544962fa333e2e34ce64f719',1,'op::Size()']]], + ['size',['Size',['../classop_1_1_hand_detector.html#a4d058446e66aff15d8702558fd256b73a6f6cb72d544962fa333e2e34ce64f719',1,'op::HandDetector::Size()'],['../classcl_1_1_n_d_range.html#a31018e7478f8ce3a129dee14abf53719',1,'cl::NDRange::size()'],['../structcl_1_1detail_1_1_kernel_argument_handler_3_01_t_00_01typename_01std_1_1enable__if_3_9std_10affa824618af864313998f2e6bcf08f.html#ab26d77fd61e872fcf0bc9345dcb0192c',1,'cl::detail::KernelArgumentHandler< T, typename std::enable_if<!std::is_base_of< cl::Memory, T >::value >::type >::size()'],['../structcl_1_1detail_1_1_kernel_argument_handler_3_01_t_00_01typename_01std_1_1enable__if_3_01std_cb5bfaca8096193f715a7bbe8a3fa84f.html#aab115c561c430a368dcf3fab65debf42',1,'cl::detail::KernelArgumentHandler< T, typename std::enable_if< std::is_base_of< cl::Memory, T >::value >::type >::size()'],['../structcl_1_1detail_1_1_kernel_argument_handler_3_01_local_space_arg_00_01void_01_4.html#adcc5bbbbc8975491e859042d6764372c',1,'cl::detail::KernelArgumentHandler< LocalSpaceArg, void >::size()'],['../structcl_1_1detail_1_1_kernel_argument_handler_3_01cl_1_1_device_command_queue_00_01void_01_4.html#aaca22313c85e1f71a41f5695c21aeea0',1,'cl::detail::KernelArgumentHandler< cl::DeviceCommandQueue, void >::size()'],['../classop_1_1_queue_base.html#a12cdec56bfe72e722ecc722774989d1b',1,'op::QueueBase::size()'],['../namespaceop.html#adbb34b5c8f2b6f0c051f831f18582e7fa6f6cb72d544962fa333e2e34ce64f719',1,'op::Size()'],['../namespaceop.html#af5b3ce2a5d3de87cb31b9b67e96f261fa6f6cb72d544962fa333e2e34ce64f719',1,'op::Size()'],['../namespaceop.html#a37c58b781e5bcd9fee67a7768afc5d0ea6f6cb72d544962fa333e2e34ce64f719',1,'op::Size()'],['../namespaceop.html#abc501c56c6cf6cf1989c84b1692cb774a6f6cb72d544962fa333e2e34ce64f719',1,'op::Size()'],['../namespaceop.html#a970a2a768a2ace81605b1558c9fdec18a6f6cb72d544962fa333e2e34ce64f719',1,'op::Size()']]], ['size_5f',['size_',['../structcl_1_1_local_space_arg.html#a30ac7ba02b1a0909f10253ed4158e0a6',1,'cl::LocalSpaceArg']]], ['size_5ft_5farray',['size_t_array',['../namespacecl_1_1detail.html#aab488f551c8b1feb4f4b3f6893c358db',1,'cl::detail']]], ['size_5ftype',['size_type',['../classcl_1_1_s_v_m_allocator.html#afe51e51ed34089444241a43aab0950ef',1,'cl::SVMAllocator::size_type()'],['../namespacecl.html#a35ea2a6f4cc42e6b4082daab0e4dc449',1,'cl::size_type()']]], diff --git a/html/search/all_2.js b/html/search/all_2.js index bddd73f8..6ef57c54 100644 --- a/html/search/all_2.js +++ b/html/search/all_2.js @@ -9,6 +9,7 @@ var searchData= ['cameraparameterreader',['CameraParameterReader',['../classop_1_1_camera_parameter_reader.html',1,'op']]], ['cameraparameterreader_2ehpp',['cameraParameterReader.hpp',['../camera_parameter_reader_8hpp.html',1,'']]], ['car_5f12',['CAR_12',['../namespaceop.html#af5b3ce2a5d3de87cb31b9b67e96f261fa66ae79a5ac5fa502ae8bbecd3e07e71c',1,'op']]], + ['car_5f22',['CAR_22',['../namespaceop.html#af5b3ce2a5d3de87cb31b9b67e96f261fa372b9885bba8bc32ad323fffcf99e39e',1,'op']]], ['center',['center',['../structop_1_1_rectangle.html#a5db1a105c3b95578a7532ce85e9f562c',1,'op::Rectangle']]], ['charround',['charRound',['../namespaceop.html#abbf62284718858335848e43bbeafb192',1,'op']]], ['check',['check',['../namespaceop.html#a9923237964bf29b59bb135478e929546',1,'op']]], @@ -82,8 +83,8 @@ var searchData= ['const_5fpointer',['const_pointer',['../classcl_1_1_s_v_m_allocator.html#af5daf4a4173794758e399e45a2f028a9',1,'cl::SVMAllocator::const_pointer()'],['../classcl_1_1_s_v_m_allocator_3_01void_00_01_s_v_m_trait_01_4.html#ad09aa943957ab0ab739d72279081d0b7',1,'cl::SVMAllocator< void, SVMTrait >::const_pointer()']]], ['const_5freference',['const_reference',['../classcl_1_1_s_v_m_allocator.html#a64a4984f03ddff3a757f200b4c4fb357',1,'cl::SVMAllocator']]], ['construct',['construct',['../classcl_1_1_s_v_m_allocator.html#a283e7b212da80668a7e5285b96536282',1,'cl::SVMAllocator']]], - ['context',['Context',['../classcl_1_1_context.html#ad4a19320d57441a2a0ce6db6548d12a9',1,'cl::Context::Context(const vector< Device > &devices, cl_context_properties *properties=NULL, void(CL_CALLBACK *notifyFptr)(const char *, const void *, size_type, void *)=NULL, void *data=NULL, cl_int *err=NULL)'],['../classcl_1_1_context.html#a4ab7a8192b80fc6b8ff00f5f7356f3d4',1,'cl::Context::Context(const Device &device, cl_context_properties *properties=NULL, void(CL_CALLBACK *notifyFptr)(const char *, const void *, size_type, void *)=NULL, void *data=NULL, cl_int *err=NULL)'],['../classcl_1_1_context.html#a591bd7ba3cbe268a619b8175627a8985',1,'cl::Context::Context(cl_device_type type, cl_context_properties *properties=NULL, void(CL_CALLBACK *notifyFptr)(const char *, const void *, size_type, void *)=NULL, void *data=NULL, cl_int *err=NULL)'],['../classcl_1_1_context.html#ae0a598440f95bc8457433a088cef17a1',1,'cl::Context::Context(const Context &ctx)'],['../classcl_1_1_context.html#ae2944171ba4199247499fd0bf3c49b81',1,'cl::Context::Context(Context &&ctx) CL_HPP_NOEXCEPT_'],['../classcl_1_1_context.html#a8f7e1c72445ca6e249bc7a6c9278984d',1,'cl::Context::Context()'],['../classcl_1_1_context.html#a3fc0fba33d5b467b5d2ee70adb5b1e92',1,'cl::Context::Context(const cl_context &context, bool retainObject=false)']]], ['context',['Context',['../classcl_1_1_context.html',1,'cl']]], + ['context',['Context',['../classcl_1_1_context.html#ad4a19320d57441a2a0ce6db6548d12a9',1,'cl::Context::Context(const vector< Device > &devices, cl_context_properties *properties=NULL, void(CL_CALLBACK *notifyFptr)(const char *, const void *, size_type, void *)=NULL, void *data=NULL, cl_int *err=NULL)'],['../classcl_1_1_context.html#a4ab7a8192b80fc6b8ff00f5f7356f3d4',1,'cl::Context::Context(const Device &device, cl_context_properties *properties=NULL, void(CL_CALLBACK *notifyFptr)(const char *, const void *, size_type, void *)=NULL, void *data=NULL, cl_int *err=NULL)'],['../classcl_1_1_context.html#a591bd7ba3cbe268a619b8175627a8985',1,'cl::Context::Context(cl_device_type type, cl_context_properties *properties=NULL, void(CL_CALLBACK *notifyFptr)(const char *, const void *, size_type, void *)=NULL, void *data=NULL, cl_int *err=NULL)'],['../classcl_1_1_context.html#ae0a598440f95bc8457433a088cef17a1',1,'cl::Context::Context(const Context &ctx)'],['../classcl_1_1_context.html#ae2944171ba4199247499fd0bf3c49b81',1,'cl::Context::Context(Context &&ctx) CL_HPP_NOEXCEPT_'],['../classcl_1_1_context.html#a8f7e1c72445ca6e249bc7a6c9278984d',1,'cl::Context::Context()'],['../classcl_1_1_context.html#a3fc0fba33d5b467b5d2ee70adb5b1e92',1,'cl::Context::Context(const cl_context &context, bool retainObject=false)']]], ['copy',['copy',['../namespacecl.html#a1197a833cdd6664f206b079f2bebd2eb',1,'cl::copy(IteratorType startIterator, IteratorType endIterator, cl::Buffer &buffer)'],['../namespacecl.html#a05791e9d5da23b21abd6e319fb262c9f',1,'cl::copy(const cl::Buffer &buffer, IteratorType startIterator, IteratorType endIterator)'],['../namespacecl.html#a2f71ed9a316daf59c03c0f3ba62f1bd3',1,'cl::copy(const CommandQueue &queue, IteratorType startIterator, IteratorType endIterator, cl::Buffer &buffer)'],['../namespacecl.html#a02c4368c6ce7a1a99132eafd5dc96fa9',1,'cl::copy(const CommandQueue &queue, const cl::Buffer &buffer, IteratorType startIterator, IteratorType endIterator)']]], ['counterlastdetection',['counterLastDetection',['../structop_1_1_person_entry.html#a75994912fe3dc4a022e8310ee760b167',1,'op::PersonEntry']]], ['cpu',['Cpu',['../namespaceop.html#afce557f02e337e16150d00bdf72ec033a54c82ef76ecbbd4c2293e09bae01b54e',1,'op']]], @@ -98,8 +99,8 @@ var searchData= ['cuda_5fnum_5fthreads',['CUDA_NUM_THREADS',['../namespaceop.html#ac7bbf63b37bf6762c47557ad227e036d',1,'op']]], ['cudacheck',['cudaCheck',['../namespaceop.html#a2af8422ada0de882cc222920ca15c6d2',1,'op']]], ['cvinputdata',['cvInputData',['../structop_1_1_datum.html#a0b2c8ccac37be088524cc7c24a502c7b',1,'op::Datum']]], - ['cvmattoopinput',['CvMatToOpInput',['../classop_1_1_cv_mat_to_op_input.html',1,'op']]], ['cvmattoopinput',['CvMatToOpInput',['../classop_1_1_cv_mat_to_op_input.html#a6c4ac1b8c6fc994cc332253c56e20c4a',1,'op::CvMatToOpInput']]], + ['cvmattoopinput',['CvMatToOpInput',['../classop_1_1_cv_mat_to_op_input.html',1,'op']]], ['cvmattoopinput_2ehpp',['cvMatToOpInput.hpp',['../cv_mat_to_op_input_8hpp.html',1,'']]], ['cvmattoopoutput',['CvMatToOpOutput',['../classop_1_1_cv_mat_to_op_output.html',1,'op']]], ['cvmattoopoutput_2ehpp',['cvMatToOpOutput.hpp',['../cv_mat_to_op_output_8hpp.html',1,'']]], diff --git a/html/search/all_6.js b/html/search/all_6.js index 948e8f5b..9ea248e6 100644 --- a/html/search/all_6.js +++ b/html/search/all_6.js @@ -89,6 +89,7 @@ var searchData= ['getprioritythreshold',['getPriorityThreshold',['../namespaceop_1_1_configure_log.html#a0e5c3fad2ace3eb129dd1d97afd59558',1,'op::ConfigureLog']]], ['getprofilinginfo',['getProfilingInfo',['../classcl_1_1_event.html#a8d4610f4ce118208620fe88996970ffa',1,'cl::Event::getProfilingInfo(cl_profiling_info name, T *param) const '],['../classcl_1_1_event.html#a87c25db5f9793aa90db799afa4d14e01',1,'cl::Event::getProfilingInfo(cl_int *err=NULL) const ']]], ['getptr',['getPtr',['../classop_1_1_array.html#af4715967fd2b028a97fd30257e697275',1,'op::Array']]], + ['getpybindptr',['getPybindPtr',['../classop_1_1_array.html#af5d640c725808d858b47be62ee402187',1,'op::Array']]], ['getrawframe',['getRawFrame',['../classop_1_1_producer.html#a39f52d80ac4146c82ed12aae0f05478e',1,'op::Producer::getRawFrame()'],['../classop_1_1_video_capture_reader.html#af57cc02f86ee0c29ccb83f1f7c37bec2',1,'op::VideoCaptureReader::getRawFrame()']]], ['getrawframes',['getRawFrames',['../classop_1_1_producer.html#ad51001c3e9f42722c52990d43b315f78',1,'op::Producer::getRawFrames()'],['../classop_1_1_spinnaker_wrapper.html#a77a64d4ef798f2ea7cd54d9c170f7ea7',1,'op::SpinnakerWrapper::getRawFrames()'],['../classop_1_1_video_capture_reader.html#a07abbb0001dd9972ab416eb619812043',1,'op::VideoCaptureReader::getRawFrames()']]], ['getresolution',['getResolution',['../classop_1_1_spinnaker_wrapper.html#a57d3bfa344921563cd2648fced667b49',1,'op::SpinnakerWrapper']]], @@ -108,16 +109,16 @@ var searchData= ['gpumode',['GpuMode',['../namespaceop.html#adbb34b5c8f2b6f0c051f831f18582e7f',1,'op']]], ['gpunumber',['gpuNumber',['../structop_1_1_wrapper_struct_pose.html#a536ea76d50e94d513066e9e5767d0c03',1,'op::WrapperStructPose']]], ['gpunumberstart',['gpuNumberStart',['../structop_1_1_wrapper_struct_pose.html#a8be188d871061079432ead77b278fe0d',1,'op::WrapperStructPose']]], - ['gpurenderer',['GpuRenderer',['../classop_1_1_gpu_renderer.html',1,'op']]], ['gpurenderer',['GpuRenderer',['../classop_1_1_gpu_renderer.html#a9852b2017e972637b47250bb7fbc53ea',1,'op::GpuRenderer']]], + ['gpurenderer',['GpuRenderer',['../classop_1_1_gpu_renderer.html',1,'op']]], ['gpurenderer_2ehpp',['gpuRenderer.hpp',['../gpu_renderer_8hpp.html',1,'']]], ['gputocpumemoryiflastrenderer',['gpuToCpuMemoryIfLastRenderer',['../classop_1_1_gpu_renderer.html#a6355f70d16c6427b028fa4596ce5d985',1,'op::GpuRenderer']]], ['gridpatternfunctions_2ehpp',['gridPatternFunctions.hpp',['../grid_pattern_functions_8hpp.html',1,'']]], ['gui',['Gui',['../classop_1_1_gui.html#a1084d79f61d08f0551832de1ca337c70',1,'op::Gui']]], ['gui',['Gui',['../classop_1_1_gui.html',1,'op']]], ['gui_2ehpp',['gui.hpp',['../gui_8hpp.html',1,'']]], - ['gui3d',['Gui3D',['../classop_1_1_gui3_d.html#a7146b02ee5c009f879ddfea2145fea34',1,'op::Gui3D']]], ['gui3d',['Gui3D',['../classop_1_1_gui3_d.html',1,'op']]], + ['gui3d',['Gui3D',['../classop_1_1_gui3_d.html#a7146b02ee5c009f879ddfea2145fea34',1,'op::Gui3D']]], ['gui3d_2ehpp',['gui3D.hpp',['../gui3_d_8hpp.html',1,'']]], ['guiadam_2ehpp',['guiAdam.hpp',['../gui_adam_8hpp.html',1,'']]], ['guiinfoadder',['GuiInfoAdder',['../classop_1_1_gui_info_adder.html',1,'op']]], diff --git a/html/search/all_f.js b/html/search/all_f.js index 9eb516f6..d8769222 100644 --- a/html/search/all_f.js +++ b/html/search/all_f.js @@ -52,6 +52,9 @@ var searchData= ['pose_5fcar_5f12_5fcolors_5frender_5fgpu',['POSE_CAR_12_COLORS_RENDER_GPU',['../pose_parameters_render_8hpp.html#a6be8d3dedaf015f795625d1df19876aa',1,'poseParametersRender.hpp']]], ['pose_5fcar_5f12_5fpairs_5frender_5fgpu',['POSE_CAR_12_PAIRS_RENDER_GPU',['../pose_parameters_render_8hpp.html#a253206407787fc26629e6e46f60d7be2',1,'poseParametersRender.hpp']]], ['pose_5fcar_5f12_5fscales_5frender_5fgpu',['POSE_CAR_12_SCALES_RENDER_GPU',['../pose_parameters_render_8hpp.html#a7382830f0c24beaea601444cb5962f06',1,'poseParametersRender.hpp']]], + ['pose_5fcar_5f22_5fcolors_5frender_5fgpu',['POSE_CAR_22_COLORS_RENDER_GPU',['../pose_parameters_render_8hpp.html#aaecdba75da05e8bfc90e4393c88ab6e6',1,'poseParametersRender.hpp']]], + ['pose_5fcar_5f22_5fpairs_5frender_5fgpu',['POSE_CAR_22_PAIRS_RENDER_GPU',['../pose_parameters_render_8hpp.html#a0065da73d9e649360d458fc670ee0f95',1,'poseParametersRender.hpp']]], + ['pose_5fcar_5f22_5fscales_5frender_5fgpu',['POSE_CAR_22_SCALES_RENDER_GPU',['../pose_parameters_render_8hpp.html#a0afb6a9782a4ad8bd3ac41bd2436fefc',1,'poseParametersRender.hpp']]], ['pose_5fcoco_5fcolors_5frender_5fgpu',['POSE_COCO_COLORS_RENDER_GPU',['../pose_parameters_render_8hpp.html#a8b293ab02337be3f90218c5b824ece06',1,'poseParametersRender.hpp']]], ['pose_5fcoco_5fpairs_5frender_5fgpu',['POSE_COCO_PAIRS_RENDER_GPU',['../pose_parameters_render_8hpp.html#a5afab27fbbebc71b8753a20dd6c9a322',1,'poseParametersRender.hpp']]], ['pose_5fcoco_5fscales_5frender_5fgpu',['POSE_COCO_SCALES_RENDER_GPU',['../pose_parameters_render_8hpp.html#a8cd3d34880f73dc73b2feb28370e86ec',1,'poseParametersRender.hpp']]], @@ -63,8 +66,8 @@ var searchData= ['pose_5fmpi_5fscales_5frender_5fgpu',['POSE_MPI_SCALES_RENDER_GPU',['../pose_parameters_render_8hpp.html#a32e98c9dd9e6f38c597c7924582570d0',1,'poseParametersRender.hpp']]], ['posebodypartmapstringtokey',['poseBodyPartMapStringToKey',['../namespaceop.html#a3df938ef93037c534c5d342720d5fb70',1,'op::poseBodyPartMapStringToKey(const PoseModel poseModel, const std::string &string)'],['../namespaceop.html#aacf6e688031bb116e4878b811e8dbc23',1,'op::poseBodyPartMapStringToKey(const PoseModel poseModel, const std::vector< std::string > &strings)']]], ['posecandidates',['poseCandidates',['../structop_1_1_datum.html#a55dd5354e09696ed6896923755f1c85b',1,'op::Datum']]], - ['posecpurenderer',['PoseCpuRenderer',['../classop_1_1_pose_cpu_renderer.html#a5863733d560345d4890557b0f8c0d08e',1,'op::PoseCpuRenderer']]], ['posecpurenderer',['PoseCpuRenderer',['../classop_1_1_pose_cpu_renderer.html',1,'op']]], + ['posecpurenderer',['PoseCpuRenderer',['../classop_1_1_pose_cpu_renderer.html#a5863733d560345d4890557b0f8c0d08e',1,'op::PoseCpuRenderer']]], ['posecpurenderer_2ehpp',['poseCpuRenderer.hpp',['../pose_cpu_renderer_8hpp.html',1,'']]], ['poseextractor',['PoseExtractor',['../classop_1_1_pose_extractor.html#acd50fa337aef1d658b6fed3edc717ada',1,'op::PoseExtractor']]], ['poseextractor',['PoseExtractor',['../classop_1_1_pose_extractor.html',1,'op']]], @@ -72,8 +75,8 @@ var searchData= ['poseextractorcaffe',['PoseExtractorCaffe',['../classop_1_1_pose_extractor_caffe.html#ab58c3ab4b745b35f542165ce27293554',1,'op::PoseExtractorCaffe']]], ['poseextractorcaffe',['PoseExtractorCaffe',['../classop_1_1_pose_extractor_caffe.html',1,'op']]], ['poseextractorcaffe_2ehpp',['poseExtractorCaffe.hpp',['../pose_extractor_caffe_8hpp.html',1,'']]], - ['poseextractornet',['PoseExtractorNet',['../classop_1_1_pose_extractor_net.html',1,'op']]], ['poseextractornet',['PoseExtractorNet',['../classop_1_1_pose_extractor_net.html#a8f1fb332299a83010830ee9d61752bc9',1,'op::PoseExtractorNet']]], + ['poseextractornet',['PoseExtractorNet',['../classop_1_1_pose_extractor_net.html',1,'op']]], ['poseextractornet_2ehpp',['poseExtractorNet.hpp',['../pose_extractor_net_8hpp.html',1,'']]], ['posegpurenderer',['PoseGpuRenderer',['../classop_1_1_pose_gpu_renderer.html',1,'op']]], ['posegpurenderer',['PoseGpuRenderer',['../classop_1_1_pose_gpu_renderer.html#a1582e63e33192d79f80b5879ba04d448',1,'op::PoseGpuRenderer']]], @@ -86,12 +89,12 @@ var searchData= ['poseparameters_2ehpp',['poseParameters.hpp',['../pose_parameters_8hpp.html',1,'']]], ['poseparametersrender_2ehpp',['poseParametersRender.hpp',['../pose_parameters_render_8hpp.html',1,'']]], ['poseproperty',['PoseProperty',['../namespaceop.html#a37c58b781e5bcd9fee67a7768afc5d0e',1,'op']]], - ['poserenderer',['PoseRenderer',['../classop_1_1_pose_renderer.html#a1dfd34d42fa69913a9702e0a0ebcd04e',1,'op::PoseRenderer']]], ['poserenderer',['PoseRenderer',['../classop_1_1_pose_renderer.html',1,'op']]], + ['poserenderer',['PoseRenderer',['../classop_1_1_pose_renderer.html#a1dfd34d42fa69913a9702e0a0ebcd04e',1,'op::PoseRenderer']]], ['poserenderer_2ehpp',['poseRenderer.hpp',['../pose_renderer_8hpp.html',1,'']]], ['posescores',['poseScores',['../structop_1_1_datum.html#afb117821de7aff9ac3c219ef3bbc0c14',1,'op::Datum']]], - ['posetriangulation',['PoseTriangulation',['../classop_1_1_pose_triangulation.html#a7858f0c4adf7845c2be072e0985af3ee',1,'op::PoseTriangulation']]], ['posetriangulation',['PoseTriangulation',['../classop_1_1_pose_triangulation.html',1,'op']]], + ['posetriangulation',['PoseTriangulation',['../classop_1_1_pose_triangulation.html#a7858f0c4adf7845c2be072e0985af3ee',1,'op::PoseTriangulation']]], ['posetriangulation_2ehpp',['poseTriangulation.hpp',['../pose_triangulation_8hpp.html',1,'']]], ['postprocessing',['PostProcessing',['../namespaceop.html#a970a2a768a2ace81605b1558c9fdec18aa52d6088cbae537944827c8f8c69c570',1,'op']]], ['printaveragedtimemseveryxiterations',['printAveragedTimeMsEveryXIterations',['../classop_1_1_profiler.html#a1192952d076f52b884b32fcd496df2ec',1,'op::Profiler']]], @@ -112,8 +115,8 @@ var searchData= ['profiler',['Profiler',['../classop_1_1_profiler.html',1,'op']]], ['profiler_2ehpp',['profiler.hpp',['../profiler_8hpp.html',1,'']]], ['profiling',['Profiling',['../namespacecl.html#a6b1e69bec24f2a7f89eb17c265060e0da1a226c2f1347809a185b8567ba1fc5a7',1,'cl::Profiling()'],['../namespacecl.html#a000ce6769841b11cf56253f7a0344277a1a226c2f1347809a185b8567ba1fc5a7',1,'cl::Profiling()']]], - ['program',['Program',['../classcl_1_1_program.html#afc8d71b6035a8084636c9b9f3ed568b2',1,'cl::Program::Program(const string &source, bool build=false, cl_int *err=NULL)'],['../classcl_1_1_program.html#a22c68c40400ddb75c0e8013629e632be',1,'cl::Program::Program(const Context &context, const string &source, bool build=false, cl_int *err=NULL)'],['../classcl_1_1_program.html#a367cf581b43d8ad021806a4714753437',1,'cl::Program::Program(const Sources &sources, cl_int *err=NULL)'],['../classcl_1_1_program.html#a400d1a7de104d98f1d3c2aa7dccc21ba',1,'cl::Program::Program(const Context &context, const Sources &sources, cl_int *err=NULL)'],['../classcl_1_1_program.html#af804a4cb0e2dc844c0be0b0b76dbd25a',1,'cl::Program::Program(const Context &context, const vector< Device > &devices, const Binaries &binaries, vector< cl_int > *binaryStatus=NULL, cl_int *err=NULL)'],['../classcl_1_1_program.html#a9223820e8ac1901a84e1a1a02a97954b',1,'cl::Program::Program(const Context &context, const vector< Device > &devices, const string &kernelNames, cl_int *err=NULL)'],['../classcl_1_1_program.html#a204c904c9fa5d0b2a65de6fc87396d30',1,'cl::Program::Program()'],['../classcl_1_1_program.html#aaac370eec783f85a00945d701d6a7e19',1,'cl::Program::Program(const cl_program &program, bool retainObject=false)'],['../classcl_1_1_program.html#a0ec5552449e9fefc46e7bcd399d15f51',1,'cl::Program::Program(const Program &program)'],['../classcl_1_1_program.html#a1666a02c393b46730b24a76f79302b15',1,'cl::Program::Program(Program &&program) CL_HPP_NOEXCEPT_']]], ['program',['Program',['../classcl_1_1_program.html',1,'cl']]], + ['program',['Program',['../classcl_1_1_program.html#afc8d71b6035a8084636c9b9f3ed568b2',1,'cl::Program::Program(const string &source, bool build=false, cl_int *err=NULL)'],['../classcl_1_1_program.html#a22c68c40400ddb75c0e8013629e632be',1,'cl::Program::Program(const Context &context, const string &source, bool build=false, cl_int *err=NULL)'],['../classcl_1_1_program.html#a367cf581b43d8ad021806a4714753437',1,'cl::Program::Program(const Sources &sources, cl_int *err=NULL)'],['../classcl_1_1_program.html#a400d1a7de104d98f1d3c2aa7dccc21ba',1,'cl::Program::Program(const Context &context, const Sources &sources, cl_int *err=NULL)'],['../classcl_1_1_program.html#af804a4cb0e2dc844c0be0b0b76dbd25a',1,'cl::Program::Program(const Context &context, const vector< Device > &devices, const Binaries &binaries, vector< cl_int > *binaryStatus=NULL, cl_int *err=NULL)'],['../classcl_1_1_program.html#a9223820e8ac1901a84e1a1a02a97954b',1,'cl::Program::Program(const Context &context, const vector< Device > &devices, const string &kernelNames, cl_int *err=NULL)'],['../classcl_1_1_program.html#a204c904c9fa5d0b2a65de6fc87396d30',1,'cl::Program::Program()'],['../classcl_1_1_program.html#aaac370eec783f85a00945d701d6a7e19',1,'cl::Program::Program(const cl_program &program, bool retainObject=false)'],['../classcl_1_1_program.html#a0ec5552449e9fefc46e7bcd399d15f51',1,'cl::Program::Program(const Program &program)'],['../classcl_1_1_program.html#a1666a02c393b46730b24a76f79302b15',1,'cl::Program::Program(Program &&program) CL_HPP_NOEXCEPT_']]], ['ptr',['ptr',['../structcl_1_1detail_1_1_kernel_argument_handler_3_01_t_00_01typename_01std_1_1enable__if_3_9std_10affa824618af864313998f2e6bcf08f.html#a5965bbd36dae5fe4aa43a1bcb03a4923',1,'cl::detail::KernelArgumentHandler< T, typename std::enable_if<!std::is_base_of< cl::Memory, T >::value >::type >::ptr()'],['../structcl_1_1detail_1_1_kernel_argument_handler_3_01_t_00_01typename_01std_1_1enable__if_3_01std_cb5bfaca8096193f715a7bbe8a3fa84f.html#a2b40f53e41d2c3fdba7995e282d508e8',1,'cl::detail::KernelArgumentHandler< T, typename std::enable_if< std::is_base_of< cl::Memory, T >::value >::type >::ptr()'],['../structcl_1_1detail_1_1_kernel_argument_handler_3_01_local_space_arg_00_01void_01_4.html#a82c7a9a532c656da91fa9d42945a5959',1,'cl::detail::KernelArgumentHandler< LocalSpaceArg, void >::ptr()'],['../structcl_1_1detail_1_1_kernel_argument_handler_3_01cl_1_1_device_command_queue_00_01void_01_4.html#acdf26821a27be9815460d7f71222f81a',1,'cl::detail::KernelArgumentHandler< cl::DeviceCommandQueue, void >::ptr()']]], ['puttextoncvmat',['putTextOnCvMat',['../namespaceop.html#ad1d0931229d15c0a8ac13d4c0ff407e2',1,'op']]], ['pyramidallk_2ehpp',['pyramidalLK.hpp',['../pyramidal_l_k_8hpp.html',1,'']]], diff --git a/html/search/defines_5.js b/html/search/defines_5.js index 68632c49..fac015a9 100644 --- a/html/search/defines_5.js +++ b/html/search/defines_5.js @@ -18,6 +18,9 @@ var searchData= ['pose_5fcar_5f12_5fcolors_5frender_5fgpu',['POSE_CAR_12_COLORS_RENDER_GPU',['../pose_parameters_render_8hpp.html#a6be8d3dedaf015f795625d1df19876aa',1,'poseParametersRender.hpp']]], ['pose_5fcar_5f12_5fpairs_5frender_5fgpu',['POSE_CAR_12_PAIRS_RENDER_GPU',['../pose_parameters_render_8hpp.html#a253206407787fc26629e6e46f60d7be2',1,'poseParametersRender.hpp']]], ['pose_5fcar_5f12_5fscales_5frender_5fgpu',['POSE_CAR_12_SCALES_RENDER_GPU',['../pose_parameters_render_8hpp.html#a7382830f0c24beaea601444cb5962f06',1,'poseParametersRender.hpp']]], + ['pose_5fcar_5f22_5fcolors_5frender_5fgpu',['POSE_CAR_22_COLORS_RENDER_GPU',['../pose_parameters_render_8hpp.html#aaecdba75da05e8bfc90e4393c88ab6e6',1,'poseParametersRender.hpp']]], + ['pose_5fcar_5f22_5fpairs_5frender_5fgpu',['POSE_CAR_22_PAIRS_RENDER_GPU',['../pose_parameters_render_8hpp.html#a0065da73d9e649360d458fc670ee0f95',1,'poseParametersRender.hpp']]], + ['pose_5fcar_5f22_5fscales_5frender_5fgpu',['POSE_CAR_22_SCALES_RENDER_GPU',['../pose_parameters_render_8hpp.html#a0afb6a9782a4ad8bd3ac41bd2436fefc',1,'poseParametersRender.hpp']]], ['pose_5fcoco_5fcolors_5frender_5fgpu',['POSE_COCO_COLORS_RENDER_GPU',['../pose_parameters_render_8hpp.html#a8b293ab02337be3f90218c5b824ece06',1,'poseParametersRender.hpp']]], ['pose_5fcoco_5fpairs_5frender_5fgpu',['POSE_COCO_PAIRS_RENDER_GPU',['../pose_parameters_render_8hpp.html#a5afab27fbbebc71b8753a20dd6c9a322',1,'poseParametersRender.hpp']]], ['pose_5fcoco_5fscales_5frender_5fgpu',['POSE_COCO_SCALES_RENDER_GPU',['../pose_parameters_render_8hpp.html#a8cd3d34880f73dc73b2feb28370e86ec',1,'poseParametersRender.hpp']]], diff --git a/html/search/enumvalues_2.js b/html/search/enumvalues_2.js index b58a93a1..7945d1d6 100644 --- a/html/search/enumvalues_2.js +++ b/html/search/enumvalues_2.js @@ -1,6 +1,7 @@ var searchData= [ ['car_5f12',['CAR_12',['../namespaceop.html#af5b3ce2a5d3de87cb31b9b67e96f261fa66ae79a5ac5fa502ae8bbecd3e07e71c',1,'op']]], + ['car_5f22',['CAR_22',['../namespaceop.html#af5b3ce2a5d3de87cb31b9b67e96f261fa372b9885bba8bc32ad323fffcf99e39e',1,'op']]], ['coco_5f18',['COCO_18',['../namespaceop.html#af5b3ce2a5d3de87cb31b9b67e96f261fa0c4a19d9254adcb3ca1f0f527ee141fd',1,'op']]], ['connectinterminabovethreshold',['ConnectInterMinAboveThreshold',['../namespaceop.html#a37c58b781e5bcd9fee67a7768afc5d0eaf7405796a5c90a93fc3c8ffa89eb432d',1,'op']]], ['connectinterthreshold',['ConnectInterThreshold',['../namespaceop.html#a37c58b781e5bcd9fee67a7768afc5d0ea240f10f3a39507d858c743971fd4298f',1,'op']]], diff --git a/html/search/functions_0.js b/html/search/functions_0.js index 03d163a1..6775434b 100644 --- a/html/search/functions_0.js +++ b/html/search/functions_0.js @@ -9,7 +9,7 @@ var searchData= ['allocate_5fpointer',['allocate_pointer',['../namespacecl.html#a9feaebcb39a179537588bfcd349dbbb6',1,'cl']]], ['allocate_5fsvm',['allocate_svm',['../namespacecl.html#a8efdf919c8a45ad8411dac9b4236fbbf',1,'cl::allocate_svm(Args...args)'],['../namespacecl.html#a2077ca5a2cdc3557aedca3d94adcc98a',1,'cl::allocate_svm(const cl::Context &c, Args...args)']]], ['area',['area',['../structop_1_1_point.html#aba8ffdc78fdec7d45222f640eb130874',1,'op::Point::area()'],['../structop_1_1_rectangle.html#a85cabb0d2f3af02e32be35bb9841c1f3',1,'op::Rectangle::area()']]], - ['array',['Array',['../classop_1_1_array.html#a793b9851c7490bc98d4dd52020c0cd3c',1,'op::Array::Array(const int size)'],['../classop_1_1_array.html#a48c1ba1f7017b5aa8e0451079dd3a6d3',1,'op::Array::Array(const std::vector< int > &sizes={})'],['../classop_1_1_array.html#ac833fdcb245fcc3135ce65227bb9e4b2',1,'op::Array::Array(const int size, const T value)'],['../classop_1_1_array.html#a959ede0df7e535d2d3ac40d098541c27',1,'op::Array::Array(const std::vector< int > &sizes, const T value)'],['../classop_1_1_array.html#a5a68cca98a3ebaf565f1e546eebd9f01',1,'op::Array::Array(const Array< T > &array)'],['../classop_1_1_array.html#a7a7d854d63815e10e158fe889d17a88e',1,'op::Array::Array(Array< T > &&array)']]], + ['array',['Array',['../classop_1_1_array.html#a793b9851c7490bc98d4dd52020c0cd3c',1,'op::Array::Array(const int size)'],['../classop_1_1_array.html#a48c1ba1f7017b5aa8e0451079dd3a6d3',1,'op::Array::Array(const std::vector< int > &sizes={})'],['../classop_1_1_array.html#ac833fdcb245fcc3135ce65227bb9e4b2',1,'op::Array::Array(const int size, const T value)'],['../classop_1_1_array.html#a959ede0df7e535d2d3ac40d098541c27',1,'op::Array::Array(const std::vector< int > &sizes, const T value)'],['../classop_1_1_array.html#a9cd386050e94c29b3c4ee40cafcacc46',1,'op::Array::Array(const int size, T *const dataPtr)'],['../classop_1_1_array.html#a90895562def04a81db0b3e7eaa3722c7',1,'op::Array::Array(const std::vector< int > &sizes, T *const dataPtr)'],['../classop_1_1_array.html#a5a68cca98a3ebaf565f1e546eebd9f01',1,'op::Array::Array(const Array< T > &array)'],['../classop_1_1_array.html#a7a7d854d63815e10e158fe889d17a88e',1,'op::Array::Array(Array< T > &&array)']]], ['arrayclose',['arrayClose',['../classop_1_1_json_ofstream.html#a3f940d3ad51d0acb7126d62a5617fd69',1,'op::JsonOfstream']]], ['arrayopen',['arrayOpen',['../classop_1_1_json_ofstream.html#a4cc6d50256354b3dc7385e2db01aabc0',1,'op::JsonOfstream']]], ['at',['at',['../classop_1_1_array.html#a6e0afd5f447efbfc29efbeac62716eff',1,'op::Array::at(const int index)'],['../classop_1_1_array.html#a95e83e3379fd43460db68c2adb61f981',1,'op::Array::at(const int index) const '],['../classop_1_1_array.html#a8eebb6c34642cdf19ac74c7ed38d128b',1,'op::Array::at(const std::vector< int > &indexes)'],['../classop_1_1_array.html#a5cb014203b418de3996b90597df53b6e',1,'op::Array::at(const std::vector< int > &indexes) const ']]], diff --git a/html/search/functions_6.js b/html/search/functions_6.js index e7cd3664..d5562fdb 100644 --- a/html/search/functions_6.js +++ b/html/search/functions_6.js @@ -87,6 +87,7 @@ var searchData= ['getprioritythreshold',['getPriorityThreshold',['../namespaceop_1_1_configure_log.html#a0e5c3fad2ace3eb129dd1d97afd59558',1,'op::ConfigureLog']]], ['getprofilinginfo',['getProfilingInfo',['../classcl_1_1_event.html#a8d4610f4ce118208620fe88996970ffa',1,'cl::Event::getProfilingInfo(cl_profiling_info name, T *param) const '],['../classcl_1_1_event.html#a87c25db5f9793aa90db799afa4d14e01',1,'cl::Event::getProfilingInfo(cl_int *err=NULL) const ']]], ['getptr',['getPtr',['../classop_1_1_array.html#af4715967fd2b028a97fd30257e697275',1,'op::Array']]], + ['getpybindptr',['getPybindPtr',['../classop_1_1_array.html#af5d640c725808d858b47be62ee402187',1,'op::Array']]], ['getrawframe',['getRawFrame',['../classop_1_1_producer.html#a39f52d80ac4146c82ed12aae0f05478e',1,'op::Producer::getRawFrame()'],['../classop_1_1_video_capture_reader.html#af57cc02f86ee0c29ccb83f1f7c37bec2',1,'op::VideoCaptureReader::getRawFrame()']]], ['getrawframes',['getRawFrames',['../classop_1_1_producer.html#ad51001c3e9f42722c52990d43b315f78',1,'op::Producer::getRawFrames()'],['../classop_1_1_spinnaker_wrapper.html#a77a64d4ef798f2ea7cd54d9c170f7ea7',1,'op::SpinnakerWrapper::getRawFrames()'],['../classop_1_1_video_capture_reader.html#a07abbb0001dd9972ab416eb619812043',1,'op::VideoCaptureReader::getRawFrames()']]], ['getresolution',['getResolution',['../classop_1_1_spinnaker_wrapper.html#a57d3bfa344921563cd2648fced667b49',1,'op::SpinnakerWrapper']]],