Open jeranio opened 3 years ago
mediapipe/calculators/image/background_masking_calculator.cc:63:36: error: use of undeclared identifier 'ValueOrDie' background = cv::imread(status,ValueOrDie() 1);
I am getting this error in my bazel build. Any ideas why?
Okay, I managed to resolve this with the aid of my colleague who is fluent in C++. The line of code was changed to this.
background = cv::imread(status,value() 1);
mediapipe/calculators/image/background_masking_calculator.cc:63:36: error: use of undeclared identifier 'ValueOrDie' background = cv::imread(status,ValueOrDie() 1);
I am getting this error in my bazel build. Any ideas why?