| 130 | return Q; |
| 131 | } |
| 132 | VectorXs DenseCRF::map ( int n_iterations ) const { |
| 133 | // Run inference |
| 134 | MatrixXf Q = inference( n_iterations ); |
| 135 | // Find the map |
| 136 | return currentMap( Q ); |
| 137 | } |
| 138 | /////////////////// |
| 139 | ///// Debug ///// |
| 140 | /////////////////// |
no outgoing calls
no test coverage detected