tasks/pose/ #8437
Replies: 85 comments 244 replies
-
Do you already have a documentation on how to implement yolov8 landmark detection on android development? if none is it posible for you to make a thread to teach us how to implement yolov8 model into android development please |
Beta Was this translation helpful? Give feedback.
-
How can i calculate angle position between three points? Thanks |
Beta Was this translation helpful? Give feedback.
-
Sir i just wanna ask you something about live training . I was making some calculations and getting some results that is okay by the way yolov8 is very good about pose estimation issues. I just wanna ask when i am training mp4 files ( my main is live training however i am just using for the testing this ) . The model is drawing everything like boxes poses conf values etc. I dont want to see nothing on the video however i just want to keep operating the results by the way . In addition to this i just want to write something on video like i have counted 3 people on the top of right corner of that video how could i do this i did not see any answer . when i turn off results = model(source="C://Users//Hp//Desktop//videolar//operation_room_1.mp4", show=True, conf=0.3, save=False, |
Beta Was this translation helpful? Give feedback.
-
Hi, is it possible to run this model on the OAK-D camera with VPU? |
Beta Was this translation helpful? Give feedback.
-
Hi,
My motive here is to figure out, if there would be any difference between the bounding box output that I would get from yolov8 (detection) model and the yolov8-pose model. Would there be any? Thank You!! |
Beta Was this translation helpful? Give feedback.
-
Hello! I am trying to output all the points detected by yolov8 into a excel or csv file in a video, and am having trouble with it. I am using the code: model = YOLO('yolov8m-pose.pt') results = model(source=video_path, show=True, conf = 0.3, save=True) Is there any way I can save all of the coordinates for the 2 people in the video to an excel file? Thank you, |
Beta Was this translation helpful? Give feedback.
-
Where can I find the mapping for the xy coordinates obtained by the algorithm, as in which point pertains to which body part? |
Beta Was this translation helpful? Give feedback.
-
Hello! I would like to ask if it is possible to output the coordinate information of the specified key point, which is the coordinate point of the wrist |
Beta Was this translation helpful? Give feedback.
-
Hi, I have trained a model based on YOLOv8l-pose, when I infer the model I get None for confidence and the keypoints just have x and y. Is there a reason why there is no confidence? here is contents of the keypoints object: proto-proto-1 | Initializing LandmarkDetector |
Beta Was this translation helpful? Give feedback.
-
can we model pose estimation for excavator work? |
Beta Was this translation helpful? Give feedback.
-
hello, i hope you can help i am struggled to create logic human falling based on shoulder and knee distance if shoulder is below than knee that means human is fallen, but i can not get keypoints 😭of them and calculate distance, becouse it is first time to using yolov pose estimation. thank you |
Beta Was this translation helpful? Give feedback.
-
Hello, I want to ask you for help |
Beta Was this translation helpful? Give feedback.
-
Hello! I have a task to detect fights by key points, I extracted points from the dataset to train the model to detect a fight. I have several questions:
|
Beta Was this translation helpful? Give feedback.
-
hola buenas |
Beta Was this translation helpful? Give feedback.
-
Hi there! Is it possible to train pose model for 2 or more classes? If it possible can you share with examples? |
Beta Was this translation helpful? Give feedback.
-
Hi! |
Beta Was this translation helpful? Give feedback.
-
how to detect human pose like t-pose, Crouching/Squatting, Lunging, Twisting, Bending Over, Planking ext. I have already trained the bounding box dataset but did not get good results. |
Beta Was this translation helpful? Give feedback.
-
Hello, I would like to ask, when using yolov8s-pose.pt for pose estimation, how can I directly exclude people with low confidence scores from being detected? |
Beta Was this translation helpful? Give feedback.
-
Hello,@glenn-jocher |
Beta Was this translation helpful? Give feedback.
-
Dear the authors, Hello, I am Adri. I would like to ask related the YOLO11 Pose result. Which train setting, such as number of batch size, learning rate, number of GPU, etc, did you use to train the model to get the result? I tried to train it with the default setting but I cannot achieve the similar result. Could you please provide me the setting? Thank you so much and I look forward to hearing from you. Best regards, |
Beta Was this translation helpful? Give feedback.
-
Is it possible to leverage YOLOv11 for 6D pose estimation? |
Beta Was this translation helpful? Give feedback.
-
Why does the predictive model I trained not have skeleton connections, I have already set the skeleton parameter in the plotting.py |
Beta Was this translation helpful? Give feedback.
-
Hello, I am using YOLOPose for video inference, and in outdoor scenes, it also recognizes people's shadows as people. How can I resolve this issue? |
Beta Was this translation helpful? Give feedback.
-
Hi,how to use yolo-pose to realise behavior recognition task? Based on pose estimation i mean.Use posec3D? |
Beta Was this translation helpful? Give feedback.
-
Hi, iam trying to train with yolov8m-pose with custom dataset: Train the modelresults = model.train(data="/kaggle/working/thermal_pose_updated.yaml",epochs=50) but some errors occurs like : UnpicklingError: could not find MARK is it because of the ultralytics version i installed? |
Beta Was this translation helpful? Give feedback.
-
Hi Ultralytics, I was hoping to get some help with Pose estimation. In one of my research, we are trying to figure out who is showing the actions first and then who is trying to copy the actions. One of my thoughts was to use the time stamps and then do comparison but this doesn't seem to be right exactly. Is there a feature already to see pose estimation object wise and do comparison much easily? Thanks! |
Beta Was this translation helpful? Give feedback.
-
Hi. What are the keypoints for neck to head? |
Beta Was this translation helpful? Give feedback.
-
Hi, I have a question concerning the yolo11-pose model. I am detecting very well the person with that model. My issue is that sometimes some joints aren't seen, therefore the confidence score drop. The result of this (apparently a threshold of confidence 0.5) is that the joint is saved as position (0.0, 0.0). In my case, I need to have a continuous location of the joints. Thank you a lotin advance. |
Beta Was this translation helpful? Give feedback.
-
Hello!!! For object detection tasks, should I label and train right and left hands separately? |
Beta Was this translation helpful? Give feedback.
-
Hi there, I'm trying to export the keypoint coordinates into a csv file but I get the following error: line 23, in Any help is appreciated. Here's the code I'm running: import pandas as pd labels = ["nose", "left_eye", "right_eye", "left_ear", "right_ear", "left_shoulder", model = YOLO('yolov8x-pose-p6.pt') data = [] for frame_id, (frame_results) in enumerate(results): df = pd.DataFrame(data) |
Beta Was this translation helpful? Give feedback.
-
tasks/pose/
Learn how to use Ultralytics YOLOv8 for pose estimation tasks. Find pretrained models, learn how to train, validate, predict, and export your own.
https://docs.ultralytics.com/tasks/pose/
Beta Was this translation helpful? Give feedback.
All reactions