@@ -247,7 +247,6 @@ PYBIND11_MODULE(eos, eos_module)
247247 fitting_module.def (
248248 " fit_shape_and_pose" ,
249249 [](const morphablemodel::MorphableModel& morphable_model,
250- const std::vector<morphablemodel::Blendshape>& blendshapes,
251250 const std::vector<Eigen::Vector2f>& landmarks, const std::vector<std::string>& landmark_ids,
252251 const core::LandmarkMapper& landmark_mapper, int image_width, int image_height,
253252 const morphablemodel::EdgeTopology& edge_topology,
@@ -274,8 +273,8 @@ PYBIND11_MODULE(eos, eos_module)
274273 },
275274 " Fit the pose (camera), shape model, and expression blendshapes to landmarks, in an iterative way. "
276275 " Returns a tuple (mesh, rendering_parameters, shape_coefficients, blendshape_coefficients)." ,
277- py::arg (" morphable_model" ), py::arg (" blendshapes " ), py::arg (" landmarks " ), py::arg (" landmark_ids " ),
278- py::arg (" landmark_mapper " ), py::arg ( " image_width" ), py::arg (" image_height" ), py::arg (" edge_topology" ),
276+ py::arg (" morphable_model" ), py::arg (" landmarks " ), py::arg (" landmark_ids " ), py::arg (" landmark_mapper " ),
277+ py::arg (" image_width" ), py::arg (" image_height" ), py::arg (" edge_topology" ),
279278 py::arg (" contour_landmarks" ), py::arg (" model_contour" ), py::arg (" num_iterations" ) = 5 ,
280279 py::arg (" num_shape_coefficients_to_fit" ) = py::none (), py::arg (" lambda_identity" ) = 30 .0f ,
281280 py::arg (" num_expression_coefficients_to_fit" ) = py::none (), py::arg (" lambda_expressions" ) = 30 .0f );
0 commit comments