Searched refs:boostTypeStr (Results 1 – 1 of 1) sorted by relevance
239 string boostTypeStr = boost_type == CvBoost::DISCRETE ? CC_DISCRETE_BOOST : in write() local243 CV_Assert( !boostTypeStr.empty() ); in write()244 fs << CC_BOOST_TYPE << boostTypeStr; in write()254 string boostTypeStr; in read() local256 rnode >> boostTypeStr; in read()257 boost_type = !boostTypeStr.compare( CC_DISCRETE_BOOST ) ? CvBoost::DISCRETE : in read()258 !boostTypeStr.compare( CC_REAL_BOOST ) ? CvBoost::REAL : in read()259 !boostTypeStr.compare( CC_LOGIT_BOOST ) ? CvBoost::LOGIT : in read()260 !boostTypeStr.compare( CC_GENTLE_BOOST ) ? CvBoost::GENTLE : -1; in read()292 string boostTypeStr = boost_type == CvBoost::DISCRETE ? CC_DISCRETE_BOOST : in printAttrs() local[all …]