I'm debugging with the dll of my self-compiled mediapipe face_mesh, but I'm getting an error at this location(
std::string calculator_graph_config_contents;
MP_RETURN_IF_ERROR(mediapipe::file::GetContents(model_path, &calculator_graph_config_contents));
std::cout << "mediapipe::file::GetContents success" << std::endl;
mediapipe::CalculatorGraphConfig config =
mediapipe::ParseTextProtoOrDie<mediapipe::CalculatorGraphConfig>(
calculator_graph_config_contents);
MP_RETURN_IF_ERROR(m_Graph.Initialize(config))) :
Exception raised: Read access conflict. the config is null. but calculator_graph_config_contents not null. I don't know what the problem is and how to proceed anymore
mediapipe::CalculatorGraphConfig confignot null? Maybe add a log statement to verify this or use a debugger?mediapipe::ParseTextProtoOrDieis failing to parse your stringcalculator_graph_config_contentsto objectmediapipe::CalculatorGraphConfig. Check if your string is correct and whether parsing to the object is possible with that string.