Skip to content

Commit

Permalink
Internal change
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 572122579
  • Loading branch information
MediaPipe Team authored and copybara-github committed Oct 10, 2023
1 parent ac95421 commit f72542a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 17 deletions.
4 changes: 2 additions & 2 deletions mediapipe/tasks/cc/vision/pose_landmarker/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,6 @@ cc_library(
)

cc_library(
name = "pose_landmark",
hdrs = ["pose_landmark.h"],
name = "pose_topology",
hdrs = ["pose_topology.h"],
)
Original file line number Diff line number Diff line change
@@ -1,30 +1,24 @@
/* Copyright 2023 The MediaPipe Authors.
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.
==============================================================================*/

#ifndef MEDIAPIPE_TASKS_CC_VISION_POSE_LANDMARKER_POSE_LANDMARK_H_
#define MEDIAPIPE_TASKS_CC_VISION_POSE_LANDMARKER_POSE_LANDMARK_H_
#ifndef MEDIAPIPE_TASKS_CC_VISION_POSE_LANDMARKER_POSE_TOPOLOGY_H_
#define MEDIAPIPE_TASKS_CC_VISION_POSE_LANDMARKER_POSE_TOPOLOGY_H_

namespace mediapipe {
namespace tasks {
namespace vision {
namespace pose_landmarker {
namespace mediapipe::tasks::vision::pose_landmarker {

static constexpr int kNumPoseLandmarks = 33;

// BlazePose 33 landmark names.
enum class PoseLandmark {
enum class PoseLandmarkName {
kNose = 0,
kLeftEyeInner,
kLeftEye,
Expand Down Expand Up @@ -60,9 +54,6 @@ enum class PoseLandmark {
kRightFootIndex,
};

} // namespace pose_landmarker
} // namespace vision
} // namespace tasks
} // namespace mediapipe
} // namespace mediapipe::tasks::vision::pose_landmarker

#endif // MEDIAPIPE_TASKS_CC_VISION_POSE_LANDMARKER_POSE_LANDMARK_H_
#endif // MEDIAPIPE_TASKS_CC_VISION_POSE_LANDMARKER_POSE_TOPOLOGY_H_

0 comments on commit f72542a

Please sign in to comment.