Home | History | Annotate | Download | only in src

Lines Matching refs:etalon

257         CvMat etalon;
271 cvGetRow( etalons, &etalon, *right_etal_idx );
272 loss = (float)cvNorm( dE_dX[n_layers], &etalon );
294 cvGetRow( etalons, &etalon, responses->data.i[worst_img_idx] );
295 cvSub( dE_dX[n_layers], &etalon, dE_dX[n_layers] );
333 CvMat etalon, image;
363 etalon = cvMat( cnn_model->etalons->cols, 1, CV_32FC1, cnn_model->etalons->data.fl );
364 for( i = 0; i < nclasses; i++, etalon.data.fl += cnn_model->etalons->cols )
366 loss = (float)cvNorm( X[n_layers], &etalon );