Meet YOLO26: next-gen vision AI.
Ultralytics
Back to Ultralytics Glossary

Point Tracking

Explore the fundamentals of point tracking in computer vision. Learn how Ultralytics YOLO26 and advanced AI models track precise motion for robotics and VFX.

Point tracking is a fundamental task in computer vision that involves estimating and following the movement of specific, localized points (such as pixels or distinct features) across consecutive frames in a video sequence over time. Unlike object tracking, which monitors the general position of entire entities using bounding boxes or segmentation masks, point tracking focuses on a much finer, sub-pixel level of detail. By identifying and maintaining correspondences between these precise locations, artificial intelligence (AI) systems can achieve advanced video understanding tasks that require intricate motion analysis.

Link to this sectionUnderstanding Point Tracking#

Accurately tracking points in a dynamic scene is highly challenging. Tracked points frequently suffer from occlusions—where objects temporarily block the camera's view—or they may entirely leave the field of view. Additionally, variations in lighting, perspective shifts, and rapid movements can drastically alter a point's visual appearance.

Historically, classical algorithms like Lucas-Kanade optical flow handled these tasks. However, modern approaches use powerful deep learning architectures. Recent innovations from major research organizations, such as Google DeepMind's TAPIR (Tracking Any Point with Initialization and Refinement) and Meta AI's CoTracker3, have revolutionized the field. Unlike older methods that tracked points independently, models like CoTracker3 use transformers to perform joint tracking of multiple points, leveraging the physical dependencies between points that belong to the same object. These state-of-the-art models also utilize pseudo-labeling on real-world videos to train highly accurate systems with drastically reduced data requirements.

While closely related, point tracking differs significantly from other computer vision tasks:

  • Object Tracking: Assigns unique IDs to entire objects (e.g., a person or car) and follows them. It relies heavily on object detection models like Ultralytics YOLO26.
  • Pose Estimation: Tracks specific semantic keypoints (like human joints) rather than arbitrary pixels. While it shares similarities with point tracking, pose estimation requires a semantic understanding of the object's structural framework.

Link to this sectionReal-World Applications#

Point tracking is a critical enabler for various advanced applications:

Link to this sectionTracking Keypoints with Ultralytics#

While general point trackers follow arbitrary visual pixels, you can track specific structural keypoints (like a person's eyes, shoulders, or wrists) using the pose tracking capabilities of the ultralytics package. The recommended YOLO26 model provides high-speed, end-to-end keypoint tracking ideal for motion analysis.

from ultralytics import YOLO

# Load the recommended YOLO26 pose model for keypoint tracking
model = YOLO("yolo26n-pose.pt")

# Perform pose tracking on a video stream to follow human keypoints over time
results = model.track(source="video.mp4", stream=True)

# Iterate through the stream to process temporal keypoint tracking data
for frame_result in results:
    # Each keypoint maintains its association across frames
    print(f"Tracked {len(frame_result.keypoints)} human skeletons in current frame.")

When deploying computer vision workflows at scale, the Ultralytics Platform offers a streamlined solution for data annotation, model training, and seamless deployment, ensuring reliable performance across diverse edge and cloud environments.

Explore solutions

Real-time AI that works with your team

AI in Robotics

Power smarter machines with Ultralytics YOLO models. Vision AI in robotics drives autonomous navigation, perception, object tracking, and real-time control.

Learn more
Real-time AI that works with your team

AI in Logistics

Streamline logistics with Ultralytics YOLO models. Vision AI enables package inspection, sorting, vehicle tracking, and real-time warehouse safety monitoring.

Learn more
Real-time AI that works with your team

AI in Retail

Reimagine retail with Ultralytics YOLO models. Vision AI powers inventory tracking, shelf monitoring, queue management, and smarter customer insights.

Learn more
Real-time AI that works with your team

AI in Healthcare

Build healthcare solutions with Ultralytics YOLO models. Vision AI in healthcare powers faster medical imaging, smarter diagnostics, and patient monitoring.

Learn more
Real-time AI that works with your team

AI in Manufacturing

Optimize manufacturing with Ultralytics YOLO models. Vision AI drives quality control, defect detection, PPE compliance, and assembly line automation.

Learn more
Real-time AI that works with your operation

AI in Automotive

Apply computer vision in automotive with Ultralytics YOLO models. Vision AI elevates road safety, driver assistance, and vehicle automation for smarter roads.

Learn more
Real-time AI tailored to your operation

AI in Agriculture

Bring vision AI to smart agriculture with Ultralytics YOLO models. Power crop monitoring, livestock tracking, and precision farming for higher, smarter yields.

Learn more
Real-time AI that works with your team

AI in Robotics

Power smarter machines with Ultralytics YOLO models. Vision AI in robotics drives autonomous navigation, perception, object tracking, and real-time control.

Learn more
Real-time AI that works with your team

AI in Logistics

Streamline logistics with Ultralytics YOLO models. Vision AI enables package inspection, sorting, vehicle tracking, and real-time warehouse safety monitoring.

Learn more
Real-time AI that works with your team

AI in Retail

Reimagine retail with Ultralytics YOLO models. Vision AI powers inventory tracking, shelf monitoring, queue management, and smarter customer insights.

Learn more
Real-time AI that works with your team

AI in Healthcare

Build healthcare solutions with Ultralytics YOLO models. Vision AI in healthcare powers faster medical imaging, smarter diagnostics, and patient monitoring.

Learn more
Real-time AI that works with your team

AI in Manufacturing

Optimize manufacturing with Ultralytics YOLO models. Vision AI drives quality control, defect detection, PPE compliance, and assembly line automation.

Learn more
Real-time AI that works with your operation

AI in Automotive

Apply computer vision in automotive with Ultralytics YOLO models. Vision AI elevates road safety, driver assistance, and vehicle automation for smarter roads.

Learn more
Real-time AI tailored to your operation

AI in Agriculture

Bring vision AI to smart agriculture with Ultralytics YOLO models. Power crop monitoring, livestock tracking, and precision farming for higher, smarter yields.

Learn more
Real-time AI that works with your team

AI in Robotics

Power smarter machines with Ultralytics YOLO models. Vision AI in robotics drives autonomous navigation, perception, object tracking, and real-time control.

Learn more
Real-time AI that works with your team

AI in Logistics

Streamline logistics with Ultralytics YOLO models. Vision AI enables package inspection, sorting, vehicle tracking, and real-time warehouse safety monitoring.

Learn more
Real-time AI that works with your team

AI in Retail

Reimagine retail with Ultralytics YOLO models. Vision AI powers inventory tracking, shelf monitoring, queue management, and smarter customer insights.

Learn more
Real-time AI that works with your team

AI in Healthcare

Build healthcare solutions with Ultralytics YOLO models. Vision AI in healthcare powers faster medical imaging, smarter diagnostics, and patient monitoring.

Learn more
Real-time AI that works with your team

AI in Manufacturing

Optimize manufacturing with Ultralytics YOLO models. Vision AI drives quality control, defect detection, PPE compliance, and assembly line automation.

Learn more
Real-time AI that works with your operation

AI in Automotive

Apply computer vision in automotive with Ultralytics YOLO models. Vision AI elevates road safety, driver assistance, and vehicle automation for smarter roads.

Learn more
Real-time AI tailored to your operation

AI in Agriculture

Bring vision AI to smart agriculture with Ultralytics YOLO models. Power crop monitoring, livestock tracking, and precision farming for higher, smarter yields.

Learn more

Let's build the future of AI together!

Begin your journey with the future of machine learning