OXIESEC PANEL
- Current Dir:
/
/
usr
/
include
/
opencv2
/
datasets
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/28/2024 06:50:42 AM
rwxr-xr-x
📄
ar_hmdb.hpp
2.53 KB
05/12/2017 03:45:27 AM
rw-r--r--
📄
ar_sports.hpp
2.53 KB
05/12/2017 03:45:27 AM
rw-r--r--
📄
dataset.hpp
17.65 KB
05/12/2017 03:45:27 AM
rw-r--r--
📄
fr_adience.hpp
2.81 KB
05/12/2017 03:45:27 AM
rw-r--r--
📄
fr_lfw.hpp
2.51 KB
05/12/2017 03:45:27 AM
rw-r--r--
📄
gr_chalearn.hpp
2.82 KB
05/12/2017 03:45:27 AM
rw-r--r--
📄
gr_skig.hpp
2.97 KB
05/12/2017 03:45:27 AM
rw-r--r--
📄
hpe_humaneva.hpp
2.76 KB
05/12/2017 03:45:27 AM
rw-r--r--
📄
hpe_parse.hpp
2.5 KB
05/12/2017 03:45:27 AM
rw-r--r--
📄
ir_affine.hpp
2.56 KB
05/12/2017 03:45:27 AM
rw-r--r--
📄
ir_robot.hpp
2.75 KB
05/12/2017 03:45:27 AM
rw-r--r--
📄
is_bsds.hpp
2.49 KB
05/12/2017 03:45:27 AM
rw-r--r--
📄
is_weizmann.hpp
2.62 KB
05/12/2017 03:45:27 AM
rw-r--r--
📄
msm_epfl.hpp
2.69 KB
05/12/2017 03:45:27 AM
rw-r--r--
📄
msm_middlebury.hpp
2.58 KB
05/12/2017 03:45:27 AM
rw-r--r--
📄
or_imagenet.hpp
2.52 KB
05/12/2017 03:45:27 AM
rw-r--r--
📄
or_mnist.hpp
2.53 KB
05/12/2017 03:45:27 AM
rw-r--r--
📄
or_pascal.hpp
2.89 KB
05/12/2017 03:45:27 AM
rw-r--r--
📄
or_sun.hpp
2.54 KB
05/12/2017 03:45:27 AM
rw-r--r--
📄
pd_caltech.hpp
2.87 KB
05/12/2017 03:45:27 AM
rw-r--r--
📄
pd_inria.hpp
2.74 KB
05/12/2017 03:45:27 AM
rw-r--r--
📄
slam_kitti.hpp
2.69 KB
05/12/2017 03:45:27 AM
rw-r--r--
📄
slam_tumindoor.hpp
2.63 KB
05/12/2017 03:45:27 AM
rw-r--r--
📄
tr_chars.hpp
2.51 KB
05/12/2017 03:45:27 AM
rw-r--r--
📄
tr_icdar.hpp
2.67 KB
05/12/2017 03:45:27 AM
rw-r--r--
📄
tr_svt.hpp
2.62 KB
05/12/2017 03:45:27 AM
rw-r--r--
📄
track_alov.hpp
3.58 KB
05/12/2017 03:45:27 AM
rw-r--r--
📄
track_vot.hpp
2.9 KB
05/12/2017 03:45:27 AM
rw-r--r--
📄
util.hpp
2.55 KB
05/12/2017 03:45:27 AM
rw-r--r--
Editing: util.hpp
Close
/*M/////////////////////////////////////////////////////////////////////////////////////// // // IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. // // By downloading, copying, installing or using the software you agree to this license. // If you do not agree to this license, do not download, install, // copy or use the software. // // // License Agreement // For Open Source Computer Vision Library // // Copyright (C) 2014, Itseez Inc, all rights reserved. // Third party copyrights are property of their respective owners. // // Redistribution and use in source and binary forms, with or without modification, // are permitted provided that the following conditions are met: // // * Redistribution's of source code must retain the above copyright notice, // this list of conditions and the following disclaimer. // // * Redistribution's in binary form must reproduce the above copyright notice, // this list of conditions and the following disclaimer in the documentation // and/or other materials provided with the distribution. // // * The name of the copyright holders may not be used to endorse or promote products // derived from this software without specific prior written permission. // // This software is provided by the copyright holders and contributors "as is" and // any express or implied warranties, including, but not limited to, the implied // warranties of merchantability and fitness for a particular purpose are disclaimed. // In no event shall the Itseez Inc or contributors be liable for any direct, // indirect, incidental, special, exemplary, or consequential damages // (including, but not limited to, procurement of substitute goods or services; // loss of use, data, or profits; or business interruption) however caused // and on any theory of liability, whether in contract, strict liability, // or tort (including negligence or otherwise) arising in any way out of // the use of this software, even if advised of the possibility of such damage. // //M*/ #ifndef OPENCV_DATASETS_UTIL_HPP #define OPENCV_DATASETS_UTIL_HPP #include <string> #include <vector> #include <cstdio> #include <cstdlib> // atoi, atof #include <fstream> #include <opencv2/core.hpp> namespace cv { namespace datasets { //! @addtogroup datasets //! @{ void CV_EXPORTS split(const std::string &s, std::vector<std::string> &elems, char delim); void CV_EXPORTS createDirectory(const std::string &path); void CV_EXPORTS getDirList(const std::string &dirName, std::vector<std::string> &fileNames); //! @} } } #endif