Home
last modified time | relevance | path

Searched refs:tracked (Results 1 – 25 of 67) sorted by relevance

123

/external/opencv3/samples/python2/
Dfeature_homography.py69 tracked = self.tracker.track(self.frame)
70 if len(tracked) > 0:
71 tracked = tracked[0]
72 cv2.polylines(vis, [np.int32(tracked.quad)], True, (255, 255, 255), 2)
73 for (x0, y0), (x1, y1) in zip(np.int32(tracked.p0), np.int32(tracked.p1)):
Dplane_ar.py65 tracked = self.tracker.track(self.frame)
66 for tr in tracked:
82 def draw_overlay(self, vis, tracked): argument
83 x0, y0, x1, y1 = tracked.target.rect
91 ret, rvec, tvec = cv2.solvePnP(quad_3d, tracked.quad, K, dist_coef)
Dplane_tracker.py100 tracked = []
119 tracked.append(track)
120 tracked.sort(key = lambda t: len(t.p0), reverse=True)
121 return tracked
155 tracked = self.tracker.track(self.frame)
156 for tr in tracked:
/external/llvm/
D.gitignore45 # External projects that are tracked independently.
49 # Clang, which is tracked independently.
51 # LLDB, which is tracked independently.
53 # lld, which is tracked independently.
55 # llgo, which is tracked independently.
57 # Polly, which is tracked independently.
/external/vixl/tools/
Dgit.py37 status, tracked = util.getstatusoutput(command)
40 return tracked
/external/jetty/src/resources/org/eclipse/jetty/servlets/jmx/
DDoSFilter-mbean.properties10 trackSessions: usage rate is tracked by session if a session exists.
11 remotePort: usage rate is tracked by IP+port (effectively connection) if session tracking is not us…
/external/bsdiff/
D.gitignore4 # any tracked files which get ignored after the change.
/external/selinux/
D.gitignore2 # no tracked files are ignored as a result of any changes.
/external/clang/
D.gitignore31 # Clang extra user tools, which is tracked independently (clang-tools-extra).
DReadmeAndroid.md71 into a single copy commit on each tracked **external/** project.
/external/autotest/
D.gitignore4 # any tracked files which get ignored after the change.
/external/valgrind/docs/internals/
DSPEC-notes.txt16 It took a while, but I tracked this down to a 64bit/80bit
/external/droiddriver/
Dcontributing.md3 DroidDriver issues are [tracked on GitHub](https://github.com/appium/droiddriver/issues)
/external/autotest/client/site_tests/suite_HWQual/
Dcontrol.auto33 # This is tracked at http://crosbug.com/3792
/external/chromium-trace/catapult/third_party/gsutil/third_party/rsa/doc/
Dinstallation.rst23 The sources are tracked in our `Mercurial repository`_ at
/external/autotest/client/site_tests/security_BundledExtensions/
Dbaseline9 # already tracked and reviewed on the Chrome side. Ignore them
/external/iptables/extensions/
Dlibxt_conntrack.man60 The packet is not tracked at all, which happens if you explicitly untrack it
/external/chromium-trace/catapult/third_party/webapp2/
Dwebapp2.py1679 tracked = []
1684 tracked.append((name, imported.__file__))
1686 track = ['- %r found in %r.' % rv for rv in tracked]
/external/mksh/src/
Dsh_flags.opt150 /* -h create tracked aliases for all commands */
/external/clang/docs/analyzer/
DIPA.txt223 Such type information is tracked as DynamicTypeInfo. This is path-sensitive
347 which base constructors have been completed. This is tracked using
357 - 'new' is poorly modeled due to some nasty CFG/design issues. This is tracked
/external/mesa3d/docs/
DMESA_swap_frame_usage.spec133 Missed frame swaps can be tracked by calling the following function:
/external/clang/docs/
DDataFlowSanitizer.rst28 uses API functions to apply tags to data to cause it to be tracked, and to
/external/blktrace/
DREADME144 Errors found will be tracked in <dev>.verify.out.
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
DRewriteRuleElementStream.as30 /** A generic list of elements tracked in an alternative to be used in
/external/opencv3/doc/py_tutorials/py_feature2d/py_features_meaning/
Dpy_features_meaning.markdown26 be easily tracked, which can be easily compared. If we go for a definition of such a feature, we may

123