File: detection_observer.cc

package info (click to toggle)
chromium 138.0.7204.183-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 6,071,908 kB
  • sloc: cpp: 34,937,088; ansic: 7,176,967; javascript: 4,110,704; python: 1,419,953; asm: 946,768; xml: 739,971; pascal: 187,324; sh: 89,623; perl: 88,663; objc: 79,944; sql: 50,304; cs: 41,786; fortran: 24,137; makefile: 21,806; php: 13,980; tcl: 13,166; yacc: 8,925; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (161 lines) | stat: -rw-r--r-- 5,644 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chromeos/ash/components/kiosk/vision/internal/detection_observer.h"

#include <algorithm>
#include <cstddef>
#include <cstdint>
#include <utility>
#include <vector>

#include "base/check.h"
#include "base/check_op.h"
#include "base/feature_list.h"
#include "base/functional/bind.h"
#include "base/location.h"
#include "base/time/time.h"
#include "chromeos/ash/components/kiosk/vision/internal/detection_processor.h"
#include "media/capture/video/chromeos/mojom/cros_camera_service.mojom-forward.h"

namespace ash::kiosk_vision {

namespace {

int64_t CurrentTimestampInMicroseconds() {
  return base::Time::Now().ToDeltaSinceWindowsEpoch().InMicroseconds();
}

bool IsSortedByTimestamp(
    const std::vector<cros::mojom::KioskVisionAppearancePtr>& appearances) {
  for (size_t i = 1; i < appearances.size(); i++) {
    if (appearances[i - 1]->timestamp_in_us > appearances[i]->timestamp_in_us) {
      return false;
    }
  }
  return true;
}

void ValidateDetection(const cros::mojom::KioskVisionDetection& detection) {
  bool face_or_body_are_present = std::ranges::all_of(
      detection.appearances, [](auto& a) { return a->face || a->body; });
  CHECK(face_or_body_are_present)
      << "Appearances must have either a face or body or both";
}

void ValidateTrack(const cros::mojom::KioskVisionTrack& track) {
  CHECK(track.appearances.size() > 0)
      << "A track's list of appearances must not be empty";

  bool is_same_person = std::ranges::all_of(
      track.appearances,
      [&](auto id) { return track.appearances[0]->person_id == id; },
      [](const auto& a) { return a->person_id; });
  CHECK(is_same_person) << "A track's appearances must all have the same id";

  bool face_or_body_are_present = std::ranges::all_of(
      track.appearances, [](auto& a) { return a->face || a->body; });
  CHECK(face_or_body_are_present)
      << "Appearances must have either a face or body or both";

  CHECK(track.start_timestamp_in_us <= track.end_timestamp_in_us)
      << "A track's start time must not be later than its end time";

  CHECK(IsSortedByTimestamp(track.appearances))
      << "A track's appearances must be sorted by time";
}

}  // namespace

BASE_FEATURE(kEmitKioskVisionFakes,
             "EmitKioskVisionFakes",
             base::FEATURE_DISABLED_BY_DEFAULT);

DetectionObserver::DetectionObserver(DetectionProcessors processors)
    : processors_(std::move(processors)) {
  CHECK_GT(processors_.size(), 0ul) << "No processors given";
  if (base::FeatureList::IsEnabled(kEmitKioskVisionFakes)) {
    constexpr base::TimeDelta kFakeEmissionPeriod = base::Seconds(5);
    fake_detection_timer_.Start(
        FROM_HERE, kFakeEmissionPeriod,
        base::BindRepeating(&DetectionObserver::EmitFakeDetection,
                            base::Unretained(this)));
  }
}

DetectionObserver::~DetectionObserver() = default;

void DetectionObserver::OnFrameProcessed(
    cros::mojom::KioskVisionDetectionPtr detection) {
  ValidateDetection(*detection);
  for (const auto& processor : processors_) {
    processor->OnFrameProcessed(*detection);
  }
}

void DetectionObserver::OnTrackCompleted(
    cros::mojom::KioskVisionTrackPtr track) {
  ValidateTrack(*track);
  for (const auto& processor : processors_) {
    processor->OnTrackCompleted(*track);
  }
}

void DetectionObserver::OnError(cros::mojom::KioskVisionError error) {
  for (const auto& processor : processors_) {
    processor->OnError(error);
  }
}

void DetectionObserver::EmitFakeDetection() {
  constexpr int kLargeCount = 3;
  constexpr int kSmallCount = 2;
  constexpr int kBoxesPerRow = 6;
  constexpr int kMaxOffset = 20;
  constexpr float kConfidence = 0.7;
  constexpr float kRollFaceAngle = 10;
  constexpr float kPanFaceAngle = 20;
  constexpr float kTiltFaceAngle = 30;
  constexpr float kLowAngle = 4;

  // Makes 2 or 3 fake appearances depending on `fake_detection_flag_`.
  auto fake_detection = cros::mojom::KioskVisionDetection::New();
  for (int i = 0; i < (fake_detection_flag_ ? kLargeCount : kSmallCount); i++) {
    int offset = fake_detection_offset_ + i;

    auto fake_appearance = cros::mojom::KioskVisionAppearance::New(
        /*timestamp_in_us=*/CurrentTimestampInMicroseconds(),
        /*person_id=*/i,
        /*face=*/
        cros::mojom::KioskVisionFaceDetection::New(
            /*confidence=*/kConfidence,
            /*roll=*/kRollFaceAngle,
            // Set low face angles for index 1. Useful to test the case when the
            // person faces the device.
            /*pan=*/i == 1 ? kLowAngle : kPanFaceAngle,
            /*tilt=*/i == 1 ? kLowAngle : kTiltFaceAngle,
            /*box=*/
            cros::mojom::KioskVisionBoundingBox::New(
                /*x=*/20 + 50 * (offset % kBoxesPerRow),
                /*y=*/20 + 50 * (offset / kBoxesPerRow),
                /*width=*/20,
                /*height=*/20)),
        /*body=*/
        cros::mojom::KioskVisionBodyDetection::New(
            /*confidence=*/kConfidence,
            /*box=*/cros::mojom::KioskVisionBoundingBox::New(
                /*x=*/10 + 50 * (offset % kBoxesPerRow),
                /*y=*/20 + 50 * (offset / kBoxesPerRow),
                /*width=*/40,
                /*height=*/40)));

    fake_detection->appearances.push_back(std::move(fake_appearance));
  }
  fake_detection_flag_ = !fake_detection_flag_;
  fake_detection_offset_ = (fake_detection_offset_ + 1) % kMaxOffset;

  OnFrameProcessed(std::move(fake_detection));
}

}  // namespace ash::kiosk_vision