HomeSort by relevance Sort by last modified time
    Searched refs:Stats (Results 1 - 25 of 200) sorted by null

1 2 3 4 5 6 7 8

  /external/opencv3/samples/cpp/tutorial_code/features2D/AKAZE_tracking/
stats.h 4 struct Stats
11 Stats() : matches(0),
17 Stats& operator+=(const Stats& op) {
24 Stats& operator/=(int num)
utils.h 6 #include "stats.h"
12 void drawStatistics(Mat image, const Stats& stats);
13 void printStatistics(string name, Stats stats);
24 void drawStatistics(Mat image, const Stats& stats)
29 str1 << "Matches: " << stats.matches;
30 str2 << "Inliers: " << stats.inliers;
31 str3 << "Inlier ratio: " << setprecision(2) << stats.ratio
    [all...]
  /build/kati/
stats.h 23 class Stats {
25 explicit Stats(const char* name);
43 explicit ScopedStatsRecorder(Stats* st, const char* msg = 0);
47 Stats* st_;
54 static Stats stats(name); \
55 ScopedStatsRecorder ssr(&stats)
58 static Stats stats(name); \
59 ScopedStatsRecorder ssr(&stats, msg
    [all...]
stats.cc 17 #include "stats.h"
31 vector<Stats*>* g_stats;
36 Stats::Stats(const char* name)
40 g_stats = new vector<Stats*>;
44 string Stats::String() const {
49 void Stats::Start() {
56 double Stats::End() {
65 ScopedStatsRecorder::ScopedStatsRecorder(Stats* st, const char* msg)
84 for (Stats* st : *g_stats)
    [all...]
  /external/llvm/lib/Support/
Statistic.cpp 1 //===-- Statistic.cpp - Easy way to expose stats information --------------===//
12 // printed at the end of a run, when the -stats command line option is enabled
37 /// -stats - Command line option to cause transformations to emit stats about
42 "stats",
51 std::vector<const Statistic*> Stats;
58 Stats.push_back(S);
69 // If stats are enabled, inform StatInfo that this statistic should be
99 StatisticInfo &Stats = *StatInfo;
103 for (size_t i = 0, e = Stats.Stats.size(); i != e; ++i)
    [all...]