diff --git a/doxygen.log b/doxygen.log index 0020315b..a58f630a 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 4920/65536 hits=38113 misses=5280 +lookup cache used 4921/65536 hits=38133 misses=5281 finished... diff --git a/html/array_8hpp_source.html b/html/array_8hpp_source.html index 577887d8..0773e3ba 100644 --- a/html/array_8hpp_source.html +++ b/html/array_8hpp_source.html @@ -165,9 +165,9 @@ $(document).ready(function(){initNavTree('array_8hpp_source.html','');});
169  return mSize;
170  }
171 
-
177  std::string printSize() const;
-
178 
-
185  int getSize(const int index) const;
+
178  int getSize(const int index) const;
+
179 
+
185  std::string printSize() const;
186 
191  inline size_t getNumberDimensions() const
192  {
@@ -181,120 +181,125 @@ $(document).ready(function(){initNavTree('array_8hpp_source.html','');});
205 
213  size_t getVolume(const int indexA, const int indexB) const;
214 
-
215 
-
216 
-
217  // ------------------------------ Data Access Functions And Operators ------------------------------ //
-
224  inline T* getPtr()
-
225  {
-
226  return spData.get();
-
227  }
+
220  std::vector<int> getStride() const;
+
221 
+
226  int getStride(const int index) const;
+
227 
228 
-
233  inline const T* getConstPtr() const
-
234  {
-
235  return spData.get();
-
236  }
-
237 
-
250  const cv::Mat& getConstCvMat() const;
-
251 
-
259  cv::Mat& getCvMat();
-
260 
-
269  inline T& operator[](const int index)
-
270  {
-
271  #ifdef NDEBUG
-
272  return spData.get()[index];
-
273  #else
-
274  return at(index);
-
275  #endif
-
276  }
-
277 
-
285  inline const T& operator[](const int index) const
-
286  {
-
287  #ifdef NDEBUG
-
288  return spData.get()[index];
-
289  #else
-
290  return at(index);
-
291  #endif
-
292  }
-
293 
-
302  inline T& operator[](const std::vector<int>& indexes)
-
303  {
-
304  return operator[](getIndex(indexes));
-
305  }
+
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 
-
314  inline const T& operator[](const std::vector<int>& indexes) const
-
315  {
-
316  return operator[](getIndex(indexes));
-
317  }
-
318 
-
326  inline T& at(const int index)
-
327  {
-
328  return commonAt(index);
-
329  }
-
330 
-
338  inline const T& at(const int index) const
-
339  {
-
340  return commonAt(index);
-
341  }
-
342 
-
350  inline T& at(const std::vector<int>& indexes)
-
351  {
-
352  return at(getIndexAndCheck(indexes));
-
353  }
-
354 
-
362  inline const T& at(const std::vector<int>& indexes) const
-
363  {
-
364  return at(getIndexAndCheck(indexes));
-
365  }
-
366 
-
379  const std::string toString() const;
-
380 
-
381  private:
-
382  std::vector<int> mSize;
-
383  size_t mVolume;
-
384  std::shared_ptr<T> spData;
-
385  std::pair<bool, cv::Mat> mCvMatData;
-
386 
-
394  int getIndex(const std::vector<int>& indexes) const;
-
395 
-
403  int getIndexAndCheck(const std::vector<int>& indexes) const;
-
404 
-
410  T& commonAt(const int index) const;
-
411 
-
416  void setCvMatFromSharedPtr();
-
417  };
-
418 
-
419  // Static methods
-
420  OVERLOAD_C_OUT(Array)
-
421 }
-
422 
-
423 #endif // OPENPOSE_CORE_ARRAY_HPP
+
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
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:302
-
op::Array::at
T & at(const int index)
Definition: array.hpp:326
+
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::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:362
+
op::Array::at
const T & at(const std::vector< int > &indexes) const
Definition: array.hpp:375
op::Array::setTo
void setTo(const T value)
-
op::Array::at
const T & at(const int index) const
Definition: array.hpp:338
+
op::Array::at
const T & at(const int index) const
Definition: array.hpp:351
OVERLOAD_C_OUT
#define OVERLOAD_C_OUT(className)
Definition: macros.hpp:60
-
op::Array::getPtr
T * getPtr()
Definition: array.hpp:224
+
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::getCvMat
cv::Mat & getCvMat()
-
op::Array::operator[]
T & operator[](const int index)
Definition: array.hpp:269
+
op::Array::operator[]
T & operator[](const int index)
Definition: array.hpp:282
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:314
+
op::Array::operator[]
const T & operator[](const std::vector< int > &indexes) const
Definition: array.hpp:327
op::Array
Definition: array.hpp:20
-
op::Array::getConstPtr
const T * getConstPtr() const
Definition: array.hpp:233
+
op::Array::getConstPtr
const T * getConstPtr() const
Definition: array.hpp:246
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:285
-
op::Array::at
T & at(const std::vector< int > &indexes)
Definition: array.hpp:350
+
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
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 485f7410..58043350 100644 --- a/html/classop_1_1_array-members.html +++ b/html/classop_1_1_array-members.html @@ -131,6 +131,8 @@ $(document).ready(function(){initNavTree('classop_1_1_array.html','');}); 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 > diff --git a/html/classop_1_1_array.html b/html/classop_1_1_array.html index 19e343e9..369ec29f 100644 --- a/html/classop_1_1_array.html +++ b/html/classop_1_1_array.html @@ -151,16 +151,20 @@ Public Member Functions   std::vector< int > getSize () const   -std::string printSize () const -  int getSize (const int index) const   +std::string printSize () const +  size_t getNumberDimensions () const   size_t getVolume () const   size_t getVolume (const int indexA, const int indexB) const   +std::vector< int > getStride () const +  +int getStride (const int index) const +  T * getPtr ()   const T * getConstPtr () const @@ -220,7 +224,7 @@ template<typename T>

Array constructor. Equivalent to default constructor + reset(const int size).

Parameters
- +
sizeInteger with the number of T element to be allocated. E.g. size = 5 is internally similar to new T[5].
sizeInteger with the number of T element to be allocated. E.g., size = 5 is internally similar to new T[5].
@@ -253,7 +257,7 @@ template<typename T>

Array constructor. Equivalent to default constructor + reset(const std::vector<int>& size = {}).

Parameters
- +
sizesVector with the size of each dimension. E.g. size = {3, 5, 2} is internally similar to new T[3*5*2].
sizesVector with the size of each dimension. E.g., size = {3, 5, 2} is internally similar to new T[3*5*2].
@@ -288,7 +292,7 @@ template<typename T>

Array constructor. Equivalent to default constructor + reset(const int size, const T value).

Parameters
- +
sizeInteger with the number of T element to be allocated. E.g. size = 5 is internally similar to new T[5].
sizeInteger with the number of T element to be allocated. E.g., size = 5 is internally similar to new T[5].
valueInitial value for each component of the Array.
@@ -324,7 +328,7 @@ template<typename T>

Array constructor. Equivalent to default constructor + reset(const std::vector<int>& size, const T value).

Parameters
- +
sizesVector with the size of each dimension. E.g. size = {3, 5, 2} is internally similar to: new T[3*5*2].
sizesVector with the size of each dimension. E.g., size = {3, 5, 2} is internally similar to: new T[3*5*2].
valueInitial value for each component of the Array.
@@ -625,7 +629,7 @@ template<typename T>
-

Analogous to getConstCvMat, but in this case it returns a editable cv::Mat. Very important: Only allowed functions which do not provoke data reallocation. E.g. resizing functions will not work and they would provoke an undefined behaviour and/or execution crashes.

+

Analogous to getConstCvMat, but in this case it returns a editable cv::Mat. Very important: Only allowed functions which do not provoke data reallocation. E.g., resizing functions will not work and they would provoke an undefined behaviour and/or execution crashes.

