We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to turn this project into a solution project using lavender but unfortunately it gives me this error every time I run it.
https://github.com/google/mediapipe
The text was updated successfully, but these errors were encountered:
@rigngsbase Hi, if you want to debug mediapipe, vscode is a good choice. Here is my launch.json and tasks.json.
launch.json:
{ "version": "0.2.0", "configurations": [ { "preLaunchTask": "Bazel Build (Debug)", "name": "(Windows) Launch", "type": "cppvsdbg", "request": "launch", "program": "${workspaceFolder}/bazel-bin/mediapipe/examples/desktop/face_detection/face_detection_cpu", "args": ["--calculator_graph_config_file=${workspaceFolder}/mediapipe/graphs/face_detection/face_detection_desktop_live.pbtxt"], "stopAtEntry": false, "cwd": "${fileDirname}", "environment": [], "console": "externalTerminal" } ] }
tasks.json:
{ "version": "2.0.0", "tasks": [ { "type": "shell", "label": "Bazel Build (Debug)", "command": "bazel build -c dbg--define MEDIAPIPE_DISABLE_GPU=1 mediapipe/examples/desktop/face_detection:face_detection_cpu", "group": { "kind": "build", "isDefault": true } } ] }
Hope help.
Sorry, something went wrong.
No branches or pull requests
I want to turn this project into a solution project using lavender but unfortunately it gives me this error every time I run it.
https://github.com/google/mediapipe
The text was updated successfully, but these errors were encountered: