Commit 08fd7467 authored by Steven Puttemans's avatar Steven Puttemans Committed by Maksim Shabunin

fix dnn_modern build (#1018)

parent ab63d35d
...@@ -182,7 +182,7 @@ void CaffeConverter_Impl::eval(const cv::InputArray image, ...@@ -182,7 +182,7 @@ void CaffeConverter_Impl::eval(const cv::InputArray image,
const vector<tiny_dnn::float_t> vec(inputvec.begin(), inputvec.end()); const vector<tiny_dnn::float_t> vec(inputvec.begin(), inputvec.end());
// perform inderence // perform inderence
auto result = net_->predict(); auto result = net_->predict(vec);
// allocate output // allocate output
results->clear(); results->clear();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment