HomeSort by relevance Sort by last modified time
    Searched refs:FileNode (Results 1 - 25 of 71) sorted by null

1 2 3

  /external/opencv3/modules/core/include/opencv2/core/
persistence.hpp 217 storage is built in memory as a hierarchy of file nodes (see FileNode)
219 -# Read the data you are interested in. Use FileStorage::operator [], FileNode::operator []
228 // first method: use (type) operator on FileNode.
232 // second method: use FileNode::operator >>
244 FileNode features = fs2["features"];
254 // you can also easily read numerical arrays using FileNode >> std::vector operator.
292 class CV_EXPORTS FileNode;
385 CV_WRAP FileNode getFirstTopLevelNode() const;
392 CV_WRAP FileNode root(int streamidx=0) const;
398 FileNode operator[](const String& nodename) const
    [all...]
  /external/opencv3/modules/objdetect/src/
cascadedetect_convert.cpp 119 FileNode oldroot = oldfs.getFirstTopLevelNode();
121 FileNode sznode = oldroot[ICV_HAAR_SIZE_NAME];
131 FileNode stages_seq = oldroot[ICV_HAAR_STAGES_NAME];
137 FileNode stagenode = stages_seq[i];
140 FileNode weaks_seq = stagenode[ICV_HAAR_TREES_NAME];
147 FileNode weaknode = weaks_seq[j];
152 FileNode nnode = weaknode[n];
153 FileNode fnode = nnode[ICV_HAAR_FEATURE_NAME];
158 FileNode rects_seq = fnode[ICV_HAAR_RECTS_NAME];
163 FileNode rnode = rects_seq[k]
    [all...]
  /external/opencv3/samples/cpp/tutorial_code/core/file_input_output/
file_input_output.cpp 32 void read(const FileNode& node) //Read serialization for this class
49 static void read(const FileNode& node, MyData& x, const MyData& default_value = MyData()){
115 FileNode n = fs["strings"]; // Read string sequence - Get node
116 if (n.type() != FileNode::SEQ)
  /external/opencv3/samples/cpp/
starter_imagelist.cpp 39 FileNode n = fs.getFirstTopLevelNode();
40 if (n.type() != FileNode::SEQ)
filestorage.cpp 45 void read(const FileNode& node) //Read serialization for this class
58 static void read(const FileNode& node, MyData& x, const MyData& default_value = MyData()){
117 FileNode n = fs["images"];
118 if (n.type() != FileNode::SEQ)
select3dobj.cpp 318 FileNode all = fs["views"];
319 if( all.type() != FileNode::SEQ )
325 FileNode n = *it;
327 FileNode nr = n["rect"];
329 FileNode np = n["pose"];
375 FileNode n = fs.getFirstTopLevelNode();
376 if( n.type() != FileNode::SEQ )
  /external/opencv3/modules/ml/
precomp.hpp 105 static inline TermCriteria readTermCrit(const FileNode& fn)
336 virtual void readParams( const FileNode& fn );
337 virtual int readSplit( const FileNode& fn );
338 virtual int readNode( const FileNode& fn );
339 virtual int readTree( const FileNode& fn );
340 virtual void read( const FileNode& fn );
367 static inline void readVectorOrMat(const FileNode & node, std::vector<T> & v)
369 if (node.type() == FileNode::MAP)
375 else if (node.type() == FileNode::SEQ)
  /external/opencv3/modules/ml/src/
precomp.hpp 105 static inline TermCriteria readTermCrit(const FileNode& fn)
336 virtual void readParams( const FileNode& fn );
337 virtual int readSplit( const FileNode& fn );
338 virtual int readNode( const FileNode& fn );
339 virtual int readTree( const FileNode& fn );
340 virtual void read( const FileNode& fn );
367 static inline void readVectorOrMat(const FileNode & node, std::vector<T> & v)
369 if (node.type() == FileNode::MAP)
375 else if (node.type() == FileNode::SEQ)
boost.cpp 407 void readParams( const FileNode& fn )
411 FileNode tparams_node = fn["training_params"];
425 void read( const FileNode& fn )
432 FileNode trees_node = fn["trees"];
438 FileNode nfn = (*it)["nodes"];
485 void read( const FileNode& fn )
rtrees.cpp 318 void readParams( const FileNode& fn )
322 FileNode tparams_node = fn["training_params"];
326 void read( const FileNode& fn )
339 FileNode trees_node = fn["trees"];
345 FileNode nfn = (*it)["nodes"];
395 void read( const FileNode& fn )
  /external/opencv3/apps/traincascade/
boost.h 17 bool read( const cv::FileNode &node );
58 void read( const cv::FileNode &node, CvBoost* _ensemble, CvDTreeTrainData* _data );
74 bool read( const cv::FileNode &node, const CvFeatureEvaluator* _featureEvaluator,
cascadeclassifier.h 74 bool read( const cv::FileNode &node );
109 bool readParams( const cv::FileNode &node );
110 bool readStages( const cv::FileNode &node );
traincascade_features.h 54 virtual bool read( const cv::FileNode &node ) = 0;
69 virtual bool read( const cv::FileNode &node );
cascadeclassifier.cpp 40 bool CvCascadeParams::read( const FileNode &node )
45 FileNode rnode = node[CC_STAGE_TYPE];
375 bool CvCascadeClassifier::readParams( const FileNode &node )
381 FileNode rnode = node[CC_STAGE_PARAMS];
392 bool CvCascadeClassifier::readStages( const FileNode &node)
394 FileNode rnode = node[CC_STAGES];
522 FileNode node = fs.getFirstTopLevelNode();
features.cpp 49 bool CvFeatureParams::read( const FileNode &node )
haarfeatures.h 22 virtual bool read( const cv::FileNode &node );
  /external/opencv3/modules/photo/src/
tonemap.cpp 90 void read(const FileNode& fn)
92 FileNode n = fn["name"];
170 void read(const FileNode& fn)
172 FileNode n = fn["name"];
253 void read(const FileNode& fn)
255 FileNode n = fn["name"];
349 void read(const FileNode& fn)
351 FileNode n = fn["name"];
455 void read(const FileNode& fn)
457 FileNode n = fn["name"]
    [all...]
calibrate.cpp 150 void read(const FileNode& fn)
152 FileNode n = fn["name"];
258 void read(const FileNode& fn)
260 FileNode n = fn["name"];
  /external/opencv3/modules/core/test/
test_io.cpp 297 FileNode tl = fs["test_list"];
298 if( tl.type() != FileNode::SEQ || tl.size() != 6 ||
304 tl[5].type() != FileNode::MAP || tl[5].size() != 3 ||
314 FileNode tm = fs["test_map"];
315 FileNode tm_lbp = tm["lbp"];
344 if( tm.type() != FileNode::MAP || tm.size() != 5 ||
349 tm_lbp.type() != FileNode::SEQ ||
410 static inline void read(const FileNode& node,
  /external/opencv3/modules/core/src/
persistence.cpp     [all...]
  /external/opencv3/modules/features2d/src/
blobdetector.cpp 67 virtual void read( const FileNode& fn );
117 void SimpleBlobDetector::Params::read(const cv::FileNode& fn )
180 void SimpleBlobDetectorImpl::read( const cv::FileNode& fn )
kaze.cpp 163 void read(const FileNode& fn)
  /external/opencv3/modules/ml/test/
test_mltests.cpp 97 FileNode resultNode =
  /external/opencv3/modules/shape/src/
haus_dis.cpp 85 virtual void read(const FileNode& fn)
hist_cost.cpp 108 virtual void read(const FileNode& fn)
233 virtual void read(const FileNode& fn)
358 virtual void read(const FileNode& fn)
474 virtual void read(const FileNode& fn)

Completed in 1020 milliseconds

1 2 3