| 396 | return VectorXf(); |
| 397 | } |
| 398 | void DenseCRF::setUnaryParameters( const VectorXf & v ) { |
| 399 | if( unary_ ) |
| 400 | unary_->setParameters( v ); |
| 401 | } |
| 402 | VectorXf DenseCRF::labelCompatibilityParameters() const { |
| 403 | std::vector< VectorXf > terms; |
| 404 | for( unsigned int k=0; k<pairwise_.size(); k++ ) |
nothing calls this directly
no test coverage detected