human_keypoint_detection.py 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. # copyright (c) 2024 PaddlePaddle Authors. All Rights Reserve.
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. from typing import Final, List, Optional, TypeAlias, Annotated
  15. from pydantic import BaseModel, Field
  16. from ..infra.models import PrimaryOperations
  17. from .shared import object_detection
  18. __all__ = [
  19. "INFER_ENDPOINT",
  20. "InferRequest",
  21. "KeyPoint",
  22. "Person",
  23. "InferResult",
  24. "PRIMARY_OPERATIONS",
  25. ]
  26. KeyPoint: TypeAlias = Annotated[List[float], Field(min_length=3, max_length=3)]
  27. INFER_ENDPOINT: Final[str] = "/human-keypoint-detection"
  28. class InferRequest(BaseModel):
  29. image: str
  30. detThreshold: Optional[float] = None
  31. class Person(BaseModel):
  32. bbox: object_detection.BoundingBox
  33. kpts: List[KeyPoint]
  34. detScore: float
  35. kptScore: float
  36. class InferResult(BaseModel):
  37. persons: List[Person]
  38. image: Optional[str] = None
  39. PRIMARY_OPERATIONS: Final[PrimaryOperations] = {
  40. "infer": (INFER_ENDPOINT, InferRequest, InferResult),
  41. }