diff --git a/doxygen.log b/doxygen.log index 975842099e9221e43078669b68d3b7e2b8b5072e..9221691751c3a25efc8abd242afe6368c3825d04 100644 --- a/doxygen.log +++ b/doxygen.log @@ -900,5 +900,5 @@ Generating file index... Generating file member index... Generating example index... finalizing index lists... -lookup cache used 2767/65536 hits=16653 misses=2960 +lookup cache used 2766/65536 hits=16646 misses=2959 finished... diff --git a/html/file_system_8hpp.html b/html/file_system_8hpp.html index d9c4207f7eb9538261f5759be63387e9eb9fe825..d6778d0daacdebec092358b9c95e9864f59bba29 100644 --- a/html/file_system_8hpp.html +++ b/html/file_system_8hpp.html @@ -123,12 +123,10 @@ Namespaces Functions OP_API void op::mkdir (const std::string &directoryPath)   -OP_API bool op::existDir (const std::string &directoryPath) -  +OP_API bool op::existDirectory (const std::string &directoryPath) +  OP_API bool op::existFile (const std::string &filePath)   -OP_API bool op::isDirectory (const std::string &directoryPath) -  OP_API std::string op::formatAsDirectory (const std::string &directoryPathString)   OP_API std::string op::getFileNameAndExtension (const std::string &fullPath) diff --git a/html/file_system_8hpp.js b/html/file_system_8hpp.js index 3b0d762d705431d9a202f637993e48ce94deb98b..cbdffd81b28a245fd67c948b3bc72e010f1dc21b 100644 --- a/html/file_system_8hpp.js +++ b/html/file_system_8hpp.js @@ -1,6 +1,6 @@ var file_system_8hpp = [ - [ "existDir", "file_system_8hpp.html#a595aad58db9f96e328089c5d2c260c55", null ], + [ "existDirectory", "file_system_8hpp.html#a6fc2ee2d2c256695fb7b2b953ee7f762", null ], [ "existFile", "file_system_8hpp.html#ac1f4b95440d2fb57fc715558d039b947", null ], [ "formatAsDirectory", "file_system_8hpp.html#ab38ea91ef7b7dad700d8e4a4654d48f5", null ], [ "getFileExtension", "file_system_8hpp.html#a515273b013402d8c75780330588421bc", null ], @@ -8,6 +8,5 @@ var file_system_8hpp = [ "getFileNameNoExtension", "file_system_8hpp.html#a6f37638480139a4076eef4d0c7dc6cd1", null ], [ "getFilesOnDirectory", "file_system_8hpp.html#a3ff74a37eb4bf12e31bc5aa95b69f9e3", null ], [ "getFilesOnDirectory", "file_system_8hpp.html#adb26da2c52486e926d98471b5387c7e1", null ], - [ "isDirectory", "file_system_8hpp.html#ab4f8d497b1ec08dfa1d2ed30e0a00312", null ], [ "mkdir", "file_system_8hpp.html#a4b3aaeb920cb0b3b62d80e231531d83f", null ] ]; \ No newline at end of file diff --git a/html/file_system_8hpp_source.html b/html/file_system_8hpp_source.html index 9d9841b6a0f7ef52b2fdd47e38938998b06d62ca..e721c06f9750add47a053ba1443081102fd50223 100644 --- a/html/file_system_8hpp_source.html +++ b/html/file_system_8hpp_source.html @@ -116,35 +116,32 @@ $(document).ready(function(){initNavTree('file_system_8hpp_source.html','');});
7 {
8  OP_API void mkdir(const std::string& directoryPath);
9 
-
10  OP_API bool existDir(const std::string& directoryPath);
+
10  OP_API bool existDirectory(const std::string& directoryPath);
11 
12  OP_API bool existFile(const std::string& filePath);
13 
-
14  OP_API bool isDirectory(const std::string& directoryPath);
-
15 
-
22  OP_API std::string formatAsDirectory(const std::string& directoryPathString);
-
23 
-
29  OP_API std::string getFileNameAndExtension(const std::string& fullPath);
-
30 
-
36  OP_API std::string getFileNameNoExtension(const std::string& fullPath);
-
37 
-
43  OP_API std::string getFileExtension(const std::string& fullPath);
-
44 
-
52  OP_API std::vector<std::string> getFilesOnDirectory(const std::string& directoryPath,
-
53  const std::vector<std::string>& extensions = {});
-
54 
-
62  OP_API std::vector<std::string> getFilesOnDirectory(const std::string& directoryPath,
-
63  const std::string& extension);
-
64 }
-
65 
-
66 #endif // OPENPOSE_UTILITIES_FILE_SYSTEM_HPP
+
20  OP_API std::string formatAsDirectory(const std::string& directoryPathString);
+
21 
+
27  OP_API std::string getFileNameAndExtension(const std::string& fullPath);
+
28 
+
34  OP_API std::string getFileNameNoExtension(const std::string& fullPath);
+
35 
+
41  OP_API std::string getFileExtension(const std::string& fullPath);
+
42 
+
50  OP_API std::vector<std::string> getFilesOnDirectory(const std::string& directoryPath,
+
51  const std::vector<std::string>& extensions = {});
+
52 
+
60  OP_API std::vector<std::string> getFilesOnDirectory(const std::string& directoryPath,
+
61  const std::string& extension);
+
62 }
+
63 
+
64 #endif // OPENPOSE_UTILITIES_FILE_SYSTEM_HPP
op::getFileExtension
OP_API std::string getFileExtension(const std::string &fullPath)
+
op::existDirectory
OP_API bool existDirectory(const std::string &directoryPath)
common.hpp
op::getFileNameAndExtension
OP_API std::string getFileNameAndExtension(const std::string &fullPath)
op::getFileNameNoExtension
OP_API std::string getFileNameNoExtension(const std::string &fullPath)
-
op::isDirectory
OP_API bool isDirectory(const std::string &directoryPath)
op::formatAsDirectory
OP_API std::string formatAsDirectory(const std::string &directoryPathString)
-
op::existDir
OP_API bool existDir(const std::string &directoryPath)
op::existFile
OP_API bool existFile(const std::string &filePath)
OP_API
#define OP_API
Definition: macros.hpp:5
op::mkdir
OP_API void mkdir(const std::string &directoryPath)
diff --git a/html/namespacemembers_e.html b/html/namespacemembers_e.html index 0a214df7c26a26ac5b8f7bbdea60de3bfd4c1bbd..f4b90d594f4c390d192d307cd3b23d87a027e9c0 100644 --- a/html/namespacemembers_e.html +++ b/html/namespacemembers_e.html @@ -149,8 +149,8 @@ $(document).ready(function(){initNavTree('namespacemembers_e.html','');});
  • ErrorMode : op
  • -
  • existDir() -: op +
  • existDirectory() +: op
  • existFile() : op diff --git a/html/namespacemembers_func.html b/html/namespacemembers_func.html index a822cc53bb49bfbbbcc8e4259a8028cc11bd18b7..61e785dd721cb01488c4e3fccb5e719dac011549 100644 --- a/html/namespacemembers_func.html +++ b/html/namespacemembers_func.html @@ -195,8 +195,8 @@ $(document).ready(function(){initNavTree('namespacemembers_func.html','');});
  • error() : op
  • -
  • existDir() -: op +
  • existDirectory() +: op
  • existFile() : op @@ -339,9 +339,6 @@ $(document).ready(function(){initNavTree('namespacemembers_func.html','');});
  • intRound() : op
  • -
  • isDirectory() -: op -
  • diff --git a/html/namespacemembers_i.html b/html/namespacemembers_i.html index 02b1d2cefa46e2a240f0f6bc1e397debb3525860..2ee5b1f7b8be873ebdc0d6fe0481a4e48d73c014 100644 --- a/html/namespacemembers_i.html +++ b/html/namespacemembers_i.html @@ -155,9 +155,6 @@ $(document).ready(function(){initNavTree('namespacemembers_i.html','');});
  • IPCamera : op
  • -
  • isDirectory() -: op -
  • diff --git a/html/namespaceop.html b/html/namespaceop.html index bc01b99eb4424bcc27e901b68c1f11b88ca5f561..93907990cc8ea89da68d3163db3d563ddf474442 100644 --- a/html/namespaceop.html +++ b/html/namespaceop.html @@ -712,12 +712,10 @@ Functions   OP_API void mkdir (const std::string &directoryPath)   -OP_API bool existDir (const std::string &directoryPath) -  +OP_API bool existDirectory (const std::string &directoryPath) +  OP_API bool existFile (const std::string &filePath)   -OP_API bool isDirectory (const std::string &directoryPath) -  OP_API std::string formatAsDirectory (const std::string &directoryPathString)   OP_API std::string getFileNameAndExtension (const std::string &fullPath) @@ -2716,12 +2714,12 @@ template<typename T > - +
    - + @@ -3795,22 +3793,6 @@ template<typename T >
    OP_API bool op::existDir OP_API bool op::existDirectory ( const std::string &  directoryPath)
    -
    -
    - -
    -
    - - - - - - - - -
    OP_API bool op::isDirectory (const std::string & directoryPath)
    -
    -
    diff --git a/html/navtree.js b/html/navtree.js index 072f42cb2bfa0e65d76e8a962990e85f94ed3fb3..4020e3a112e7826473dc285ecdbd2360bfcd26a9 100644 --- a/html/navtree.js +++ b/html/navtree.js @@ -38,8 +38,8 @@ var NAVTREEINDEX = "classop_1_1_nms_caffe.html#ab4d3a1d507579711e0aed65dcb06f8ac", "classop_1_1_w_face_extractor.html#a16522778f67bc544867929f5a4357934", "fast_math_8hpp.html#aaafe2e235a1a3a146bb026b71c521c7b", -"op_output_to_cv_mat_8hpp_source.html", -"structop_1_1_wrapper_struct_hand.html#a667ad7eed9f4f96b460f331d25f3d87f" +"open_cv_8hpp.html", +"structop_1_1_wrapper_struct_hand.html#a6a54d5b5766d23412c87bd10c26cb291" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/html/navtreeindex3.js b/html/navtreeindex3.js index 0c3f10b72d1828b368ae112a8c0d534b7a926b68..cdadc499bba2a12f4345451fc2e72de041a36da8 100644 --- a/html/navtreeindex3.js +++ b/html/navtreeindex3.js @@ -22,13 +22,12 @@ var NAVTREEINDEX3 = "file_stream_8hpp_source.html":[2,0,0,0,3,3], "file_system_8hpp.html":[2,0,0,0,9,5], "file_system_8hpp.html#a3ff74a37eb4bf12e31bc5aa95b69f9e3":[2,0,0,0,9,5,6], -"file_system_8hpp.html#a4b3aaeb920cb0b3b62d80e231531d83f":[2,0,0,0,9,5,9], +"file_system_8hpp.html#a4b3aaeb920cb0b3b62d80e231531d83f":[2,0,0,0,9,5,8], "file_system_8hpp.html#a515273b013402d8c75780330588421bc":[2,0,0,0,9,5,3], "file_system_8hpp.html#a573544858d0a9c29c9707eeda3a21c98":[2,0,0,0,9,5,4], -"file_system_8hpp.html#a595aad58db9f96e328089c5d2c260c55":[2,0,0,0,9,5,0], "file_system_8hpp.html#a6f37638480139a4076eef4d0c7dc6cd1":[2,0,0,0,9,5,5], +"file_system_8hpp.html#a6fc2ee2d2c256695fb7b2b953ee7f762":[2,0,0,0,9,5,0], "file_system_8hpp.html#ab38ea91ef7b7dad700d8e4a4654d48f5":[2,0,0,0,9,5,2], -"file_system_8hpp.html#ab4f8d497b1ec08dfa1d2ed30e0a00312":[2,0,0,0,9,5,8], "file_system_8hpp.html#ac1f4b95440d2fb57fc715558d039b947":[2,0,0,0,9,5,1], "file_system_8hpp.html#adb26da2c52486e926d98471b5387c7e1":[2,0,0,0,9,5,7], "file_system_8hpp_source.html":[2,0,0,0,9,5], @@ -249,5 +248,6 @@ var NAVTREEINDEX3 = "nms_base_8hpp_source.html":[2,0,0,0,0,14], "nms_caffe_8hpp.html":[2,0,0,0,0,15], "nms_caffe_8hpp_source.html":[2,0,0,0,0,15], -"op_output_to_cv_mat_8hpp.html":[2,0,0,0,0,16] +"op_output_to_cv_mat_8hpp.html":[2,0,0,0,0,16], +"op_output_to_cv_mat_8hpp_source.html":[2,0,0,0,0,16] }; diff --git a/html/navtreeindex4.js b/html/navtreeindex4.js index ec963427840487178777df8e40247c22683df318..b0f27d5aca535a8e2c4ef2ac7ff64fd441ee759d 100644 --- a/html/navtreeindex4.js +++ b/html/navtreeindex4.js @@ -1,6 +1,5 @@ var NAVTREEINDEX4 = { -"op_output_to_cv_mat_8hpp_source.html":[2,0,0,0,0,16], "open_cv_8hpp.html":[2,0,0,0,9,9], "open_cv_8hpp.html#a19f7bc389a24baf4883ec4155f01cc62":[2,0,0,0,9,9,1], "open_cv_8hpp.html#a24ebdcb8395dea0429f220de6a715d6e":[2,0,0,0,9,9,3], @@ -249,5 +248,6 @@ var NAVTREEINDEX4 = "structop_1_1_wrapper_struct_face.html#a9845712fd6ebb66fccb0c1647e3491a0":[1,0,2,105,4], "structop_1_1_wrapper_struct_face.html#accc6e564598130b9bf0a6d0ec9c304c4":[1,0,2,105,5], "structop_1_1_wrapper_struct_hand.html":[1,0,2,106], -"structop_1_1_wrapper_struct_hand.html#a3283127d10840219bf2aacedeef0b72b":[1,0,2,106,0] +"structop_1_1_wrapper_struct_hand.html#a3283127d10840219bf2aacedeef0b72b":[1,0,2,106,0], +"structop_1_1_wrapper_struct_hand.html#a667ad7eed9f4f96b460f331d25f3d87f":[1,0,2,106,3] }; diff --git a/html/navtreeindex5.js b/html/navtreeindex5.js index 3ccd2a57b05e1ec05928c88618c7d57466a3ea33..8212618b5cf614c419dc5328b8f571f4abbe53e1 100644 --- a/html/navtreeindex5.js +++ b/html/navtreeindex5.js @@ -1,6 +1,5 @@ var NAVTREEINDEX5 = { -"structop_1_1_wrapper_struct_hand.html#a667ad7eed9f4f96b460f331d25f3d87f":[1,0,2,106,3], "structop_1_1_wrapper_struct_hand.html#a6a54d5b5766d23412c87bd10c26cb291":[1,0,2,106,4], "structop_1_1_wrapper_struct_hand.html#a716f9c98cbee1a4a70d5978875795c4d":[1,0,2,106,1], "structop_1_1_wrapper_struct_hand.html#a8074cf22f8926d7f4d1d60cacae99c3e":[1,0,2,106,2], diff --git a/html/search/all_4.js b/html/search/all_4.js index 20fd9c5d5dce89741b298b3232d1c704d62b9c32..4b0c42937f15976a4a8ea6dbbe5a2bfa88635a40 100644 --- a/html/search/all_4.js +++ b/html/search/all_4.js @@ -16,7 +16,7 @@ var searchData= ['errorandlog_2ehpp',['errorAndLog.hpp',['../error_and_log_8hpp.html',1,'']]], ['errormode',['ErrorMode',['../namespaceop.html#a5f5a4cee9809deaf7201fb9caf5e400c',1,'op']]], ['exec',['exec',['../classop_1_1_thread.html#ad6c3721793d0f65ffe755ab74534afed',1,'op::Thread::exec()'],['../classop_1_1_thread_manager.html#a67a2d7cecc749be414e6896a88ec268d',1,'op::ThreadManager::exec()'],['../classop_1_1_wrapper.html#a8ae0f91a6882f04464d8897a7c81d174',1,'op::Wrapper::exec()']]], - ['existdir',['existDir',['../namespaceop.html#a595aad58db9f96e328089c5d2c260c55',1,'op']]], + ['existdirectory',['existDirectory',['../namespaceop.html#a6fc2ee2d2c256695fb7b2b953ee7f762',1,'op']]], ['existfile',['existFile',['../namespaceop.html#ac1f4b95440d2fb57fc715558d039b947',1,'op']]], ['extract',['extract',['../classop_1_1_scale_and_size_extractor.html#af1c56d1ce833e88056c3dd7fd43762a5',1,'op::ScaleAndSizeExtractor']]], ['extractids',['extractIds',['../classop_1_1_person_id_extractor.html#a11e4afb87a5c4aa1b5af3e779da0a7c2',1,'op::PersonIdExtractor']]] diff --git a/html/search/all_8.js b/html/search/all_8.js index 1339b42cb7a733c501cc5b5957e112b9ec6037eb..338a83c376918d9b2af702cc643ad4dff814c4ea 100644 --- a/html/search/all_8.js +++ b/html/search/all_8.js @@ -17,10 +17,9 @@ var searchData= ['inputresolution',['InputResolution',['../namespaceop.html#af72fe4ed32846c12f41b049d3d0e1bdaa46f9a0da0a5d448fd0cc8b3aa0a9b228',1,'op']]], ['intround',['intRound',['../namespaceop.html#adcfd0bf5ba782278488c157667a80c54',1,'op']]], ['ipcamera',['IPCamera',['../namespaceop.html#a54b73745852c270cfd891eed0f6f2332af40a40a04a078c4449cda2f326d7fb18',1,'op']]], - ['ipcamerareader',['IpCameraReader',['../classop_1_1_ip_camera_reader.html#abbe7f1bbf200ed9c6c0868eb3c6b0764',1,'op::IpCameraReader']]], ['ipcamerareader',['IpCameraReader',['../classop_1_1_ip_camera_reader.html',1,'op']]], + ['ipcamerareader',['IpCameraReader',['../classop_1_1_ip_camera_reader.html#abbe7f1bbf200ed9c6c0868eb3c6b0764',1,'op::IpCameraReader']]], ['ipcamerareader_2ehpp',['ipCameraReader.hpp',['../ip_camera_reader_8hpp.html',1,'']]], - ['isdirectory',['isDirectory',['../namespaceop.html#ab4f8d497b1ec08dfa1d2ed30e0a00312',1,'op']]], ['isopened',['isOpened',['../classop_1_1_video_saver.html#a0c5dadfa4f687283c370e7890ae5037f',1,'op::VideoSaver::isOpened()'],['../classop_1_1_image_directory_reader.html#a432bc94339019f251cc48bbb4c5ae1e8',1,'op::ImageDirectoryReader::isOpened()'],['../classop_1_1_producer.html#a58590e4a409d31f839184b4bf030a68b',1,'op::Producer::isOpened()'],['../classop_1_1_video_capture_reader.html#ae10d37b58fe4f3daa8817b72eb3faa64',1,'op::VideoCaptureReader::isOpened()']]], ['isrunning',['isRunning',['../classop_1_1_queue_base.html#a42a873f65588219449e21ac4927311d7',1,'op::QueueBase::isRunning()'],['../classop_1_1_thread.html#af0471340c93fdcc0ba8e06c3f9524fef',1,'op::Thread::isRunning()'],['../classop_1_1_thread_manager.html#ae15857e155633662cd46616fc54a4877',1,'op::ThreadManager::isRunning()'],['../classop_1_1_worker.html#a3f7c86ab1c4ce15c0f0ef12a1d4647e0',1,'op::Worker::isRunning()'],['../classop_1_1_wrapper.html#a51ab9e8a63f8fb822550365fc0417d01',1,'op::Wrapper::isRunning()']]] ]; diff --git a/html/search/functions_4.js b/html/search/functions_4.js index abd42fd2196c1a4f001023bb43de7089d4b5efd5..0f20addc9d300a39ff209b7a173f88e80b4d3379 100644 --- a/html/search/functions_4.js +++ b/html/search/functions_4.js @@ -4,7 +4,7 @@ var searchData= ['enter',['enter',['../classop_1_1_json_ofstream.html#a32f058b961605d418df1258a1dc5e6a0',1,'op::JsonOfstream']]], ['error',['error',['../namespaceop.html#a5f092bd36c716a894cb035e1ead2aca3',1,'op::error(const std::string &message, const int line=-1, const std::string &function="", const std::string &file="")'],['../namespaceop.html#a42d364d9fbd1a719341bd7187d97cf18',1,'op::error(const T &message, const int line=-1, const std::string &function="", const std::string &file="")']]], ['exec',['exec',['../classop_1_1_thread.html#ad6c3721793d0f65ffe755ab74534afed',1,'op::Thread::exec()'],['../classop_1_1_thread_manager.html#a67a2d7cecc749be414e6896a88ec268d',1,'op::ThreadManager::exec()'],['../classop_1_1_wrapper.html#a8ae0f91a6882f04464d8897a7c81d174',1,'op::Wrapper::exec()']]], - ['existdir',['existDir',['../namespaceop.html#a595aad58db9f96e328089c5d2c260c55',1,'op']]], + ['existdirectory',['existDirectory',['../namespaceop.html#a6fc2ee2d2c256695fb7b2b953ee7f762',1,'op']]], ['existfile',['existFile',['../namespaceop.html#ac1f4b95440d2fb57fc715558d039b947',1,'op']]], ['extract',['extract',['../classop_1_1_scale_and_size_extractor.html#af1c56d1ce833e88056c3dd7fd43762a5',1,'op::ScaleAndSizeExtractor']]], ['extractids',['extractIds',['../classop_1_1_person_id_extractor.html#a11e4afb87a5c4aa1b5af3e779da0a7c2',1,'op::PersonIdExtractor']]] diff --git a/html/search/functions_8.js b/html/search/functions_8.js index af8e7e433cadda55841ace732d308de726ce16f5..649ece2e9e45cea419f0519e1796fc79027c142f 100644 --- a/html/search/functions_8.js +++ b/html/search/functions_8.js @@ -8,7 +8,6 @@ var searchData= ['initializationonthread',['initializationOnThread',['../classop_1_1_net.html#a6e9e801f2c9950a798d0d2fa94a6c8f2',1,'op::Net::initializationOnThread()'],['../classop_1_1_net_caffe.html#a08b71387287339e68327dd6d4cb1e8b3',1,'op::NetCaffe::initializationOnThread()'],['../classop_1_1_w_cv_mat_to_op_input.html#ac03534bbe3b6c3c45efb61b5d78402da',1,'op::WCvMatToOpInput::initializationOnThread()'],['../classop_1_1_w_cv_mat_to_op_output.html#ad4c957d391e371b7ee56cdb5be6b1452',1,'op::WCvMatToOpOutput::initializationOnThread()'],['../classop_1_1_w_keypoint_scaler.html#aba4fb004818f3adc22959e382a90cd2c',1,'op::WKeypointScaler::initializationOnThread()'],['../classop_1_1_w_op_output_to_cv_mat.html#adea2e8b1d33e6c091640c7d904dac7cd',1,'op::WOpOutputToCvMat::initializationOnThread()'],['../classop_1_1_w_scale_and_size_extractor.html#ac1203ef395a836b13f5586432f284c41',1,'op::WScaleAndSizeExtractor::initializationOnThread()'],['../classop_1_1_w_person_id_extractor.html#a72b888875be18eb3fc8d0a8c267630de',1,'op::WPersonIdExtractor::initializationOnThread()'],['../classop_1_1_face_extractor.html#a2692c0040bb8c0b84a84d195194d037a',1,'op::FaceExtractor::initializationOnThread()'],['../classop_1_1_face_gpu_renderer.html#a6ebd9287927529ffaa4200890190896b',1,'op::FaceGpuRenderer::initializationOnThread()'],['../classop_1_1_face_renderer.html#aa34ce7a0602b0994cc3043b80627a31c',1,'op::FaceRenderer::initializationOnThread()'],['../classop_1_1_w_face_detector.html#afaca53a669f0cd43103f7317aded75d3',1,'op::WFaceDetector::initializationOnThread()'],['../classop_1_1_w_face_detector_open_c_v.html#ad7dce5824ba32bc07d2474c20b23e62d',1,'op::WFaceDetectorOpenCV::initializationOnThread()'],['../classop_1_1_w_face_extractor.html#aee8f96a5ce0080db31fe20ae202e59a5',1,'op::WFaceExtractor::initializationOnThread()'],['../classop_1_1_w_face_renderer.html#a7b72c70dc02c9209d84992caad6ad7d0',1,'op::WFaceRenderer::initializationOnThread()'],['../classop_1_1_w_coco_json_saver.html#a5cca095ff23c3134ab0addc9a4feabaf',1,'op::WCocoJsonSaver::initializationOnThread()'],['../classop_1_1_w_face_saver.html#ae8401789881462eb8438c65e9d2d3fb2',1,'op::WFaceSaver::initializationOnThread()'],['../classop_1_1_w_hand_saver.html#aa234a68d1cc7ec97fefbf30239149baa',1,'op::WHandSaver::initializationOnThread()'],['../classop_1_1_w_heat_map_saver.html#a20e82b121a580c578f69cbb0401c4cb0',1,'op::WHeatMapSaver::initializationOnThread()'],['../classop_1_1_w_image_saver.html#a78655ea3d4dac28bdf7e2e4a80b5a337',1,'op::WImageSaver::initializationOnThread()'],['../classop_1_1_w_people_json_saver.html#a5d4239596a996723a20a1031d32c7446',1,'op::WPeopleJsonSaver::initializationOnThread()'],['../classop_1_1_w_pose_saver.html#a4f0774832e12389593361186f1b83128',1,'op::WPoseSaver::initializationOnThread()'],['../classop_1_1_w_video_saver.html#ada90f76b28e4bafe9c8ecbb9bcbb2d14',1,'op::WVideoSaver::initializationOnThread()'],['../classop_1_1_frame_displayer.html#af5d2e1c8bcd2012c66347252e8dbc543',1,'op::FrameDisplayer::initializationOnThread()'],['../classop_1_1_gui.html#a449696b117fe918feb3aca20cb9ed7de',1,'op::Gui::initializationOnThread()'],['../classop_1_1_w_gui.html#a4e4db210b87f78cc1238dd3ab2bedaa4',1,'op::WGui::initializationOnThread()'],['../classop_1_1_w_gui_info_adder.html#ae620275d6570fd5c74f33728cd340217',1,'op::WGuiInfoAdder::initializationOnThread()'],['../classop_1_1_hand_extractor.html#aa5592a468cfdcfdd687d6f9d465d3eda',1,'op::HandExtractor::initializationOnThread()'],['../classop_1_1_hand_gpu_renderer.html#a0489f10ddc9e37e87084ebf9a5138f3a',1,'op::HandGpuRenderer::initializationOnThread()'],['../classop_1_1_hand_renderer.html#adb91ae2a8ccf24671ad86e99e786b120',1,'op::HandRenderer::initializationOnThread()'],['../classop_1_1_w_hand_detector.html#a5c29c944205ee0727f76c282ef55ae52',1,'op::WHandDetector::initializationOnThread()'],['../classop_1_1_w_hand_detector_from_txt.html#acd7d37555c09a58dc660811724930276',1,'op::WHandDetectorFromTxt::initializationOnThread()'],['../classop_1_1_w_hand_detector_tracking.html#a20ef6206194a873c2cfa7fe13d905d92',1,'op::WHandDetectorTracking::initializationOnThread()'],['../classop_1_1_w_hand_detector_update.html#a729aaa628e4f4c24e7cb9afca1cdc761',1,'op::WHandDetectorUpdate::initializationOnThread()'],['../classop_1_1_w_hand_extractor.html#a6fbef214cc89b07ba163ad874c8442af',1,'op::WHandExtractor::initializationOnThread()'],['../classop_1_1_w_hand_renderer.html#a2ee88145b38fea1a6a2bb7987a33bd40',1,'op::WHandRenderer::initializationOnThread()'],['../classop_1_1_pose_extractor.html#aab1cccc9ad99f6b007abaa14600ea6df',1,'op::PoseExtractor::initializationOnThread()'],['../classop_1_1_pose_gpu_renderer.html#a9e94ab926baf360dd6b23e14fba09836',1,'op::PoseGpuRenderer::initializationOnThread()'],['../classop_1_1_pose_renderer.html#af861d8213f1444b3246402061cea1b33',1,'op::PoseRenderer::initializationOnThread()'],['../classop_1_1_w_pose_extractor.html#a9b621ed9915da9bf3cce49db547de9e6',1,'op::WPoseExtractor::initializationOnThread()'],['../classop_1_1_w_pose_renderer.html#aba989a73cef9a807879ad2196725c61c',1,'op::WPoseRenderer::initializationOnThread()'],['../classop_1_1_w_datum_producer.html#a26babf9992c710c948ee912dd055e063',1,'op::WDatumProducer::initializationOnThread()'],['../classop_1_1_sub_thread.html#a8debc3b655463847fed2c547d13326f7',1,'op::SubThread::initializationOnThread()'],['../classop_1_1_w_id_generator.html#a50a1b7929810daae87ee6443c659edad',1,'op::WIdGenerator::initializationOnThread()'],['../classop_1_1_worker.html#aa5be4df9d4d8302728c653870e7d2a23',1,'op::Worker::initializationOnThread()'],['../classop_1_1_w_queue_orderer.html#a85598f83f6f3a30b7ddce9bc7beddf33',1,'op::WQueueOrderer::initializationOnThread()']]], ['intround',['intRound',['../namespaceop.html#adcfd0bf5ba782278488c157667a80c54',1,'op']]], ['ipcamerareader',['IpCameraReader',['../classop_1_1_ip_camera_reader.html#abbe7f1bbf200ed9c6c0868eb3c6b0764',1,'op::IpCameraReader']]], - ['isdirectory',['isDirectory',['../namespaceop.html#ab4f8d497b1ec08dfa1d2ed30e0a00312',1,'op']]], ['isopened',['isOpened',['../classop_1_1_video_saver.html#a0c5dadfa4f687283c370e7890ae5037f',1,'op::VideoSaver::isOpened()'],['../classop_1_1_image_directory_reader.html#a432bc94339019f251cc48bbb4c5ae1e8',1,'op::ImageDirectoryReader::isOpened()'],['../classop_1_1_producer.html#a58590e4a409d31f839184b4bf030a68b',1,'op::Producer::isOpened()'],['../classop_1_1_video_capture_reader.html#ae10d37b58fe4f3daa8817b72eb3faa64',1,'op::VideoCaptureReader::isOpened()']]], ['isrunning',['isRunning',['../classop_1_1_queue_base.html#a42a873f65588219449e21ac4927311d7',1,'op::QueueBase::isRunning()'],['../classop_1_1_thread.html#af0471340c93fdcc0ba8e06c3f9524fef',1,'op::Thread::isRunning()'],['../classop_1_1_thread_manager.html#ae15857e155633662cd46616fc54a4877',1,'op::ThreadManager::isRunning()'],['../classop_1_1_worker.html#a3f7c86ab1c4ce15c0f0ef12a1d4647e0',1,'op::Worker::isRunning()'],['../classop_1_1_wrapper.html#a51ab9e8a63f8fb822550365fc0417d01',1,'op::Wrapper::isRunning()']]] ];