Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-07-21Tracking: Fix possible cases when tracker will try tracking failed tracksSergey Sharybin
2015-11-23Cleanup: shadowing (blenkernel)Campbell Barton
2015-04-22Tracking: Code cleanup, de-duplicate some code in tracking context finishSergey Sharybin
2015-01-23cleanup: styleCampbell Barton
2014-12-15Tracking: Fix wrong logic in tracks synchronizationSergey Sharybin
There was some stupidness in the way how tracks are synchronized from the job to actual DNA data leading to all sort of weird and wonderful failures again.
2014-12-15Tracking: Avoid possible treading issue reading the frame to syncSergey Sharybin
2014-12-15Tracking: Fix possible race condition accessing the tracksSergey Sharybin
Writing to the tracks was already inside the lock section, but reading was not. This could have lead to race condition leading to all sorts of weird and wonderful artifacts.
2014-11-02Cleanup: styleCampbell Barton
2014-11-01Cleanup/fix from latest coverity report.Bastien Montagne
Mostly harmless things, though the 'multires' error was a real bug.
2014-10-30Libmv: Support disabled color channels in tracking settingsSergey Sharybin
This was never ported to a new tracking pipeline and now it's done using FrameAccessor::Transform routines. Quite striaghtforward, but i've changed order of grayscale conversion in blender side with call of transform callback. This way it's much easier to perform rescaling in libmv side.
2014-10-30Libmv: Replace region tracker with autotracker in BlenderSergey Sharybin
The title actually tells it all, this commit switches Blender to use the new autotrack API from Libmv. From the user point of view it means that prediction model is now used when tracking which gives really nice results. All the other changes are not really visible for users, those are just frame accessors, caches and so for the new API.