Skip to content
New issue

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

New PR for native pose detection on iOS using ONNX yolov8 pose model. #8907

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions examples/YOLOv8-ONNXRuntime-iOS/Podfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Uncomment the next line to define a global platform for your project
platform :ios, '13.0'

target 'onnx' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!

# Pods for onnx
pod 'onnxruntime-objc', '~> 1.17.0-dev+20231211010.8f2b5a6'
pod 'onnxruntime-extensions-c'

target 'onnxTests' do
inherit! :search_paths
# Pods for testing
end

target 'onnxUITests' do
# Pods for testing
end

end
26 changes: 26 additions & 0 deletions examples/YOLOv8-ONNXRuntime-iOS/Podfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
PODS:
- onnxruntime-c (1.17.1)
- onnxruntime-extensions-c (0.10.0)
- onnxruntime-objc (1.17.1):
- onnxruntime-objc/Core (= 1.17.1)
- onnxruntime-objc/Core (1.17.1):
- onnxruntime-c (= 1.17.1)

DEPENDENCIES:
- onnxruntime-extensions-c
- "onnxruntime-objc (~> 1.17.0-dev+20231211010.8f2b5a6)"

SPEC REPOS:
trunk:
- onnxruntime-c
- onnxruntime-extensions-c
- onnxruntime-objc

SPEC CHECKSUMS:
onnxruntime-c: 58803cb3fcc1fb0a7baa9b16b2bad119d6e3eb78
onnxruntime-extensions-c: d4fd904f70e26d385033a1634ebf7388e459dee6
onnxruntime-objc: 089530244113a131305642b7e03fa6f8a9ee9ae6

PODFILE CHECKSUM: e1687121729f02ca3a3fb62776e8615973c0482e

COCOAPODS: 1.14.3

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading