VectorTracker v1.0
This location is for Registered Users Only.
Perhaps you need to login or register.
Contributor: Jorrit Schulte
A tracker that uses vector information rather than image data to generate tracking points.
Requirements:
11.0, 10.5, 10.0, 9.0, 8.0, 7.1, 7.0 or later
11.0, 10.5, 10.0, 9.0, 8.0, 7.1, 7.0 or later
03 Mar 2018
840
This is a tracker gizmo that uses vector information rather than image data to track points. This us useful for certain tracking jobs that are otherwise hard to accomplish. Think of shots that constantly shift focus, or tracks on objects that deform.
This gizmo works with both classic nuke vectors or smartvector data.
Simply render out either classic nuke vectors or smartvectors, and use this tool to generate tracker points. you can try using a VectorGenerator node to generate live vectors instead, but due to the way nuke and python sample image data this wont always work.
the poinsts are exported to a regular Tracker node.
Please login in order to download these files.
Comments
running NukeX 13.2V1 on macOS
each time I try to launch the tracker, I get the following message:
"name 'xrange' is not defined"
i feel like this maybe be an issue related to python 3? I have no idea...
help?
:)
Yes it is a Python 3 issue.xrange was deprecated in Python 3.
Open the code and search for xrange and chnage to range, then it will work. It is there 3 times.
Line 87: rangeList = xrange(first, last+1)
Line 89: rangeList = reversed(xrange (last, first+1))
Line 241: framerange = xrange(first, last+1)
It will say
/Users/ karlgeorge/.nuk e/VectorTracker .py: plugin
did not define VectorTracker
Is there anything i might be missing?
RSS feed for comments to this post