Returns
A cv::Mat pointing to the data.
@@ -735,6 +739,43 @@ template<typename T>
Returns
Size of the desired dimension. It will return 0 if the requested dimension is higher than the number of dimensions.
+ + + +
+
+
+template<typename T>
+ + + + + + + +
std::vector<int> op::Array< T >::getStride () const
+
+

Return the stride or step size of the array. E.g., given and Array<T> of size 5x3, getStride() would return the following vector: {5x3sizeof(T), 3sizeof(T), sizeof(T)}.

+ +
+
+ +
+
+
+template<typename T>
+ + + + + + + + +
int op::Array< T >::getStride (const int index) const
+
+

Return the stride or step size of the array at the index-th dimension. E.g., given and Array<T> of size 5x3, getStride(2) would return sizeof(T).

+
@@ -759,7 +800,7 @@ template<typename T>
-

Return the total number of elements allocated, equivalent to multiply all the components from getSize(). E.g. for a Array<T> of size = {2,5,3}, the volume or total number of elements is: 2x5x3 = 30.

+

Return the total number of elements allocated, equivalent to multiply all the components from getSize(). E.g., for a Array<T> of size = {2,5,3}, the volume or total number of elements is: 2x5x3 = 30.

Returns
The total volume of the allocated data. If no memory is allocated, it returns 0.
@@ -789,7 +830,7 @@ template<typename T>
-

Similar to getVolume(), but in this case it just returns the volume between the desired dimensions. E.g. for a Array<T> of size = {2,5,3}, the volume or total number of elements for getVolume(1,2) is 5x3 = 15.

+

Similar to getVolume(), but in this case it just returns the volume between the desired dimensions. E.g., for a Array<T> of size = {2,5,3}, the volume or total number of elements for getVolume(1,2) is 5x3 = 15.

Returns
The total volume of the allocated data between the desired dimensions. If the index are out of bounds, it throws an error.
@@ -937,7 +978,7 @@ template<typename T>
-

[] operator Same functionality as operator[](const int index), but it lets the user introduce the multi-dimensional index. E.g. given a (10 x 10 x 10) array, array[11] is equivalent to array[{1,1,0}]

+

[] operator Same functionality as operator[](const int index), but it lets the user introduce the multi-dimensional index. E.g., given a (10 x 10 x 10) array, array[11] is equivalent to array[{1,1,0}]

Parameters
@@ -1019,7 +1060,7 @@ template<typename T>

Data allocation function. It allocates the required space for the memory (it does not initialize that memory).

Parameters
indexesVector with the desired memory location.
- +
sizeInteger with the number of T element to be allocated. E.g. size = 5 is internally similar to new T[5].
sizeInteger with the number of T element to be allocated. E.g., size = 5 is internally similar to new T[5].
@@ -1044,7 +1085,7 @@ template<typename T>

Data allocation function. Similar to reset(const int size), but it allocates a multi-dimensional array of dimensions each of the values of the argument.

Parameters
- +
sizesVector with the size of each dimension. E.g. size = {3, 5, 2} is internally similar to new T[3*5*2].
sizesVector with the size of each dimension. E.g., size = {3, 5, 2} is internally similar to new T[3*5*2].
@@ -1079,7 +1120,7 @@ template<typename T>

Data allocation function. Similar to reset(const int size), but initializing the data to the value specified by the second argument.

Parameters
- +
sizeInteger with the number of T element to be allocated. E.g. size = 5 is internally similar to new T[5].
sizeInteger with the number of T element to be allocated. E.g., size = 5 is internally similar to new T[5].
valueInitial value for each component of the Array.
@@ -1115,7 +1156,7 @@ template<typename T>

Data allocation function. Similar to reset(const std::vector<int>& size), but initializing the data to the value specified by the second argument.

