/****************************************************************************************\
* Logistic Regression *
\****************************************************************************************/
-namespace cv
-{
struct CV_EXPORTS LogisticRegressionParams
{
double alpha;
virtual bool set_label_map(const cv::Mat& labels);
static cv::Mat remap_labels(const cv::Mat& labels, const std::map<int, int>& lmap);
};
-}// namespace cv
/****************************************************************************************\
* Auxilary functions declarations *