Searched refs:tracked (Results 1 – 25 of 67) sorted by relevance
123
/external/opencv3/samples/python2/ |
D | feature_homography.py | 69 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)):
|
D | plane_ar.py | 65 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)
|
D | plane_tracker.py | 100 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 | .gitignore | 45 # 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/ |
D | git.py | 37 status, tracked = util.getstatusoutput(command) 40 return tracked
|
/external/jetty/src/resources/org/eclipse/jetty/servlets/jmx/ |
D | DoSFilter-mbean.properties | 10 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 | .gitignore | 4 # any tracked files which get ignored after the change.
|
/external/selinux/ |
D | .gitignore | 2 # no tracked files are ignored as a result of any changes.
|
/external/clang/ |
D | .gitignore | 31 # Clang extra user tools, which is tracked independently (clang-tools-extra).
|
D | ReadmeAndroid.md | 71 into a single copy commit on each tracked **external/** project.
|
/external/autotest/ |
D | .gitignore | 4 # any tracked files which get ignored after the change.
|
/external/valgrind/docs/internals/ |
D | SPEC-notes.txt | 16 It took a while, but I tracked this down to a 64bit/80bit
|
/external/droiddriver/ |
D | contributing.md | 3 DroidDriver issues are [tracked on GitHub](https://github.com/appium/droiddriver/issues)
|
/external/autotest/client/site_tests/suite_HWQual/ |
D | control.auto | 33 # This is tracked at http://crosbug.com/3792
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/rsa/doc/ |
D | installation.rst | 23 The sources are tracked in our `Mercurial repository`_ at
|
/external/autotest/client/site_tests/security_BundledExtensions/ |
D | baseline | 9 # already tracked and reviewed on the Chrome side. Ignore them
|
/external/iptables/extensions/ |
D | libxt_conntrack.man | 60 The packet is not tracked at all, which happens if you explicitly untrack it
|
/external/chromium-trace/catapult/third_party/webapp2/ |
D | webapp2.py | 1679 tracked = [] 1684 tracked.append((name, imported.__file__)) 1686 track = ['- %r found in %r.' % rv for rv in tracked]
|
/external/mksh/src/ |
D | sh_flags.opt | 150 /* -h create tracked aliases for all commands */
|
/external/clang/docs/analyzer/ |
D | IPA.txt | 223 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/ |
D | MESA_swap_frame_usage.spec | 133 Missed frame swaps can be tracked by calling the following function:
|
/external/clang/docs/ |
D | DataFlowSanitizer.rst | 28 uses API functions to apply tags to data to cause it to be tracked, and to
|
/external/blktrace/ |
D | README | 144 Errors found will be tracked in <dev>.verify.out.
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/ |
D | RewriteRuleElementStream.as | 30 /** A generic list of elements tracked in an alternative to be used in
|
/external/opencv3/doc/py_tutorials/py_feature2d/py_features_meaning/ |
D | py_features_meaning.markdown | 26 be easily tracked, which can be easily compared. If we go for a definition of such a feature, we may
|
123