Parameters
- +
sizesVector with the size of each dimension. E.g. size = {3, 5, 2} is internally similar to new T[3*5*2].
sizesVector with the size of each dimension. E.g., size = {3, 5, 2} is internally similar to new T[3*5*2].
valueInitial value for each component of the Array.
diff --git a/html/classop_1_1_array.js b/html/classop_1_1_array.js index 492b5344..a957f660 100644 --- a/html/classop_1_1_array.js +++ b/html/classop_1_1_array.js @@ -19,6 +19,8 @@ var classop_1_1_array = [ "getPtr", "classop_1_1_array.html#af4715967fd2b028a97fd30257e697275", 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 ], + [ "getStride", "classop_1_1_array.html#af318ada5d29b0d22e6c94dc62055793b", null ], [ "getVolume", "classop_1_1_array.html#afee5e6149bc917586b3fd56323d20a87", null ], [ "getVolume", "classop_1_1_array.html#a04d04645dd2b2f21492b2ad7a5b87828", null ], [ "operator=", "classop_1_1_array.html#a9c8e006e0eea472485f37971330ecbab", null ], diff --git a/html/functions_func_g.html b/html/functions_func_g.html index b536383f..65659fa2 100644 --- a/html/functions_func_g.html +++ b/html/functions_func_g.html @@ -290,7 +290,7 @@ $(document).ready(function(){initNavTree('functions_func_g.html','');}); , cl::Memory , cl::Pipe , cl::Platform -, cl::Program +, cl::Program , cl::Sampler
  • getIsRunningSharedPtr() @@ -346,7 +346,7 @@ $(document).ready(function(){initNavTree('functions_func_g.html','');}); : op::PersonTrackerEntry
  • getProfilingInfo() -: cl::Event +: cl::Event
  • getPtr() : op::Array< T > @@ -374,7 +374,10 @@ $(document).ready(function(){initNavTree('functions_func_g.html','');}); : op::Renderer
  • getSize() -: op::Array< T > +: op::Array< T > +
  • +
  • getStride() +: op::Array< T >
  • getSupportedImageFormats() : cl::Context diff --git a/html/functions_g.html b/html/functions_g.html index 04a86fe6..4cd746aa 100644 --- a/html/functions_g.html +++ b/html/functions_g.html @@ -297,7 +297,7 @@ $(document).ready(function(){initNavTree('functions_g.html','');});
  • getInfoHelper : cl::detail::Wrapper< T > -, cl::detail::Wrapper< cl_device_id > +, cl::detail::Wrapper< cl_device_id >
  • getIsRunningSharedPtr() : op::ThreadManager< TDatums, TWorker, TQueue > @@ -352,7 +352,7 @@ $(document).ready(function(){initNavTree('functions_g.html','');}); : op::PersonTrackerEntry
  • getProfilingInfo() -: cl::Event +: cl::Event
  • getPtr() : op::Array< T > @@ -380,7 +380,10 @@ $(document).ready(function(){initNavTree('functions_g.html','');}); : op::Renderer
  • getSize() -: op::Array< T > +: op::Array< T > +
  • +
  • getStride() +: op::Array< T >
  • getSupportedImageFormats() : cl::Context @@ -404,7 +407,7 @@ $(document).ready(function(){initNavTree('functions_g.html','');}); : op::Array< T >
  • getWorkGroupInfo() -: cl::Kernel +: cl::Kernel
  • gpuNumber : op::WrapperStructPose diff --git a/html/navtree.js b/html/navtree.js index 2a9c11c0..302039d8 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#a557b50d687fb9529306b33d0710a9f41", -"classop_1_1_queue_base.html#a5e52b4ab7e310373e3d1f1d42cfe4549", -"classop_1_1_w_id_generator.html#a03bd005cf88749702fb8a29c20d4cb91", -"fast_math_8hpp.html#a757a5cc88734e7be9e910e7d8213c282", -"gui_2enum_classes_8hpp.html#ae52707752b1872b39f0306cc4f6c6ae6ae18221460ca8434295f980225fd6a91b", -"pose_parameters_8hpp.html#af1ed202254520cd489723052d1f5a86d", -"structop_1_1_point.html#ad42deecd0077f7c962ca383cbc87e08f", -"w_pose_extractor_net_8hpp.html" +"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" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/html/navtreeindex10.js b/html/navtreeindex10.js index c788d4a3..1e64e82c 100644 --- a/html/navtreeindex10.js +++ b/html/navtreeindex10.js @@ -1,5 +1,7 @@ var NAVTREEINDEX10 = { +"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], "w_pose_extractor_net_8hpp.html#ab1e242b1ae7ff3300324fbfedebb52fc":[2,0,0,0,9,12,1], "w_pose_extractor_net_8hpp_source.html":[2,0,0,0,9,12], diff --git a/html/navtreeindex2.js b/html/navtreeindex2.js index d0558aa2..589d35c9 100644 --- a/html/navtreeindex2.js +++ b/html/navtreeindex2.js @@ -51,41 +51,43 @@ 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,20], -"classop_1_1_array.html#a0ad0232daa69783cf2c8f7a0ff5b3b0c":[1,0,3,5,29], -"classop_1_1_array.html#a12e538b09e98bf0900163031602ed2ed":[1,0,3,5,28], +"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,33], -"classop_1_1_array.html#a337e33980c231bc207ea7d31ffa84fe3":[1,0,3,5,27], -"classop_1_1_array.html#a3f6c6f7ddeed3d1edbc907441888a8cf":[1,0,3,5,26], +"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#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,32], +"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#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#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,21], -"classop_1_1_array.html#aa40dc59e800d3c4cce623d560c0e0fad":[1,0,3,5,23], -"classop_1_1_array.html#aada0f1bd6e9eb73b4f977e62da536f58":[1,0,3,5,25], +"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,30], +"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#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,31], +"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,22], -"classop_1_1_array.html#ae3ec6553128d77b0c26b848c0a0f81ca":[1,0,3,5,34], -"classop_1_1_array.html#aeccfa42607d5deb5039ff260eb980abc":[1,0,3,5,24], +"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#afee5e6149bc917586b3fd56323d20a87":[1,0,3,5,19], +"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_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], @@ -247,7 +249,5 @@ var NAVTREEINDEX2 = "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#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#a2ee9d38650ed3138fa74fae2cad4bd77":[1,0,3,63,9] }; diff --git a/html/navtreeindex3.js b/html/navtreeindex3.js index 97b9295e..8f01f209 100644 --- a/html/navtreeindex3.js +++ b/html/navtreeindex3.js @@ -1,5 +1,7 @@ var NAVTREEINDEX3 = { +"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], "classop_1_1_hand_extractor_net.html#a5c4174ed2c09ff7c15edfc5d971f4aef":[1,0,3,63,12], "classop_1_1_hand_extractor_net.html#a7f97a5b842d20d3d37d3469418faac7b":[1,0,3,63,11], @@ -247,7 +249,5 @@ var NAVTREEINDEX3 = "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#a49c1d6740f2ce7f26eae606f109b5738":[1,0,3,99,31], -"classop_1_1_queue_base.html#a5b28915cc58e040aca673bdfdf7c8be3":[1,0,3,99,12] +"classop_1_1_queue_base.html#a42a873f65588219449e21ac4927311d7":[1,0,3,99,11] }; diff --git a/html/navtreeindex4.js b/html/navtreeindex4.js index e78dc552..58119eca 100644 --- a/html/navtreeindex4.js +++ b/html/navtreeindex4.js @@ -1,5 +1,7 @@ var NAVTREEINDEX4 = { +"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], "classop_1_1_queue_base.html#a68b51dafaba93179fcef78731aaf1703":[1,0,3,99,14], "classop_1_1_queue_base.html#a77bf3592bbb6ac586cd4c2b0aea98e62":[1,0,3,99,27], @@ -247,7 +249,5 @@ var NAVTREEINDEX4 = "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#aa651ec613c81cf9a19222428bd59feed":[1,0,3,46,1], -"classop_1_1_w_id_generator.html":[1,0,3,107] +"classop_1_1_w_heat_map_saver.html#a5fd729a47f0cdbe94001219f971f8f51":[1,0,3,46,3] }; diff --git a/html/navtreeindex5.js b/html/navtreeindex5.js index c8dfea22..94dc4aa9 100644 --- a/html/navtreeindex5.js +++ b/html/navtreeindex5.js @@ -1,5 +1,7 @@ var NAVTREEINDEX5 = { +"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], "classop_1_1_w_id_generator.html#a50a1b7929810daae87ee6443c659edad":[1,0,3,107,2], "classop_1_1_w_id_generator.html#a6112733ee0b537d4d91191f93f0a84f8":[1,0,3,107,0], @@ -247,7 +249,5 @@ var NAVTREEINDEX5 = "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], -"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#a61240e5fbd4ea84a2cfdc89407bcb1ae":[2,0,0,0,13,3,8] }; diff --git a/html/navtreeindex6.js b/html/navtreeindex6.js index 2c3e14bc..3117676d 100644 --- a/html/navtreeindex6.js +++ b/html/navtreeindex6.js @@ -1,5 +1,7 @@ var NAVTREEINDEX6 = { +"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], "fast_math_8hpp.html#a7817601c574b570fef5ab7703b9b8aea":[2,0,0,0,13,3,5], "fast_math_8hpp.html#a8525e440d6ac1b558e72637dc4f4e3c4":[2,0,0,0,13,3,9], @@ -247,7 +249,5 @@ var NAVTREEINDEX6 = "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#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#ae52707752b1872b39f0306cc4f6c6ae6a28b652e57d2da6b7c939166be21efd9a":[2,0,0,0,6,0,0,0] }; diff --git a/html/navtreeindex7.js b/html/navtreeindex7.js index 1cca42e3..b6d025d6 100644 --- a/html/navtreeindex7.js +++ b/html/navtreeindex7.js @@ -1,5 +1,7 @@ var NAVTREEINDEX7 = { +"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], "gui_2enum_classes_8hpp_source.html":[2,0,0,0,6,0], "gui_2headers_8hpp.html":[2,0,0,0,6,6], @@ -96,8 +98,8 @@ var NAVTREEINDEX7 = "maximum_base_8hpp_source.html":[2,0,0,0,8,3], "maximum_caffe_8hpp.html":[2,0,0,0,8,4], "maximum_caffe_8hpp_source.html":[2,0,0,0,8,4], -"namespaceboost.html":[1,0,0], "namespaceboost.html":[0,0,0], +"namespaceboost.html":[1,0,0], "namespacecaffe.html":[1,0,1], "namespacecaffe.html":[0,0,1], "namespacecl.html":[1,0,2], @@ -106,8 +108,8 @@ var NAVTREEINDEX7 = "namespacecl_1_1compatibility.html":[0,0,2,0], "namespacecl_1_1detail.html":[0,0,2,1], "namespacecl_1_1detail.html":[1,0,2,1], -"namespacemembers.html":[0,1,0], "namespacemembers.html":[0,1,0,0], +"namespacemembers.html":[0,1,0], "namespacemembers_b.html":[0,1,0,1], "namespacemembers_c.html":[0,1,0,2], "namespacemembers_d.html":[0,1,0,3], @@ -115,8 +117,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], "namespacemembers_func.html":[0,1,1,0], +"namespacemembers_func.html":[0,1,1], "namespacemembers_func_c.html":[0,1,1,1], "namespacemembers_func_d.html":[0,1,1,2], "namespacemembers_func_e.html":[0,1,1,3], @@ -247,7 +249,5 @@ var NAVTREEINDEX7 = "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#ad7ca8d89f9045481075902c8bd98b8f4":[2,0,0,0,9,7,8] }; diff --git a/html/navtreeindex8.js b/html/navtreeindex8.js index 60a3a090..993b3a63 100644 --- a/html/navtreeindex8.js +++ b/html/navtreeindex8.js @@ -1,5 +1,7 @@ var NAVTREEINDEX8 = { +"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], @@ -247,7 +249,5 @@ var NAVTREEINDEX8 = "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#ac8596f2b3b50464b6c6eaa34b0a2c48b":[1,0,3,13,20] }; diff --git a/html/navtreeindex9.js b/html/navtreeindex9.js index b4b3d35d..4d02efd1 100644 --- a/html/navtreeindex9.js +++ b/html/navtreeindex9.js @@ -1,5 +1,7 @@ var NAVTREEINDEX9 = { +"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], "structop_1_1_point.html#ad5005ff994bfcd1846854d6af103a3a6":[1,0,3,13,9], "structop_1_1_point.html#af8e49e33dad417d05ce8fb5f9dd68762":[1,0,3,13,16], @@ -247,7 +249,5 @@ var NAVTREEINDEX9 = "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_8hpp.html":[2,0,0,0,9,11] }; diff --git a/html/search/all_6.js b/html/search/all_6.js index 6a02ab55..948e8f5b 100644 --- a/html/search/all_6.js +++ b/html/search/all_6.js @@ -96,6 +96,7 @@ var searchData= ['getsharedparameters',['getSharedParameters',['../classop_1_1_gpu_renderer.html#a5576d2da79ef7ff38ee86b35383d6d46',1,'op::GpuRenderer']]], ['getshowgooglyeyes',['getShowGooglyEyes',['../classop_1_1_renderer.html#a891be57b699f6adbb7cd841870214b8e',1,'op::Renderer']]], ['getsize',['getSize',['../classop_1_1_array.html#a2330657a79a444d1ab44370423be006e',1,'op::Array::getSize() const '],['../classop_1_1_array.html#a146d6e773e14dd7aaa29a73f878358e1',1,'op::Array::getSize(const int index) const ']]], + ['getstride',['getStride',['../classop_1_1_array.html#afeacae113dd204df98b78353205c05f1',1,'op::Array::getStride() const '],['../classop_1_1_array.html#af318ada5d29b0d22e6c94dc62055793b',1,'op::Array::getStride(const int index) const ']]], ['getsupportedimageformats',['getSupportedImageFormats',['../classcl_1_1_context.html#af9791ad3f42226fa26050831c2b61cdc',1,'cl::Context']]], ['getsvmmemflags',['getSVMMemFlags',['../classcl_1_1detail_1_1_s_v_m_trait_null.html#aec1edd19001a5739c3a6543c5bc3b19f',1,'cl::detail::SVMTraitNull::getSVMMemFlags()'],['../classcl_1_1_s_v_m_trait_read_write.html#a6914bdc3f37606faab74b58b5dcc786e',1,'cl::SVMTraitReadWrite::getSVMMemFlags()'],['../classcl_1_1_s_v_m_trait_read_only.html#a2859ec2b9a8b723551b6db798ef5497d',1,'cl::SVMTraitReadOnly::getSVMMemFlags()'],['../classcl_1_1_s_v_m_trait_write_only.html#a4f80e215ea583a6fa1d398b455670bdc',1,'cl::SVMTraitWriteOnly::getSVMMemFlags()'],['../classcl_1_1_s_v_m_trait_coarse.html#a1a1a433d703630936e3cbb4177245d13',1,'cl::SVMTraitCoarse::getSVMMemFlags()'],['../classcl_1_1_s_v_m_trait_fine.html#a214a7aedb1b037a7796c7f629e18f3b5',1,'cl::SVMTraitFine::getSVMMemFlags()'],['../classcl_1_1_s_v_m_trait_atomic.html#a87fc8aa6c225b8acaaef5bc0579855a9',1,'cl::SVMTraitAtomic::getSVMMemFlags()']]], ['gettworkerssize',['getTWorkersSize',['../classop_1_1_sub_thread.html#afa29b95badda5e7afdbd83f70fd8b206',1,'op::SubThread']]], @@ -112,15 +113,15 @@ var searchData= ['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',1,'op']]], ['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',1,'op']]], ['gui3d',['Gui3D',['../classop_1_1_gui3_d.html#a7146b02ee5c009f879ddfea2145fea34',1,'op::Gui3D']]], + ['gui3d',['Gui3D',['../classop_1_1_gui3_d.html',1,'op']]], ['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#af23e17f9eeb51c7473cd0940292efa61',1,'op::GuiInfoAdder']]], ['guiinfoadder',['GuiInfoAdder',['../classop_1_1_gui_info_adder.html',1,'op']]], + ['guiinfoadder',['GuiInfoAdder',['../classop_1_1_gui_info_adder.html#af23e17f9eeb51c7473cd0940292efa61',1,'op::GuiInfoAdder']]], ['guiinfoadder_2ehpp',['guiInfoAdder.hpp',['../gui_info_adder_8hpp.html',1,'']]], ['guiverbose',['guiVerbose',['../structop_1_1_wrapper_struct_output.html#ac72ad601daf957b9b000206e9f1fe0ad',1,'op::WrapperStructOutput']]] ]; diff --git a/html/search/functions_6.js b/html/search/functions_6.js index bdc8df6c..e7cd3664 100644 --- a/html/search/functions_6.js +++ b/html/search/functions_6.js @@ -94,6 +94,7 @@ var searchData= ['getsharedparameters',['getSharedParameters',['../classop_1_1_gpu_renderer.html#a5576d2da79ef7ff38ee86b35383d6d46',1,'op::GpuRenderer']]], ['getshowgooglyeyes',['getShowGooglyEyes',['../classop_1_1_renderer.html#a891be57b699f6adbb7cd841870214b8e',1,'op::Renderer']]], ['getsize',['getSize',['../classop_1_1_array.html#a2330657a79a444d1ab44370423be006e',1,'op::Array::getSize() const '],['../classop_1_1_array.html#a146d6e773e14dd7aaa29a73f878358e1',1,'op::Array::getSize(const int index) const ']]], + ['getstride',['getStride',['../classop_1_1_array.html#afeacae113dd204df98b78353205c05f1',1,'op::Array::getStride() const '],['../classop_1_1_array.html#af318ada5d29b0d22e6c94dc62055793b',1,'op::Array::getStride(const int index) const ']]], ['getsupportedimageformats',['getSupportedImageFormats',['../classcl_1_1_context.html#af9791ad3f42226fa26050831c2b61cdc',1,'cl::Context']]], ['getsvmmemflags',['getSVMMemFlags',['../classcl_1_1detail_1_1_s_v_m_trait_null.html#aec1edd19001a5739c3a6543c5bc3b19f',1,'cl::detail::SVMTraitNull::getSVMMemFlags()'],['../classcl_1_1_s_v_m_trait_read_write.html#a6914bdc3f37606faab74b58b5dcc786e',1,'cl::SVMTraitReadWrite::getSVMMemFlags()'],['../classcl_1_1_s_v_m_trait_read_only.html#a2859ec2b9a8b723551b6db798ef5497d',1,'cl::SVMTraitReadOnly::getSVMMemFlags()'],['../classcl_1_1_s_v_m_trait_write_only.html#a4f80e215ea583a6fa1d398b455670bdc',1,'cl::SVMTraitWriteOnly::getSVMMemFlags()'],['../classcl_1_1_s_v_m_trait_coarse.html#a1a1a433d703630936e3cbb4177245d13',1,'cl::SVMTraitCoarse::getSVMMemFlags()'],['../classcl_1_1_s_v_m_trait_fine.html#a214a7aedb1b037a7796c7f629e18f3b5',1,'cl::SVMTraitFine::getSVMMemFlags()'],['../classcl_1_1_s_v_m_trait_atomic.html#a87fc8aa6c225b8acaaef5bc0579855a9',1,'cl::SVMTraitAtomic::getSVMMemFlags()']]], ['gettworkerssize',['getTWorkersSize',['../classop_1_1_sub_thread.html#afa29b95badda5e7afdbd83f70fd8b206',1,'op::SubThread']]],