Skip to content
Snippets Groups Projects
Commit 482e4a19 authored by Patrik Huber's avatar Patrik Huber
Browse files

Removed stray blank line

parent d437793c
No related branches found
No related tags found
No related merge requests found
...@@ -197,7 +197,6 @@ inline std::vector<float> fit_blendshapes_to_landmarks_nnls(std::vector<eos::mor ...@@ -197,7 +197,6 @@ inline std::vector<float> fit_blendshapes_to_landmarks_nnls(std::vector<eos::mor
bool non_singular = Eigen::NNLS<Eigen::MatrixXf>::solve(A_Eigen, -b_Eigen, x); bool non_singular = Eigen::NNLS<Eigen::MatrixXf>::solve(A_Eigen, -b_Eigen, x);
Mat c_s(x.rows(), x.cols(), CV_32FC1, x.data()); // create an OpenCV Mat header for the Eigen data Mat c_s(x.rows(), x.cols(), CV_32FC1, x.data()); // create an OpenCV Mat header for the Eigen data
return std::vector<float>(c_s); return std::vector<float>(c_s);
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment