Skip to content

Commit f03775f

Browse files
committed
first commit
0 parents  commit f03775f

File tree

4 files changed

+462
-0
lines changed

4 files changed

+462
-0
lines changed

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.DS_Store
2+
*pyc
3+
.vscode
4+
__pycache__
5+
*.egg-info
6+
*.bak
7+
checkpoints
8+
results
9+
backup

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Comfyui CoTracker Node
2+
3+
This is a node that outputs tracking results of a grid or specified points using CoTracker.
4+
It can be directly connected to the WanVideo ATI Tracks Node.
5+
6+
7+
## Example Workflow
8+
![example_workflow]()
9+
10+
## Changelog
11+
### 2025-6-4
12+
1st commit
13+
14+
### Related resources
15+
- [CoTracker](https://github.com/facebookresearch/co-tracker)
16+
- [ComfyUI-WanVideoWrapper](https://github.com/kijai/ComfyUI-WanVideoWrapper)

__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
from .cotracker_node import NODE_CLASS_MAPPINGS, NODE_DISPLAY_NAME_MAPPINGS
2+
__all__ = ["NODE_CLASS_MAPPINGS", "NODE_DISPLAY_NAME_MAPPINGS"]

0 commit comments

Comments
 (0)