Searched defs:FileNode (Results 1 - 3 of 3) sorted by relevance

/external/opencv3/modules/core/include/opencv2/core/
H A Dcvstd.hpp473 class CV_EXPORTS FileNode; //for string constructor from FileNode member in namespace:cv
498 explicit String(const FileNode& fn);
H A Dpersistence.hpp217 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; member in namespace:cv
385 CV_WRAP FileNode getFirstTopLevelNode() const;
392 CV_WRAP FileNode root(int streamidx=0) const;
398 FileNode operato
454 class CV_EXPORTS_W_SIMPLE FileNode class in namespace:cv
1168 inline FileNode::FileNode() : fs(0), node(0) {} function in class:cv::FileNode
1169 inline FileNode::FileNode(const CvFileStorage* _fs, const CvFileNode* _node) : fs(_fs), node(_node) {} function in class:cv::FileNode
1170 inline FileNode::FileNode(const FileNode& _node) : fs(_node.fs), node(_node.node) {} function in class:cv::FileNode
[all...]
/external/opencv3/modules/objdetect/src/
H A Dcascadedetect.cpp389 bool FeatureEvaluator::read(const FileNode&, Size _origWinSize) argument
573 bool HaarEvaluator::Feature :: read( const FileNode& node )
575 FileNode rnode = node[CC_RECTS];
610 bool HaarEvaluator::read(const FileNode& node, Size _origWinSize)
788 bool LBPEvaluator::Feature :: read(const FileNode& node )
790 FileNode rnode = node[CC_RECT];
807 bool LBPEvaluator::read( const FileNode& node, Size _origWinSize )
950 void CascadeClassifierImpl::read(const FileNode& node)
1566 bool CascadeClassifierImpl::Data::read(const FileNode &root)
1595 FileNode f
[all...]

Completed in 138 milliseconds