メディアパイプを使用して手のランドマークについて抽出するプロジェクトを行っていますが、何かエラーが発生しました。
mediapipe について bazel をビルドします -> multi_hand_tracking
sudo bazel build -c opt --copt -DMESA_EGL_NO_X11_HEADERS --copt -DEGL_NO_X11 \mediapipe/examples/desktop/multi_hand_tracking:multi_hand_tracking_gpu
このような。
しかし、私はこのエラーがあります
fatal error: mediapipe/framework/formats/landmark.pb.h: No such file or directory #include "mediapipe/framework/formats/landmark.pb.h"
ディレクトリに「landmark.pb.h」ファイルがないと思います。
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
licenses(["notice"]) # Apache 2.0
package(default_visibility = ["//mediapipe/examples:__subpackages__"])
cc_binary(
name = "multi_hand_tracking_tflite",
deps = [
"//mediapipe/examples/desktop:simple_run_graph_main",
"//mediapipe/graphs/hand_tracking:multi_hand_desktop_tflite_calculators",
],
)
cc_binary(
name = "multi_hand_tracking_cpu",
deps = [
"//mediapipe/examples/desktop:demo_run_graph_main",
"//mediapipe/graphs/hand_tracking:multi_hand_desktop_tflite_calculators",
],
)
# Linux only
cc_binary(
name = "multi_hand_tracking_gpu",
deps = [
"//mediapipe/examples/desktop:demo_run_graph_main_gpu",
"//mediapipe/graphs/hand_tracking:multi_hand_mobile_calculators",
],
)
これは私の multi_hand_tracking BUILD ファイルの仕様です...
その「landmark.pb.h」ファイルをダウンロードできますか?? 誰か助けてください...
私の環境
mediapipe : 0.7.6 / ubuntu : 18.04 / bazel : 4.1.0
:D