diff --git a/tests/.gitignore b/tests/.gitignore deleted file mode 100644 index 93dd28b..0000000 --- a/tests/.gitignore +++ /dev/null @@ -1 +0,0 @@ -results/**/* \ No newline at end of file diff --git a/tests/Dockerfile b/tests/Dockerfile deleted file mode 100644 index 306fc71..0000000 --- a/tests/Dockerfile +++ /dev/null @@ -1,35 +0,0 @@ -ARG BASE="dlstreamer-pipeline-server-gstreamer" -FROM ${BASE} as dlstreamer-pipeline-server-tests - -USER root - -# Dependencies from apt-get -RUN DEBIAN_FRONTEND=noninteractive apt-get update && \ - apt-get install -y -q --no-install-recommends \ - python3-dev \ - clamav \ - clamav-daemon \ - gcc \ - wget && \ - rm -rf /var/lib/apt/lists/* - - -# Dependencies installed via pip -RUN python3 -m pip install --upgrade pip setuptools -COPY ./tests/requirements.tests.txt /home/pipeline-server -RUN python3 -m pip install --no-cache-dir -r /home/pipeline-server/requirements.tests.txt -RUN rm -f /home/pipeline-server/requirements.tests.txt - -# Copy tests and sample files -COPY tests/ /home/pipeline-server/tests/ -COPY samples/ /home/pipeline-server/samples/ -COPY models_list/models.list.yml /home/pipeline-server/models/models.list.yml - -RUN wget -O tests/media/store-aisle-detection.mp4 https://github.com/intel-iot-devkit/sample-videos/blob/master/store-aisle-detection.mp4?raw=true -RUN wget -O tests/media/person-bicycle-car-detection.mp4 https://github.com/intel-iot-devkit/sample-videos/blob/master/person-bicycle-car-detection.mp4?raw=true - -ARG USER=pipeline-server - -USER ${USER} - -ENTRYPOINT [ "./tests/entrypoint/pytest.sh" ] diff --git a/tests/README.md b/tests/README.md deleted file mode 100644 index 6a59d12..0000000 --- a/tests/README.md +++ /dev/null @@ -1,26 +0,0 @@ -# Intel(R) DL Streamer Pipeline Server Tests and Scans - -## Tests Run Script Reference -The `run.sh` can be used to run tests or scans with option to select only one at a time, default selected as --pytest-gstreamer. It uses [docker/run.sh](../docker/run.sh) to pass common options to the underlying docker run command [Reference Doc](../docs/run_script_reference.md). -``` -tests/run.sh --help -``` -``` -usage: run.sh - [ --pytest-gstreamer : Run gstreamer tests ] - [ --pytest-ffmpeg: Run ffmpeg tests ] - [ --pylint : Run pylint scan ] - [ --pybandit: Run pybandit scan ] - [ --clamav : Run antivirus scan ] -``` - -### Architecture -* RESULTS_DIR : Results directory is created and volume mounted according to test or scan selected, Directory path is Set as environment varible used by entrypoint scripts to save results in the directory. -* ENTRYPOINT: selected in the script according to test or scan selected. -* Entrypoint Args can be changed through environment variable defined in respective entrypoint scripts, or through --entrypoint-args option. - -#### Entrypoint Scripts -Entrypoint directory used to maintain Docker entrypoint scripts to run tests and scans. Each entrypoint script contains below mentioned details if supported. -* Support to read RESULTS_DIR environment variable to save results in that path. -* Other environment args required and that can be updated from run.sh. -* Command to run respective tests/scans. \ No newline at end of file diff --git a/tests/__init__.py b/tests/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/tests/build.sh b/tests/build.sh deleted file mode 100755 index acbc90e..0000000 --- a/tests/build.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/bash -e -# -# Copyright (C) 2019 Intel Corporation. -# -# SPDX-License-Identifier: BSD-3-Clause -# - -DIR=$(dirname $(readlink -f "$0")) - -function launch { $@ - local exit_code=$? - if [ $exit_code -ne 0 ]; then - echo "ERROR: error with $1" >&2 - exit $exit_code - fi - return $exit_code -} - -if [ -z "$PARENT_IMAGE" ]; then - launch ". $DIR/../docker/build.sh $@ --dockerfile-dir $DIR/../docker" - # TAG variable is set through the build script on previous line - PARENT_IMAGE=$TAG -else - # NOTE: We support building tests on top of any image. - # When caller overrides the PARENT_IMAGE, they may also need to supply - # appropriate overrides of FRAMEWORK and/or PIPELINES depending on needs. - if [ -z "$FRAMEWORK" ]; then - FRAMEWORK="gstreamer" - fi - if [ -z "$PIPELINES" ]; then - PIPELINES=pipelines/$FRAMEWORK - fi -fi - -echo "TEST_IMAGE will build on top of PARENT_IMAGE: $PARENT_IMAGE..." -DOCKERFILE_DIR=$(dirname "$(readlink -f "$0")") -SOURCE_DIR=$(dirname $DOCKERFILE_DIR) -BUILD_ARGS=$(env | cut -f1 -d= | grep -E '_(proxy|REPO|VER)$' | sed 's/^/--build-arg / ' | tr '\n' ' ') -BUILD_OPTIONS="--network=host --no-cache" -BUILD_ARGS+=" --build-arg BASE=$PARENT_IMAGE --build-arg FRAMEWORK=$FRAMEWORK" -TAG="dlstreamer-pipeline-server-$FRAMEWORK-tests:latest" - -launch "docker build -f $DOCKERFILE_DIR/Dockerfile $BUILD_OPTIONS $BUILD_ARGS -t $TAG $SOURCE_DIR" - diff --git a/tests/cis_dockerbench.sh b/tests/cis_dockerbench.sh deleted file mode 100755 index dfd9fa3..0000000 --- a/tests/cis_dockerbench.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/bash -TARGET_IMAGE=${IMAGE:-dlstreamer-pipeline-server-gstreamer:latest} -TESTS_DIR=$(dirname "$(readlink -f "$0")") -SOURCE_DIR=$(dirname $TESTS_DIR) -RESULTS_DIR=${RESULTS_DIR:-"$TESTS_DIR/results/dockerbench"} -OUTPUT_DIR="/usr/local/bin/results" -OUTPUT_NAME=${OUTPUT_NAME:-"docker.benchmark.results.txt"} -OUTPUT_FILE="$OUTPUT_DIR/$OUTPUT_NAME" - -echo "Sending output to: $RESULTS_DIR/$OUTPUT_NAME" -mkdir -p "$RESULTS_DIR" - -#INTERACTIVE_MODE="-it --entrypoint /bin/sh" -docker_bench_args="-t $TARGET_IMAGE -l $OUTPUT_FILE" - -docker run $INTERACTIVE --net host --pid host --userns host \ - --cap-add audit_control \ - -e DOCKER_CONTENT_TRUST=$DOCKER_CONTENT_TRUST \ - -e TARGET_IMAGE=$TARGET_IMAGE \ - -v /etc:/etc:ro \ - -v /lib/systemd/system:/lib/systemd/system:ro \ - -v /usr/bin/containerd:/usr/bin/containerd:ro \ - -v /usr/bin/runc:/usr/bin/runc:ro \ - -v /usr/lib/systemd:/usr/lib/systemd:ro \ - -v /var/lib:/var/lib:ro \ - -v /var/run/docker.sock:/var/run/docker.sock:ro \ - -v $RESULTS_DIR:$OUTPUT_DIR:rw \ - --label docker_bench_security \ -docker/docker-bench-security $docker_bench_args diff --git a/tests/common/pipeline_processing.py b/tests/common/pipeline_processing.py deleted file mode 100644 index 5e55c7f..0000000 --- a/tests/common/pipeline_processing.py +++ /dev/null @@ -1,43 +0,0 @@ -''' -* Copyright (C) 2019 Intel Corporation. -* -* SPDX-License-Identifier: BSD-3-Clause -''' -import json -import requests -import time - -TIMEOUT = 120 - -def get_pipeline_status(instance_url): - response = requests.get(instance_url, timeout=TIMEOUT) - status = json.loads(response.text) - response.close() - return status - -def get_pipeline_state(instance_url, valid_states): - status = get_pipeline_status(instance_url) - state = status.get('state') - if state in valid_states: - return valid_states.index(state) - return -1 - -def get_pipeline_avg_fps(instance_url): - status = get_pipeline_status(instance_url) - avg_fps = status.get('avg_fps') - print("avg_fps: {}".format(avg_fps)) - return avg_fps - -def wait_for_pipeline_status(instance_url, expected_status, valid_states, timeout): - elapsed_time = 0.0 - sleep_time = 0.25 - if not expected_status in valid_states: - return False - expected_state = valid_states.index(expected_status) - print("Checking {} for status {}".format(instance_url, expected_status)) - state = get_pipeline_state(instance_url, valid_states) - while state < expected_state and elapsed_time < timeout: - time.sleep(sleep_time) - state = get_pipeline_state(instance_url, valid_states) - elapsed_time = elapsed_time + sleep_time - return state >= expected_state diff --git a/tests/common/results_processing.py b/tests/common/results_processing.py deleted file mode 100644 index 1cfe339..0000000 --- a/tests/common/results_processing.py +++ /dev/null @@ -1,140 +0,0 @@ -''' -* Copyright (C) 2019-2020 Intel Corporation. -* -* SPDX-License-Identifier: BSD-3-Clause -''' - -import os -import math -import json -from threading import Thread -from server.common.utils import logging - -def parse_gstreamer_results(output_file): - results = [] - for x in output_file: - if (len(x.strip()) != 0): - results.append(json.loads(x)) - return results - -def parse_ffmpeg_results(output_file): - results = [] - start_marker = "{\"resolution\":" - data = output_file.read(len(start_marker)) - while True: - x = output_file.read(len(start_marker)) - if (x): - data += x - else: - break - end = data.rfind(start_marker, 1) - if (end != -1): - message = data[: end] - data = data[end:] - results.append(json.loads(message)) - results.append(json.loads(data)) - return results - -def get_results_file(test_case, results): - if test_case["request"]["destination"]["type"] == "file": - filename = test_case["request"]["destination"]["path"] - with open(filename) as results_file: - if test_case["request"]["destination"]["format"] == "json": - results.extend(json.load(results_file)) - else: - if (os.environ["FRAMEWORK"] == "ffmpeg"): - parse_func = parse_ffmpeg_results - else: - parse_func = parse_gstreamer_results - - results.extend(parse_func(results_file)) - -def get_results_fifo(test_case, results): - if test_case["request"]["destination"]["type"] == "file": - if "fifo" in test_case["request"]["destination"]["path"]: - thread = Thread(target=_get_results_fifo, args=[test_case, results], daemon=True) - thread.start() - return thread - return None - -def _get_results_fifo(test_case, results): - fifo_name = test_case["request"]["destination"]["path"] - os.makedirs(os.path.dirname(fifo_name), exist_ok=True) - - try: - os.remove(fifo_name) - except: - pass - - os.mkfifo(fifo_name) - - fifo = open(fifo_name, "r") - - if (os.environ["FRAMEWORK"] == "ffmpeg"): - parse_func = parse_ffmpeg_results - else: - parse_func = parse_gstreamer_results - - results.extend(parse_func(fifo)) - fifo.close() - os.remove(fifo_name) - -def clear_results(test_case): - if test_case["request"]["destination"]["type"] == "file": - try: - os.remove(test_case["request"]["destination"]["path"]) - except: - pass - -def cmp_results(measured, expected, tolerance): - - if measured == expected: - return True - - assert type(measured) == type(expected), "Type Comparison Mismatch" - - if isinstance(measured, int): - if expected != 0: - msg = "Measured Value {} not within tolerance ({}) of Expected Value {}" - assert (abs(measured-expected) / abs(expected) <= math.ceil(tolerance)), \ - msg.format(measured, math.ceil(tolerance), expected) - else: - msg = "Measured Value {} not within tolerance ({}) of Expected Value {}" - assert tolerance > 1, \ - msg.format(measured, tolerance, expected) - return True - - if isinstance(measured, float): - if expected != 0: - msg = "Measured Value {} not within tolerance ({}) of Expected Value {}" - assert (abs(measured-expected) / abs(expected)) < tolerance, \ - msg.format(measured, tolerance, expected) - else: - msg = "Measured Value {} not within tolerance ({}) of Expected Value {}" - assert tolerance > 1, \ - msg.format(measured, tolerance, expected) - - return True - - if isinstance(measured, list): - assert len(measured) == len(expected), "List length not equal" - - for measured1, expected1 in zip(measured, expected): - assert cmp_results(measured1, expected1, tolerance), "List items not equal" - return True - - if isinstance(measured, dict): - assert len(measured) == len(expected), "Dictionary length not equal" - for key in measured: - assert key in expected, "Dictionary keys not equal" - # No exact match expected on region_id - if key == "region_id": - continue - if key.endswith("id"): - assert measured[key] == expected[key], "{} doesn't match".format(key) - return True - assert cmp_results(measured[key], expected[key], tolerance), "Dictionaries not equal" - return True - - assert measured == expected, "Values not equal" - return True diff --git a/tests/config/.pylintrc b/tests/config/.pylintrc deleted file mode 100644 index de6e892..0000000 --- a/tests/config/.pylintrc +++ /dev/null @@ -1,641 +0,0 @@ -[MASTER] - -# A comma-separated list of package or module names from where C extensions may -# be loaded. Extensions are loading into the active Python interpreter and may -# run arbitrary code. -extension-pkg-allow-list= - -# A comma-separated list of package or module names from where C extensions may -# be loaded. Extensions are loading into the active Python interpreter and may -# run arbitrary code. (This is an alternative name to extension-pkg-allow-list -# for backward compatibility.) -extension-pkg-whitelist=cv2 - -# Return non-zero exit code if any of these messages/categories are detected, -# even if score is above --fail-under value. Syntax same as enable. Messages -# specified are enabled, while categories only check already-enabled messages. -fail-on= - -# Specify a score threshold to be exceeded before program exits with error. -fail-under=10.0 - -# Files or directories to be skipped. They should be base names, not paths. -ignore=CVS - -# Add files or directories matching the regex patterns to the ignore-list. The -# regex matches against paths. -ignore-paths=^/home/pipeline-server/tests/.*$, - ^/home/pipeline-server/samples/edgex_bridge/edgex/.*$ - -# Files or directories matching the regex patterns are skipped. The regex -# matches against base names, not paths. -ignore-patterns= - -# Python code to execute, usually for sys.path manipulation such as -# pygtk.require(). -init-hook= - -# Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the -# number of processors available to use. -jobs=1 - -# Control the amount of potential inferred values when inferring a single -# object. This can help the performance when dealing with large functions or -# complex, nested conditions. -limit-inference-results=100 - -# List of plugins (as comma separated values of python module names) to load, -# usually to register additional checkers. -load-plugins= - -# Pickle collected data for later comparisons. -persistent=yes - -# When enabled, pylint would attempt to guess common misconfiguration and emit -# user-friendly hints instead of false-positive error messages. -suggestion-mode=yes - -# Allow loading of arbitrary C extensions. Extensions are imported into the -# active Python interpreter and may run arbitrary code. -unsafe-load-any-extension=no - - -[MESSAGES CONTROL] - -# Only show warnings with the listed confidence levels. Leave empty to show -# all. Valid levels: HIGH, INFERENCE, INFERENCE_FAILURE, UNDEFINED. -confidence= - -# Disable the message, report, category or checker with the given id(s). You -# can either give multiple identifiers separated by comma (,) or put this -# option multiple times (only on the command line, not in the configuration -# file where it should appear only once). You can also use "--disable=all" to -# disable everything first and then reenable specific checks. For example, if -# you want to run only the similarities checker, you can use "--disable=all -# --enable=similarities". If you want to run only the classes checker, but have -# no Warning level messages displayed, use "--disable=all --enable=classes -# --disable=W". -disable=missing-module-docstring, - missing-class-docstring, - missing-function-docstring, - superfluous-parens, - import-outside-toplevel, - print-statement, - parameter-unpacking, - unpacking-in-except, - old-raise-syntax, - backtick, - long-suffix, - old-ne-operator, - old-octal-literal, - import-star-module-level, - non-ascii-bytes-literal, - raw-checker-failed, - bad-inline-option, - locally-disabled, - file-ignored, - suppressed-message, - useless-suppression, - deprecated-pragma, - use-symbolic-message-instead, - no-self-use, - cyclic-import, - too-many-instance-attributes, - fixme, - redefined-outer-name, - broad-except, - logging-format-interpolation, - apply-builtin, - basestring-builtin, - buffer-builtin, - cmp-builtin, - coerce-builtin, - execfile-builtin, - file-builtin, - long-builtin, - raw_input-builtin, - reduce-builtin, - standarderror-builtin, - unicode-builtin, - xrange-builtin, - coerce-method, - delslice-method, - getslice-method, - setslice-method, - no-absolute-import, - old-division, - dict-iter-method, - dict-view-method, - next-method-called, - metaclass-assignment, - indexing-exception, - raising-string, - reload-builtin, - oct-method, - hex-method, - nonzero-method, - cmp-method, - input-builtin, - round-builtin, - intern-builtin, - unichr-builtin, - map-builtin-not-iterating, - zip-builtin-not-iterating, - range-builtin-not-iterating, - filter-builtin-not-iterating, - using-cmp-argument, - eq-without-hash, - div-method, - idiv-method, - rdiv-method, - exception-message-attribute, - invalid-str-codec, - sys-max-int, - bad-python3-import, - deprecated-string-function, - deprecated-str-translate-call, - deprecated-itertools-function, - deprecated-types-field, - next-method-defined, - dict-items-not-iterating, - dict-keys-not-iterating, - dict-values-not-iterating, - deprecated-operator-function, - deprecated-urllib-function, - xreadlines-attribute, - deprecated-sys-function, - exception-escape, - comprehension-escape - -# Enable the message, report, category or checker with the given id(s). You can -# either give multiple identifier separated by comma (,) or put this option -# multiple time (only on the command line, not in the configuration file where -# it should appear only once). See also the "--disable" option for examples. -enable=c-extension-no-member - - -[REPORTS] - -# Python expression which should return a score less than or equal to 10. You -# have access to the variables 'error', 'warning', 'refactor', and 'convention' -# which contain the number of messages in each category, as well as 'statement' -# which is the total number of statements analyzed. This score is used by the -# global evaluation report (RP0004). -evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10) - -# Template used to display messages. This is a python new-style format string -# used to format the message information. See doc for all details. -#msg-template= - -# Set the output format. Available formats are text, parseable, colorized, json -# and msvs (visual studio). You can also give a reporter class, e.g. -# mypackage.mymodule.MyReporterClass. -output-format=json - -# Tells whether to display a full report or only the messages. -reports=yes - -# Activate the evaluation score. -score=yes - - -[REFACTORING] - -# Maximum number of nested blocks for function / method body -max-nested-blocks=5 - -# Complete name of functions that never returns. When checking for -# inconsistent-return-statements if a never returning function is called then -# it will be considered as an explicit return statement and no message will be -# printed. -never-returning-functions=sys.exit - - -[SPELLING] - -# Limits count of emitted suggestions for spelling mistakes. -max-spelling-suggestions=4 - -# Spelling dictionary name. Available dictionaries: none. To make it work, -# install the 'python-enchant' package. -spelling-dict= - -# List of comma separated words that should be considered directives if they -# appear and the beginning of a comment and should not be checked. -spelling-ignore-comment-directives=fmt: on,fmt: off,noqa:,noqa,nosec,isort:skip,mypy: - -# List of comma separated words that should not be checked. -spelling-ignore-words= - -# A path to a file that contains the private dictionary; one word per line. -spelling-private-dict-file= - -# Tells whether to store unknown words to the private dictionary (see the -# --spelling-private-dict-file option) instead of raising a message. -spelling-store-unknown-words=no - - -[MISCELLANEOUS] - -# List of note tags to take in consideration, separated by a comma. -notes=FIXME, - XXX, - TODO - -# Regular expression of note tags to take in consideration. -#notes-rgx= - - -[BASIC] - -# Naming style matching correct argument names. -argument-naming-style=snake_case - -# Regular expression matching correct argument names. Overrides argument- -# naming-style. -#argument-rgx= - -# Naming style matching correct attribute names. -attr-naming-style=snake_case - -# Regular expression matching correct attribute names. Overrides attr-naming- -# style. -#attr-rgx= - -# Bad variable names which should always be refused, separated by a comma. -bad-names=foo, - bar, - baz, - toto, - tutu, - tata - -# Bad variable names regexes, separated by a comma. If names match any regex, -# they will always be refused -bad-names-rgxs= - -# Naming style matching correct class attribute names. -class-attribute-naming-style=any - -# Regular expression matching correct class attribute names. Overrides class- -# attribute-naming-style. -#class-attribute-rgx= - -# Naming style matching correct class constant names. -class-const-naming-style=UPPER_CASE - -# Regular expression matching correct class constant names. Overrides class- -# const-naming-style. -#class-const-rgx= - -# Naming style matching correct class names. -class-naming-style=PascalCase - -# Regular expression matching correct class names. Overrides class-naming- -# style. -#class-rgx= - -# Naming style matching correct constant names. -const-naming-style=any - -# Regular expression matching correct constant names. Overrides const-naming- -# style. -#const-rgx= - -# Minimum line length for functions/classes that require docstrings, shorter -# ones are exempt. -docstring-min-length=-1 - -# Naming style matching correct function names. -function-naming-style=snake_case - -# Regular expression matching correct function names. Overrides function- -# naming-style. -#function-rgx= - -# Good variable names which should always be accepted, separated by a comma. -good-names=x, - i, - j, - k, - ex, - ws, - Run, - _ - -# Good variable names regexes, separated by a comma. If names match any regex, -# they will always be accepted -good-names-rgxs= - -# Include a hint for the correct naming format with invalid-name. -include-naming-hint=no - -# Naming style matching correct inline iteration names. -inlinevar-naming-style=any - -# Regular expression matching correct inline iteration names. Overrides -# inlinevar-naming-style. -#inlinevar-rgx= - -# Naming style matching correct method names. -method-naming-style=snake_case - -# Regular expression matching correct method names. Overrides method-naming- -# style. -#method-rgx= - -# Naming style matching correct module names. -module-naming-style=snake_case - -# Regular expression matching correct module names. Overrides module-naming- -# style. -#module-rgx= - -# Colon-delimited sets of names that determine each other's naming style when -# the name regexes allow several styles. -name-group= - -# Regular expression which should only match function or class names that do -# not require a docstring. -no-docstring-rgx=^_ - -# List of decorators that produce properties, such as abc.abstractproperty. Add -# to this list to register other decorators that produce valid properties. -# These decorators are taken in consideration only for invalid-name. -property-classes=abc.abstractproperty - -# Naming style matching correct variable names. -variable-naming-style=snake_case - -# Regular expression matching correct variable names. Overrides variable- -# naming-style. -#variable-rgx= - - -[LOGGING] - -# The type of string formatting that logging methods do. `old` means using % -# formatting, `new` is for `{}` formatting. -logging-format-style=old - -# Logging modules to check that the string format arguments are in logging -# function parameter format. -logging-modules=logging - - -[VARIABLES] - -# List of additional names supposed to be defined in builtins. Remember that -# you should avoid defining new builtins when possible. -additional-builtins= - -# Tells whether unused global variables should be treated as a violation. -allow-global-unused-variables=yes - -# List of names allowed to shadow builtins -allowed-redefined-builtins= - -# List of strings which can identify a callback function by name. A callback -# name must start or end with one of those strings. -callbacks=cb_, - _cb - -# A regular expression matching the name of dummy variables (i.e. expected to -# not be used). -dummy-variables-rgx=_+$|(_[a-zA-Z0-9_]*[a-zA-Z0-9]+?$)|dummy|^ignored_|^unused_ - -# Argument names that match this expression will be ignored. Default to name -# with leading underscore. -ignored-argument-names=_.*|^ignored_|^unused_ - -# Tells whether we should check for unused import in __init__ files. -init-import=no - -# List of qualified module names which can have objects that can redefine -# builtins. -redefining-builtins-modules=six.moves,past.builtins,future.builtins,builtins,io - - -[TYPECHECK] - -# List of decorators that produce context managers, such as -# contextlib.contextmanager. Add to this list to register other decorators that -# produce valid context managers. -contextmanager-decorators=contextlib.contextmanager - -# List of members which are set dynamically and missed by pylint inference -# system, and so shouldn't trigger E1101 when accessed. Python regular -# expressions are accepted. -generated-members=cv2.* -# Tells whether missing members accessed in mixin class should be ignored. A -# mixin class is detected if its name ends with "mixin" (case insensitive). -ignore-mixin-members=yes - -# Tells whether to warn about missing members when the owner of the attribute -# is inferred to be None. -ignore-none=yes - -# This flag controls whether pylint should warn about no-member and similar -# checks whenever an opaque object is returned when inferring. The inference -# can return multiple potential results while evaluating a Python object, but -# some branches might not be evaluated, which results in partial inference. In -# that case, it might be useful to still emit no-member and other checks for -# the rest of the inferred objects. -ignore-on-opaque-inference=yes - -# List of class names for which member attributes should not be checked (useful -# for classes with dynamically set attributes). This supports the use of -# qualified names. -ignored-classes=optparse.Values,thread._local,_thread._local, - extension__pb2.MediaStreamMessage,MediaStreamMessage, - VideoFrameSampleFormat,Entity, - AppSrc,AppSink - - -# List of module names for which member attributes should not be checked -# (useful for modules/projects where namespaces are manipulated during runtime -# and thus existing member attributes cannot be deduced by static analysis). It -# supports qualified module names, as well as Unix pattern matching. -ignored-modules= - -# Show a hint with possible names when a member name was not found. The aspect -# of finding the hint is based on edit distance. -missing-member-hint=yes - -# The minimum edit distance a name should have in order to be considered a -# similar match for a missing member name. -missing-member-hint-distance=1 - -# The total number of similar names that should be taken in consideration when -# showing a hint for a missing member. -missing-member-max-choices=1 - -# List of decorators that change the signature of a decorated function. -signature-mutators= - - -[FORMAT] - -# Expected format of line ending, e.g. empty (any line ending), LF or CRLF. -expected-line-ending-format= - -# Regexp for a line that is allowed to be longer than the limit. -ignore-long-lines=^\s*(# )??$ - -# Number of spaces of indent required inside a hanging or continued line. -indent-after-paren=4 - -# String used as indentation unit. This is usually " " (4 spaces) or "\t" (1 -# tab). -indent-string=' ' - -# Maximum number of characters on a single line. -max-line-length=120 - -# Maximum number of lines in a module. -max-module-lines=1000 - -# Allow the body of a class to be on the same line as the declaration if body -# contains single statement. -single-line-class-stmt=no - -# Allow the body of an if to be on the same line as the test if there is no -# else. -single-line-if-stmt=no - - -[SIMILARITIES] - -# Ignore comments when computing similarities. -ignore-comments=yes - -# Ignore docstrings when computing similarities. -ignore-docstrings=yes - -# Ignore imports when computing similarities. -ignore-imports=no - -# Ignore function signatures when computing similarities. -ignore-signatures=no - -# Minimum lines number of a similarity. -min-similarity-lines=15 - - -[STRING] - -# This flag controls whether inconsistent-quotes generates a warning when the -# character used as a quote delimiter is used inconsistently within a module. -check-quote-consistency=no - -# This flag controls whether the implicit-str-concat should generate a warning -# on implicit string concatenation in sequences defined over several lines. -check-str-concat-over-line-jumps=no - - -[CLASSES] - -# Warn about protected attribute access inside special methods -check-protected-access-in-special-methods=no - -# List of method names used to declare (i.e. assign) instance attributes. -defining-attr-methods=__init__, - __new__, - setUp, - __post_init__ - -# List of member names, which should be excluded from the protected access -# warning. -exclude-protected=_asdict, - _fields, - _replace, - _source, - _make - -# List of valid names for the first argument in a class method. -valid-classmethod-first-arg=cls - -# List of valid names for the first argument in a metaclass class method. -valid-metaclass-classmethod-first-arg=cls - - -[IMPORTS] - -# List of modules that can be imported at any level, not just the top level -# one. -allow-any-import-level= - -# Allow wildcard imports from modules that define __all__. -allow-wildcard-with-all=no - -# Analyse import fallback blocks. This can be used to support both Python 2 and -# 3 compatible code, which means that the block might have code that exists -# only in one or another interpreter, leading to false positives when analysed. -analyse-fallback-blocks=no - -# Deprecated modules which should not be used, separated by a comma. -deprecated-modules=optparse,tkinter.tix - -# Output a graph (.gv or any supported image format) of external dependencies -# to the given file (report RP0402 must not be disabled). -ext-import-graph= - -# Output a graph (.gv or any supported image format) of all (i.e. internal and -# external) dependencies to the given file (report RP0402 must not be -# disabled). -import-graph= - -# Output a graph (.gv or any supported image format) of internal dependencies -# to the given file (report RP0402 must not be disabled). -int-import-graph= - -# Force import order to recognize a module as part of the standard -# compatibility libraries. -known-standard-library= - -# Force import order to recognize a module as part of a third party library. -known-third-party=enchant - -# Couples of modules and preferred modules, separated by a comma. -preferred-modules= - - -[DESIGN] - -# Maximum number of arguments for function / method. -max-args=10 - -# Maximum number of attributes for a class (see R0902). -max-attributes=7 - -# Maximum number of boolean expressions in an if statement (see R0916). -max-bool-expr=5 - -# Maximum number of branch for function / method body. -max-branches=12 - -# Maximum number of locals for function / method body. -max-locals=15 - -# Maximum number of parents for a class (see R0901). -max-parents=7 - -# Maximum number of public methods for a class (see R0904). -max-public-methods=20 - -# Maximum number of return / yield for function / method body. -max-returns=6 - -# Maximum number of statements in function / method body. -max-statements=50 - -# Minimum number of public methods for a class (see R0903). -min-public-methods=2 - - -[EXCEPTIONS] - -# Exceptions that will emit a warning when being caught. Defaults to -# "BaseException, Exception". -overgeneral-exceptions=BaseException, - Exception diff --git a/tests/config/coveragerc_ffmpeg b/tests/config/coveragerc_ffmpeg deleted file mode 100644 index 7ba3167..0000000 --- a/tests/config/coveragerc_ffmpeg +++ /dev/null @@ -1,6 +0,0 @@ -[run] -omit = *gstreamer*,*app_destination*,*app_source* -data_file = /home/pipeline-server/tests/results/pytest/ffmpeg/.coverage - -[report] -omit = *gstreamer*,*app_destination*,*app_source* diff --git a/tests/config/coveragerc_gstreamer b/tests/config/coveragerc_gstreamer deleted file mode 100644 index dd8ecc3..0000000 --- a/tests/config/coveragerc_gstreamer +++ /dev/null @@ -1,6 +0,0 @@ -[run] -omit = *ffmpeg* -data_file = /home/pipeline-server/tests/results/pytest/gstreamer/.coverage - -[report] -omit = *ffmpeg* diff --git a/tests/conftest.py b/tests/conftest.py deleted file mode 100644 index 9483eee..0000000 --- a/tests/conftest.py +++ /dev/null @@ -1,272 +0,0 @@ -''' -* Copyright (C) 2019 Intel Corporation. -* -* SPDX-License-Identifier: BSD-3-Clause -''' - -import pytest -import subprocess -import json -import psutil -import time -import requests -from collections import namedtuple -import os -import sys -import re -from server.pipeline_server import PipelineServer as _PipelineServer -import signal - -TIMEOUT = 30 -MAX_CONNECTION_ATTEMPTS = 5 -CONNECTED_SOURCES = ["webcam", "mic"] - -class PipelineServerService: - - PIPELINE_SERVER_ARGS = ["python3", "-m", "server","--enable-rtsp","true"] - - def kill(self, timeout=10): - graceful_exit = True - if self._process is not None and self._process.poll() is None: - self._process.send_signal(signal.SIGINT) - print("Awaiting graceful exit") - try: - self._process.wait(timeout) - if ((self._process.returncode == None) or (self._process.returncode != 0)): - print("Invalid process exit code ", self._process.returncode) - graceful_exit = False - else: - print("Gracefully exited") - except subprocess.TimeoutExpired: - print("TimeoutExpired, killing process") - self._process.kill() - graceful_exit = False - self._process = None - return graceful_exit - - def __del__(self): - self.kill() - - def kill_all(self): - for proc in psutil.process_iter(): - if "server" in proc.cmdline(): - proc.kill() - - def get_log_message(self, line): - try: - log_message = json.loads(line) - if "levelname" in log_message and "message" in log_message: - return log_message - except ValueError: - print("Invalid JSON: %s" % (line)) - return None - - def __init__(self): - self.kill_all() - self.host = "http://localhost:8080" - self._process = subprocess.Popen(PipelineServerService.PIPELINE_SERVER_ARGS, - stdout=subprocess.PIPE, - stderr=subprocess.PIPE, - bufsize=1, - universal_newlines=True) - self._process.poll() - while self._process.returncode is None: - next_line = self._process.stderr.readline() - try: - message = self.get_log_message(next_line) - if message: - ignore_init_errors = os.getenv('IGNORE_INIT_ERRORS', False) - if message["levelname"] == "ERROR" and not ignore_init_errors: - raise Exception(next_line) - if message["message"] == "Starting Tornado Server on port: 8080": - attempts = MAX_CONNECTION_ATTEMPTS - while (attempts): - try: - result = requests.get("http://localhost:8080", timeout=TIMEOUT) - except requests.ConnectionError as error: - time.sleep(1) - attempts -= 1 - else: - return - raise Exception("Pipeline Server Not Launched") - except Exception as error: - self._process.kill() - self._process = None - assert False, "Pipeline Server Not Launched" - raise - self._process.poll() - if self._process.returncode != 0: - assert False - - def get_models(self): - pass - - -def pytest_addoption(parser): - parser.addoption("--generate", action="store_true", help="generate expected results", - default=False) - parser.addoption("--framework", help="ffmpeg or gstreamer", choices=['ffmpeg', 'gstreamer'], - default=os.environ["FRAMEWORK"]) - parser.addoption("--numerical_tolerance", help="percentage numerical difference to tolerate", - type=float, default=0.0001) - parser.addoption("--stability", action="store_true", help="run stability tests", - default=False) - parser.addoption("--stability_duration", type=int, help="duration to run stability tests", - action="store", default=None) - parser.addoption("--cpu", action="store_true", help="Run CPU tests", - default=True) - parser.addoption("--no-cpu", action="store_false", dest='cpu', help="Disable CPU tests") - parser.addoption("--gpu", action="store_true", help="Run GPU tests", - default=False) - parser.addoption("--myriad", action="store_true", help="Run MYRIAD tests", - default=False) - parser.addoption("--performance", action="store_true", help="run performance tests", - default=False) - parser.addoption("--connected_sources", nargs="+", help="space separated list of connected sources", - default=None, choices=CONNECTED_SOURCES) - -def pytest_configure(config): - config.addinivalue_line("markers", "stability: run stability tests") - config.addinivalue_line("markers", "performance: run performance tests") - -def pytest_collection_modifyitems(config, items): - if not config.getoption("--stability"): - skip_stability = pytest.mark.skip(reason="add --stability option to run stability tests") - for item in items: - if "stability" in item.keywords: - item.add_marker(skip_stability) - if not config.getoption("--performance"): - skip_performance = pytest.mark.skip(reason="add --performance option to run performance tests") - for item in items: - if "performance" in item.keywords: - item.add_marker(skip_performance) - -@pytest.fixture -def stability_duration(request): - return request.config.getoption("--stability_duration") - -@pytest.fixture -def numerical_tolerance(request): - return request.config.getoption("--numerical_tolerance") - -@pytest.fixture -def skip_sources(request): - skip_sources = [] - if not request.config.getoption("--connected_sources"): - skip_sources = CONNECTED_SOURCES - else: - skip_sources = [source for source in CONNECTED_SOURCES if source not in request.config.getoption("--connected_sources")] - return skip_sources - -def load_test_cases(metafunc, directory): - known_frameworks = ['ffmpeg', 'gstreamer'] - dir_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), "test_cases", directory) - list_of_dir_paths = [dir_path] - - filenames = [] - if metafunc.config.getoption("cpu"): - cpu_path = os.path.join(dir_path, "cpu") - if os.path.isdir(cpu_path): - list_of_dir_paths.append(cpu_path) - if metafunc.config.getoption("gpu"): - gpu_path = os.path.join(dir_path, "gpu") - if os.path.isdir(gpu_path): - list_of_dir_paths.append(gpu_path) - - if metafunc.config.getoption("myriad"): - gpu_path = os.path.join(dir_path, "myriad") - if os.path.isdir(gpu_path): - list_of_dir_paths.append(gpu_path) - - for path in list_of_dir_paths: - for source in CONNECTED_SOURCES: - source_test_path = os.path.join(path, source) - if os.path.isdir(source_test_path): - list_of_dir_paths.append(source_test_path) - - for path in list_of_dir_paths: - dir_filenames = [(os.path.abspath(os.path.join(path, fn)), - os.path.splitext(fn)[0]) for fn in os.listdir(path) - if os.path.isfile(os.path.join(path, fn)) and - os.path.splitext(fn)[1] == '.json'] - filenames.extend(dir_filenames) - framework = metafunc.config.getoption("framework") - filenames = [filename for filename in filenames - if filename[1].split('_')[-1] == framework or - filename[1].split('_')[-1] not in known_frameworks] - test_cases = [] - test_names = [] - generate = metafunc.config.getoption("generate") - - for filepath, testname in filenames: - try: - with open(filepath) as json_file: - test_cases.append((json.load(json_file), filepath, generate)) - test_names.append(testname) - except Exception as error: - print(error) - assert False, "Error Reading Test Case" - return (test_cases, test_names) - -def sig_handler(signum, frame): - print("Segmentation fault") - sys.exit(139) - -def pytest_generate_tests(metafunc): - signal.signal(signal.SIGSEGV, sig_handler) - if "rest_api" in metafunc.function.__name__: - test_cases, test_names = load_test_cases(metafunc, "rest_api") - metafunc.parametrize("test_case,test_filename,generate", test_cases, ids=test_names) - if "rest_execution" in metafunc.function.__name__: - test_cases, test_names = load_test_cases(metafunc, "rest_execution") - metafunc.parametrize("test_case,test_filename,generate", test_cases, ids=test_names) - if "initialization" in metafunc.function.__name__: - test_cases, test_names = load_test_cases(metafunc, "initialization") - metafunc.parametrize("test_case,test_filename,generate", test_cases, ids=test_names) - if "image_requirements" in metafunc.function.__name__: - test_cases, test_names = load_test_cases(metafunc, "image_requirements") - metafunc.parametrize("test_case,test_filename,generate", test_cases, ids=test_names) - if "pipeline_execution" in metafunc.function.__name__: - test_cases, test_names = load_test_cases(metafunc, "pipeline_execution") - metafunc.parametrize("test_case,test_filename,generate", test_cases, ids=test_names) - if "pipeline_instances" in metafunc.function.__name__: - test_cases, test_names = load_test_cases(metafunc, "pipeline_instances") - metafunc.parametrize("test_case,test_filename,generate", test_cases, ids=test_names) - if "connected_sources" in metafunc.function.__name__: - test_cases, test_names = load_test_cases(metafunc, "connected_sources") - metafunc.parametrize("test_case,test_filename,generate", test_cases, ids=test_names) - if "pipeline_stability" in metafunc.function.__name__: - test_cases, test_names = load_test_cases(metafunc, "pipeline_stability") - metafunc.parametrize("test_case,test_filename,generate", test_cases, ids=test_names) - if "pipeline_performance" in metafunc.function.__name__: - test_cases, test_names = load_test_cases(metafunc, "pipeline_performance") - metafunc.parametrize("test_case,test_filename,generate", test_cases, ids=test_names) - if "pipeline_client" in metafunc.function.__name__: - test_cases, test_names = load_test_cases(metafunc, "pipeline_client") - metafunc.parametrize("test_case,test_filename,generate", test_cases, ids=test_names) - - print(metafunc.fixturenames) - print(metafunc.function, flush=True) - -def clear_loggers(): - """Remove handlers from all loggers""" - print("Removing all log handlers") - import logging - loggers = [logging.getLogger()] + list(logging.Logger.manager.loggerDict.values()) - for logger in loggers: - handlers = getattr(logger, 'handlers', []) - for handler in handlers: - logger.removeHandler(handler) - -@pytest.fixture() -def PipelineServer(request): - _PipelineServer.stop() - yield _PipelineServer - _PipelineServer.stop() - clear_loggers() - -@pytest.fixture(scope="session") -def service(request): - proxy = PipelineServerService() - yield proxy - proxy.kill() diff --git a/tests/entrypoint/clamav.sh b/tests/entrypoint/clamav.sh deleted file mode 100755 index 5a8791a..0000000 --- a/tests/entrypoint/clamav.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/bash -ENTRYPOINT_DIR=$(dirname "$(readlink -f "$0")") -TESTS_DIR=$(dirname $ENTRYPOINT_DIR) -SOURCE_DIR=$(dirname $TESTS_DIR) - -RESULTS_DIR=${RESULTS_DIR:-"$TESTS_DIR/results/clamav"} -OUTPUT_FILE="$RESULTS_DIR/report.txt" -SCAN_DIR=${SCAN_DIR:-"/home"} -CLAMAV_ARGS=${CLAMAV_ARGS:-"$@"} - -mkdir -p "$RESULTS_DIR" - -freshclam - -clamscan -r --bell -i ${SCAN_DIR} $CLAMAV_ARGS > ${OUTPUT_FILE} \ No newline at end of file diff --git a/tests/entrypoint/pybandit.sh b/tests/entrypoint/pybandit.sh deleted file mode 100755 index bd0ab6d..0000000 --- a/tests/entrypoint/pybandit.sh +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/bash -ENTRYPOINT_DIR=$(dirname "$(readlink -f "$0")") -TESTS_DIR=$(dirname $ENTRYPOINT_DIR) -SOURCE_DIR=$(dirname $TESTS_DIR) -SCAN_DIR=${SCAN_DIR:-$SOURCE_DIR} -RESULTS_DIR=${RESULTS_DIR:-"$TESTS_DIR/results/pybandit"} -OUTPUT_FILE="$RESULTS_DIR/pybandit_report.html" -OUTPUT_FORMAT=${OUTPUT_FORMAT:-html} - -bandit --version - -mkdir -p "$RESULTS_DIR" - -echo "Command: bandit -r $SOURCE_DIR -o $OUTPUT_FILE -f $OUTPUT_FORMAT -v -n 5 -ll" -bandit -r $SOURCE_DIR -o $OUTPUT_FILE -f $OUTPUT_FORMAT -v -n 5 -ll - diff --git a/tests/entrypoint/pylint.sh b/tests/entrypoint/pylint.sh deleted file mode 100755 index 4eb3a38..0000000 --- a/tests/entrypoint/pylint.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/bash -ENTRYPOINT_DIR=$(dirname "$(readlink -f "$0")") -TESTS_DIR=$(dirname $ENTRYPOINT_DIR) -SOURCE_DIR=$(dirname $TESTS_DIR) - -RESULTS_DIR=${RESULTS_DIR:-"$TESTS_DIR/results/pylint"} -OUTPUT_FILE="$RESULTS_DIR/report.txt" -OUTPUT_FORMAT=${OUTPUT_FORMAT:-text} -PYLINT_RC_FILE_PATH=${PYLINT_RC_FILE_PATH:-"$TESTS_DIR/config/.pylintrc"} -PYLINT_ARGS=${PYLINT_ARGS:-"$@"} - -pylint --version - -mkdir -p "$RESULTS_DIR" - -# Enable Recursion into Subdirectories -shopt -s globstar -echo "Processing source files in $SOURCE_DIR. Results will output to: $OUTPUT_FILE" -cd ${SOURCE_DIR}; -python3 -m pylint ${SOURCE_DIR}/**/*.py --reports=y --rcfile="$PYLINT_RC_FILE_PATH" \ - --output-format=$OUTPUT_FORMAT --score=y --exit-zero $PYLINT_ARGS > $OUTPUT_FILE -shopt -u globstar diff --git a/tests/entrypoint/pytest.sh b/tests/entrypoint/pytest.sh deleted file mode 100755 index b46a2d3..0000000 --- a/tests/entrypoint/pytest.sh +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/bash - -ENTRYPOINT_DIR=$(dirname "$(readlink -f "$0")") -TESTS_DIR=$(dirname $ENTRYPOINT_DIR) -SOURCE_DIR=$(dirname $TESTS_DIR) -FRAMEWORK=${FRAMEWORK:-gstreamer} - -RESULTS_DIR=${RESULTS_DIR:-"$TESTS_DIR/results/pytest/$FRAMEWORK"} -PYTEST_ARGS=${PYTEST_ARGS:-"$@"} - -mkdir -p "$RESULTS_DIR" - -COV_CONFIG="$TESTS_DIR/config/coveragerc_${FRAMEWORK}" -COV_DIR="$RESULTS_DIR/coverage" -CACHE_DIR="$RESULTS_DIR/cache" - -rm -rf "$COV_DIR" -rm -rf "$CACHE_DIR" - -cd ${SOURCE_DIR}; -python3 -m pytest -s --html="$RESULTS_DIR/report.html" --ignore=$SOURCE_DIR/samples --self-contained-html \ - --cov-report=html:"$COV_DIR" --cov-config=$COV_CONFIG --cov=server $PYTEST_ARGS -o cache_dir=$CACHE_DIR -exit_code=$? -if [[ $exit_code -ne 0 ]]; then - echo "Tests failed, non zero exit code $exit_code" -fi -if [[ $exit_code -eq 139 ]]; then - echo "Segmentation fault" -fi -exit $exit_code diff --git a/tests/manual/deployment/kubernetes/cpu_gpu/01-run-single-source-any-http-no-display.sh b/tests/manual/deployment/kubernetes/cpu_gpu/01-run-single-source-any-http-no-display.sh deleted file mode 100755 index 322b0b8..0000000 --- a/tests/manual/deployment/kubernetes/cpu_gpu/01-run-single-source-any-http-no-display.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash - -curl http://localhost:8080/pipelines/object_detection/person_vehicle_bike -X POST -H "Content-Type: application/json" -d '{ - "source":{ - "uri":"https://github.com/intel-iot-devkit/sample-videos/blob/master/person-bicycle-car-detection.mp4?raw=true", - "type":"uri" - } -}' - diff --git a/tests/manual/deployment/kubernetes/cpu_gpu/02-run-single-source-gpu-http-no-display.sh b/tests/manual/deployment/kubernetes/cpu_gpu/02-run-single-source-gpu-http-no-display.sh deleted file mode 100755 index 26cd529..0000000 --- a/tests/manual/deployment/kubernetes/cpu_gpu/02-run-single-source-gpu-http-no-display.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/bash - -curl http://localhost:8080/pipelines/object_detection/person_vehicle_bike -X POST -H "Content-Type: application/json" -d '{ - "source":{ - "uri":"https://github.com/intel-iot-devkit/sample-videos/blob/master/person-bicycle-car-detection.mp4?raw=true", - "type":"uri" - }, - "parameters": { - "detection-device": "GPU", - "detection-model-instance-id": "detect_object_detection_person_vehicle_bike_GPU" - } -}' diff --git a/tests/manual/deployment/kubernetes/cpu_gpu/03-run-single-source-cpu-http-no-display.sh b/tests/manual/deployment/kubernetes/cpu_gpu/03-run-single-source-cpu-http-no-display.sh deleted file mode 100755 index 08e45f6..0000000 --- a/tests/manual/deployment/kubernetes/cpu_gpu/03-run-single-source-cpu-http-no-display.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/bash - -curl http://localhost:8080/pipelines/object_detection/person_vehicle_bike -X POST -H "Content-Type: application/json" -d '{ - "source":{ - "uri":"https://github.com/intel-iot-devkit/sample-videos/blob/master/person-bicycle-car-detection.mp4?raw=true", - "type":"uri" - }, - "parameters": { - "detection-device": "CPU", - "detection-model-instance-id": "detect_object_detection_person_vehicle_bike_CPU" - } -}' diff --git a/tests/manual/deployment/kubernetes/cpu_gpu/04-run-single-source-any-https-rtsp.sh b/tests/manual/deployment/kubernetes/cpu_gpu/04-run-single-source-any-https-rtsp.sh deleted file mode 100755 index 62e1e4c..0000000 --- a/tests/manual/deployment/kubernetes/cpu_gpu/04-run-single-source-any-https-rtsp.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/bash - -curl http://localhost:8443/pipelines/object_detection/person_vehicle_bike -X POST -H "Content-Type: application/json" -d '{ - "source":{ - "uri":"https://github.com/intel-iot-devkit/sample-videos/blob/master/person-bicycle-car-detection.mp4?raw=true", - "type":"uri" - }, - "destination":{ - "frame":{ - "type":"rtsp", - "path":"view01" - } - } -}' diff --git a/tests/manual/deployment/kubernetes/cpu_gpu/05-run-single-source-cpu-https-rtsp.sh b/tests/manual/deployment/kubernetes/cpu_gpu/05-run-single-source-cpu-https-rtsp.sh deleted file mode 100755 index 9fe21d8..0000000 --- a/tests/manual/deployment/kubernetes/cpu_gpu/05-run-single-source-cpu-https-rtsp.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash - -curl http://localhost:8443/pipelines/object_detection/person_vehicle_bike -X POST -H "Content-Type: application/json" -d '{ - "source":{ - "uri":"https://github.com/intel-iot-devkit/sample-videos/blob/master/person-bicycle-car-detection.mp4?raw=true", - "type":"uri" - }, - "destination":{ - "frame":{ - "type":"rtsp", - "path":"view01" - } - }, - "parameters": { - "detection-device": "CPU", - "detection-model-instance-id": "detect_object_detection_person_vehicle_bike_GPU" - } -}' diff --git a/tests/manual/deployment/kubernetes/cpu_gpu/06-run-single-source-gpu-http-rtsp.sh b/tests/manual/deployment/kubernetes/cpu_gpu/06-run-single-source-gpu-http-rtsp.sh deleted file mode 100755 index 239fa0e..0000000 --- a/tests/manual/deployment/kubernetes/cpu_gpu/06-run-single-source-gpu-http-rtsp.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash - -curl http://localhost:8080/pipelines/object_detection/person_vehicle_bike -X POST -H "Content-Type: application/json" -d '{ - "source":{ - "uri":"https://github.com/intel-iot-devkit/sample-videos/blob/master/person-bicycle-car-detection.mp4?raw=true", - "type":"uri" - }, - "destination":{ - "frame":{ - "type":"rtsp", - "path":"view01" - } - }, - "parameters": { - "detection-device": "GPU", - "detection-model-instance-id": "detect_object_detection_person_vehicle_bike_GPU" - } -}' diff --git a/tests/media/how_are_you_doing.wav b/tests/media/how_are_you_doing.wav deleted file mode 100644 index 41af172..0000000 Binary files a/tests/media/how_are_you_doing.wav and /dev/null differ diff --git a/tests/media/person-bicycle-car-detection-7sec.mp4 b/tests/media/person-bicycle-car-detection-7sec.mp4 deleted file mode 100644 index a28f644..0000000 Binary files a/tests/media/person-bicycle-car-detection-7sec.mp4 and /dev/null differ diff --git a/tests/media/sample01.png b/tests/media/sample01.png deleted file mode 100644 index 1ff7754..0000000 Binary files a/tests/media/sample01.png and /dev/null differ diff --git a/tests/requirements.tests.txt b/tests/requirements.tests.txt deleted file mode 100644 index d82c7ef..0000000 --- a/tests/requirements.tests.txt +++ /dev/null @@ -1,10 +0,0 @@ -bandit == 1.6.2 -kubernetes == 24.2.0 -opencv-python >= 4.6.0.66 -parse >= 1.19.0 -psutil == 5.7.0 -pylint == 2.9.3 -pytest == 5.4.1 -pytest-cov == 2.8.1 -pytest-html == 2.1.1 -teamcity-messages == 1.29 diff --git a/tests/run.sh b/tests/run.sh deleted file mode 100755 index 5277406..0000000 --- a/tests/run.sh +++ /dev/null @@ -1,202 +0,0 @@ -#!/bin/bash - -VOLUME_MOUNT= -ENTRYPOINT_ARGS= -DOCKER_RUN_OPTIONS= -TESTS_DIR=$(dirname "$(readlink -f "$0")") -SOURCE_DIR=$(dirname $TESTS_DIR) -INTERACTIVE=--non-interactive -DOCKER_TESTS_DIR="/home/pipeline-server/tests" -RESULTS_DIR="results" -PYTEST_GSTREAMER_RESULTS_DIR="$RESULTS_DIR/pytest/gstreamer" -PYTEST_FFMPEG_RESULTS_DIR="$RESULTS_DIR/pytest/ffmpeg" -PYLINT_RESULTS_DIR="$RESULTS_DIR/pylint" -PYBANDIT_RESULTS_DIR="$RESULTS_DIR/pybandit" -CLAMAV_RESULTS_DIR="$RESULTS_DIR/clamav" - -# Default selected as gstreamer pytests -FRAMEWORK=gstreamer -OUTPUT_DIR="$PYTEST_GSTREAMER_RESULTS_DIR" -SELECTED="--pytest-gstreamer" -ENTRYPOINT="--entrypoint ./tests/entrypoint/pytest.sh" - -# Custom preparation for build configurations -PREPARE_GROUND_TRUTH=${PREPARE_GROUND_TRUTH:-false} -PREPARE_PERFORMANCE=false -DISABLED_TURBO=false -ENVIRONMENT= - -function show_help { - echo "usage: run.sh (options are exclusive, except --connected-sources)" - echo " [ --pytest-gstreamer : Run gstreamer tests ]" - echo " [ --pytest-gstreamer-generate : Generate new gstreamer ground truth ]" - echo " [ --pytest-gstreamer-performance : Run gstreamer performance tests ]" - echo " [ --pytest-ffmpeg: Run ffmpeg tests ] " - echo " [ --pytest-ffmpeg-generate: Generate new ffmpeg ground truth ] " - echo " [ --pylint : Run pylint scan ] " - echo " [ --pybandit: Run pybandit scan ] " - echo " [ --clamav : Run antivirus scan ] " - echo " [ --connected-sources : Run with list of sources, applies to all --pytest options]" -} - -function error { - printf '%s\n' "$1" >&2 - exit -} - -function recreate_shared_path() { - SHARED_PATH=$1 - echo "recreating $SHARED_PATH" - rm -Rf "$SHARED_PATH" - mkdir -p "$SHARED_PATH" -} - -ARGS=$@ -while [[ "$#" -gt 0 ]]; do - case $1 in - -h | -\? | --help) - show_help - exit - ;; - --pytest-gstreamer) - ;; - --pytest-ffmpeg-generate) - FRAMEWORK=ffmpeg - ENTRYPOINT_ARGS+="--entrypoint-args --generate " - VOLUME_MOUNT+="-v $TESTS_DIR/test_cases:$DOCKER_TESTS_DIR/test_cases " - OUTPUT_DIR="$PYTEST_FFMPEG_RESULTS_DIR" - SELECTED="$1" - PREPARE_GROUND_TRUTH=${PREPARE_GROUND_TRUTH:-true} - ;; - --pytest-gstreamer-generate) - ENTRYPOINT_ARGS+="--entrypoint-args --generate " - VOLUME_MOUNT+="-v $TESTS_DIR/test_cases:$DOCKER_TESTS_DIR/test_cases " - PREPARE_GROUND_TRUTH=${PREPARE_GROUND_TRUTH:-true} - SELECTED="$1" - ;; - --pytest-ffmpeg) - OUTPUT_DIR="$PYTEST_FFMPEG_RESULTS_DIR" - FRAMEWORK=ffmpeg - SELECTED="$1" - ;; - --pylint) - OUTPUT_DIR="$PYLINT_RESULTS_DIR" - ENTRYPOINT="--entrypoint ./tests/entrypoint/pylint.sh" - SELECTED="$1" - ENVIRONMENT+=" -e PYLINTHOME=$DOCKER_TESTS_DIR/$OUTPUT_DIR " - ;; - --pybandit) - OUTPUT_DIR="$PYBANDIT_RESULTS_DIR" - ENTRYPOINT="--entrypoint ./tests/entrypoint/pybandit.sh" - SELECTED="$1" - ;; - --clamav) - OUTPUT_DIR="$CLAMAV_RESULTS_DIR" - ENTRYPOINT="--entrypoint ./tests/entrypoint/clamav.sh" - SELECTED="$1" - ;; - --pytest-gstreamer-performance) - SELECTED="$1" - PREPARE_PERFORMANCE=true - ;; - --connected-sources) - value="$2" - ENTRYPOINT="--entrypoint-args --connected_sources" - # converts comma separated list to space separated list - for source in ${value//,/ } - do - echo "Enabling tests for $source" - ENTRYPOINT="$ENTRYPOINT --entrypoint-args $source" - done - ;; - *) - break - ;; - esac - shift -done - -IMAGE=dlstreamer-pipeline-server-${FRAMEWORK}-tests:latest - -DOCKER_RESULTS_DIR="$DOCKER_TESTS_DIR/$OUTPUT_DIR" -LOCAL_RESULTS_DIR="$TESTS_DIR/$OUTPUT_DIR" - -echo "running $SELECTED" -ENVIRONMENT+="-e RESULTS_DIR=$DOCKER_RESULTS_DIR" - -recreate_shared_path "$LOCAL_RESULTS_DIR" -VOLUME_MOUNT+="-v $LOCAL_RESULTS_DIR:$DOCKER_RESULTS_DIR " - -# Construct virtual paths to pipelines and models as required by test cases. -if [[ "${FRAMEWORK}" == "gstreamer" ]]; then - SOURCE_MODELS_DIR="$SOURCE_DIR/models" - DOCKER_MODELS_DIR="/home/pipeline-server/tests/test_cases/pipeline_execution/cpu/object_classification_intver_cpu_gstreamer_models" - VOLUME_MOUNT+="-v $SOURCE_MODELS_DIR/object_detection/person_vehicle_bike/:$DOCKER_MODELS_DIR/object_detection/1/ " - VOLUME_MOUNT+="-v $SOURCE_MODELS_DIR/object_classification/vehicle_attributes/:$DOCKER_MODELS_DIR/object_classification/1/ " -fi - -# This block is specific to --pytest-gstreamer-performance -if [ $PREPARE_PERFORMANCE == true ]; then - PSTATE_NO_TURBO="/sys/devices/system/cpu/intel_pstate/no_turbo" - function disable_turbo { - echo "Running disable_turbo()" - PREV_VALUE=$(<${PSTATE_NO_TURBO}) - echo "Current value of ${PSTATE_NO_TURBO}: [$PREV_VALUE]" - if [ "$PREV_VALUE" == "0" ]; then - echo "Disabling turbo on this host via intel_pstate/no_turbo" - if [ "$EUID" -ne 0 ]; then - echo "Hint: You may wish to update visudo to locally permit NOPASSWD for /usr/bin/tee" - fi - echo 1 | sudo tee ${PSTATE_NO_TURBO} - CURR_VALUE=$(<${PSTATE_NO_TURBO}) - echo "Updated value of ${PSTATE_NO_TURBO} - now: [$CURR_VALUE]" - if [ "$CURR_VALUE" == "$PREV_VALUE" ]; then - echo "Failed to update turbo pstate!" - else - return 0 - fi - else - echo "ERROR expected intel_pstate/no_turbo to be 0 but got $PREV_VALUE!" - fi - return 1 - } - - function restore_turbo { - echo "Running restore_turbo()" - if [ $DISABLED_TURBO == true ]; then - echo "Restoring original turbo value on this host via intel_pstate/no_turbo" - echo $PREV_VALUE | sudo tee ${PSTATE_NO_TURBO} - CURR_VALUE=$(<${PSTATE_NO_TURBO}) - echo "Restored value of ${PSTATE_NO_TURBO} - now: [$CURR_VALUE]" - else - echo "no-op - state was not changed by disable_turbo" - fi - } - - trap restore_turbo EXIT - echo "Preparing for Performance Tests..." - disable_turbo - if [ "$?" == "0" ]; then - echo "disable_turbo was successful!" - DISABLED_TURBO=true - # Run as with standard --pytest-gstreamer but constrain to performance - ENTRYPOINT_ARGS="--entrypoint-args --performance " - ENTRYPOINT_ARGS+="--entrypoint-args -k " - ENTRYPOINT_ARGS+="--entrypoint-args performance " - else - echo "disable_turbo failed!" - DISABLED_TURBO=false - fi -fi - -$SOURCE_DIR/docker/run.sh --image $IMAGE --framework $FRAMEWORK $VOLUME_MOUNT $ENVIRONMENT $INTERACTIVE $ENTRYPOINT $ENTRYPOINT_ARGS "$@" - -exit_code=$? -if [ $PREPARE_GROUND_TRUTH == true ]; then - echo "Renaming .json.generated files to .json in preparation to update ground truth." - find $TESTS_DIR/test_cases -depth -name "*.json.generated" -exec sh -c 'mv "$1" "${1%.json.generated}.json"' _ {} \; -fi -if [[ $exit_code -ne 0 ]]; then - echo "Tests failed, non zero exit code $exit_code" -fi -exit $exit_code diff --git a/tests/run_script_tests.sh b/tests/run_script_tests.sh deleted file mode 100755 index b568302..0000000 --- a/tests/run_script_tests.sh +++ /dev/null @@ -1,52 +0,0 @@ -#!/bin/bash -set -e - -TEST_DIR=$(dirname "$(readlink -f "$0")") -SOURCE_DIR=$(dirname $TEST_DIR) -TAG=##teamcity -echo " ${TAG}[testSuiteStarted name='script-tests'] " - - -error() { - - # Return an error message from test script - # OUTPUT and RETURN_CODE are taken from environment - - echo "=======================" - echo "Test Failed" - echo "Return Code: $RETURN_CODE" - echo "Detail: $1" - echo "=======================" - echo "Output Begin" - echo "=======================" - echo "$OUTPUT" - echo "=======================" - echo "Output End" - echo "=======================" - exit 1 -} - -# export function for use in test scripts -typeset -fx error - -run_test() { - TEST_NAME=$(basename $1) - printf " %s[testStarted name='%s' captureStandardOutput='true']\n" "$TAG" "$TEST_NAME" - (TEST_DIR=$TEST_DIR SOURCE_DIR=$SOURCE_DIR $1) || { - printf " %s[testFailed name='%s']\n" "$TAG" "$TEST_NAME" - } - printf " %s[testFinished name='%s']\n" "$TAG" "$TEST_NAME" -} - -if [ ! -z "$1" ]; then - TEST=$TEST_DIR/script_tests/$(basename $1) - run_test $TEST -else - for TEST in $TEST_DIR/script_tests/* ; do - if [ ! -d "$TEST" ]; then - run_test $TEST - fi - done -fi - -echo " ${TAG}[testSuiteFinished name='script-tests'] " diff --git a/tests/script_tests/docker_image_environment b/tests/script_tests/docker_image_environment deleted file mode 100755 index be57945..0000000 --- a/tests/script_tests/docker_image_environment +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/bash -EXPECTED="" - -# Run client with bad option -OUTPUT=$(set -o pipefail; docker inspect dlstreamer-pipeline-server-gstreamer:latest | grep -i proxy) -RETURN_CODE=$? - -# Expect to not match string -if [[ $RETURN_CODE != 1 ]]; then - error -fi - -if [[ ! "$OUTPUT" == "$EXPECTED" ]]; then - error "Unexpected output" -fi diff --git a/tests/script_tests/docker_image_environment_external b/tests/script_tests/docker_image_environment_external deleted file mode 100755 index 0c0a912..0000000 --- a/tests/script_tests/docker_image_environment_external +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/bash -EXPECTED="" -IMAGE_TO_INSPECT=intel/dlstreamer-pipeline-server:latest - -docker pull $IMAGE_TO_INSPECT -OUTPUT=$(set -o pipefail; docker inspect $IMAGE_TO_INSPECT | grep -i proxy) -RETURN_CODE=$? -# Expect string to not exist -if [ $RETURN_CODE != 1 ]; then - error -fi -if [[ "$OUTPUT" != "$EXPECTED" ]]; then - error "Unexpected output" -fi -docker image rm $IMAGE_TO_INSPECT diff --git a/tests/script_tests/edgex_fetch_completes b/tests/script_tests/edgex_fetch_completes deleted file mode 100755 index df49a2e..0000000 --- a/tests/script_tests/edgex_fetch_completes +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/bash - -EXPECTED="Successfully fetched repo and produced compose file." - -# Run script and check for successful complete -OUTPUT=$($SOURCE_DIR/samples/edgex_bridge/fetch_edgex.sh) -RETURN_CODE=$? - -if [[ $RETURN_CODE != 0 ]]; then - error -fi - -if [[ ! "$OUTPUT" == *"$EXPECTED"* ]]; then - error "Test Case did not receive expected output!" -fi diff --git a/tests/script_tests/edgex_fetch_copy_negative b/tests/script_tests/edgex_fetch_copy_negative deleted file mode 100755 index 949a436..0000000 --- a/tests/script_tests/edgex_fetch_copy_negative +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/bash - -EXPECTED_RETVAL=0 -EXPECTED="ERROR copying generated EdgeX compose file!" - -# Create mock command to interrupt normal flow -function teardown { - unset cp -} -trap teardown EXIT - -function cp() { - echo "cp being mocked by script_tests" - return 1 -} -export -f cp - -# Execute the negative test -OUTPUT=$($SOURCE_DIR/samples/edgex_bridge/fetch_edgex.sh) -RETURN_CODE=$? -if [[ $RETURN_CODE != $EXPECTED_RETVAL ]]; then - error "Negative test got $RETURN_CODE instead of $EXPECTED_RETVAL" -fi -if [[ ! "$OUTPUT" == *"$EXPECTED"* ]]; then - error "Test Case did not receive expected output!" -else - echo "Negative test PASSED" -fi diff --git a/tests/script_tests/edgex_fetch_git_negative b/tests/script_tests/edgex_fetch_git_negative deleted file mode 100755 index 109e5f2..0000000 --- a/tests/script_tests/edgex_fetch_git_negative +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/bash - -EXPECTED_RETVAL=0 -EXPECTED="ERROR cloning EdgeX repository!" - -# Create mock command to interrupt normal flow -function teardown { - unset git -} -trap teardown EXIT - -function git() { - echo "git being mocked by script_tests" - return 1 -} -export -f git - -# Execute the negative test -OUTPUT=$($SOURCE_DIR/samples/edgex_bridge/fetch_edgex.sh) -RETURN_CODE=$? -if [[ $RETURN_CODE != $EXPECTED_RETVAL ]]; then - error "Negative test got $RETURN_CODE instead of $EXPECTED_RETVAL" -fi -if [[ ! "$OUTPUT" == *"$EXPECTED"* ]]; then - error "Test Case did not receive expected output!" -else - echo "Negative test PASSED" -fi diff --git a/tests/script_tests/edgex_fetch_make_negative b/tests/script_tests/edgex_fetch_make_negative deleted file mode 100755 index 71f59c4..0000000 --- a/tests/script_tests/edgex_fetch_make_negative +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/bash - -EXPECTED_RETVAL=0 -EXPECTED="ERROR making EdgeX compose file!" - -# Create mock command to interrupt normal flow -function teardown { - unset make -} -trap teardown EXIT - -function make() { - echo "make being mocked by script_tests" - return 1 -} -export -f make - -# Execute the negative test -OUTPUT=$($SOURCE_DIR/samples/edgex_bridge/fetch_edgex.sh) -RETURN_CODE=$? -if [[ $RETURN_CODE != $EXPECTED_RETVAL ]]; then - error "Negative test got $RETURN_CODE instead of $EXPECTED_RETVAL" -fi -if [[ ! "$OUTPUT" == *"$EXPECTED"* ]]; then - error "Test Case did not receive expected output!" -else - echo "Negative test PASSED" -fi diff --git a/tests/script_tests/input/yolo.list.yml b/tests/script_tests/input/yolo.list.yml deleted file mode 100644 index 2aa4f63..0000000 --- a/tests/script_tests/input/yolo.list.yml +++ /dev/null @@ -1,4 +0,0 @@ -- model: yolo-v2-tiny-tf - alias: object_detection - version: yolo-v2-tiny-tf - precision: [FP16,FP32] \ No newline at end of file diff --git a/tests/script_tests/model_downloader b/tests/script_tests/model_downloader deleted file mode 100755 index 5286988..0000000 --- a/tests/script_tests/model_downloader +++ /dev/null @@ -1,63 +0,0 @@ -#!/bin/bash -MODEL_NAMES=(person-vehicle-bike-detection-crossroad-0078) -MODEL_NAMES+=(vehicle-attributes-recognition-barrier-0039) -MODEL_NAMES+=(aclnet) -MODEL_NAMES+=(emotions-recognition-retail-0003) -MODEL_NAMES+=(face-detection-retail-0004) -MODEL_NAMES+=(yolo-v2-tiny-tf) - -ALIAS_NAMES=(object_detection/person_vehicle_bike) -ALIAS_NAMES+=(object_classification/vehicle_attributes) -ALIAS_NAMES+=(audio_detection/environment) -ALIAS_NAMES+=(emotion_recognition/1) -ALIAS_NAMES+=(face_detection_retail/1) -ALIAS_NAMES+=(object_detection/yolo-v2-tiny-tf) - -tmp_dir=$(mktemp -d -t model-downloader-XXXXXXXX) - -check_directory() { - model_path=$tmp_dir/models/$2 - if [ ! -d "$model_path" ]; then - error "Missing Model Path: $model_path" - fi - model_proc=$model_path/$1.json - if [ ! -f "$model_proc" ]; then - error "Missing Model Proc: $model_proc" - fi - model_precision=$model_path/FP32 - if [ ! -d "$model_precision" ]; then - error "Missing Model Precision: $model_precision" - fi - model_xml=$model_precision/$1.xml - if [ ! -f "$model_xml" ]; then - error "Missing Model XML: $model_xml" - fi - model_bin=$model_precision/$1.bin - if [ ! -f "$model_bin" ]; then - error "Missing Model BIN: $model_bin" - fi -} - -run_model_downloader(){ - OUTPUT=$($SOURCE_DIR/tools/model_downloader/model_downloader.sh --model-list $1 --output $tmp_dir 2>&1) - RETURN_CODE=$? - - if [[ $RETURN_CODE != 0 ]]; then - rm -rf $tmp_dir - error - fi -} - -MODEL_LIST=("$SOURCE_DIR/models_list/models.list.yml") -MODEL_LIST+=("$SOURCE_DIR/tests/script_tests/input/yolo.list.yml") -for model_list in ${MODEL_LIST[@]}; do - run_model_downloader $model_list -done - -i=0 -for model_name in ${MODEL_NAMES[@]}; do - check_directory $model_name ${ALIAS_NAMES[$i]} - i=$i+1 -done - -rm -rf $tmp_dir diff --git a/tests/script_tests/no_models_no_pipelines_build b/tests/script_tests/no_models_no_pipelines_build deleted file mode 100755 index 9dc69b0..0000000 --- a/tests/script_tests/no_models_no_pipelines_build +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/bash - -# Test for building container without models and pipelines -# Verifies correct build argument passed to docker build -# Does not verify end to end functionality - -MODELS_COMMAND="--build-arg MODELS_COMMAND=do_not_copy_models " -PIPELINES_COMMAND="--build-arg PIPELINES_COMMAND=do_not_copy_pipelines " - -OUTPUT=$($SOURCE_DIR/docker/build.sh --models NONE --pipelines NONE --dry-run 2>&1) -RETURN_CODE=$? - -if [[ $RETURN_CODE != 0 ]]; then - error -fi - -if [[ ! "$OUTPUT" == *"$MODELS_COMMAND"* ]]; then - error "Invalid MODELS_COMMAND build-arg" -fi - -if [[ ! "$OUTPUT" == *"$PIPELINES_COMMAND"* ]]; then - error "Invalid PIPELINES_COMMAND build-arg" -fi - diff --git a/tests/script_tests/pipeline_client_bad_pipeline b/tests/script_tests/pipeline_client_bad_pipeline deleted file mode 100755 index dd32395..0000000 --- a/tests/script_tests/pipeline_client_bad_pipeline +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/bash - -EXPECTED="Invalid Pipeline or Version" - -# Run server and wait for init to complete -$SOURCE_DIR/docker/run.sh --non-interactive & -sleep 5 - -# Run client with bad option -OUTPUT=$($SOURCE_DIR/client/pipeline_client.sh run fake_pipeline/1 https://github.com/intel-iot-devkit/sample-videos/blob/master/bottle-detection.mp4?raw=true) -RETURN_CODE=$? - -# Stop server -$SOURCE_DIR/tests/stop.sh - -if [[ $RETURN_CODE != 1 ]]; then - error -fi - -if [[ ! "$OUTPUT" == *"$EXPECTED"* ]]; then - error "Unexpected output" -fi diff --git a/tests/script_tests/pipeline_client_bad_pipeline_version b/tests/script_tests/pipeline_client_bad_pipeline_version deleted file mode 100755 index e5845db..0000000 --- a/tests/script_tests/pipeline_client_bad_pipeline_version +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/bash - -EXPECTED="Invalid Pipeline or Version" - -# Run server and wait for init to complete -$SOURCE_DIR/docker/run.sh --non-interactive & -sleep 5 - -# Run client with bad option -OUTPUT=$($SOURCE_DIR/client/pipeline_client.sh run object_detection/123 https://github.com/intel-iot-devkit/sample-videos/blob/master/bottle-detection.mp4?raw=true) -RETURN_CODE=$? - -# Stop server -$SOURCE_DIR/tests/stop.sh - -if [[ $RETURN_CODE != 1 ]]; then - error -fi - -if [[ ! "$OUTPUT" == *"$EXPECTED"* ]]; then - error "Unexpected output" -fi diff --git a/tests/script_tests/pipeline_client_invalid_params b/tests/script_tests/pipeline_client_invalid_params deleted file mode 100755 index 3704958..0000000 --- a/tests/script_tests/pipeline_client_invalid_params +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/bash - -EXPECTED='Invalid Parameters' - -# Run server and wait for init to complete -$SOURCE_DIR/docker/run.sh --non-interactive & -sleep 5 - -# Run client with threshold as string -OUTPUT=$($SOURCE_DIR/client/pipeline_client.sh run object_detection/person_vehicle_bike https://github.com/intel-iot-devkit/sample-videos/blob/master/classroom.mp4?raw=true --parameter inference-interval 2 --parameter threshold invalid ) -RETURN_CODE=$? - -# Stop server -$SOURCE_DIR/tests/stop.sh - -if [[ $RETURN_CODE != 1 ]]; then - error -fi - -if [[ ! "$OUTPUT" =~ .*"$EXPECTED".* ]]; then - error "Unexpected output" -fi diff --git a/tests/script_tests/pipeline_client_list_models b/tests/script_tests/pipeline_client_list_models deleted file mode 100755 index f39c7ad..0000000 --- a/tests/script_tests/pipeline_client_list_models +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/bash - -EXPECTED=' - audio_detection/environment - - emotion_recognition/1 - - face_detection_retail/1 - - object_classification/vehicle_attributes - - object_detection/person - - object_detection/person_vehicle_bike - - object_detection/vehicle' - -# Run server and wait for init to complete -$SOURCE_DIR/docker/run.sh --non-interactive & -sleep 5 - -# Run client with list-models -# tr is used to delete carriage return -OUTPUT=$($SOURCE_DIR/client/pipeline_client.sh list-models | egrep '^ - ' | sort | tr -d "\r") -RETURN_CODE=$? - -# Stop server -$SOURCE_DIR/tests/stop.sh - -if [[ $RETURN_CODE != 0 ]]; then - error -fi - -if [[ ! "$OUTPUT" == "$EXPECTED" ]]; then - error "Unexpected output" -fi \ No newline at end of file diff --git a/tests/script_tests/pipeline_client_list_pipelines b/tests/script_tests/pipeline_client_list_pipelines deleted file mode 100755 index 9bbdd52..0000000 --- a/tests/script_tests/pipeline_client_list_pipelines +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/bash - -EXPECTED=' - audio_detection/environment - - object_classification/vehicle_attributes - - object_detection/app_src_dst - - object_detection/object_zone_count - - object_detection/person - - object_detection/person_vehicle_bike - - object_detection/vehicle - - object_tracking/object_line_crossing - - object_tracking/person_vehicle_bike - - video_decode/app_dst' - -# Run server and wait for init to complete -$SOURCE_DIR/docker/run.sh --non-interactive & -sleep 5 - -# Run client with list-pipelines -# tr is used to delete carriage return -OUTPUT=$($SOURCE_DIR/client/pipeline_client.sh list-pipelines | egrep '^ - ' | sort | tr -d "\r") -RETURN_CODE=$? - -# Stop server -$SOURCE_DIR/tests/stop.sh - -if [[ $RETURN_CODE != 0 ]]; then - error -fi - -if [[ ! "$OUTPUT" == "$EXPECTED" ]]; then - error "Unexpected output" -fi \ No newline at end of file diff --git a/tests/script_tests/pipeline_client_no_server b/tests/script_tests/pipeline_client_no_server deleted file mode 100755 index 2b0af93..0000000 --- a/tests/script_tests/pipeline_client_no_server +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/bash - -EXPECTED="Unable to connect to server, check if the pipeline-server microservice is running" - -OUTPUT=$($SOURCE_DIR/client/pipeline_client.sh run object_detection/1 https://github.com/intel-iot-devkit/sample-videos/blob/master/bottle-detection.mp4?raw=true) -RETURN_CODE=$? - -if [[ $RETURN_CODE != 1 ]]; then - error -fi - -if [[ ! "$OUTPUT" == *"$EXPECTED"* ]]; then - error "Unexpected output" -fi diff --git a/tests/script_tests/pipeline_client_no_uri b/tests/script_tests/pipeline_client_no_uri deleted file mode 100755 index c4cd6a8..0000000 --- a/tests/script_tests/pipeline_client_no_uri +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/bash - -EXPECTED="POST http://localhost:8080/pipelines/object_detection/person_vehicle_bike" -cat > /tmp/sample_request.json << EOF - -{ - "source": { - "uri": "https://github.com/intel-iot-devkit/sample-videos/blob/master/person-bicycle-car-detection.mp4?raw=true", - "type": "uri" - }, - "destination": { - "metadata": { - "type": "file", - "path": "/tmp/results.jsonl", - "format": "json-lines" - } - } -} - -EOF - -OUTPUT=$($SOURCE_DIR/client/pipeline_client.sh run object_detection/person_vehicle_bike --request-file /tmp/sample_request.json --show-request) -RETURN_CODE=$? - -if [[ $RETURN_CODE != 0 ]]; then - error -fi - -if [[ ! "$OUTPUT" == *"$EXPECTED"* ]]; then - error "Unexpected output" -fi - -rm /tmp/sample_request.json diff --git a/tests/script_tests/pipeline_client_with_params b/tests/script_tests/pipeline_client_with_params deleted file mode 100755 index be498de..0000000 --- a/tests/script_tests/pipeline_client_with_params +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/bash - -EXPECTED='Pipeline running' - -# Run server and wait for init to complete -$SOURCE_DIR/docker/run.sh --non-interactive & -sleep 5 - -# Run client with int float and string parameters -OUTPUT=$($SOURCE_DIR/client/pipeline_client.sh run object_detection/person_vehicle_bike https://github.com/intel-iot-devkit/sample-videos/blob/master/classroom.mp4?raw=true --parameter inference-interval 2 --parameter threshold 0.5 --parameter detection-model-instance-id instance_id ) -RETURN_CODE=$? - -# Stop server -$SOURCE_DIR/tests/stop.sh - -if [[ $RETURN_CODE != 0 ]]; then - error -fi - -if [[ ! "$OUTPUT" =~ .*"$EXPECTED".* ]]; then - error "Unexpected output" -fi \ No newline at end of file diff --git a/tests/script_tests/pipeline_client_with_params_emit b/tests/script_tests/pipeline_client_with_params_emit deleted file mode 100755 index 9d44dcb..0000000 --- a/tests/script_tests/pipeline_client_with_params_emit +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/bash - -#expect source to occur in output file -EXPECTED="984" -TEST_OUTPUT_FILE=/tmp/script_test_emit_source.jsonl - -# Stop server -$SOURCE_DIR/tests/stop.sh - -# Run server and wait for init to complete -$SOURCE_DIR/docker/run.sh --non-interactive -v /tmp:/tmp -e EMIT_SOURCE_AND_DESTINATION=true & -sleep 5 - -# Run client with int float and string parameters -SOURCE_PARAM=https://github.com/intel-iot-devkit/sample-videos/blob/master/classroom.mp4?raw=true -OUTPUT=$($SOURCE_DIR/client/pipeline_client.sh run --status-only object_detection/person_vehicle_bike \ - ${SOURCE_PARAM} --destination path ${TEST_OUTPUT_FILE} && cat ${TEST_OUTPUT_FILE} | grep ${SOURCE_PARAM} | wc -l) -RETURN_CODE=$? - -# Stop server -$SOURCE_DIR/tests/stop.sh -rm -rf $TEST_OUTPUT_FILE - -if [[ $RETURN_CODE != 0 ]]; then - error -fi - -if [[ ! "$OUTPUT" =~ .*"$EXPECTED".* ]]; then - error "Unexpected output" -fi diff --git a/tests/script_tests/pipeline_client_with_params_emit_neg b/tests/script_tests/pipeline_client_with_params_emit_neg deleted file mode 100755 index 49c8c80..0000000 --- a/tests/script_tests/pipeline_client_with_params_emit_neg +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/bash - -#expect source to NOT occur in output file -EXPECTED="0" -TEST_OUTPUT_FILE=/tmp/script_test_emit_no_source.jsonl - -# Stop server -$SOURCE_DIR/tests/stop.sh - -# Run server and wait for init to complete -$SOURCE_DIR/docker/run.sh --non-interactive -v /tmp:/tmp -e EMIT_SOURCE_AND_DESTINATION=false & -sleep 5 - -# Run client with int float and string parameters -SOURCE_PARAM=https://github.com/intel-iot-devkit/sample-videos/blob/master/classroom.mp4?raw=true -OUTPUT=$($SOURCE_DIR/client/pipeline_client.sh run --status-only object_detection/person_vehicle_bike \ - ${SOURCE_PARAM} --destination path ${TEST_OUTPUT_FILE} && cat ${TEST_OUTPUT_FILE} | grep ${SOURCE_PARAM} | wc -l) -RETURN_CODE=$? - -# Stop server -$SOURCE_DIR/tests/stop.sh -rm -rf $TEST_OUTPUT_FILE - -if [[ $RETURN_CODE != 0 ]]; then - error -fi - -if [[ ! "$OUTPUT" =~ .*"$EXPECTED".* ]]; then - error "Unexpected output" -fi diff --git a/tests/script_tests/pipeline_server_select_bad_gpu_device b/tests/script_tests/pipeline_server_select_bad_gpu_device deleted file mode 100755 index 91cb568..0000000 --- a/tests/script_tests/pipeline_server_select_bad_gpu_device +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/bash - -$SOURCE_DIR/docker/run.sh --gpu-device /dev/my-bad-device --non-interactive & -sleep 5 -OUTPUT=$($SOURCE_DIR/client/pipeline_client.sh run object_detection/person_vehicle_bike https://github.com/intel-iot-devkit/sample-videos/blob/master/bottle-detection.mp4?raw=true --parameter detection-device GPU --parameter inference-interval 10) -RETURN_CODE=$? - -# Stop server -$SOURCE_DIR/tests/stop.sh - -if [[ $RETURN_CODE = 0 ]]; then - error -fi - diff --git a/tests/script_tests/pipeline_server_select_gpu_device b/tests/script_tests/pipeline_server_select_gpu_device deleted file mode 100755 index 23daaa9..0000000 --- a/tests/script_tests/pipeline_server_select_gpu_device +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/bash - -if [ -e /dev/dri/renderD128 ]; then - $SOURCE_DIR/docker/run.sh --gpu-device /dev/dri/renderD128 --non-interactive & - sleep 5 - OUTPUT=$($SOURCE_DIR/client/pipeline_client.sh run object_detection/person_vehicle_bike https://github.com/intel-iot-devkit/sample-videos/blob/master/bottle-detection.mp4?raw=true --parameter detection-device GPU --parameter inference-interval 10) - RETURN_CODE=$? - - # Stop server - $SOURCE_DIR/tests/stop.sh - - if [[ $RETURN_CODE != 0 ]]; then - error - fi -fi diff --git a/tests/script_tests/pipeline_server_set_device_gpu_by_env b/tests/script_tests/pipeline_server_set_device_gpu_by_env deleted file mode 100755 index df88644..0000000 --- a/tests/script_tests/pipeline_server_set_device_gpu_by_env +++ /dev/null @@ -1,42 +0,0 @@ -#!/bin/bash - -EXPECTED=2 -DEVICE=GPU -# Run server and wait for init to complete -$SOURCE_DIR/docker/run.sh -e DETECTION_DEVICE=$DEVICE -e CLASSIFICATION_DEVICE=$DEVICE --non-interactive & -sleep 5 - -# Start pipeline and capture instance_id to get pipeline details and check if device updated -INSTANCE_ID=$(curl localhost:8080/pipelines/object_classification/vehicle_attributes -X POST -H \ -'Content-Type: application/json' -d \ -'{ - "source": { - "uri": "https://github.com/intel-iot-devkit/sample-videos/blob/master/bottle-detection.mp4?raw=true", - "type": "uri" - }, - "destination": { - "metadata": { - "type": "file", - "path": "/tmp/results_emotions.txt", - "format": "json-lines" - } - } -}' | tr -d '"') - - -RETURN_CODE=$? -OUTPUT=$(curl localhost:8080/pipelines/$INSTANCE_ID | grep $DEVICE | wc -l ) - -RETURN_CODE=$? - - -# Stop server -$SOURCE_DIR/tests/stop.sh - -if [[ $RETURN_CODE != 0 ]]; then - error -fi - -if [[ ! "$OUTPUT" == "$EXPECTED" ]]; then - error "Unexpected output" -fi diff --git a/tests/script_tests/spaces_in_test_run_arguments b/tests/script_tests/spaces_in_test_run_arguments deleted file mode 100755 index 871deb6..0000000 --- a/tests/script_tests/spaces_in_test_run_arguments +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/bash - -ENTRYPOINT_ARGS="-c echo arg1 arg2" -EXPECTED="EntrypointArgs: '$ENTRYPOINT_ARGS '" - -OUTPUT=$($SOURCE_DIR/docker/run.sh --entrypoint /bin/bash --entrypoint-args "$ENTRYPOINT_ARGS" --dry-run) -RETURN_CODE=$? - -if [[ $RETURN_CODE != 0 ]]; then - error "docker/run.sh has failed" -fi - -if [[ ! "$OUTPUT" == *"$EXPECTED"* ]]; then - error "Invalid Entrypoint Args" -fi diff --git a/tests/stop.sh b/tests/stop.sh deleted file mode 100755 index 94d5eea..0000000 --- a/tests/stop.sh +++ /dev/null @@ -1,53 +0,0 @@ -#!/bin/bash -# -# Copyright (C) 2019 Intel Corporation. -# -# SPDX-License-Identifier: BSD-3-Clause -# - -echo "Stopping pipeline server containers" -docker stop $(docker ps -q -f name=dlstreamer-pipeline-server) 2> /dev/null || echo "No containers to stop" - -echo "Removing pipeline server containers" -docker rm $(docker ps -q -f name=dlstreamer-pipeline-server) 2> /dev/null || echo "No containers to remove" - -# Give docker time to recognize container is stopped/removed -sleep 2 - -function show_help { - echo "usage: ./stop.sh" - echo " [ --remove : remove pipeline server images ]" - echo " [ --clean-shared-memory : remove files in /dev/shm to clean up shared memory ]" -} - -while [[ "$#" -gt 0 ]]; do - case $1 in - -h | -\? | --help) - show_help - exit - ;; - --remove) - echo "Removing pipeline server images" - docker rmi $(docker images --format '{{.Repository}}:{{.Tag}}' | grep 'dlstreamer-pipeline-server') 2> /dev/null || echo "No images to remove" - ;; - --clean-shared-memory) - echo "Removing all files in /dev/shm" - rm /dev/shm/* 2> /dev/null || echo "No files to remove in /dev/shm" - ;; - --all) - echo "Stopping ALL containers" - docker stop $(docker ps -q) 2> /dev/null || echo "No containers to stop" - echo "killing ALL containers not responsive to stop" - docker kill $(docker ps -q) 2> /dev/null || echo "No containers to kill" - echo "Removing ALL containers" - docker rm $(docker ps -a -q) 2> /dev/null || echo "No containers to remove" - ;; - *) - break - ;; - esac - - shift -done -echo "Exiting" -exit 0 \ No newline at end of file diff --git a/tests/test_cases/image_requirements/image_required_plugins_negative_gstreamer.json b/tests/test_cases/image_requirements/image_required_plugins_negative_gstreamer.json deleted file mode 100644 index 6f84d7d..0000000 --- a/tests/test_cases/image_requirements/image_required_plugins_negative_gstreamer.json +++ /dev/null @@ -1,287 +0,0 @@ -{ - "required_plugins": [ - "igloo_beans", - "jumping_beans", - "rtp" - ], - "expect_missing": [ - "igloo_beans", - "jumping_beans" - ], - "generated_available_plugins": [ - "nice", - "speed", - "pbtypes", - "aom", - "vorbis", - "mpeg2enc", - "mpg123", - "udp", - "xvimagesink", - "ivfparse", - "asfmux", - "smoothstreaming", - "lame", - "dv", - "jp2kdecimator", - "deinterlace", - "yadif", - "mplex", - "dtmf", - "webrtc", - "mpegtsmux", - "vulkan", - "interlace", - "mms", - "videocrop", - "cdparanoia", - "multipart", - "audiovisualizers", - "flv", - "theora", - "aasink", - "assrender", - "shout2", - "accurip", - "cdio", - "camerabin", - "videoconvert", - "decklink", - "de265", - "cacasink", - "rawparse", - "mpegpsmux", - "app", - "teletext", - "midi", - "matroska", - "jpegformat", - "apetag", - "effectv", - "videofilter", - "video4linux2", - "encoding", - "ximagesrc", - "typefindfunctions", - "taglib", - "ipcpipeline", - "imagefreeze", - "dc1394", - "cairo", - "rtsp", - "audiomixer", - "wavenc", - "mulaw", - "fbdevsink", - "shm", - "videoframe_audiolevel", - "debugutilsbad", - "audiofx", - "isomp4", - "auparse", - "alpha", - "closedcaption", - "interleave", - "audioconvert", - "jack", - "ogg", - "waylandsink", - "audiolatency", - "goom", - "overlaycomposition", - "curl", - "png", - "dvbsuboverlay", - "volume", - "soup", - "libvisual", - "gaudieffects", - "siren", - "openjpeg", - "asf", - "pnm", - "ofa", - "zbar", - "debug", - "fieldanalysis", - "sctp", - "adpcmdec", - "audiorate", - "ossaudio", - "alphacolor", - "mpegpsdemux", - "id3tag", - "mpegtsdemux", - "x264", - "timecode", - "voamrwbenc", - "adpcmenc", - "sndfile", - "rsvg", - "netsim", - "openal", - "audiobuffersplit", - "oss4", - "ximagesink", - "y4mdec", - "rfbsrc", - "videobox", - "rtpmanager", - "equalizer", - "jpeg", - "lv2", - "inter", - "smpte", - "removesilence", - "audiomixmatrix", - "xingmux", - "soundtouch", - "videofiltersbad", - "subparse", - "proxy", - "avi", - "dtls", - "videoparsersbad", - "id3demux", - "audiofxbad", - "speex", - "rtp", - "alsa", - "pango", - "webrtcdsp", - "vmnc", - "chromaprint", - "amrwbdec", - "gio", - "flac", - "gme", - "sbc", - "ladspa", - "spectrum", - "bz2", - "faceoverlay", - "dtsdec", - "spandsp", - "hls", - "realmedia", - "audioparsers", - "srt", - "sid", - "festival", - "vpx", - "faad", - "openexr", - "subenc", - "frei0r", - "wavpack", - "alaw", - "openmpt", - "bayer", - "videosignal", - "ivtc", - "replaygain", - "playback", - "gdp", - "y4menc", - "smooth", - "segmentclip", - "geometrictransform", - "audiotestsrc", - "adder", - "autodetect", - "bs2b", - "opus", - "resindvd", - "modplug", - "autoconvert", - "libav", - "audioresample", - "freeverb", - "compositor", - "dvb", - "monoscope", - "vaapi", - "multifile", - "aiff", - "flxdec", - "uvch264", - "1394", - "voaacenc", - "sdpelem", - "bluez", - "videoscale", - "pcapparse", - "videomixer", - "goom2k1", - "colormanagement", - "videotestsrc", - "wavparse", - "legacyrawparse", - "dvdsub", - "shapewipe", - "dvdlpcmdec", - "navigationtest", - "dvdread", - "ttmlsubs", - "kms", - "level", - "fluidsynthmidi", - "gsm", - "coloreffects", - "rtmp", - "x265", - "a52dec", - "musepack", - "tcp", - "twolame", - "mxf", - "videorate", - "webp", - "kate", - "cutter", - "opusparse", - "amrnb", - "libgstdashdemux.so", - "mpeg2dec", - "gdkpixbuf", - "wildmidi", - "icydemux", - "flite", - "dvdspu", - "rtponvif", - "srtp", - "coretracers", - "coreelements", - "python", - "dash", - "faac", - "pulseaudio", - "codecalpha", - "v4l2codecs", - "rtspclientsink", - "dvbsubenc", - "rtpmanagerbad", - "rist", - "switchbin", - "aes", - "nvcodec", - "rtmp2", - "transcode", - "gvapython", - "dlstreamer_opencl", - "gvametapublish", - "gvatrack", - "gvametapublishkafka", - "audioanalytics", - "dlstreamer_openvino", - "dlstreamer_elements", - "dlstreamer_bins", - "gvametapublishmqtt", - "dlstreamer_vaapi", - "dlstreamer_opencv", - "dlstreamer_cpu", - "gvaitttracer", - "videoanalytics", - "staticelements" - ] -} \ No newline at end of file diff --git a/tests/test_cases/image_requirements/image_required_plugins_openvino_legacy_gstreamer.json b/tests/test_cases/image_requirements/image_required_plugins_openvino_legacy_gstreamer.json deleted file mode 100644 index 5e3cb2c..0000000 --- a/tests/test_cases/image_requirements/image_required_plugins_openvino_legacy_gstreamer.json +++ /dev/null @@ -1,541 +0,0 @@ -{ - "required_plugins": [ - "nice", - "udp", - "ivfparse", - "audiolatency", - "encoding", - "webrtcdsp", - "rtpmanager", - "vpx", - "mpegpsdemux", - "mpegtsdemux", - "dc1394", - "resindvd", - "dv", - "mpg123", - "gme", - "flite", - "overlaycomposition", - "audiofxbad", - "replaygain", - "videofilter", - "sdpelem", - "gdkpixbuf", - "spandsp", - "flv", - "autodetect", - "jpeg", - "pango", - "legacyrawparse", - "videoparsersbad", - "frei0r", - "oss4", - "bz2", - "twolame", - "audiobuffersplit", - "speed", - "closedcaption", - "ladspa", - "assrender", - "video4linux2", - "aom", - "srtp", - "deinterlace", - "gsm", - "debug", - "ivtc", - "fieldanalysis", - "rtsp", - "hls", - "voamrwbenc", - "id3demux", - "dtmf", - "mulaw", - "bluez", - "playback", - "rtponvif", - "smooth", - "colormanagement", - "soup", - "multipart", - "cairo", - "volume", - "interleave", - "typefindfunctions", - "musepack", - "audiomixer", - "alphacolor", - "audioresample", - "waylandsink", - "apetag", - "openmpt", - "sbc", - "videoconvert", - "mpegpsmux", - "smpte", - "avi", - "accurip", - "freeverb", - "compositor", - "proxy", - "alaw", - "ximagesink", - "goom2k1", - "flxdec", - "videobox", - "netsim", - "a52dec", - "ipcpipeline", - "dvdread", - "removesilence", - "mms", - "taglib", - "sctp", - "adder", - "effectv", - "auparse", - "webrtc", - "asf", - "bs2b", - "geometrictransform", - "audiorate", - "lv2", - "mplex", - "shm", - "openjpeg", - "sndfile", - "soundtouch", - "jp2kdecimator", - "coloreffects", - "adpcmenc", - "flac", - "dvdspu", - "png", - "subenc", - "wildmidi", - "audioconvert", - "cdio", - "audiovisualizers", - "imagefreeze", - "app", - "pbtypes", - "fluidsynthmidi", - "isomp4", - "coreelements", - "gaudieffects", - "kate", - "jack", - "audiofx", - "de265", - "vaapi", - "wavparse", - "timecode", - "subparse", - "videotestsrc", - "amrnb", - "dtls", - "matroska", - "x264", - "midi", - "opus", - "audioparsers", - "speex", - "faad", - "interlace", - "pcapparse", - "jpegformat", - "tcp", - "wavenc", - "decklink", - "ximagesrc", - "y4mdec", - "siren", - "adpcmdec", - "audiotestsrc", - "asfmux", - "gio", - "ofa", - "dvdsub", - "smoothstreaming", - "vorbis", - "mxf", - "autoconvert", - "fbdevsink", - "debugutilsbad", - "festival", - "videomixer", - "curl", - "shapewipe", - "alsa", - "rtp", - "spectrum", - "zbar", - "aiff", - "audiomixmatrix", - "cutter", - "dtsdec", - "lame", - "realmedia", - "dvbsuboverlay", - "sid", - "teletext", - "rsvg", - "goom", - "monoscope", - "pnm", - "chromaprint", - "yadif", - "cdparanoia", - "xvimagesink", - "dvb", - "alpha", - "navigationtest", - "aasink", - "ogg", - "faceoverlay", - "x265", - "multifile", - "icydemux", - "rawparse", - "rfbsrc", - "equalizer", - "kms", - "webp", - "videocrop", - "id3tag", - "ttmlsubs", - "videoscale", - "ossaudio", - "mpegtsmux", - "voaacenc", - "mpeg2dec", - "libav", - "libvisual", - "gdp", - "rtmp", - "bayer", - "videorate", - "videosignal", - "camerabin", - "xingmux", - "vulkan", - "coretracers", - "amrwbdec", - "1394", - "srt", - "wavpack", - "segmentclip", - "vmnc", - "y4menc", - "openexr", - "dvdlpcmdec", - "videofiltersbad", - "inter", - "level", - "mpeg2enc", - "modplug", - "openal", - "theora", - "shout2", - "cacasink", - "videoframe_audiolevel", - "uvch264", - "opusparse", - "rtmp2", - "nvcodec", - "rtspclientsink", - "v4l2codecs", - "rtpmanagerbad", - "rist", - "dvbsubenc", - "dash", - "transcode", - "pulseaudio", - "switchbin", - "faac", - "gvaitttracer", - "gvatrack", - "gvapython", - "audioanalytics", - "videoanalytics", - "staticelements" - ], - "expect_missing": [], - "generated_available_plugins": [ - "nice", - "speed", - "pbtypes", - "aom", - "vorbis", - "mpeg2enc", - "mpg123", - "udp", - "xvimagesink", - "ivfparse", - "asfmux", - "smoothstreaming", - "lame", - "dv", - "jp2kdecimator", - "deinterlace", - "yadif", - "mplex", - "dtmf", - "webrtc", - "mpegtsmux", - "vulkan", - "interlace", - "mms", - "videocrop", - "cdparanoia", - "multipart", - "audiovisualizers", - "flv", - "theora", - "aasink", - "assrender", - "shout2", - "accurip", - "cdio", - "camerabin", - "videoconvert", - "decklink", - "de265", - "cacasink", - "rawparse", - "mpegpsmux", - "app", - "teletext", - "midi", - "matroska", - "jpegformat", - "apetag", - "effectv", - "videofilter", - "video4linux2", - "encoding", - "ximagesrc", - "typefindfunctions", - "taglib", - "ipcpipeline", - "imagefreeze", - "dc1394", - "cairo", - "rtsp", - "audiomixer", - "wavenc", - "mulaw", - "fbdevsink", - "shm", - "videoframe_audiolevel", - "debugutilsbad", - "audiofx", - "isomp4", - "auparse", - "alpha", - "closedcaption", - "interleave", - "audioconvert", - "jack", - "ogg", - "waylandsink", - "audiolatency", - "goom", - "overlaycomposition", - "curl", - "png", - "dvbsuboverlay", - "volume", - "soup", - "libvisual", - "gaudieffects", - "siren", - "openjpeg", - "asf", - "pnm", - "ofa", - "zbar", - "debug", - "fieldanalysis", - "sctp", - "adpcmdec", - "audiorate", - "ossaudio", - "alphacolor", - "mpegpsdemux", - "id3tag", - "mpegtsdemux", - "x264", - "timecode", - "voamrwbenc", - "adpcmenc", - "sndfile", - "rsvg", - "netsim", - "openal", - "audiobuffersplit", - "oss4", - "ximagesink", - "y4mdec", - "rfbsrc", - "videobox", - "rtpmanager", - "equalizer", - "jpeg", - "lv2", - "inter", - "smpte", - "removesilence", - "audiomixmatrix", - "xingmux", - "soundtouch", - "videofiltersbad", - "subparse", - "proxy", - "avi", - "dtls", - "videoparsersbad", - "id3demux", - "audiofxbad", - "speex", - "rtp", - "alsa", - "pango", - "webrtcdsp", - "vmnc", - "chromaprint", - "amrwbdec", - "gio", - "flac", - "gme", - "sbc", - "ladspa", - "spectrum", - "bz2", - "faceoverlay", - "dtsdec", - "spandsp", - "hls", - "realmedia", - "audioparsers", - "srt", - "sid", - "festival", - "vpx", - "faad", - "openexr", - "subenc", - "frei0r", - "wavpack", - "alaw", - "openmpt", - "bayer", - "videosignal", - "ivtc", - "replaygain", - "playback", - "gdp", - "y4menc", - "smooth", - "segmentclip", - "geometrictransform", - "audiotestsrc", - "adder", - "autodetect", - "bs2b", - "opus", - "resindvd", - "modplug", - "autoconvert", - "libav", - "audioresample", - "freeverb", - "compositor", - "dvb", - "monoscope", - "vaapi", - "multifile", - "aiff", - "flxdec", - "uvch264", - "1394", - "voaacenc", - "sdpelem", - "bluez", - "videoscale", - "pcapparse", - "videomixer", - "goom2k1", - "colormanagement", - "videotestsrc", - "wavparse", - "legacyrawparse", - "dvdsub", - "shapewipe", - "dvdlpcmdec", - "navigationtest", - "dvdread", - "ttmlsubs", - "kms", - "level", - "fluidsynthmidi", - "gsm", - "coloreffects", - "rtmp", - "x265", - "a52dec", - "musepack", - "tcp", - "twolame", - "mxf", - "videorate", - "webp", - "kate", - "cutter", - "opusparse", - "amrnb", - "libgstdashdemux.so", - "mpeg2dec", - "gdkpixbuf", - "wildmidi", - "icydemux", - "flite", - "dvdspu", - "rtponvif", - "srtp", - "coretracers", - "coreelements", - "python", - "dash", - "faac", - "pulseaudio", - "codecalpha", - "v4l2codecs", - "rtspclientsink", - "dvbsubenc", - "rtpmanagerbad", - "rist", - "switchbin", - "aes", - "nvcodec", - "rtmp2", - "transcode", - "gvapython", - "dlstreamer_opencl", - "gvametapublish", - "gvatrack", - "gvametapublishkafka", - "audioanalytics", - "dlstreamer_openvino", - "dlstreamer_elements", - "dlstreamer_bins", - "gvametapublishmqtt", - "dlstreamer_vaapi", - "dlstreamer_opencv", - "dlstreamer_cpu", - "gvaitttracer", - "videoanalytics", - "staticelements" - ] -} \ No newline at end of file diff --git a/tests/test_cases/image_requirements/image_required_plugins_webrtc_gstreamer.json b/tests/test_cases/image_requirements/image_required_plugins_webrtc_gstreamer.json deleted file mode 100644 index 01b08db..0000000 --- a/tests/test_cases/image_requirements/image_required_plugins_webrtc_gstreamer.json +++ /dev/null @@ -1,289 +0,0 @@ -{ - "required_plugins": [ - "opus", - "vpx", - "nice", - "webrtc", - "dtls", - "srtp", - "rtp", - "rtpmanager" - ], - "expect_missing": [], - "generated_available_plugins": [ - "nice", - "speed", - "pbtypes", - "aom", - "vorbis", - "mpeg2enc", - "mpg123", - "udp", - "xvimagesink", - "ivfparse", - "asfmux", - "smoothstreaming", - "lame", - "dv", - "jp2kdecimator", - "deinterlace", - "yadif", - "mplex", - "dtmf", - "webrtc", - "mpegtsmux", - "vulkan", - "interlace", - "mms", - "videocrop", - "cdparanoia", - "multipart", - "audiovisualizers", - "flv", - "theora", - "aasink", - "assrender", - "shout2", - "accurip", - "cdio", - "camerabin", - "videoconvert", - "decklink", - "de265", - "cacasink", - "rawparse", - "mpegpsmux", - "app", - "teletext", - "midi", - "matroska", - "jpegformat", - "apetag", - "effectv", - "videofilter", - "video4linux2", - "encoding", - "ximagesrc", - "typefindfunctions", - "taglib", - "ipcpipeline", - "imagefreeze", - "dc1394", - "cairo", - "rtsp", - "audiomixer", - "wavenc", - "mulaw", - "fbdevsink", - "shm", - "videoframe_audiolevel", - "debugutilsbad", - "audiofx", - "isomp4", - "auparse", - "alpha", - "closedcaption", - "interleave", - "audioconvert", - "jack", - "ogg", - "waylandsink", - "audiolatency", - "goom", - "overlaycomposition", - "curl", - "png", - "dvbsuboverlay", - "volume", - "soup", - "libvisual", - "gaudieffects", - "siren", - "openjpeg", - "asf", - "pnm", - "ofa", - "zbar", - "debug", - "fieldanalysis", - "sctp", - "adpcmdec", - "audiorate", - "ossaudio", - "alphacolor", - "mpegpsdemux", - "id3tag", - "mpegtsdemux", - "x264", - "timecode", - "voamrwbenc", - "adpcmenc", - "sndfile", - "rsvg", - "netsim", - "openal", - "audiobuffersplit", - "oss4", - "ximagesink", - "y4mdec", - "rfbsrc", - "videobox", - "rtpmanager", - "equalizer", - "jpeg", - "lv2", - "inter", - "smpte", - "removesilence", - "audiomixmatrix", - "xingmux", - "soundtouch", - "videofiltersbad", - "subparse", - "proxy", - "avi", - "dtls", - "videoparsersbad", - "id3demux", - "audiofxbad", - "speex", - "rtp", - "alsa", - "pango", - "webrtcdsp", - "vmnc", - "chromaprint", - "amrwbdec", - "gio", - "flac", - "gme", - "sbc", - "ladspa", - "spectrum", - "bz2", - "faceoverlay", - "dtsdec", - "spandsp", - "hls", - "realmedia", - "audioparsers", - "srt", - "sid", - "festival", - "vpx", - "faad", - "openexr", - "subenc", - "frei0r", - "wavpack", - "alaw", - "openmpt", - "bayer", - "videosignal", - "ivtc", - "replaygain", - "playback", - "gdp", - "y4menc", - "smooth", - "segmentclip", - "geometrictransform", - "audiotestsrc", - "adder", - "autodetect", - "bs2b", - "opus", - "resindvd", - "modplug", - "autoconvert", - "libav", - "audioresample", - "freeverb", - "compositor", - "dvb", - "monoscope", - "vaapi", - "multifile", - "aiff", - "flxdec", - "uvch264", - "1394", - "voaacenc", - "sdpelem", - "bluez", - "videoscale", - "pcapparse", - "videomixer", - "goom2k1", - "colormanagement", - "videotestsrc", - "wavparse", - "legacyrawparse", - "dvdsub", - "shapewipe", - "dvdlpcmdec", - "navigationtest", - "dvdread", - "ttmlsubs", - "kms", - "level", - "fluidsynthmidi", - "gsm", - "coloreffects", - "rtmp", - "x265", - "a52dec", - "musepack", - "tcp", - "twolame", - "mxf", - "videorate", - "webp", - "kate", - "cutter", - "opusparse", - "amrnb", - "libgstdashdemux.so", - "mpeg2dec", - "gdkpixbuf", - "wildmidi", - "icydemux", - "flite", - "dvdspu", - "rtponvif", - "srtp", - "coretracers", - "coreelements", - "python", - "dash", - "faac", - "pulseaudio", - "codecalpha", - "v4l2codecs", - "rtspclientsink", - "dvbsubenc", - "rtpmanagerbad", - "rist", - "switchbin", - "aes", - "nvcodec", - "rtmp2", - "transcode", - "gvapython", - "dlstreamer_opencl", - "gvametapublish", - "gvatrack", - "gvametapublishkafka", - "audioanalytics", - "dlstreamer_openvino", - "dlstreamer_elements", - "dlstreamer_bins", - "gvametapublishmqtt", - "dlstreamer_vaapi", - "dlstreamer_opencv", - "dlstreamer_cpu", - "gvaitttracer", - "videoanalytics", - "staticelements" - ] -} \ No newline at end of file diff --git a/tests/test_cases/initialization/invalid_pipeline_description_gstreamer.json b/tests/test_cases/initialization/invalid_pipeline_description_gstreamer.json deleted file mode 100644 index 79bb664..0000000 --- a/tests/test_cases/initialization/invalid_pipeline_description_gstreamer.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "options": { - "ignore_init_errors" : "False" - }, - "exception": {"type":"Exception","value":"Error Initializing Pipelines"} -} diff --git a/tests/test_cases/initialization/invalid_pipeline_description_gstreamer_pipelines/invalid/1/invalid.json b/tests/test_cases/initialization/invalid_pipeline_description_gstreamer_pipelines/invalid/1/invalid.json deleted file mode 100644 index a4b1d78..0000000 --- a/tests/test_cases/initialization/invalid_pipeline_description_gstreamer_pipelines/invalid/1/invalid.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "type":"GStreamer", - "template":"identity ! identity" -} diff --git a/tests/test_cases/initialization/invalid_pipeline_type.json b/tests/test_cases/initialization/invalid_pipeline_type.json deleted file mode 100644 index fb61e79..0000000 --- a/tests/test_cases/initialization/invalid_pipeline_type.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "options": { - "ignore_init_errors" : "False" - }, - "exception": {"type":"Exception","value":"Error Initializing Pipelines"} -} diff --git a/tests/test_cases/initialization/invalid_pipeline_type_pipelines/.gitignore b/tests/test_cases/initialization/invalid_pipeline_type_pipelines/.gitignore deleted file mode 100644 index e69de29..0000000 diff --git a/tests/test_cases/initialization/invalid_pipeline_type_pipelines/invalid/1/invalid.json b/tests/test_cases/initialization/invalid_pipeline_type_pipelines/invalid/1/invalid.json deleted file mode 100644 index 9085648..0000000 --- a/tests/test_cases/initialization/invalid_pipeline_type_pipelines/invalid/1/invalid.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type":"_invalid_", - "description":"Identity", - "template":"identity ! identity" -} diff --git a/tests/test_cases/initialization/valid_pipeline_ffmpeg.json b/tests/test_cases/initialization/valid_pipeline_ffmpeg.json deleted file mode 100644 index 9f3350f..0000000 --- a/tests/test_cases/initialization/valid_pipeline_ffmpeg.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "options": { - } -} diff --git a/tests/test_cases/initialization/valid_pipeline_ffmpeg_pipelines/valid/1/valid.json b/tests/test_cases/initialization/valid_pipeline_ffmpeg_pipelines/valid/1/valid.json deleted file mode 100644 index bd8791d..0000000 --- a/tests/test_cases/initialization/valid_pipeline_ffmpeg_pipelines/valid/1/valid.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "FFmpeg", - "description": "Identity", - "template": [ - ] -} diff --git a/tests/test_cases/initialization/valid_pipeline_gstreamer.json b/tests/test_cases/initialization/valid_pipeline_gstreamer.json deleted file mode 100644 index 9f3350f..0000000 --- a/tests/test_cases/initialization/valid_pipeline_gstreamer.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "options": { - } -} diff --git a/tests/test_cases/initialization/valid_pipeline_gstreamer_pipelines/valid/1/valid.json b/tests/test_cases/initialization/valid_pipeline_gstreamer_pipelines/valid/1/valid.json deleted file mode 100644 index e95239c..0000000 --- a/tests/test_cases/initialization/valid_pipeline_gstreamer_pipelines/valid/1/valid.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "GStreamer", - "template":"identity ! identity", - "description":"Identity" -} \ No newline at end of file diff --git a/tests/test_cases/initialization/valid_pipeline_string_version_ffmpeg.json b/tests/test_cases/initialization/valid_pipeline_string_version_ffmpeg.json deleted file mode 100644 index 9f3350f..0000000 --- a/tests/test_cases/initialization/valid_pipeline_string_version_ffmpeg.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "options": { - } -} diff --git a/tests/test_cases/initialization/valid_pipeline_string_version_ffmpeg_pipelines/valid/stringified_version/valid.json b/tests/test_cases/initialization/valid_pipeline_string_version_ffmpeg_pipelines/valid/stringified_version/valid.json deleted file mode 100644 index bd8791d..0000000 --- a/tests/test_cases/initialization/valid_pipeline_string_version_ffmpeg_pipelines/valid/stringified_version/valid.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "FFmpeg", - "description": "Identity", - "template": [ - ] -} diff --git a/tests/test_cases/initialization/valid_pipeline_string_version_gstreamer.json b/tests/test_cases/initialization/valid_pipeline_string_version_gstreamer.json deleted file mode 100644 index 9f3350f..0000000 --- a/tests/test_cases/initialization/valid_pipeline_string_version_gstreamer.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "options": { - } -} diff --git a/tests/test_cases/initialization/valid_pipeline_string_version_gstreamer_pipelines/valid/stringified_version/valid.json b/tests/test_cases/initialization/valid_pipeline_string_version_gstreamer_pipelines/valid/stringified_version/valid.json deleted file mode 100644 index e95239c..0000000 --- a/tests/test_cases/initialization/valid_pipeline_string_version_gstreamer_pipelines/valid/stringified_version/valid.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "GStreamer", - "template":"identity ! identity", - "description":"Identity" -} \ No newline at end of file diff --git a/tests/test_cases/pipeline_client/test_list_models.json b/tests/test_cases/pipeline_client/test_list_models.json deleted file mode 100644 index 0b3df1f..0000000 --- a/tests/test_cases/pipeline_client/test_list_models.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "test_function": "list_models", - "show_request": false, - "regex": "( - .+/.+\n)+" -} diff --git a/tests/test_cases/pipeline_client/test_list_models_show_request.json b/tests/test_cases/pipeline_client/test_list_models_show_request.json deleted file mode 100644 index 106ecf0..0000000 --- a/tests/test_cases/pipeline_client/test_list_models_show_request.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "test_function": "list_models", - "show_request": true, - "expected_output": "GET http://localhost:8080/models" -} diff --git a/tests/test_cases/pipeline_client/test_list_pipelines.json b/tests/test_cases/pipeline_client/test_list_pipelines.json deleted file mode 100644 index d240e04..0000000 --- a/tests/test_cases/pipeline_client/test_list_pipelines.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "test_function": "list_pipelines", - "show_request": false, - "regex": "( - .+/.+\n)+" -} diff --git a/tests/test_cases/pipeline_client/test_list_pipelines_show_request.json b/tests/test_cases/pipeline_client/test_list_pipelines_show_request.json deleted file mode 100644 index 3b84407..0000000 --- a/tests/test_cases/pipeline_client/test_list_pipelines_show_request.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "test_function": "list_pipelines", - "show_request": true, - "expected_output": "GET http://localhost:8080/pipelines" -} diff --git a/tests/test_cases/pipeline_client/test_run_pipeline_gstreamer.json b/tests/test_cases/pipeline_client/test_run_pipeline_gstreamer.json deleted file mode 100644 index 182be40..0000000 --- a/tests/test_cases/pipeline_client/test_run_pipeline_gstreamer.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "test_function": "run", - "pipeline": "object_detection/person_vehicle_bike", - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "sleep_time_sec": 1.5 -} diff --git a/tests/test_cases/pipeline_client/test_run_pipeline_with_bad_detection_device_gstreamer.json b/tests/test_cases/pipeline_client/test_run_pipeline_with_bad_detection_device_gstreamer.json deleted file mode 100644 index f0e58e7..0000000 --- a/tests/test_cases/pipeline_client/test_run_pipeline_with_bad_detection_device_gstreamer.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "test_function": "run_with_bad_detection_device", - "pipeline": "object_detection/person_vehicle_bike", - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "detection_device": "foo", - "expected_output": "Error in pipeline, please check pipeline-server log messages" -} diff --git a/tests/test_cases/pipeline_client/test_start_pipeline_bad_pipeline.json b/tests/test_cases/pipeline_client/test_start_pipeline_bad_pipeline.json deleted file mode 100644 index aca5e9f..0000000 --- a/tests/test_cases/pipeline_client/test_start_pipeline_bad_pipeline.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "test_function": "start_pipeline", - "pipeline": "fake_pipeline/fake_version", - "uri": "file:///home/pipeline-server/tests/media/store-aisle-detection.mp4", - "expected_id": null, - "expected_output": "Invalid Pipeline or Version" -} diff --git a/tests/test_cases/pipeline_client/test_stop_pipeline_bad_pipeline.json b/tests/test_cases/pipeline_client/test_stop_pipeline_bad_pipeline.json deleted file mode 100644 index 7fa1f59..0000000 --- a/tests/test_cases/pipeline_client/test_stop_pipeline_bad_pipeline.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "test_function": "stop_pipeline", - "pipeline": "fake_pipeline/fake_version", - "uri": "file:///home/pipeline-server/tests/media/store-aisle-detection.mp4", - "instance_id": 101, - "expected_output": "Pipeline NOT stopped" -} diff --git a/tests/test_cases/pipeline_client/test_tags.json b/tests/test_cases/pipeline_client/test_tags.json deleted file mode 100644 index f9f6326..0000000 --- a/tests/test_cases/pipeline_client/test_tags.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "test_function": "tags", - "pipeline": "object_detection/person_vehicle_bike", - "uri": "file:///t.mp4", - "tags" : { - "tag_key" : "tag_value" - }, - "show_request": true, - "expected_output": "POST http://localhost:8080/pipelines/object_detection/person_vehicle_bike\nBody:{'source': {'uri': 'file:///t.mp4', 'type': 'uri'}, 'destination': {'metadata': {'type': 'file', 'path': '/tmp/results.jsonl', 'format': 'json-lines'}}, 'tags': {'tag_key': 'tag_value'}}\n" -} diff --git a/tests/test_cases/pipeline_execution/cpu/audio_detection_gstreamer.json b/tests/test_cases/pipeline_execution/cpu/audio_detection_gstreamer.json deleted file mode 100644 index 8c827b5..0000000 --- a/tests/test_cases/pipeline_execution/cpu/audio_detection_gstreamer.json +++ /dev/null @@ -1,310 +0,0 @@ -{ - "options": {}, - "pipeline": { - "name": "audio_detection", - "version": "environment" - }, - "request": { - "source": { - "type": "uri", - "uri": "file:///home/pipeline-server/tests/media/how_are_you_doing.wav" - }, - "destination": { - "type": "file", - "path": "/tmp/audio_detection_results.json", - "format": "json-lines" - }, - "parameters": { - "detection-device": "CPU" - } - }, - "numerical_tolerance": 0.2, - "result": [ - { - "channels": 1, - "events": [ - { - "detection": { - "confidence": 0.7, - "label": "Can opening", - "label_id": 35, - "segment": { - "end_timestamp": 1000000000, - "start_timestamp": 0 - } - }, - "end_timestamp": 1000000000, - "event_type": "Can opening", - "start_timestamp": 0 - } - ], - "rate": 16000, - "source": "file:///home/pipeline-server/tests/media/how_are_you_doing.wav", - "tags": {} - }, - { - "channels": 1, - "events": [ - { - "detection": { - "confidence": 0.67, - "label": "Cow", - "label_id": 4, - "segment": { - "end_timestamp": 1200000000, - "start_timestamp": 200000000 - } - }, - "end_timestamp": 1200000000, - "event_type": "Cow", - "start_timestamp": 200000000 - } - ], - "rate": 16000, - "source": "file:///home/pipeline-server/tests/media/how_are_you_doing.wav", - "tags": {} - }, - { - "channels": 1, - "events": [ - { - "detection": { - "confidence": 0.99, - "label": "Speech", - "label_id": 53, - "segment": { - "end_timestamp": 1400000000, - "start_timestamp": 400000000 - } - }, - "end_timestamp": 1400000000, - "event_type": "Speech", - "start_timestamp": 400000000 - } - ], - "rate": 16000, - "source": "file:///home/pipeline-server/tests/media/how_are_you_doing.wav", - "tags": {} - }, - { - "channels": 1, - "events": [ - { - "detection": { - "confidence": 1.0, - "label": "Speech", - "label_id": 53, - "segment": { - "end_timestamp": 1600000000, - "start_timestamp": 600000000 - } - }, - "end_timestamp": 1600000000, - "event_type": "Speech", - "start_timestamp": 600000000 - } - ], - "rate": 16000, - "source": "file:///home/pipeline-server/tests/media/how_are_you_doing.wav", - "tags": {} - }, - { - "channels": 1, - "events": [ - { - "detection": { - "confidence": 1.0, - "label": "Speech", - "label_id": 53, - "segment": { - "end_timestamp": 1800000000, - "start_timestamp": 800000000 - } - }, - "end_timestamp": 1800000000, - "event_type": "Speech", - "start_timestamp": 800000000 - } - ], - "rate": 16000, - "source": "file:///home/pipeline-server/tests/media/how_are_you_doing.wav", - "tags": {} - }, - { - "channels": 1, - "events": [ - { - "detection": { - "confidence": 1.0, - "label": "Speech", - "label_id": 53, - "segment": { - "end_timestamp": 2000000000, - "start_timestamp": 1000000000 - } - }, - "end_timestamp": 2000000000, - "event_type": "Speech", - "start_timestamp": 1000000000 - } - ], - "rate": 16000, - "source": "file:///home/pipeline-server/tests/media/how_are_you_doing.wav", - "tags": {} - }, - { - "channels": 1, - "events": [ - { - "detection": { - "confidence": 1.0, - "label": "Speech", - "label_id": 53, - "segment": { - "end_timestamp": 2200000000, - "start_timestamp": 1200000000 - } - }, - "end_timestamp": 2200000000, - "event_type": "Speech", - "start_timestamp": 1200000000 - } - ], - "rate": 16000, - "source": "file:///home/pipeline-server/tests/media/how_are_you_doing.wav", - "tags": {} - }, - { - "channels": 1, - "events": [ - { - "detection": { - "confidence": 1.0, - "label": "Speech", - "label_id": 53, - "segment": { - "end_timestamp": 2400000000, - "start_timestamp": 1400000000 - } - }, - "end_timestamp": 2400000000, - "event_type": "Speech", - "start_timestamp": 1400000000 - } - ], - "rate": 16000, - "source": "file:///home/pipeline-server/tests/media/how_are_you_doing.wav", - "tags": {} - }, - { - "channels": 1, - "events": [ - { - "detection": { - "confidence": 1.0, - "label": "Speech", - "label_id": 53, - "segment": { - "end_timestamp": 2600000000, - "start_timestamp": 1600000000 - } - }, - "end_timestamp": 2600000000, - "event_type": "Speech", - "start_timestamp": 1600000000 - } - ], - "rate": 16000, - "source": "file:///home/pipeline-server/tests/media/how_are_you_doing.wav", - "tags": {} - }, - { - "channels": 1, - "events": [ - { - "detection": { - "confidence": 1.0, - "label": "Speech", - "label_id": 53, - "segment": { - "end_timestamp": 2800000000, - "start_timestamp": 1800000000 - } - }, - "end_timestamp": 2800000000, - "event_type": "Speech", - "start_timestamp": 1800000000 - } - ], - "rate": 16000, - "source": "file:///home/pipeline-server/tests/media/how_are_you_doing.wav", - "tags": {} - }, - { - "channels": 1, - "events": [ - { - "detection": { - "confidence": 1.0, - "label": "Speech", - "label_id": 53, - "segment": { - "end_timestamp": 3000000000, - "start_timestamp": 2000000000 - } - }, - "end_timestamp": 3000000000, - "event_type": "Speech", - "start_timestamp": 2000000000 - } - ], - "rate": 16000, - "source": "file:///home/pipeline-server/tests/media/how_are_you_doing.wav", - "tags": {} - }, - { - "channels": 1, - "events": [ - { - "detection": { - "confidence": 0.99, - "label": "Speech", - "label_id": 53, - "segment": { - "end_timestamp": 3200000000, - "start_timestamp": 2200000000 - } - }, - "end_timestamp": 3200000000, - "event_type": "Speech", - "start_timestamp": 2200000000 - } - ], - "rate": 16000, - "source": "file:///home/pipeline-server/tests/media/how_are_you_doing.wav", - "tags": {} - }, - { - "channels": 1, - "events": [ - { - "detection": { - "confidence": 0.99, - "label": "Speech", - "label_id": 53, - "segment": { - "end_timestamp": 3400000000, - "start_timestamp": 2400000000 - } - }, - "end_timestamp": 3400000000, - "event_type": "Speech", - "start_timestamp": 2400000000 - } - ], - "rate": 16000, - "source": "file:///home/pipeline-server/tests/media/how_are_you_doing.wav", - "tags": {} - } - ] -} \ No newline at end of file diff --git a/tests/test_cases/pipeline_execution/cpu/mic/audio_detection_type_mic_gstreamer.json b/tests/test_cases/pipeline_execution/cpu/mic/audio_detection_type_mic_gstreamer.json deleted file mode 100644 index d413d05..0000000 --- a/tests/test_cases/pipeline_execution/cpu/mic/audio_detection_type_mic_gstreamer.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "options": {}, - "test_file" : "pipeline_execution", - "pipeline": { - "name": "audio_detection", - "version": "environment" - }, - "request": { - "source": { - "type": "gst", - "element": "alsasrc", - "properties": { - "device": "hw:0,0" - } - }, - "destination": { - "type": "file", - "path": "/tmp/audio_detection_mic_results.json", - "format": "json" - }, - "parameters": { - "detection-device": "CPU" - } - }, - "golden_results": false, - "abort": { - "delay": 30 - } -} \ No newline at end of file diff --git a/tests/test_cases/pipeline_execution/cpu/object_classification_fifo_gstreamer.json b/tests/test_cases/pipeline_execution/cpu/object_classification_fifo_gstreamer.json deleted file mode 100644 index 16e1ccf..0000000 --- a/tests/test_cases/pipeline_execution/cpu/object_classification_fifo_gstreamer.json +++ /dev/null @@ -1,9993 +0,0 @@ -{ - "options": {}, - "pipeline": { - "name": "object_classification", - "version": "vehicle_attributes" - }, - "request": { - "source": { - "type": "uri", - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4" - }, - "destination": { - "type": "file", - "path": "/tmp/object_classification_results_fifo", - "format": "json-lines" - }, - "parameters": { - "detection-device": "CPU", - "classification-device": "CPU" - } - }, - "numerical_tolerance": 0.001, - "result": [ - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7448995113372803, - "x_min": 0.6734092235565186, - "y_max": 0.9991496205329895, - "y_min": 0.8781012892723083 - }, - "confidence": 0.5402482748031616, - "label": "person", - "label_id": 1 - }, - "h": 52, - "region_id": 7433, - "roi_type": "person", - "w": 55, - "x": 517, - "y": 379 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7442192435264587, - "x_min": 0.6763269305229187, - "y_max": 1.0, - "y_min": 0.8277981281280518 - }, - "confidence": 0.5505853295326233, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 7434, - "roi_type": "person", - "w": 52, - "x": 519, - "y": 358 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7465136051177979, - "x_min": 0.6821862459182739, - "y_max": 1.0, - "y_min": 0.8104690909385681 - }, - "confidence": 0.6447358131408691, - "label": "person", - "label_id": 1 - }, - "h": 82, - "region_id": 7436, - "roi_type": "person", - "w": 49, - "x": 524, - "y": 350 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7481286525726318, - "x_min": 0.68366539478302, - "y_max": 0.9999657869338989, - "y_min": 0.7867170572280884 - }, - "confidence": 0.882526695728302, - "label": "person", - "label_id": 1 - }, - "h": 92, - "region_id": 7435, - "roi_type": "person", - "w": 50, - "x": 525, - "y": 340 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7502986788749695, - "x_min": 0.6836960911750793, - "y_max": 0.9965759515762329, - "y_min": 0.7709740400314331 - }, - "confidence": 0.9252126812934875, - "label": "person", - "label_id": 1 - }, - "h": 97, - "region_id": 7437, - "roi_type": "person", - "w": 51, - "x": 525, - "y": 333 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7533046007156372, - "x_min": 0.6833932399749756, - "y_max": 0.9992514848709106, - "y_min": 0.7517307996749878 - }, - "confidence": 0.9160429835319519, - "label": "person", - "label_id": 1 - }, - "h": 107, - "region_id": 7438, - "roi_type": "person", - "w": 54, - "x": 525, - "y": 325 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7569091320037842, - "x_min": 0.6831721067428589, - "y_max": 0.9893119931221008, - "y_min": 0.7454761862754822 - }, - "confidence": 0.9452281594276428, - "label": "person", - "label_id": 1 - }, - "h": 105, - "region_id": 7442, - "roi_type": "person", - "w": 57, - "x": 525, - "y": 322 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.758220374584198, - "x_min": 0.6869714856147766, - "y_max": 0.9744250774383545, - "y_min": 0.7232376337051392 - }, - "confidence": 0.9522698521614075, - "label": "person", - "label_id": 1 - }, - "h": 109, - "region_id": 7441, - "roi_type": "person", - "w": 55, - "x": 528, - "y": 312 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.757515549659729, - "x_min": 0.6908836364746094, - "y_max": 0.9485968351364136, - "y_min": 0.7128696441650391 - }, - "confidence": 0.8796297907829285, - "label": "person", - "label_id": 1 - }, - "h": 102, - "region_id": 7440, - "roi_type": "person", - "w": 51, - "x": 531, - "y": 308 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7562522292137146, - "x_min": 0.6947104334831238, - "y_max": 0.8969831466674805, - "y_min": 0.7029379606246948 - }, - "confidence": 0.8928061127662659, - "label": "person", - "label_id": 1 - }, - "h": 84, - "region_id": 7443, - "roi_type": "person", - "w": 47, - "x": 534, - "y": 304 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7574296593666077, - "x_min": 0.6979045271873474, - "y_max": 0.8754802346229553, - "y_min": 0.6884984374046326 - }, - "confidence": 0.8720522522926331, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 7444, - "roi_type": "person", - "w": 46, - "x": 536, - "y": 297 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7628753781318665, - "x_min": 0.6962668299674988, - "y_max": 0.9012861251831055, - "y_min": 0.6672508716583252 - }, - "confidence": 0.6989018321037292, - "label": "person", - "label_id": 1 - }, - "h": 101, - "region_id": 7445, - "roi_type": "person", - "w": 51, - "x": 535, - "y": 288 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7642366886138916, - "x_min": 0.6945128440856934, - "y_max": 0.8976410031318665, - "y_min": 0.6511140465736389 - }, - "confidence": 0.6954102516174316, - "label": "person", - "label_id": 1 - }, - "h": 106, - "region_id": 7446, - "roi_type": "person", - "w": 54, - "x": 533, - "y": 281 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7641031742095947, - "x_min": 0.7028636932373047, - "y_max": 0.8516806960105896, - "y_min": 0.6483859419822693 - }, - "confidence": 0.6670747995376587, - "label": "person", - "label_id": 1 - }, - "h": 88, - "region_id": 7447, - "roi_type": "person", - "w": 47, - "x": 540, - "y": 280 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7670164108276367, - "x_min": 0.7064443826675415, - "y_max": 0.829826295375824, - "y_min": 0.6299616694450378 - }, - "confidence": 0.929532527923584, - "label": "person", - "label_id": 1 - }, - "h": 86, - "region_id": 7448, - "roi_type": "person", - "w": 47, - "x": 543, - "y": 272 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7725509405136108, - "x_min": 0.7098292112350464, - "y_max": 0.8254445195198059, - "y_min": 0.6173177361488342 - }, - "confidence": 0.6896131634712219, - "label": "person", - "label_id": 1 - }, - "h": 90, - "region_id": 7449, - "roi_type": "person", - "w": 48, - "x": 545, - "y": 267 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.77418452501297, - "x_min": 0.7090356945991516, - "y_max": 0.8218122124671936, - "y_min": 0.6104786992073059 - }, - "confidence": 0.7604833841323853, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 7450, - "roi_type": "person", - "w": 50, - "x": 545, - "y": 264 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7783714532852173, - "x_min": 0.7181830406188965, - "y_max": 0.7849859595298767, - "y_min": 0.5744112133979797 - }, - "confidence": 0.502738356590271, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 7451, - "roi_type": "person", - "w": 46, - "x": 552, - "y": 248 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7834279537200928, - "x_min": 0.7257949113845825, - "y_max": 0.7589362263679504, - "y_min": 0.5519590973854065 - }, - "confidence": 0.7043135166168213, - "label": "person", - "label_id": 1 - }, - "h": 89, - "region_id": 7452, - "roi_type": "person", - "w": 44, - "x": 557, - "y": 238 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.78952956199646, - "x_min": 0.7326743602752686, - "y_max": 0.7261121273040771, - "y_min": 0.5483003854751587 - }, - "confidence": 0.9756479263305664, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 7453, - "roi_type": "person", - "w": 44, - "x": 563, - "y": 237 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7890371084213257, - "x_min": 0.737720251083374, - "y_max": 0.7031307816505432, - "y_min": 0.5400574803352356 - }, - "confidence": 0.8415098786354065, - "label": "person", - "label_id": 1 - }, - "h": 70, - "region_id": 7454, - "roi_type": "person", - "w": 39, - "x": 567, - "y": 233 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7952908873558044, - "x_min": 0.7402903437614441, - "y_max": 0.6921250820159912, - "y_min": 0.5216915607452393 - }, - "confidence": 0.7716295719146729, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 7455, - "roi_type": "person", - "w": 42, - "x": 569, - "y": 225 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8006463646888733, - "x_min": 0.746234118938446, - "y_max": 0.6880520582199097, - "y_min": 0.5218417644500732 - }, - "confidence": 0.8759844303131104, - "label": "person", - "label_id": 1 - }, - "h": 72, - "region_id": 7456, - "roi_type": "person", - "w": 42, - "x": 573, - "y": 225 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8098055720329285, - "x_min": 0.7457361817359924, - "y_max": 0.7030310034751892, - "y_min": 0.5026633143424988 - }, - "confidence": 0.9101058840751648, - "label": "person", - "label_id": 1 - }, - "h": 87, - "region_id": 7457, - "roi_type": "person", - "w": 49, - "x": 573, - "y": 217 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8131635785102844, - "x_min": 0.7560372948646545, - "y_max": 0.68419349193573, - "y_min": 0.4961233139038086 - }, - "confidence": 0.9086412787437439, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 7458, - "roi_type": "person", - "w": 44, - "x": 581, - "y": 214 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.823058545589447, - "x_min": 0.7637491822242737, - "y_max": 0.6855756640434265, - "y_min": 0.4885023236274719 - }, - "confidence": 0.8248202800750732, - "label": "person", - "label_id": 1 - }, - "h": 85, - "region_id": 7461, - "roi_type": "person", - "w": 46, - "x": 587, - "y": 211 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8232852220535278, - "x_min": 0.760567307472229, - "y_max": 0.6924915909767151, - "y_min": 0.47507840394973755 - }, - "confidence": 0.6950181126594543, - "label": "person", - "label_id": 1 - }, - "h": 94, - "region_id": 7465, - "roi_type": "person", - "w": 48, - "x": 584, - "y": 205 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8322221040725708, - "x_min": 0.7602424621582031, - "y_max": 0.6941542625427246, - "y_min": 0.46584224700927734 - }, - "confidence": 0.5867351293563843, - "label": "person", - "label_id": 1 - }, - "h": 99, - "region_id": 7464, - "roi_type": "person", - "w": 55, - "x": 584, - "y": 201 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8429373502731323, - "x_min": 0.793522834777832, - "y_max": 0.6419346928596497, - "y_min": 0.43809905648231506 - }, - "confidence": 0.96792072057724, - "label": "person", - "label_id": 1 - }, - "h": 88, - "region_id": 7466, - "roi_type": "person", - "w": 38, - "x": 609, - "y": 189 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.849794328212738, - "x_min": 0.796667754650116, - "y_max": 0.615337610244751, - "y_min": 0.44303929805755615 - }, - "confidence": 0.8853123188018799, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 7467, - "roi_type": "person", - "w": 41, - "x": 612, - "y": 191 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8533491492271423, - "x_min": 0.8009874224662781, - "y_max": 0.6051764488220215, - "y_min": 0.4295734465122223 - }, - "confidence": 0.90330970287323, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 7470, - "roi_type": "person", - "w": 40, - "x": 615, - "y": 186 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8604123592376709, - "x_min": 0.8060647249221802, - "y_max": 0.5924712419509888, - "y_min": 0.42701780796051025 - }, - "confidence": 0.8053339719772339, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 7472, - "roi_type": "person", - "w": 42, - "x": 619, - "y": 184 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8663100600242615, - "x_min": 0.810594379901886, - "y_max": 0.5942341089248657, - "y_min": 0.42083391547203064 - }, - "confidence": 0.7699306607246399, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 7474, - "roi_type": "person", - "w": 43, - "x": 623, - "y": 182 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8744010329246521, - "x_min": 0.817695677280426, - "y_max": 0.5900759696960449, - "y_min": 0.41369643807411194 - }, - "confidence": 0.9554973244667053, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 7475, - "roi_type": "person", - "w": 44, - "x": 628, - "y": 179 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8855565190315247, - "x_min": 0.8264035582542419, - "y_max": 0.5860601663589478, - "y_min": 0.4029603898525238 - }, - "confidence": 0.8228950500488281, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 7477, - "roi_type": "person", - "w": 45, - "x": 635, - "y": 174 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8908534049987793, - "x_min": 0.8350781202316284, - "y_max": 0.5897727012634277, - "y_min": 0.3878403902053833 - }, - "confidence": 0.8011389970779419, - "label": "person", - "label_id": 1 - }, - "h": 87, - "region_id": 7478, - "roi_type": "person", - "w": 43, - "x": 641, - "y": 168 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9007775187492371, - "x_min": 0.8356189131736755, - "y_max": 0.5877959132194519, - "y_min": 0.39412611722946167 - }, - "confidence": 0.6489140391349792, - "label": "person", - "label_id": 1 - }, - "h": 84, - "region_id": 7479, - "roi_type": "person", - "w": 50, - "x": 642, - "y": 170 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9088490605354309, - "x_min": 0.8531065583229065, - "y_max": 0.5604838728904724, - "y_min": 0.376047819852829 - }, - "confidence": 0.6436927914619446, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 7480, - "roi_type": "person", - "w": 43, - "x": 655, - "y": 162 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.91246098279953, - "x_min": 0.8664992451667786, - "y_max": 0.5441793203353882, - "y_min": 0.36725080013275146 - }, - "confidence": 0.8806077837944031, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 7481, - "roi_type": "person", - "w": 35, - "x": 665, - "y": 159 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9204215407371521, - "x_min": 0.8713714480400085, - "y_max": 0.5294153690338135, - "y_min": 0.3520965278148651 - }, - "confidence": 0.9779548048973083, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 7482, - "roi_type": "person", - "w": 38, - "x": 669, - "y": 152 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9224029779434204, - "x_min": 0.8775302171707153, - "y_max": 0.5218915343284607, - "y_min": 0.35059165954589844 - }, - "confidence": 0.9283971786499023, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 7483, - "roi_type": "person", - "w": 34, - "x": 674, - "y": 151 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9281563758850098, - "x_min": 0.87200927734375, - "y_max": 0.5194041728973389, - "y_min": 0.3446289598941803 - }, - "confidence": 0.7565144896507263, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 7484, - "roi_type": "person", - "w": 43, - "x": 670, - "y": 149 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.937407910823822, - "x_min": 0.8853235840797424, - "y_max": 0.5107858777046204, - "y_min": 0.34274011850357056 - }, - "confidence": 0.950576663017273, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 7485, - "roi_type": "person", - "w": 40, - "x": 680, - "y": 148 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9449759125709534, - "x_min": 0.8897075057029724, - "y_max": 0.5037586688995361, - "y_min": 0.33645257353782654 - }, - "confidence": 0.909963846206665, - "label": "person", - "label_id": 1 - }, - "h": 72, - "region_id": 7486, - "roi_type": "person", - "w": 42, - "x": 683, - "y": 145 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9549130201339722, - "x_min": 0.8982007503509521, - "y_max": 0.5104894638061523, - "y_min": 0.3242742419242859 - }, - "confidence": 0.7820349931716919, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 7487, - "roi_type": "person", - "w": 44, - "x": 690, - "y": 140 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9616369009017944, - "x_min": 0.9061300754547119, - "y_max": 0.5176384449005127, - "y_min": 0.32654041051864624 - }, - "confidence": 0.7777004837989807, - "label": "person", - "label_id": 1 - }, - "h": 83, - "region_id": 7488, - "roi_type": "person", - "w": 43, - "x": 696, - "y": 141 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9738940000534058, - "x_min": 0.9141021966934204, - "y_max": 0.4915769100189209, - "y_min": 0.3181222677230835 - }, - "confidence": 0.7904218435287476, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 7489, - "roi_type": "person", - "w": 46, - "x": 702, - "y": 137 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.975996196269989, - "x_min": 0.9256718754768372, - "y_max": 0.4855739176273346, - "y_min": 0.30408164858818054 - }, - "confidence": 0.7352949976921082, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 7490, - "roi_type": "person", - "w": 39, - "x": 711, - "y": 131 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9818256497383118, - "x_min": 0.928584635257721, - "y_max": 0.47780394554138184, - "y_min": 0.2946469187736511 - }, - "confidence": 0.8346178531646729, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 7491, - "roi_type": "person", - "w": 41, - "x": 713, - "y": 127 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9829865097999573, - "x_min": 0.9321264624595642, - "y_max": 0.46189287304878235, - "y_min": 0.2909712493419647 - }, - "confidence": 0.9709599018096924, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 7492, - "roi_type": "person", - "w": 39, - "x": 716, - "y": 126 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9856051206588745, - "x_min": 0.9314626455307007, - "y_max": 0.4595508873462677, - "y_min": 0.2890259921550751 - }, - "confidence": 0.6953359246253967, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 7493, - "roi_type": "person", - "w": 42, - "x": 715, - "y": 125 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9974535703659058, - "x_min": 0.9289860725402832, - "y_max": 0.46979770064353943, - "y_min": 0.25890347361564636 - }, - "confidence": 0.5784777998924255, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 7494, - "roi_type": "person", - "w": 53, - "x": 713, - "y": 112 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9965777397155762, - "x_min": 0.948677659034729, - "y_max": 0.4469355344772339, - "y_min": 0.2675803303718567 - }, - "confidence": 0.5522598028182983, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 7495, - "roi_type": "person", - "w": 37, - "x": 729, - "y": 116 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7891656160354614, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.11904987692832947, - "y_max": 0.9856871068477631, - "y_min": 0.019983261823654175 - }, - "confidence": 0.5811690092086792, - "label": "vehicle", - "label_id": 2 - }, - "h": 417, - "region_id": 7496, - "roi_type": "vehicle", - "type": { - "confidence": 0.9973426461219788, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 677, - "x": 91, - "y": 9 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 13916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999992847442627, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3472718670964241, - "x_min": 0.12164772301912308, - "y_max": 1.0, - "y_min": 0.8393084406852722 - }, - "confidence": 0.6197941899299622, - "label": "vehicle", - "label_id": 2 - }, - "h": 69, - "region_id": 7497, - "roi_type": "vehicle", - "type": { - "confidence": 0.9978079199790955, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 173, - "x": 93, - "y": 363 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999407529830933, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35296928882598877, - "x_min": 0.12145508825778961, - "y_max": 1.0, - "y_min": 0.809481143951416 - }, - "confidence": 0.7172138094902039, - "label": "vehicle", - "label_id": 2 - }, - "h": 82, - "region_id": 7498, - "roi_type": "vehicle", - "type": { - "confidence": 0.9810752272605896, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 178, - "x": 93, - "y": 350 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9996539354324341, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35698965191841125, - "x_min": 0.12027296423912048, - "y_max": 0.9967044591903687, - "y_min": 0.783829927444458 - }, - "confidence": 0.8247243762016296, - "label": "vehicle", - "label_id": 2 - }, - "h": 92, - "region_id": 7499, - "roi_type": "vehicle", - "type": { - "confidence": 0.7544021010398865, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 182, - "x": 92, - "y": 339 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.999993085861206, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35937564820051193, - "x_min": 0.1130119189620018, - "y_max": 0.9963881969451904, - "y_min": 0.7641627788543701 - }, - "confidence": 0.8237555027008057, - "label": "vehicle", - "label_id": 2 - }, - "h": 100, - "region_id": 7500, - "roi_type": "vehicle", - "type": { - "confidence": 0.9930738210678101, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 189, - "x": 87, - "y": 330 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9995425939559937, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3695478141307831, - "x_min": 0.11453911662101746, - "y_max": 1.0, - "y_min": 0.7280340790748596 - }, - "confidence": 0.7173946499824524, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 7501, - "roi_type": "vehicle", - "type": { - "confidence": 0.50337153673172, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 196, - "x": 88, - "y": 315 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9991163611412048, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36808082461357117, - "x_min": 0.10083702206611633, - "y_max": 0.9959658980369568, - "y_min": 0.7031351923942566 - }, - "confidence": 0.8457762002944946, - "label": "vehicle", - "label_id": 2 - }, - "h": 127, - "region_id": 7502, - "roi_type": "vehicle", - "type": { - "confidence": 0.8348413705825806, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 205, - "x": 77, - "y": 304 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9991899132728577, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.37700890004634857, - "x_min": 0.10729126632213593, - "y_max": 0.9994959831237793, - "y_min": 0.6779965162277222 - }, - "confidence": 0.9278457760810852, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "region_id": 7503, - "roi_type": "vehicle", - "type": { - "confidence": 0.9957727789878845, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 207, - "x": 82, - "y": 293 - }, - { - "color": { - "confidence": 0.7643881440162659, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.12105026841163635, - "y_max": 0.9884764552116394, - "y_min": 0.031229078769683838 - }, - "confidence": 0.6490932106971741, - "label": "vehicle", - "label_id": 2 - }, - "h": 414, - "region_id": 7504, - "roi_type": "vehicle", - "type": { - "confidence": 0.9641008973121643, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 675, - "x": 93, - "y": 13 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9966446161270142, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.37933249771595, - "x_min": 0.10664261877536774, - "y_max": 1.0, - "y_min": 0.6494535207748413 - }, - "confidence": 0.9569631814956665, - "label": "vehicle", - "label_id": 2 - }, - "h": 151, - "region_id": 7505, - "roi_type": "vehicle", - "type": { - "confidence": 0.9936966300010681, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 209, - "x": 82, - "y": 281 - }, - { - "color": { - "confidence": 0.5622632503509521, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.12350031733512878, - "y_max": 0.9561575353145599, - "y_min": 0.036140888929367065 - }, - "confidence": 0.6475626826286316, - "label": "vehicle", - "label_id": 2 - }, - "h": 397, - "region_id": 7506, - "roi_type": "vehicle", - "type": { - "confidence": 0.9848967790603638, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 673, - "x": 95, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9998095631599426, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.37901879847049713, - "x_min": 0.10554523766040802, - "y_max": 1.0, - "y_min": 0.6312699913978577 - }, - "confidence": 0.9906972646713257, - "label": "vehicle", - "label_id": 2 - }, - "h": 159, - "region_id": 7507, - "roi_type": "vehicle", - "type": { - "confidence": 0.9978911280632019, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 210, - "x": 81, - "y": 273 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999986886978149, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3792016804218292, - "x_min": 0.11973920464515686, - "y_max": 0.9997225999832153, - "y_min": 0.6097801923751831 - }, - "confidence": 0.9947446584701538, - "label": "vehicle", - "label_id": 2 - }, - "h": 168, - "region_id": 7508, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998151659965515, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 199, - "x": 92, - "y": 263 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999973773956299, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3760889172554016, - "x_min": 0.11782974004745483, - "y_max": 0.9969019889831543, - "y_min": 0.5848079919815063 - }, - "confidence": 0.9949920773506165, - "label": "vehicle", - "label_id": 2 - }, - "h": 178, - "region_id": 7509, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999407529830933, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 198, - "x": 90, - "y": 253 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999994039535522, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3769965320825577, - "x_min": 0.11793924868106842, - "y_max": 0.9975459575653076, - "y_min": 0.5624508857727051 - }, - "confidence": 0.9885396361351013, - "label": "vehicle", - "label_id": 2 - }, - "h": 188, - "region_id": 7510, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999685287475586, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 199, - "x": 91, - "y": 243 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999995231628418, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.37293992936611176, - "x_min": 0.11036746203899384, - "y_max": 1.0, - "y_min": 0.5396616458892822 - }, - "confidence": 0.9783477783203125, - "label": "vehicle", - "label_id": 2 - }, - "h": 199, - "region_id": 7511, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998794794082642, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 202, - "x": 85, - "y": 233 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999992847442627, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36592480540275574, - "x_min": 0.13214635848999023, - "y_max": 1.0, - "y_min": 0.5241050720214844 - }, - "confidence": 0.9772934317588806, - "label": "vehicle", - "label_id": 2 - }, - "h": 206, - "region_id": 7512, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998465776443481, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 180, - "x": 101, - "y": 226 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999992847442627, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3634260296821594, - "x_min": 0.13490857183933258, - "y_max": 1.0, - "y_min": 0.5041921138763428 - }, - "confidence": 0.9919345378875732, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "region_id": 7513, - "roi_type": "vehicle", - "type": { - "confidence": 0.9955381751060486, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 176, - "x": 104, - "y": 218 - }, - { - "color": { - "confidence": 0.5667799711227417, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.960456371307373, - "x_min": 0.14331555366516113, - "y_max": 0.8030669689178467, - "y_min": 0.04740440845489502 - }, - "confidence": 0.6498066186904907, - "label": "vehicle", - "label_id": 2 - }, - "h": 326, - "region_id": 7514, - "roi_type": "vehicle", - "type": { - "confidence": 0.9822282195091248, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 628, - "x": 110, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999997615814209, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3554348349571228, - "x_min": 0.14201128482818604, - "y_max": 0.9914812445640564, - "y_min": 0.49649685621261597 - }, - "confidence": 0.9959776997566223, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "region_id": 7515, - "roi_type": "vehicle", - "type": { - "confidence": 0.9852773547172546, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 164, - "x": 109, - "y": 214 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35458171367645264, - "x_min": 0.14792513847351074, - "y_max": 0.9985901713371277, - "y_min": 0.47491592168807983 - }, - "confidence": 0.9977288842201233, - "label": "vehicle", - "label_id": 2 - }, - "h": 226, - "region_id": 7516, - "roi_type": "vehicle", - "type": { - "confidence": 0.9812224507331848, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 159, - "x": 114, - "y": 205 - }, - { - "color": { - "confidence": 0.6801050901412964, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9464908838272095, - "x_min": 0.37183070182800293, - "y_max": 0.8923693895339966, - "y_min": 0.04037749767303467 - }, - "confidence": 0.5506706833839417, - "label": "vehicle", - "label_id": 2 - }, - "h": 368, - "region_id": 7517, - "roi_type": "vehicle", - "type": { - "confidence": 0.9994076490402222, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 441, - "x": 286, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999994039535522, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35628217458724976, - "x_min": 0.1539267748594284, - "y_max": 0.9833188056945801, - "y_min": 0.4503910541534424 - }, - "confidence": 0.994249701499939, - "label": "vehicle", - "label_id": 2 - }, - "h": 230, - "region_id": 7518, - "roi_type": "vehicle", - "type": { - "confidence": 0.9980984330177307, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 155, - "x": 118, - "y": 195 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999985694885254, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3493105173110962, - "x_min": 0.15961898863315582, - "y_max": 0.9475720822811127, - "y_min": 0.4319262206554413 - }, - "confidence": 0.9976761937141418, - "label": "vehicle", - "label_id": 2 - }, - "h": 223, - "region_id": 7519, - "roi_type": "vehicle", - "type": { - "confidence": 0.9835509657859802, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 146, - "x": 123, - "y": 187 - }, - { - "color": { - "confidence": 0.614988386631012, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9634890258312225, - "x_min": 0.3556390702724457, - "y_max": 0.7470780611038208, - "y_min": 0.06608313322067261 - }, - "confidence": 0.7034559845924377, - "label": "vehicle", - "label_id": 2 - }, - "h": 294, - "region_id": 7520, - "roi_type": "vehicle", - "type": { - "confidence": 0.998102605342865, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 467, - "x": 273, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999997615814209, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3447081446647644, - "x_min": 0.16244013607501984, - "y_max": 0.9356728792190552, - "y_min": 0.42220282554626465 - }, - "confidence": 0.997654139995575, - "label": "vehicle", - "label_id": 2 - }, - "h": 222, - "region_id": 7521, - "roi_type": "vehicle", - "type": { - "confidence": 0.9667874574661255, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 140, - "x": 125, - "y": 182 - }, - { - "color": { - "confidence": 0.5594086050987244, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9825330972671509, - "x_min": 0.34150373935699463, - "y_max": 0.9223797023296356, - "y_min": 0.048903077840805054 - }, - "confidence": 0.5919698476791382, - "label": "vehicle", - "label_id": 2 - }, - "h": 377, - "region_id": 7522, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998914003372192, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 492, - "x": 262, - "y": 21 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.999996542930603, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3389114439487457, - "x_min": 0.16517701745033264, - "y_max": 0.9076908528804779, - "y_min": 0.4019246995449066 - }, - "confidence": 0.9994926452636719, - "label": "vehicle", - "label_id": 2 - }, - "h": 218, - "region_id": 7523, - "roi_type": "vehicle", - "type": { - "confidence": 0.547698438167572, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 133, - "x": 127, - "y": 174 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999867677688599, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3360127806663513, - "x_min": 0.1654418557882309, - "y_max": 0.8818584084510803, - "y_min": 0.3884504437446594 - }, - "confidence": 0.9987764954566956, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "region_id": 7524, - "roi_type": "vehicle", - "type": { - "confidence": 0.885420560836792, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 131, - "x": 127, - "y": 168 - }, - { - "color": { - "confidence": 0.42734625935554504, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9590835273265839, - "x_min": 0.31477364897727966, - "y_max": 0.8576100170612335, - "y_min": 0.07268145680427551 - }, - "confidence": 0.5272276401519775, - "label": "vehicle", - "label_id": 2 - }, - "h": 339, - "region_id": 7525, - "roi_type": "vehicle", - "type": { - "confidence": 0.999447762966156, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 495, - "x": 242, - "y": 31 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999828338623047, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.33232998847961426, - "x_min": 0.16263365745544434, - "y_max": 0.8597554564476013, - "y_min": 0.3726103901863098 - }, - "confidence": 0.9985213875770569, - "label": "vehicle", - "label_id": 2 - }, - "h": 210, - "region_id": 7526, - "roi_type": "vehicle", - "type": { - "confidence": 0.9828891754150391, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 130, - "x": 125, - "y": 161 - }, - { - "color": { - "confidence": 0.7075168490409851, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9746560454368591, - "x_min": 0.3364577889442444, - "y_max": 0.9104736745357513, - "y_min": 0.05242249369621277 - }, - "confidence": 0.5714530348777771, - "label": "vehicle", - "label_id": 2 - }, - "h": 371, - "region_id": 7527, - "roi_type": "vehicle", - "type": { - "confidence": 0.9997761845588684, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 490, - "x": 258, - "y": 23 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999812841415405, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.33004996180534363, - "x_min": 0.16184934973716736, - "y_max": 0.831344723701477, - "y_min": 0.35449519753456116 - }, - "confidence": 0.9997923970222473, - "label": "vehicle", - "label_id": 2 - }, - "h": 206, - "region_id": 7528, - "roi_type": "vehicle", - "type": { - "confidence": 0.9883471131324768, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 129, - "x": 124, - "y": 153 - }, - { - "color": { - "confidence": 0.5001221895217896, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9590028822422028, - "x_min": 0.3254684507846832, - "y_max": 0.8569502830505371, - "y_min": 0.06740456819534302 - }, - "confidence": 0.7004438042640686, - "label": "vehicle", - "label_id": 2 - }, - "h": 341, - "region_id": 7529, - "roi_type": "vehicle", - "type": { - "confidence": 0.9997856020927429, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 487, - "x": 250, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3289366066455841, - "x_min": 0.1574317216873169, - "y_max": 0.8062315583229065, - "y_min": 0.34386783838272095 - }, - "confidence": 0.9998531341552734, - "label": "vehicle", - "label_id": 2 - }, - "h": 200, - "region_id": 7530, - "roi_type": "vehicle", - "type": { - "confidence": 0.9963167905807495, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 132, - "x": 121, - "y": 149 - }, - { - "color": { - "confidence": 0.40223732590675354, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.964382529258728, - "x_min": 0.32466232776641846, - "y_max": 0.8281485438346863, - "y_min": 0.05045187473297119 - }, - "confidence": 0.7299045920372009, - "label": "vehicle", - "label_id": 2 - }, - "h": 336, - "region_id": 7531, - "roi_type": "vehicle", - "type": { - "confidence": 0.9992221593856812, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 491, - "x": 249, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999998807907104, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.32749849557876587, - "x_min": 0.15210948884487152, - "y_max": 0.7838110327720642, - "y_min": 0.3270363211631775 - }, - "confidence": 0.9998413324356079, - "label": "vehicle", - "label_id": 2 - }, - "h": 197, - "region_id": 7532, - "roi_type": "vehicle", - "type": { - "confidence": 0.9661583304405212, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 135, - "x": 117, - "y": 141 - }, - { - "color": { - "confidence": 0.4082354009151459, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9622262120246887, - "x_min": 0.3427131772041321, - "y_max": 0.87251016497612, - "y_min": 0.04009708762168884 - }, - "confidence": 0.5857366919517517, - "label": "vehicle", - "label_id": 2 - }, - "h": 360, - "region_id": 7533, - "roi_type": "vehicle", - "type": { - "confidence": 0.9991716146469116, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 476, - "x": 263, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.999996542930603, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3233610689640045, - "x_min": 0.14286422729492188, - "y_max": 0.7728333473205566, - "y_min": 0.3200983703136444 - }, - "confidence": 0.9999895095825195, - "label": "vehicle", - "label_id": 2 - }, - "h": 196, - "region_id": 7534, - "roi_type": "vehicle", - "type": { - "confidence": 0.9968462586402893, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 139, - "x": 110, - "y": 138 - }, - { - "color": { - "confidence": 0.32906028628349304, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9750470519065857, - "x_min": 0.29748600721359253, - "y_max": 0.878402590751648, - "y_min": 0.02611905336380005 - }, - "confidence": 0.6027935147285461, - "label": "vehicle", - "label_id": 2 - }, - "h": 368, - "region_id": 7535, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998162388801575, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 520, - "x": 228, - "y": 11 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999997615814209, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3201468884944916, - "x_min": 0.13641870021820068, - "y_max": 0.7574479579925537, - "y_min": 0.309865802526474 - }, - "confidence": 0.9999890327453613, - "label": "vehicle", - "label_id": 2 - }, - "h": 193, - "region_id": 7536, - "roi_type": "vehicle", - "type": { - "confidence": 0.9931427240371704, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 141, - "x": 105, - "y": 134 - }, - { - "color": { - "confidence": 0.5577108860015869, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.967246949672699, - "x_min": 0.2861178517341614, - "y_max": 0.8358006775379181, - "y_min": 0.03851500153541565 - }, - "confidence": 0.7227263450622559, - "label": "vehicle", - "label_id": 2 - }, - "h": 344, - "region_id": 7537, - "roi_type": "vehicle", - "type": { - "confidence": 0.999649167060852, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 523, - "x": 220, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.31699711084365845, - "x_min": 0.13015078008174896, - "y_max": 0.7375568151473999, - "y_min": 0.29937541484832764 - }, - "confidence": 0.9999899864196777, - "label": "vehicle", - "label_id": 2 - }, - "h": 189, - "region_id": 7538, - "roi_type": "vehicle", - "type": { - "confidence": 0.9005993008613586, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 143, - "x": 100, - "y": 129 - }, - { - "color": { - "confidence": 0.4868549406528473, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9515461325645447, - "x_min": 0.33267635107040405, - "y_max": 0.8539553582668304, - "y_min": 0.03352043032646179 - }, - "confidence": 0.8081793785095215, - "label": "vehicle", - "label_id": 2 - }, - "h": 354, - "region_id": 7539, - "roi_type": "vehicle", - "type": { - "confidence": 0.9985513091087341, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 475, - "x": 255, - "y": 14 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.313996784389019, - "x_min": 0.1178915724158287, - "y_max": 0.721222996711731, - "y_min": 0.2869602143764496 - }, - "confidence": 0.9999879598617554, - "label": "vehicle", - "label_id": 2 - }, - "h": 188, - "region_id": 7540, - "roi_type": "vehicle", - "type": { - "confidence": 0.4962369203567505, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 151, - "x": 91, - "y": 124 - }, - { - "color": { - "confidence": 0.5879678130149841, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9608641266822815, - "x_min": 0.32193297147750854, - "y_max": 0.872944712638855, - "y_min": 0.03886592388153076 - }, - "confidence": 0.6384647488594055, - "label": "vehicle", - "label_id": 2 - }, - "h": 360, - "region_id": 7541, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998008608818054, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 491, - "x": 247, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.31122130155563354, - "x_min": 0.10584880411624908, - "y_max": 0.7095153331756592, - "y_min": 0.28365960717201233 - }, - "confidence": 0.9999860525131226, - "label": "vehicle", - "label_id": 2 - }, - "h": 184, - "region_id": 7542, - "roi_type": "vehicle", - "type": { - "confidence": 0.7103947401046753, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 158, - "x": 81, - "y": 123 - }, - { - "color": { - "confidence": 0.6019455790519714, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9637041389942169, - "x_min": 0.32208338379859924, - "y_max": 0.8715708255767822, - "y_min": 0.04041773080825806 - }, - "confidence": 0.649631142616272, - "label": "vehicle", - "label_id": 2 - }, - "h": 359, - "region_id": 7543, - "roi_type": "vehicle", - "type": { - "confidence": 0.9997046589851379, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 493, - "x": 247, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.30708828568458557, - "x_min": 0.08848142623901367, - "y_max": 0.6941937208175659, - "y_min": 0.27684852480888367 - }, - "confidence": 0.9999517202377319, - "label": "vehicle", - "label_id": 2 - }, - "h": 180, - "region_id": 7544, - "roi_type": "vehicle", - "type": { - "confidence": 0.5102647542953491, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 168, - "x": 68, - "y": 120 - }, - { - "color": { - "confidence": 0.6667999625205994, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9554692804813385, - "x_min": 0.3402766287326813, - "y_max": 0.8379943072795868, - "y_min": 0.04827651381492615 - }, - "confidence": 0.7163934707641602, - "label": "vehicle", - "label_id": 2 - }, - "h": 341, - "region_id": 7545, - "roi_type": "vehicle", - "type": { - "confidence": 0.9969905614852905, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 472, - "x": 261, - "y": 21 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3021143078804016, - "x_min": 0.08180795609951019, - "y_max": 0.6738347411155701, - "y_min": 0.2771807909011841 - }, - "confidence": 0.9999845027923584, - "label": "vehicle", - "label_id": 2 - }, - "h": 171, - "region_id": 7546, - "roi_type": "vehicle", - "type": { - "confidence": 0.8760337233543396, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 169, - "x": 63, - "y": 120 - }, - { - "color": { - "confidence": 0.7902370691299438, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9660838842391968, - "x_min": 0.33971118927001953, - "y_max": 0.8525603115558624, - "y_min": 0.0668802559375763 - }, - "confidence": 0.5413897633552551, - "label": "vehicle", - "label_id": 2 - }, - "h": 339, - "region_id": 7547, - "roi_type": "vehicle", - "type": { - "confidence": 0.9997109770774841, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 481, - "x": 261, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2942667081952095, - "x_min": 0.07385558634996414, - "y_max": 0.656566858291626, - "y_min": 0.27267447113990784 - }, - "confidence": 0.9999916553497314, - "label": "vehicle", - "label_id": 2 - }, - "h": 166, - "region_id": 7548, - "roi_type": "vehicle", - "type": { - "confidence": 0.9852901697158813, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 169, - "x": 57, - "y": 118 - }, - { - "color": { - "confidence": 0.590167760848999, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9926852583885193, - "x_min": 0.3049655556678772, - "y_max": 0.8486753702163696, - "y_min": 0.05000650882720947 - }, - "confidence": 0.5591980814933777, - "label": "vehicle", - "label_id": 2 - }, - "h": 345, - "region_id": 7549, - "roi_type": "vehicle", - "type": { - "confidence": 0.9996962547302246, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 528, - "x": 234, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.28687456995248795, - "x_min": 0.06621802598237991, - "y_max": 0.6433695554733276, - "y_min": 0.2654878795146942 - }, - "confidence": 0.9999983310699463, - "label": "vehicle", - "label_id": 2 - }, - "h": 163, - "region_id": 7550, - "roi_type": "vehicle", - "type": { - "confidence": 0.9969983100891113, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 169, - "x": 51, - "y": 115 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.28295157104730606, - "x_min": 0.055335767567157745, - "y_max": 0.6373208165168762, - "y_min": 0.2616565227508545 - }, - "confidence": 0.9999963045120239, - "label": "vehicle", - "label_id": 2 - }, - "h": 162, - "region_id": 7551, - "roi_type": "vehicle", - "type": { - "confidence": 0.9995378255844116, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 175, - "x": 42, - "y": 113 - }, - { - "color": { - "confidence": 0.7691952586174011, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.95826455950737, - "x_min": 0.3554447591304779, - "y_max": 0.7013552486896515, - "y_min": 0.061350494623184204 - }, - "confidence": 0.6528945565223694, - "label": "vehicle", - "label_id": 2 - }, - "h": 276, - "region_id": 7552, - "roi_type": "vehicle", - "type": { - "confidence": 0.998582124710083, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 463, - "x": 273, - "y": 27 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.27854787558317184, - "x_min": 0.04411589354276657, - "y_max": 0.62773197889328, - "y_min": 0.2605406641960144 - }, - "confidence": 0.999983549118042, - "label": "vehicle", - "label_id": 2 - }, - "h": 159, - "region_id": 7553, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999783039093018, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 180, - "x": 34, - "y": 113 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.27031123638153076, - "x_min": 0.03065599501132965, - "y_max": 0.6122254133224487, - "y_min": 0.2575317919254303 - }, - "confidence": 0.9999444484710693, - "label": "vehicle", - "label_id": 2 - }, - "h": 153, - "region_id": 7554, - "roi_type": "vehicle", - "type": { - "confidence": 0.99994957447052, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 184, - "x": 24, - "y": 111 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2618173286318779, - "x_min": 0.01927035301923752, - "y_max": 0.6008049249649048, - "y_min": 0.2527608275413513 - }, - "confidence": 0.9999783039093018, - "label": "vehicle", - "label_id": 2 - }, - "h": 150, - "region_id": 7555, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999005794525146, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 186, - "x": 15, - "y": 109 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2521120309829712, - "x_min": 0.006787553429603577, - "y_max": 0.5942617058753967, - "y_min": 0.25123631954193115 - }, - "confidence": 0.999976396560669, - "label": "vehicle", - "label_id": 2 - }, - "h": 148, - "region_id": 7556, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999986886978149, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 188, - "x": 5, - "y": 109 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2455773949623108, - "x_min": 0.0038528144359588623, - "y_max": 0.5852652192115784, - "y_min": 0.25117599964141846 - }, - "confidence": 0.999962568283081, - "label": "vehicle", - "label_id": 2 - }, - "h": 144, - "region_id": 7557, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999997615814209, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 186, - "x": 3, - "y": 109 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.23418442159891129, - "x_min": 0.00190020352602005, - "y_max": 0.5771202892065048, - "y_min": 0.24817226827144623 - }, - "confidence": 0.9999908208847046, - "label": "vehicle", - "label_id": 2 - }, - "h": 142, - "region_id": 7558, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999977350234985, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 178, - "x": 1, - "y": 107 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.22408055514097214, - "x_min": 0.000627569854259491, - "y_max": 0.5654963403940201, - "y_min": 0.2458530217409134 - }, - "confidence": 0.9999959468841553, - "label": "vehicle", - "label_id": 2 - }, - "h": 138, - "region_id": 7559, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999964237213135, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 172, - "x": 0, - "y": 106 - }, - { - "color": { - "confidence": 0.5029367804527283, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9729532599449158, - "x_min": 0.3975161910057068, - "y_max": 0.7704417705535889, - "y_min": 0.06877964735031128 - }, - "confidence": 0.5025386214256287, - "label": "vehicle", - "label_id": 2 - }, - "h": 303, - "region_id": 7560, - "roi_type": "vehicle", - "type": { - "confidence": 0.9997140765190125, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 442, - "x": 305, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.21542106568813324, - "x_min": 0.0, - "y_max": 0.5575774908065796, - "y_min": 0.24282824993133545 - }, - "confidence": 0.9999918937683105, - "label": "vehicle", - "label_id": 2 - }, - "h": 136, - "region_id": 7561, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999957084655762, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 165, - "x": 0, - "y": 105 - }, - { - "color": { - "confidence": 0.6172573566436768, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9764736294746399, - "x_min": 0.3866834044456482, - "y_max": 0.8177641928195953, - "y_min": 0.04835072159767151 - }, - "confidence": 0.5299532413482666, - "label": "vehicle", - "label_id": 2 - }, - "h": 332, - "region_id": 7562, - "roi_type": "vehicle", - "type": { - "confidence": 0.9991831183433533, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 453, - "x": 297, - "y": 21 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.20652518421411514, - "x_min": 0.0, - "y_max": 0.5523459762334824, - "y_min": 0.2393653839826584 - }, - "confidence": 0.9999760389328003, - "label": "vehicle", - "label_id": 2 - }, - "h": 135, - "region_id": 7563, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998032450675964, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 159, - "x": 0, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.19814243912696838, - "x_min": 9.648501873016357e-05, - "y_max": 0.5438299030065536, - "y_min": 0.23729972541332245 - }, - "confidence": 0.99991774559021, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 7564, - "roi_type": "vehicle", - "type": { - "confidence": 0.9986026883125305, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 152, - "x": 0, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.18656962364912033, - "x_min": 0.00026082247495651245, - "y_max": 0.540632963180542, - "y_min": 0.22892174124717712 - }, - "confidence": 0.999891996383667, - "label": "vehicle", - "label_id": 2 - }, - "h": 135, - "region_id": 7565, - "roi_type": "vehicle", - "type": { - "confidence": 0.9873902797698975, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 143, - "x": 0, - "y": 99 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.17477919906377792, - "x_min": 0.001994602382183075, - "y_max": 0.5303716063499451, - "y_min": 0.22543710470199585 - }, - "confidence": 0.9990342855453491, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 7566, - "roi_type": "vehicle", - "type": { - "confidence": 0.9910529255867004, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 133, - "x": 2, - "y": 97 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.16638848185539246, - "x_min": 0.0, - "y_max": 0.5288660079240799, - "y_min": 0.22173668444156647 - }, - "confidence": 0.9978117346763611, - "label": "vehicle", - "label_id": 2 - }, - "h": 133, - "region_id": 7567, - "roi_type": "vehicle", - "type": { - "confidence": 0.9547353982925415, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 128, - "x": 0, - "y": 96 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.15866544842720032, - "x_min": 0.0, - "y_max": 0.5260069519281387, - "y_min": 0.22341085970401764 - }, - "confidence": 0.9969075322151184, - "label": "vehicle", - "label_id": 2 - }, - "h": 131, - "region_id": 7568, - "roi_type": "vehicle", - "type": { - "confidence": 0.8816348910331726, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 122, - "x": 0, - "y": 97 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999998807907104, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.14424734562635422, - "x_min": 0.0004708394408226013, - "y_max": 0.5235311985015869, - "y_min": 0.22360435128211975 - }, - "confidence": 0.9907389879226685, - "label": "vehicle", - "label_id": 2 - }, - "h": 130, - "region_id": 7569, - "roi_type": "vehicle", - "type": { - "confidence": 0.9703205227851868, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 110, - "x": 0, - "y": 97 - }, - { - "color": { - "confidence": 0.8621606230735779, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.11542871594429016, - "y_max": 0.9303610026836395, - "y_min": 0.03652903437614441 - }, - "confidence": 0.5644902586936951, - "label": "vehicle", - "label_id": 2 - }, - "h": 386, - "region_id": 7570, - "roi_type": "vehicle", - "type": { - "confidence": 0.9965773224830627, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 679, - "x": 89, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999995231628418, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.1311522275209427, - "x_min": 0.0012656599283218384, - "y_max": 0.5229739546775818, - "y_min": 0.2319927215576172 - }, - "confidence": 0.8800601363182068, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 7571, - "roi_type": "vehicle", - "type": { - "confidence": 0.627292275428772, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 100, - "x": 1, - "y": 100 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999997615814209, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.12498541176319122, - "x_min": 0.0, - "y_max": 0.5163314342498779, - "y_min": 0.24239161610603333 - }, - "confidence": 0.7448732256889343, - "label": "vehicle", - "label_id": 2 - }, - "h": 118, - "region_id": 7572, - "roi_type": "vehicle", - "type": { - "confidence": 0.8046652674674988, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 96, - "x": 0, - "y": 105 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999982118606567, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.1116863377392292, - "x_min": 0.0006904192268848419, - "y_max": 0.5155525207519531, - "y_min": 0.24023357033729553 - }, - "confidence": 0.8874056935310364, - "label": "vehicle", - "label_id": 2 - }, - "h": 119, - "region_id": 7573, - "roi_type": "vehicle", - "type": { - "confidence": 0.9438390135765076, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 85, - "x": 1, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9998836517333984, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.09923026710748672, - "x_min": 0.001333586871623993, - "y_max": 0.5189979076385498, - "y_min": 0.23733755946159363 - }, - "confidence": 0.6848376989364624, - "label": "vehicle", - "label_id": 2 - }, - "h": 122, - "region_id": 7574, - "roi_type": "vehicle", - "type": { - "confidence": 0.9106685519218445, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 75, - "x": 1, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9994813799858093, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.08814660087227821, - "x_min": 0.0, - "y_max": 0.5184166878461838, - "y_min": 0.23750726878643036 - }, - "confidence": 0.547851026058197, - "label": "vehicle", - "label_id": 2 - }, - "h": 121, - "region_id": 7575, - "roi_type": "vehicle", - "type": { - "confidence": 0.8611072301864624, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 68, - "x": 0, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9998313188552856, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.07822689414024353, - "x_min": 0.0, - "y_max": 0.5102934390306473, - "y_min": 0.23988105356693268 - }, - "confidence": 0.7760471105575562, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 7576, - "roi_type": "vehicle", - "type": { - "confidence": 0.9552167057991028, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 60, - "x": 0, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9996935129165649, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.06671496108174324, - "x_min": 0.0004887916147708893, - "y_max": 0.5063621997833252, - "y_min": 0.24073129892349243 - }, - "confidence": 0.721200168132782, - "label": "vehicle", - "label_id": 2 - }, - "h": 115, - "region_id": 7577, - "roi_type": "vehicle", - "type": { - "confidence": 0.8604604005813599, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 51, - "x": 0, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.999586284160614, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.058564310893416405, - "x_min": 0.0012591909617185593, - "y_max": 0.49973881244659424, - "y_min": 0.2501286268234253 - }, - "confidence": 0.7428306341171265, - "label": "vehicle", - "label_id": 2 - }, - "h": 108, - "region_id": 7578, - "roi_type": "vehicle", - "type": { - "confidence": 0.6634000539779663, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 44, - "x": 1, - "y": 108 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9998461008071899, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.04703952744603157, - "x_min": 0.0021373629570007324, - "y_max": 0.491912305355072, - "y_min": 0.27300935983657837 - }, - "confidence": 0.5740195512771606, - "label": "vehicle", - "label_id": 2 - }, - "h": 95, - "region_id": 7579, - "roi_type": "vehicle", - "type": { - "confidence": 0.7999000549316406, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 34, - "x": 2, - "y": 118 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999052286148071, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.03855092264711857, - "x_min": 0.0, - "y_max": 0.48962903022766113, - "y_min": 0.2736285924911499 - }, - "confidence": 0.5253973007202148, - "label": "vehicle", - "label_id": 2 - }, - "h": 93, - "region_id": 7580, - "roi_type": "vehicle", - "type": { - "confidence": 0.5418111681938171, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 30, - "x": 0, - "y": 118 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.754129946231842, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.934235006570816, - "x_min": 0.04731431603431702, - "y_max": 0.9905672669410706, - "y_min": 0.005245864391326904 - }, - "confidence": 0.5478575229644775, - "label": "vehicle", - "label_id": 2 - }, - "h": 426, - "region_id": 7587, - "roi_type": "vehicle", - "type": { - "confidence": 0.9800358414649963, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 681, - "x": 36, - "y": 2 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8263446688652039, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9340743124485016, - "x_min": 0.05626228451728821, - "y_max": 0.9993162155151367, - "y_min": 0.0 - }, - "confidence": 0.5252728462219238, - "label": "vehicle", - "label_id": 2 - }, - "h": 432, - "region_id": 7588, - "roi_type": "vehicle", - "type": { - "confidence": 0.983135998249054, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 674, - "x": 43, - "y": 0 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.853427529335022, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9431887567043304, - "x_min": 0.05145725607872009, - "y_max": 0.9891375601291656, - "y_min": 0.0 - }, - "confidence": 0.5604560375213623, - "label": "vehicle", - "label_id": 2 - }, - "h": 427, - "region_id": 7589, - "roi_type": "vehicle", - "type": { - "confidence": 0.9693769216537476, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 685, - "x": 40, - "y": 0 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7200186848640442, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9341979622840881, - "x_min": 0.04894071817398071, - "y_max": 0.9517980813980103, - "y_min": 0.0 - }, - "confidence": 0.5412791967391968, - "label": "vehicle", - "label_id": 2 - }, - "h": 411, - "region_id": 7590, - "roi_type": "vehicle", - "type": { - "confidence": 0.9950309991836548, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 680, - "x": 38, - "y": 0 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.6869295835494995, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9681801199913025, - "x_min": 0.22439366579055786, - "y_max": 0.795999139547348, - "y_min": 0.07999715209007263 - }, - "confidence": 0.6512441039085388, - "label": "vehicle", - "label_id": 2 - }, - "h": 309, - "region_id": 7591, - "roi_type": "vehicle", - "type": { - "confidence": 0.9984294772148132, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 571, - "x": 172, - "y": 35 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 27333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.4468967616558075, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.1108655333518982, - "y_max": 0.9221687614917755, - "y_min": 0.024473220109939575 - }, - "confidence": 0.5428245663642883, - "label": "vehicle", - "label_id": 2 - }, - "h": 388, - "region_id": 7592, - "roi_type": "vehicle", - "type": { - "confidence": 0.9917234778404236, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 683, - "x": 85, - "y": 11 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 28166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.6823842525482178, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9668244123458862, - "x_min": 0.04019737243652344, - "y_max": 1.0, - "y_min": 0.018689513206481934 - }, - "confidence": 0.5183915495872498, - "label": "vehicle", - "label_id": 2 - }, - "h": 424, - "region_id": 7595, - "roi_type": "vehicle", - "type": { - "confidence": 0.9840757250785828, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 712, - "x": 31, - "y": 8 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 28916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.05809926800429821, - "x_min": 0.0035657789558172226, - "y_max": 0.2681969776749611, - "y_min": 0.09560371190309525 - }, - "confidence": 0.7589443922042847, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 7603, - "roi_type": "person", - "w": 42, - "x": 3, - "y": 41 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06384254433214664, - "x_min": 0.007957043126225471, - "y_max": 0.274237722158432, - "y_min": 0.1018730103969574 - }, - "confidence": 0.7985617518424988, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 7604, - "roi_type": "person", - "w": 43, - "x": 6, - "y": 44 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07437356747686863, - "x_min": 0.015382559970021248, - "y_max": 0.2672903835773468, - "y_min": 0.09030735492706299 - }, - "confidence": 0.893984317779541, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 7605, - "roi_type": "person", - "w": 45, - "x": 12, - "y": 39 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06839273869991302, - "x_min": 0.022368106991052628, - "y_max": 0.26446548104286194, - "y_min": 0.0925963819026947 - }, - "confidence": 0.946168839931488, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 7606, - "roi_type": "person", - "w": 35, - "x": 17, - "y": 40 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06265867501497269, - "x_min": 0.02845694124698639, - "y_max": 0.2631925344467163, - "y_min": 0.0876958817243576 - }, - "confidence": 0.7030326128005981, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 7607, - "roi_type": "person", - "w": 26, - "x": 22, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07015539705753326, - "x_min": 0.038974471390247345, - "y_max": 0.2708924114704132, - "y_min": 0.08729448914527893 - }, - "confidence": 0.8550823330879211, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 7608, - "roi_type": "person", - "w": 24, - "x": 30, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.08978046476840973, - "x_min": 0.04507404938340187, - "y_max": 0.26029662042856216, - "y_min": 0.08790374547243118 - }, - "confidence": 0.977257251739502, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 7609, - "roi_type": "person", - "w": 34, - "x": 35, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.10240232944488525, - "x_min": 0.050258174538612366, - "y_max": 0.26179608702659607, - "y_min": 0.08916294574737549 - }, - "confidence": 0.9634844064712524, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 7610, - "roi_type": "person", - "w": 40, - "x": 39, - "y": 39 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11237834393978119, - "x_min": 0.0557108074426651, - "y_max": 0.265661358833313, - "y_min": 0.08681026101112366 - }, - "confidence": 0.9638311266899109, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 7611, - "roi_type": "person", - "w": 44, - "x": 43, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11509420722723007, - "x_min": 0.0598953440785408, - "y_max": 0.26093965768814087, - "y_min": 0.08726376295089722 - }, - "confidence": 0.9589016437530518, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 7612, - "roi_type": "person", - "w": 42, - "x": 46, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.10801342129707336, - "x_min": 0.0689283162355423, - "y_max": 0.2573170065879822, - "y_min": 0.0888819694519043 - }, - "confidence": 0.7473644018173218, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 7613, - "roi_type": "person", - "w": 30, - "x": 53, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11594520509243011, - "x_min": 0.08451759815216064, - "y_max": 0.2598234713077545, - "y_min": 0.08372160792350769 - }, - "confidence": 0.9428697824478149, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 7614, - "roi_type": "person", - "w": 24, - "x": 65, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.14308200776576996, - "x_min": 0.08935531973838806, - "y_max": 0.25856076925992966, - "y_min": 0.08275481313467026 - }, - "confidence": 0.9797755479812622, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 7615, - "roi_type": "person", - "w": 41, - "x": 69, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15327730774879456, - "x_min": 0.09761051088571548, - "y_max": 0.25556155294179916, - "y_min": 0.08270096033811569 - }, - "confidence": 0.9193074703216553, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 7616, - "roi_type": "person", - "w": 43, - "x": 75, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15708927810192108, - "x_min": 0.09718881547451019, - "y_max": 0.2538745477795601, - "y_min": 0.08122579008340836 - }, - "confidence": 0.9810740351676941, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 7617, - "roi_type": "person", - "w": 46, - "x": 75, - "y": 35 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15849240124225616, - "x_min": 0.10766856372356415, - "y_max": 0.2546975910663605, - "y_min": 0.07851284742355347 - }, - "confidence": 0.9863011837005615, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 7618, - "roi_type": "person", - "w": 39, - "x": 83, - "y": 34 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.14903458952903748, - "x_min": 0.11753658205270767, - "y_max": 0.2580205202102661, - "y_min": 0.07362668216228485 - }, - "confidence": 0.9098013639450073, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 7619, - "roi_type": "person", - "w": 24, - "x": 90, - "y": 32 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15783970057964325, - "x_min": 0.13124407827854156, - "y_max": 0.25078579038381577, - "y_min": 0.08267303556203842 - }, - "confidence": 0.5655198097229004, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 7620, - "roi_type": "person", - "w": 20, - "x": 101, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1712721735239029, - "x_min": 0.13269366323947906, - "y_max": 0.25339871644973755, - "y_min": 0.0712251216173172 - }, - "confidence": 0.9201220273971558, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 7621, - "roi_type": "person", - "w": 30, - "x": 102, - "y": 31 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.188812255859375, - "x_min": 0.1387019157409668, - "y_max": 0.2481667771935463, - "y_min": 0.06929013878107071 - }, - "confidence": 0.972706139087677, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 7622, - "roi_type": "person", - "w": 38, - "x": 107, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19876964390277863, - "x_min": 0.14241482317447662, - "y_max": 0.24410223960876465, - "y_min": 0.06995522975921631 - }, - "confidence": 0.935201108455658, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 7623, - "roi_type": "person", - "w": 43, - "x": 109, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19850021600723267, - "x_min": 0.14565402269363403, - "y_max": 0.24200070649385452, - "y_min": 0.06734246760606766 - }, - "confidence": 0.9604580402374268, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 7624, - "roi_type": "person", - "w": 41, - "x": 112, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19670461118221283, - "x_min": 0.15936703979969025, - "y_max": 0.24713708460330963, - "y_min": 0.06951303780078888 - }, - "confidence": 0.9338945746421814, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 7625, - "roi_type": "person", - "w": 29, - "x": 122, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19646276533603668, - "x_min": 0.1669870764017105, - "y_max": 0.246548093855381, - "y_min": 0.05969572812318802 - }, - "confidence": 0.8135930299758911, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 7626, - "roi_type": "person", - "w": 23, - "x": 128, - "y": 26 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.20714330673217773, - "x_min": 0.17688614130020142, - "y_max": 0.24033692479133606, - "y_min": 0.06553769111633301 - }, - "confidence": 0.8666308522224426, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 7627, - "roi_type": "person", - "w": 23, - "x": 136, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.22876504063606262, - "x_min": 0.17733925580978394, - "y_max": 0.23425975441932678, - "y_min": 0.0654514729976654 - }, - "confidence": 0.9463271498680115, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 7628, - "roi_type": "person", - "w": 39, - "x": 136, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23787567019462585, - "x_min": 0.18617352843284607, - "y_max": 0.2328994944691658, - "y_min": 0.06733778864145279 - }, - "confidence": 0.8578006029129028, - "label": "person", - "label_id": 1 - }, - "h": 72, - "region_id": 7629, - "roi_type": "person", - "w": 40, - "x": 143, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24495282769203186, - "x_min": 0.18914848566055298, - "y_max": 0.2286892682313919, - "y_min": 0.06330259144306183 - }, - "confidence": 0.9402493834495544, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 7630, - "roi_type": "person", - "w": 43, - "x": 145, - "y": 27 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24374517798423767, - "x_min": 0.19896605610847473, - "y_max": 0.22477789968252182, - "y_min": 0.06456565111875534 - }, - "confidence": 0.9167733192443848, - "label": "person", - "label_id": 1 - }, - "h": 69, - "region_id": 7631, - "roi_type": "person", - "w": 34, - "x": 153, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23920002579689026, - "x_min": 0.2088455855846405, - "y_max": 0.2315978854894638, - "y_min": 0.050867900252342224 - }, - "confidence": 0.7405911087989807, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 7632, - "roi_type": "person", - "w": 23, - "x": 160, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24580711126327515, - "x_min": 0.21504563093185425, - "y_max": 0.22459035366773605, - "y_min": 0.04561009258031845 - }, - "confidence": 0.8077870607376099, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 7633, - "roi_type": "person", - "w": 24, - "x": 165, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.258386492729187, - "x_min": 0.22124245762825012, - "y_max": 0.22196873277425766, - "y_min": 0.04270251840353012 - }, - "confidence": 0.9389499425888062, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 7634, - "roi_type": "person", - "w": 29, - "x": 170, - "y": 18 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2686212658882141, - "x_min": 0.22306442260742188, - "y_max": 0.22240334749221802, - "y_min": 0.03721362352371216 - }, - "confidence": 0.8532395958900452, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 7635, - "roi_type": "person", - "w": 35, - "x": 171, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27878496050834656, - "x_min": 0.2256826013326645, - "y_max": 0.21868880838155746, - "y_min": 0.04378651827573776 - }, - "confidence": 0.940152108669281, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 7636, - "roi_type": "person", - "w": 41, - "x": 173, - "y": 19 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2782133221626282, - "x_min": 0.22981303930282593, - "y_max": 0.21300845593214035, - "y_min": 0.04048468917608261 - }, - "confidence": 0.8954000473022461, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 7637, - "roi_type": "person", - "w": 37, - "x": 176, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27863314747810364, - "x_min": 0.2395808845758438, - "y_max": 0.21157341450452805, - "y_min": 0.026669137179851532 - }, - "confidence": 0.5580120086669922, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 7638, - "roi_type": "person", - "w": 30, - "x": 184, - "y": 12 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2845720052719116, - "x_min": 0.25448018312454224, - "y_max": 0.21495232731103897, - "y_min": 0.026290185749530792 - }, - "confidence": 0.80083167552948, - "label": "person", - "label_id": 1 - }, - "h": 82, - "region_id": 7639, - "roi_type": "person", - "w": 23, - "x": 195, - "y": 11 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.29074627161026, - "x_min": 0.2599877119064331, - "y_max": 0.20789270102977753, - "y_min": 0.022824198007583618 - }, - "confidence": 0.8385727405548096, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 7640, - "roi_type": "person", - "w": 24, - "x": 200, - "y": 10 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.30755072832107544, - "x_min": 0.2656424045562744, - "y_max": 0.19290897250175476, - "y_min": 0.022242024540901184 - }, - "confidence": 0.977880597114563, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 7641, - "roi_type": "person", - "w": 32, - "x": 204, - "y": 10 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31079021096229553, - "x_min": 0.2677251994609833, - "y_max": 0.19722382724285126, - "y_min": 0.023035749793052673 - }, - "confidence": 0.9654287099838257, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 7642, - "roi_type": "person", - "w": 33, - "x": 206, - "y": 10 - }, - { - "color": { - "confidence": 0.7468725442886353, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.29563216120004654, - "x_min": 0.10331843048334122, - "y_max": 1.0, - "y_min": 0.8515570759773254 - }, - "confidence": 0.761517345905304, - "label": "vehicle", - "label_id": 2 - }, - "h": 64, - "region_id": 7643, - "roi_type": "vehicle", - "type": { - "confidence": 0.545889675617218, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 148, - "x": 79, - "y": 368 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31590598821640015, - "x_min": 0.27411168813705444, - "y_max": 0.18277175724506378, - "y_min": 0.019142642617225647 - }, - "confidence": 0.9806784987449646, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 7644, - "roi_type": "person", - "w": 32, - "x": 211, - "y": 8 - }, - { - "color": { - "confidence": 0.966917872428894, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.302535243332386, - "x_min": 0.08773649483919144, - "y_max": 1.0, - "y_min": 0.8262227177619934 - }, - "confidence": 0.908391535282135, - "label": "vehicle", - "label_id": 2 - }, - "h": 75, - "region_id": 7645, - "roi_type": "vehicle", - "type": { - "confidence": 0.7184173464775085, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 165, - "x": 67, - "y": 357 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3163120448589325, - "x_min": 0.27949169278144836, - "y_max": 0.18241430073976517, - "y_min": 0.00963614135980606 - }, - "confidence": 0.8560529351234436, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 7646, - "roi_type": "person", - "w": 28, - "x": 215, - "y": 4 - }, - { - "color": { - "confidence": 0.9669363498687744, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3071591779589653, - "x_min": 0.08984949439764023, - "y_max": 1.0, - "y_min": 0.7983192205429077 - }, - "confidence": 0.9688770174980164, - "label": "vehicle", - "label_id": 2 - }, - "h": 87, - "region_id": 7647, - "roi_type": "vehicle", - "type": { - "confidence": 0.8623602986335754, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 167, - "x": 69, - "y": 345 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31996291875839233, - "x_min": 0.28390347957611084, - "y_max": 0.17544172704219818, - "y_min": 0.002514094114303589 - }, - "confidence": 0.9317660927772522, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 7648, - "roi_type": "person", - "w": 28, - "x": 218, - "y": 1 - }, - { - "color": { - "confidence": 0.9985125660896301, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.31785333156585693, - "x_min": 0.09327417612075806, - "y_max": 0.9961552023887634, - "y_min": 0.7738481163978577 - }, - "confidence": 0.9980048537254333, - "label": "vehicle", - "label_id": 2 - }, - "h": 96, - "region_id": 7649, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990713596343994, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 172, - "x": 72, - "y": 334 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3244977593421936, - "x_min": 0.29137319326400757, - "y_max": 0.18117792904376984, - "y_min": 0.0 - }, - "confidence": 0.9299455285072327, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 7650, - "roi_type": "person", - "w": 25, - "x": 224, - "y": 0 - }, - { - "color": { - "confidence": 0.9868773818016052, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3211563229560852, - "x_min": 0.09341153502464294, - "y_max": 0.9977253675460815, - "y_min": 0.7558172941207886 - }, - "confidence": 0.995922327041626, - "label": "vehicle", - "label_id": 2 - }, - "h": 105, - "region_id": 7651, - "roi_type": "vehicle", - "type": { - "confidence": 0.9961318969726562, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 175, - "x": 72, - "y": 327 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33760935068130493, - "x_min": 0.2969669699668884, - "y_max": 0.1680586189031601, - "y_min": 0.0 - }, - "confidence": 0.97437584400177, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 7652, - "roi_type": "person", - "w": 31, - "x": 228, - "y": 0 - }, - { - "color": { - "confidence": 0.9531167149543762, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.32524099946022034, - "x_min": 0.09379306435585022, - "y_max": 0.9987419843673706, - "y_min": 0.728178858757019 - }, - "confidence": 0.9982354640960693, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 7653, - "roi_type": "vehicle", - "type": { - "confidence": 0.99638831615448, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 178, - "x": 72, - "y": 315 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34123092889785767, - "x_min": 0.2997239828109741, - "y_max": 0.1591828241944313, - "y_min": 0.0 - }, - "confidence": 0.9657360315322876, - "label": "person", - "label_id": 1 - }, - "h": 69, - "region_id": 7654, - "roi_type": "person", - "w": 32, - "x": 230, - "y": 0 - }, - { - "color": { - "confidence": 0.9923230409622192, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3318566754460335, - "x_min": 0.09386516362428665, - "y_max": 0.9967382550239563, - "y_min": 0.7049055695533752 - }, - "confidence": 0.996229350566864, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 7655, - "roi_type": "vehicle", - "type": { - "confidence": 0.9930793642997742, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 183, - "x": 72, - "y": 305 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3466411232948303, - "x_min": 0.3028194308280945, - "y_max": 0.1562092900276184, - "y_min": 0.0 - }, - "confidence": 0.9846485257148743, - "label": "person", - "label_id": 1 - }, - "h": 67, - "region_id": 7656, - "roi_type": "person", - "w": 34, - "x": 233, - "y": 0 - }, - { - "color": { - "confidence": 0.9815136194229126, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3395664617419243, - "x_min": 0.08993595093488693, - "y_max": 0.9996479153633118, - "y_min": 0.6784219145774841 - }, - "confidence": 0.9955138564109802, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "region_id": 7657, - "roi_type": "vehicle", - "type": { - "confidence": 0.9888794422149658, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 192, - "x": 69, - "y": 293 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34522509574890137, - "x_min": 0.30906105041503906, - "y_max": 0.15079188346862793, - "y_min": 0.0 - }, - "confidence": 0.9445015788078308, - "label": "person", - "label_id": 1 - }, - "h": 65, - "region_id": 7658, - "roi_type": "person", - "w": 28, - "x": 237, - "y": 0 - }, - { - "color": { - "confidence": 0.9439544677734375, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3419874384999275, - "x_min": 0.0941135361790657, - "y_max": 1.0, - "y_min": 0.6525993943214417 - }, - "confidence": 0.9987126588821411, - "label": "vehicle", - "label_id": 2 - }, - "h": 150, - "region_id": 7659, - "roi_type": "vehicle", - "type": { - "confidence": 0.9753090739250183, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 190, - "x": 72, - "y": 282 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3481338918209076, - "x_min": 0.3160833418369293, - "y_max": 0.14550430327653885, - "y_min": 0.0 - }, - "confidence": 0.963749885559082, - "label": "person", - "label_id": 1 - }, - "h": 63, - "region_id": 7662, - "roi_type": "person", - "w": 25, - "x": 243, - "y": 0 - }, - { - "color": { - "confidence": 0.8111639022827148, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34435374289751053, - "x_min": 0.09984970837831497, - "y_max": 0.9990871548652649, - "y_min": 0.6355069279670715 - }, - "confidence": 0.9971874356269836, - "label": "vehicle", - "label_id": 2 - }, - "h": 157, - "region_id": 7663, - "roi_type": "vehicle", - "type": { - "confidence": 0.9859831929206848, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 188, - "x": 77, - "y": 275 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3530542850494385, - "x_min": 0.3201481103897095, - "y_max": 0.14842259883880615, - "y_min": 0.0 - }, - "confidence": 0.8752254843711853, - "label": "person", - "label_id": 1 - }, - "h": 64, - "region_id": 7660, - "roi_type": "person", - "w": 25, - "x": 246, - "y": 0 - }, - { - "color": { - "confidence": 0.5280356407165527, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34952497482299805, - "x_min": 0.10708582401275635, - "y_max": 1.0, - "y_min": 0.6191877722740173 - }, - "confidence": 0.998619794845581, - "label": "vehicle", - "label_id": 2 - }, - "h": 165, - "region_id": 7661, - "roi_type": "vehicle", - "type": { - "confidence": 0.9884899258613586, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 186, - "x": 82, - "y": 267 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35819557309150696, - "x_min": 0.3240784704685211, - "y_max": 0.14493504911661148, - "y_min": 0.0 - }, - "confidence": 0.7914350032806396, - "label": "person", - "label_id": 1 - }, - "h": 63, - "region_id": 7664, - "roi_type": "person", - "w": 26, - "x": 249, - "y": 0 - }, - { - "color": { - "confidence": 0.8881661891937256, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3578673005104065, - "x_min": 0.11816421151161194, - "y_max": 0.9963030219078064, - "y_min": 0.5943846106529236 - }, - "confidence": 0.9954742789268494, - "label": "vehicle", - "label_id": 2 - }, - "h": 174, - "region_id": 7665, - "roi_type": "vehicle", - "type": { - "confidence": 0.9638090133666992, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 184, - "x": 91, - "y": 257 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36160674691200256, - "x_min": 0.3288991153240204, - "y_max": 0.14174089580774307, - "y_min": 0.0 - }, - "confidence": 0.6194042563438416, - "label": "person", - "label_id": 1 - }, - "h": 61, - "region_id": 7666, - "roi_type": "person", - "w": 25, - "x": 253, - "y": 0 - }, - { - "color": { - "confidence": 0.6927691698074341, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35685088485479355, - "x_min": 0.11790122836828232, - "y_max": 0.9961073994636536, - "y_min": 0.5718068480491638 - }, - "confidence": 0.9947429895401001, - "label": "vehicle", - "label_id": 2 - }, - "h": 183, - "region_id": 7667, - "roi_type": "vehicle", - "type": { - "confidence": 0.9615950584411621, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 184, - "x": 91, - "y": 247 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36447739601135254, - "x_min": 0.33208173513412476, - "y_max": 0.14312608540058136, - "y_min": 0.0 - }, - "confidence": 0.8804531693458557, - "label": "person", - "label_id": 1 - }, - "h": 62, - "region_id": 7668, - "roi_type": "person", - "w": 25, - "x": 255, - "y": 0 - }, - { - "color": { - "confidence": 0.6090085506439209, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36100974678993225, - "x_min": 0.10920840501785278, - "y_max": 1.0, - "y_min": 0.5514669418334961 - }, - "confidence": 0.9975082874298096, - "label": "vehicle", - "label_id": 2 - }, - "h": 194, - "region_id": 7669, - "roi_type": "vehicle", - "type": { - "confidence": 0.9945594668388367, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 193, - "x": 84, - "y": 238 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3689320683479309, - "x_min": 0.33504199981689453, - "y_max": 0.1309487745165825, - "y_min": 0.0 - }, - "confidence": 0.5245084166526794, - "label": "person", - "label_id": 1 - }, - "h": 57, - "region_id": 7670, - "roi_type": "person", - "w": 26, - "x": 257, - "y": 0 - }, - { - "color": { - "confidence": 0.8659559488296509, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36274436861276627, - "x_min": 0.11731896549463272, - "y_max": 1.0, - "y_min": 0.5336947441101074 - }, - "confidence": 0.9914770722389221, - "label": "vehicle", - "label_id": 2 - }, - "h": 201, - "region_id": 7671, - "roi_type": "vehicle", - "type": { - "confidence": 0.9782851338386536, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 188, - "x": 90, - "y": 231 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7261171936988831, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3659408688545227, - "x_min": 0.11780126392841339, - "y_max": 1.0, - "y_min": 0.518149733543396 - }, - "confidence": 0.9818969964981079, - "label": "vehicle", - "label_id": 2 - }, - "h": 208, - "region_id": 7672, - "roi_type": "vehicle", - "type": { - "confidence": 0.9929179549217224, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 191, - "x": 90, - "y": 224 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7979229688644409, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3604143261909485, - "x_min": 0.11885426938533783, - "y_max": 1.0, - "y_min": 0.5062888264656067 - }, - "confidence": 0.9770739674568176, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "region_id": 7673, - "roi_type": "vehicle", - "type": { - "confidence": 0.9997255206108093, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 186, - "x": 91, - "y": 219 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.6396380662918091, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35873663425445557, - "x_min": 0.12577953934669495, - "y_max": 1.0, - "y_min": 0.487548291683197 - }, - "confidence": 0.9604198932647705, - "label": "vehicle", - "label_id": 2 - }, - "h": 221, - "region_id": 7674, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998347759246826, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 179, - "x": 97, - "y": 211 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9329293966293335, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36819857358932495, - "x_min": 0.13242483139038086, - "y_max": 1.0, - "y_min": 0.4729745090007782 - }, - "confidence": 0.9679286479949951, - "label": "vehicle", - "label_id": 2 - }, - "h": 228, - "region_id": 7675, - "roi_type": "vehicle", - "type": { - "confidence": 0.9380549788475037, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 181, - "x": 102, - "y": 204 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9758688807487488, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.37145912647247314, - "x_min": 0.13698597252368927, - "y_max": 0.9822669923305511, - "y_min": 0.45337817072868347 - }, - "confidence": 0.9909036755561829, - "label": "vehicle", - "label_id": 2 - }, - "h": 228, - "region_id": 7676, - "roi_type": "vehicle", - "type": { - "confidence": 0.8175630569458008, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 180, - "x": 105, - "y": 196 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.99601811170578, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.360751211643219, - "x_min": 0.14602144062519073, - "y_max": 0.9427908360958099, - "y_min": 0.4422529637813568 - }, - "confidence": 0.9961796998977661, - "label": "vehicle", - "label_id": 2 - }, - "h": 216, - "region_id": 7677, - "roi_type": "vehicle", - "type": { - "confidence": 0.9925321936607361, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 165, - "x": 112, - "y": 191 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9773136973381042, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3665272891521454, - "x_min": 0.15879389643669128, - "y_max": 0.9357600212097168, - "y_min": 0.41560184955596924 - }, - "confidence": 0.9988160133361816, - "label": "vehicle", - "label_id": 2 - }, - "h": 225, - "region_id": 7678, - "roi_type": "vehicle", - "type": { - "confidence": 0.614161491394043, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 160, - "x": 122, - "y": 180 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9930024743080139, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36519184708595276, - "x_min": 0.1624055802822113, - "y_max": 0.9030640423297882, - "y_min": 0.3991294205188751 - }, - "confidence": 0.99962317943573, - "label": "vehicle", - "label_id": 2 - }, - "h": 218, - "region_id": 7680, - "roi_type": "vehicle", - "type": { - "confidence": 0.5760512351989746, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 156, - "x": 125, - "y": 172 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9986255168914795, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36517783999443054, - "x_min": 0.17351636290550232, - "y_max": 0.8792468309402466, - "y_min": 0.3837735652923584 - }, - "confidence": 0.9997884631156921, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "region_id": 7679, - "roi_type": "vehicle", - "type": { - "confidence": 0.533503532409668, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 147, - "x": 133, - "y": 166 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9977391958236694, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36106088757514954, - "x_min": 0.1790127456188202, - "y_max": 0.8557636737823486, - "y_min": 0.36366569995880127 - }, - "confidence": 0.9998449087142944, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "region_id": 7681, - "roi_type": "vehicle", - "type": { - "confidence": 0.6246165633201599, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 140, - "x": 137, - "y": 157 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9996715784072876, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36285877227783203, - "x_min": 0.18275152146816254, - "y_max": 0.8229827284812927, - "y_min": 0.34286290407180786 - }, - "confidence": 0.9999336004257202, - "label": "vehicle", - "label_id": 2 - }, - "h": 207, - "region_id": 7682, - "roi_type": "vehicle", - "type": { - "confidence": 0.7438144087791443, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 138, - "x": 140, - "y": 148 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9991983771324158, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3602021038532257, - "x_min": 0.18906906247138977, - "y_max": 0.7855886220932007, - "y_min": 0.32251763343811035 - }, - "confidence": 0.9999699592590332, - "label": "vehicle", - "label_id": 2 - }, - "h": 200, - "region_id": 7684, - "roi_type": "vehicle", - "type": { - "confidence": 0.7719494104385376, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 131, - "x": 145, - "y": 139 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9998089671134949, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3588583469390869, - "x_min": 0.1904894858598709, - "y_max": 0.766708493232727, - "y_min": 0.31205347180366516 - }, - "confidence": 0.9999749660491943, - "label": "vehicle", - "label_id": 2 - }, - "h": 196, - "region_id": 7683, - "roi_type": "vehicle", - "type": { - "confidence": 0.6637498736381531, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 129, - "x": 146, - "y": 135 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999306201934814, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.354780912399292, - "x_min": 0.19472239911556244, - "y_max": 0.7405029535293579, - "y_min": 0.29147496819496155 - }, - "confidence": 0.9999440908432007, - "label": "vehicle", - "label_id": 2 - }, - "h": 194, - "region_id": 7685, - "roi_type": "vehicle", - "type": { - "confidence": 0.8586626648902893, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 123, - "x": 150, - "y": 126 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9711026549339294, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34999334812164307, - "x_min": 0.194540336728096, - "y_max": 0.7187595367431641, - "y_min": 0.2768002152442932 - }, - "confidence": 0.9998922348022461, - "label": "vehicle", - "label_id": 2 - }, - "h": 191, - "region_id": 7686, - "roi_type": "vehicle", - "type": { - "confidence": 0.9108662605285645, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 119, - "x": 149, - "y": 120 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9928416013717651, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3457085192203522, - "x_min": 0.20007964968681335, - "y_max": 0.6881219744682312, - "y_min": 0.2653038501739502 - }, - "confidence": 0.9998040795326233, - "label": "vehicle", - "label_id": 2 - }, - "h": 183, - "region_id": 7687, - "roi_type": "vehicle", - "type": { - "confidence": 0.8837874531745911, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 112, - "x": 154, - "y": 115 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9985859394073486, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34467506408691406, - "x_min": 0.19982749223709106, - "y_max": 0.6525393724441528, - "y_min": 0.2548128664493561 - }, - "confidence": 0.9998615980148315, - "label": "vehicle", - "label_id": 2 - }, - "h": 172, - "region_id": 7688, - "roi_type": "vehicle", - "type": { - "confidence": 0.6626163721084595, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 111, - "x": 153, - "y": 110 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9502972960472107, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34181272983551025, - "x_min": 0.1947338730096817, - "y_max": 0.6376242786645889, - "y_min": 0.23916591703891754 - }, - "confidence": 0.9997871518135071, - "label": "vehicle", - "label_id": 2 - }, - "h": 172, - "region_id": 7689, - "roi_type": "vehicle", - "type": { - "confidence": 0.7591845989227295, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 113, - "x": 150, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9493867754936218, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3388643264770508, - "x_min": 0.19013750553131104, - "y_max": 0.6308777332305908, - "y_min": 0.2227199673652649 - }, - "confidence": 0.9997004270553589, - "label": "vehicle", - "label_id": 2 - }, - "h": 176, - "region_id": 7690, - "roi_type": "vehicle", - "type": { - "confidence": 0.5599343776702881, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 114, - "x": 146, - "y": 96 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9648703336715698, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3375055193901062, - "x_min": 0.18740473687648773, - "y_max": 0.5995768308639526, - "y_min": 0.20673570036888123 - }, - "confidence": 0.9998914003372192, - "label": "vehicle", - "label_id": 2 - }, - "h": 170, - "region_id": 7691, - "roi_type": "vehicle", - "type": { - "confidence": 0.6556660532951355, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 115, - "x": 144, - "y": 89 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8755231499671936, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3318176567554474, - "x_min": 0.17809423804283142, - "y_max": 0.5778812617063522, - "y_min": 0.19000546634197235 - }, - "confidence": 0.9998241066932678, - "label": "vehicle", - "label_id": 2 - }, - "h": 168, - "region_id": 7692, - "roi_type": "vehicle", - "type": { - "confidence": 0.620614767074585, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 118, - "x": 137, - "y": 82 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.5343877077102661, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3320659399032593, - "x_min": 0.1678294688463211, - "y_max": 0.5662893801927567, - "y_min": 0.17552174627780914 - }, - "confidence": 0.9969955682754517, - "label": "vehicle", - "label_id": 2 - }, - "h": 169, - "region_id": 7693, - "roi_type": "vehicle", - "type": { - "confidence": 0.5632005333900452, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 126, - "x": 129, - "y": 76 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7536901831626892, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.33100444078445435, - "x_min": 0.15877386927604675, - "y_max": 0.5364057421684265, - "y_min": 0.16238099336624146 - }, - "confidence": 0.99989914894104, - "label": "vehicle", - "label_id": 2 - }, - "h": 162, - "region_id": 7694, - "roi_type": "vehicle", - "type": { - "confidence": 0.9606968760490417, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 132, - "x": 122, - "y": 70 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7409470081329346, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.32596272230148315, - "x_min": 0.1472930908203125, - "y_max": 0.5152767300605774, - "y_min": 0.15732121467590332 - }, - "confidence": 0.9999929666519165, - "label": "vehicle", - "label_id": 2 - }, - "h": 155, - "region_id": 7695, - "roi_type": "vehicle", - "type": { - "confidence": 0.9005874991416931, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 137, - "x": 113, - "y": 68 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8630040884017944, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3235021233558655, - "x_min": 0.13618597388267517, - "y_max": 0.5010689496994019, - "y_min": 0.15680626034736633 - }, - "confidence": 0.999995231628418, - "label": "vehicle", - "label_id": 2 - }, - "h": 149, - "region_id": 7696, - "roi_type": "vehicle", - "type": { - "confidence": 0.963317334651947, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 144, - "x": 105, - "y": 68 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.5177339315414429, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.31811434030532837, - "x_min": 0.12496490776538849, - "y_max": 0.48322823643684387, - "y_min": 0.1473962366580963 - }, - "confidence": 0.9999911785125732, - "label": "vehicle", - "label_id": 2 - }, - "h": 145, - "region_id": 7697, - "roi_type": "vehicle", - "type": { - "confidence": 0.9834175705909729, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 148, - "x": 96, - "y": 64 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9002454876899719, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.31093723326921463, - "x_min": 0.10377121716737747, - "y_max": 0.46475063264369965, - "y_min": 0.14403758943080902 - }, - "confidence": 0.9999978542327881, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "region_id": 7698, - "roi_type": "vehicle", - "type": { - "confidence": 0.979969322681427, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 159, - "x": 80, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.5329621434211731, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3060434088110924, - "x_min": 0.08956294506788254, - "y_max": 0.4555552154779434, - "y_min": 0.13558460772037506 - }, - "confidence": 0.9999889135360718, - "label": "vehicle", - "label_id": 2 - }, - "h": 138, - "region_id": 7699, - "roi_type": "vehicle", - "type": { - "confidence": 0.6467808485031128, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 166, - "x": 69, - "y": 59 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8349910974502563, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.29430411010980606, - "x_min": 0.07462427765130997, - "y_max": 0.4425668269395828, - "y_min": 0.13647617399692535 - }, - "confidence": 0.9999735355377197, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 7700, - "roi_type": "vehicle", - "type": { - "confidence": 0.8573600649833679, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 169, - "x": 57, - "y": 59 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9079904556274414, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.28833314031362534, - "x_min": 0.06440760940313339, - "y_max": 0.42713563144207, - "y_min": 0.1353260725736618 - }, - "confidence": 0.9999496936798096, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 7701, - "roi_type": "vehicle", - "type": { - "confidence": 0.9182760715484619, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 172, - "x": 49, - "y": 58 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9153870940208435, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2806038334965706, - "x_min": 0.046518273651599884, - "y_max": 0.4131326228380203, - "y_min": 0.13239772617816925 - }, - "confidence": 0.9999241828918457, - "label": "vehicle", - "label_id": 2 - }, - "h": 121, - "region_id": 7702, - "roi_type": "vehicle", - "type": { - "confidence": 0.9403806328773499, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 180, - "x": 36, - "y": 57 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9474499225616455, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.27025366574525833, - "x_min": 0.031960584223270416, - "y_max": 0.40551871061325073, - "y_min": 0.1313827633857727 - }, - "confidence": 0.9999902248382568, - "label": "vehicle", - "label_id": 2 - }, - "h": 118, - "region_id": 7703, - "roi_type": "vehicle", - "type": { - "confidence": 0.9429293870925903, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 183, - "x": 25, - "y": 57 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9998084902763367, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2574407830834389, - "x_min": 0.018124915659427643, - "y_max": 0.39813748002052307, - "y_min": 0.12768623232841492 - }, - "confidence": 0.9999737739562988, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 7704, - "roi_type": "vehicle", - "type": { - "confidence": 0.8892050981521606, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 184, - "x": 14, - "y": 55 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999219179153442, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.24728650599718094, - "x_min": 0.004216648638248444, - "y_max": 0.39358004927635193, - "y_min": 0.12342569231987 - }, - "confidence": 0.9995150566101074, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 7705, - "roi_type": "vehicle", - "type": { - "confidence": 0.722600519657135, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 187, - "x": 3, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.994304358959198, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.23507950454950333, - "x_min": 0.0055961087346076965, - "y_max": 0.3909708857536316, - "y_min": 0.12340492010116577 - }, - "confidence": 0.9983311295509338, - "label": "vehicle", - "label_id": 2 - }, - "h": 116, - "region_id": 7706, - "roi_type": "vehicle", - "type": { - "confidence": 0.9526728987693787, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 176, - "x": 4, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9984727501869202, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.22479692846536636, - "x_min": 0.0017654374241828918, - "y_max": 0.3854464143514633, - "y_min": 0.12457780539989471 - }, - "confidence": 0.9997487664222717, - "label": "vehicle", - "label_id": 2 - }, - "h": 113, - "region_id": 7707, - "roi_type": "vehicle", - "type": { - "confidence": 0.962515115737915, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 171, - "x": 1, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9998278617858887, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.21433766931295395, - "x_min": 0.0017601177096366882, - "y_max": 0.37883228063583374, - "y_min": 0.1250355839729309 - }, - "confidence": 0.99918133020401, - "label": "vehicle", - "label_id": 2 - }, - "h": 110, - "region_id": 7708, - "roi_type": "vehicle", - "type": { - "confidence": 0.9985003471374512, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 163, - "x": 1, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.999667763710022, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2030910775065422, - "x_min": 0.0008123144507408142, - "y_max": 0.37199288606643677, - "y_min": 0.12212663888931274 - }, - "confidence": 0.9997194409370422, - "label": "vehicle", - "label_id": 2 - }, - "h": 108, - "region_id": 7709, - "roi_type": "vehicle", - "type": { - "confidence": 0.9995529055595398, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 155, - "x": 1, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999610185623169, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.18479623645544052, - "x_min": 0.0, - "y_max": 0.36851049214601517, - "y_min": 0.1222873404622078 - }, - "confidence": 0.9995477795600891, - "label": "vehicle", - "label_id": 2 - }, - "h": 106, - "region_id": 7710, - "roi_type": "vehicle", - "type": { - "confidence": 0.9995977282524109, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 142, - "x": 0, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9997596144676208, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.1737116277217865, - "x_min": 0.0, - "y_max": 0.36372971534729004, - "y_min": 0.11915415525436401 - }, - "confidence": 0.9950657486915588, - "label": "vehicle", - "label_id": 2 - }, - "h": 106, - "region_id": 7711, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999232292175293, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 133, - "x": 0, - "y": 51 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999818801879883, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.16038884222507477, - "x_min": 0.0, - "y_max": 0.3588944375514984, - "y_min": 0.1205725371837616 - }, - "confidence": 0.9822043776512146, - "label": "vehicle", - "label_id": 2 - }, - "h": 103, - "region_id": 7712, - "roi_type": "vehicle", - "type": { - "confidence": 0.999942421913147, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 123, - "x": 0, - "y": 52 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999450445175171, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.14810673147439957, - "x_min": 0.0, - "y_max": 0.35652363300323486, - "y_min": 0.12085320055484772 - }, - "confidence": 0.9530179500579834, - "label": "vehicle", - "label_id": 2 - }, - "h": 102, - "region_id": 7713, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998893737792969, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 114, - "x": 0, - "y": 52 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9992677569389343, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.13574014604091644, - "x_min": 0.0, - "y_max": 0.3567160964012146, - "y_min": 0.12330564856529236 - }, - "confidence": 0.7856730818748474, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "region_id": 7714, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998465776443481, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 104, - "x": 0, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9976156949996948, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.11242122203111649, - "x_min": 0.0019209012389183044, - "y_max": 0.35550349950790405, - "y_min": 0.1260470598936081 - }, - "confidence": 0.6798886060714722, - "label": "vehicle", - "label_id": 2 - }, - "h": 99, - "region_id": 7716, - "roi_type": "vehicle", - "type": { - "confidence": 0.9904062151908875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 85, - "x": 1, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9454761147499084, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.09885160624980927, - "x_min": 0.003643341362476349, - "y_max": 0.358278751373291, - "y_min": 0.1264287382364273 - }, - "confidence": 0.7773323655128479, - "label": "vehicle", - "label_id": 2 - }, - "h": 100, - "region_id": 7715, - "roi_type": "vehicle", - "type": { - "confidence": 0.9880791306495667, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 73, - "x": 3, - "y": 55 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.39773839712142944, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.0878419578075409, - "x_min": 0.0017804354429244995, - "y_max": 0.3632156252861023, - "y_min": 0.12948653101921082 - }, - "confidence": 0.6258467435836792, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "region_id": 7717, - "roi_type": "vehicle", - "type": { - "confidence": 0.9339539408683777, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 66, - "x": 1, - "y": 56 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9392625093460083, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.07318701222538948, - "x_min": 0.004130352288484573, - "y_max": 0.3511764109134674, - "y_min": 0.14347276091575623 - }, - "confidence": 0.6314224004745483, - "label": "vehicle", - "label_id": 2 - }, - "h": 90, - "region_id": 7718, - "roi_type": "vehicle", - "type": { - "confidence": 0.591683566570282, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 53, - "x": 3, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9517311453819275, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.06266952119767666, - "x_min": 0.0, - "y_max": 0.34957605600357056, - "y_min": 0.14383465051651 - }, - "confidence": 0.6896519064903259, - "label": "vehicle", - "label_id": 2 - }, - "h": 89, - "region_id": 7719, - "roi_type": "vehicle", - "type": { - "confidence": 0.8126508593559265, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 48, - "x": 0, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7189172506332397, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.04970441199839115, - "x_min": 0.0, - "y_max": 0.34233343601226807, - "y_min": 0.14351695775985718 - }, - "confidence": 0.6430801749229431, - "label": "vehicle", - "label_id": 2 - }, - "h": 86, - "region_id": 7720, - "roi_type": "vehicle", - "type": { - "confidence": 0.9153555035591125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 38, - "x": 0, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49250000000 - } - ] -} \ No newline at end of file diff --git a/tests/test_cases/pipeline_execution/cpu/object_classification_gstreamer.json b/tests/test_cases/pipeline_execution/cpu/object_classification_gstreamer.json deleted file mode 100644 index 764b0d0..0000000 --- a/tests/test_cases/pipeline_execution/cpu/object_classification_gstreamer.json +++ /dev/null @@ -1,9993 +0,0 @@ -{ - "options": {}, - "pipeline": { - "name": "object_classification", - "version": "vehicle_attributes" - }, - "request": { - "source": { - "type": "uri", - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4" - }, - "destination": { - "type": "file", - "path": "/tmp/emotion_recognition_results.json", - "format": "json-lines" - }, - "parameters": { - "detection-device": "CPU", - "classification-device": "CPU" - } - }, - "numerical_tolerance": 0.001, - "result": [ - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7448995113372803, - "x_min": 0.6734092235565186, - "y_max": 0.9991496205329895, - "y_min": 0.8781012892723083 - }, - "confidence": 0.5402482748031616, - "label": "person", - "label_id": 1 - }, - "h": 52, - "region_id": 6431, - "roi_type": "person", - "w": 55, - "x": 517, - "y": 379 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7442192435264587, - "x_min": 0.6763269305229187, - "y_max": 1.0, - "y_min": 0.8277981281280518 - }, - "confidence": 0.5505853295326233, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 6432, - "roi_type": "person", - "w": 52, - "x": 519, - "y": 358 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7465136051177979, - "x_min": 0.6821862459182739, - "y_max": 1.0, - "y_min": 0.8104690909385681 - }, - "confidence": 0.6447358131408691, - "label": "person", - "label_id": 1 - }, - "h": 82, - "region_id": 6433, - "roi_type": "person", - "w": 49, - "x": 524, - "y": 350 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7481286525726318, - "x_min": 0.68366539478302, - "y_max": 0.9999657869338989, - "y_min": 0.7867170572280884 - }, - "confidence": 0.882526695728302, - "label": "person", - "label_id": 1 - }, - "h": 92, - "region_id": 6434, - "roi_type": "person", - "w": 50, - "x": 525, - "y": 340 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7502986788749695, - "x_min": 0.6836960911750793, - "y_max": 0.9965759515762329, - "y_min": 0.7709740400314331 - }, - "confidence": 0.9252126812934875, - "label": "person", - "label_id": 1 - }, - "h": 97, - "region_id": 6435, - "roi_type": "person", - "w": 51, - "x": 525, - "y": 333 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7533046007156372, - "x_min": 0.6833932399749756, - "y_max": 0.9992514848709106, - "y_min": 0.7517307996749878 - }, - "confidence": 0.9160429835319519, - "label": "person", - "label_id": 1 - }, - "h": 107, - "region_id": 6436, - "roi_type": "person", - "w": 54, - "x": 525, - "y": 325 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7569091320037842, - "x_min": 0.6831721067428589, - "y_max": 0.9893119931221008, - "y_min": 0.7454761862754822 - }, - "confidence": 0.9452281594276428, - "label": "person", - "label_id": 1 - }, - "h": 105, - "region_id": 6438, - "roi_type": "person", - "w": 57, - "x": 525, - "y": 322 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.758220374584198, - "x_min": 0.6869714856147766, - "y_max": 0.9744250774383545, - "y_min": 0.7232376337051392 - }, - "confidence": 0.9522698521614075, - "label": "person", - "label_id": 1 - }, - "h": 109, - "region_id": 6439, - "roi_type": "person", - "w": 55, - "x": 528, - "y": 312 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.757515549659729, - "x_min": 0.6908836364746094, - "y_max": 0.9485968351364136, - "y_min": 0.7128696441650391 - }, - "confidence": 0.8796297907829285, - "label": "person", - "label_id": 1 - }, - "h": 102, - "region_id": 6440, - "roi_type": "person", - "w": 51, - "x": 531, - "y": 308 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7562522292137146, - "x_min": 0.6947104334831238, - "y_max": 0.8969831466674805, - "y_min": 0.7029379606246948 - }, - "confidence": 0.8928061127662659, - "label": "person", - "label_id": 1 - }, - "h": 84, - "region_id": 6441, - "roi_type": "person", - "w": 47, - "x": 534, - "y": 304 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7574296593666077, - "x_min": 0.6979045271873474, - "y_max": 0.8754802346229553, - "y_min": 0.6884984374046326 - }, - "confidence": 0.8720522522926331, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 6442, - "roi_type": "person", - "w": 46, - "x": 536, - "y": 297 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7628753781318665, - "x_min": 0.6962668299674988, - "y_max": 0.9012861251831055, - "y_min": 0.6672508716583252 - }, - "confidence": 0.6989018321037292, - "label": "person", - "label_id": 1 - }, - "h": 101, - "region_id": 6443, - "roi_type": "person", - "w": 51, - "x": 535, - "y": 288 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7642366886138916, - "x_min": 0.6945128440856934, - "y_max": 0.8976410031318665, - "y_min": 0.6511140465736389 - }, - "confidence": 0.6954102516174316, - "label": "person", - "label_id": 1 - }, - "h": 106, - "region_id": 6444, - "roi_type": "person", - "w": 54, - "x": 533, - "y": 281 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7641031742095947, - "x_min": 0.7028636932373047, - "y_max": 0.8516806960105896, - "y_min": 0.6483859419822693 - }, - "confidence": 0.6670747995376587, - "label": "person", - "label_id": 1 - }, - "h": 88, - "region_id": 6445, - "roi_type": "person", - "w": 47, - "x": 540, - "y": 280 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7670164108276367, - "x_min": 0.7064443826675415, - "y_max": 0.829826295375824, - "y_min": 0.6299616694450378 - }, - "confidence": 0.929532527923584, - "label": "person", - "label_id": 1 - }, - "h": 86, - "region_id": 6446, - "roi_type": "person", - "w": 47, - "x": 543, - "y": 272 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7725509405136108, - "x_min": 0.7098292112350464, - "y_max": 0.8254445195198059, - "y_min": 0.6173177361488342 - }, - "confidence": 0.6896131634712219, - "label": "person", - "label_id": 1 - }, - "h": 90, - "region_id": 6447, - "roi_type": "person", - "w": 48, - "x": 545, - "y": 267 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.77418452501297, - "x_min": 0.7090356945991516, - "y_max": 0.8218122124671936, - "y_min": 0.6104786992073059 - }, - "confidence": 0.7604833841323853, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 6448, - "roi_type": "person", - "w": 50, - "x": 545, - "y": 264 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7783714532852173, - "x_min": 0.7181830406188965, - "y_max": 0.7849859595298767, - "y_min": 0.5744112133979797 - }, - "confidence": 0.502738356590271, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 6449, - "roi_type": "person", - "w": 46, - "x": 552, - "y": 248 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7834279537200928, - "x_min": 0.7257949113845825, - "y_max": 0.7589362263679504, - "y_min": 0.5519590973854065 - }, - "confidence": 0.7043135166168213, - "label": "person", - "label_id": 1 - }, - "h": 89, - "region_id": 6450, - "roi_type": "person", - "w": 44, - "x": 557, - "y": 238 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.78952956199646, - "x_min": 0.7326743602752686, - "y_max": 0.7261121273040771, - "y_min": 0.5483003854751587 - }, - "confidence": 0.9756479263305664, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 6451, - "roi_type": "person", - "w": 44, - "x": 563, - "y": 237 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7890371084213257, - "x_min": 0.737720251083374, - "y_max": 0.7031307816505432, - "y_min": 0.5400574803352356 - }, - "confidence": 0.8415098786354065, - "label": "person", - "label_id": 1 - }, - "h": 70, - "region_id": 6452, - "roi_type": "person", - "w": 39, - "x": 567, - "y": 233 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7952908873558044, - "x_min": 0.7402903437614441, - "y_max": 0.6921250820159912, - "y_min": 0.5216915607452393 - }, - "confidence": 0.7716295719146729, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 6453, - "roi_type": "person", - "w": 42, - "x": 569, - "y": 225 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8006463646888733, - "x_min": 0.746234118938446, - "y_max": 0.6880520582199097, - "y_min": 0.5218417644500732 - }, - "confidence": 0.8759844303131104, - "label": "person", - "label_id": 1 - }, - "h": 72, - "region_id": 6454, - "roi_type": "person", - "w": 42, - "x": 573, - "y": 225 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8098055720329285, - "x_min": 0.7457361817359924, - "y_max": 0.7030310034751892, - "y_min": 0.5026633143424988 - }, - "confidence": 0.9101058840751648, - "label": "person", - "label_id": 1 - }, - "h": 87, - "region_id": 6455, - "roi_type": "person", - "w": 49, - "x": 573, - "y": 217 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8131635785102844, - "x_min": 0.7560372948646545, - "y_max": 0.68419349193573, - "y_min": 0.4961233139038086 - }, - "confidence": 0.9086412787437439, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 6456, - "roi_type": "person", - "w": 44, - "x": 581, - "y": 214 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.823058545589447, - "x_min": 0.7637491822242737, - "y_max": 0.6855756640434265, - "y_min": 0.4885023236274719 - }, - "confidence": 0.8248202800750732, - "label": "person", - "label_id": 1 - }, - "h": 85, - "region_id": 6459, - "roi_type": "person", - "w": 46, - "x": 587, - "y": 211 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8232852220535278, - "x_min": 0.760567307472229, - "y_max": 0.6924915909767151, - "y_min": 0.47507840394973755 - }, - "confidence": 0.6950181126594543, - "label": "person", - "label_id": 1 - }, - "h": 94, - "region_id": 6462, - "roi_type": "person", - "w": 48, - "x": 584, - "y": 205 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8322221040725708, - "x_min": 0.7602424621582031, - "y_max": 0.6941542625427246, - "y_min": 0.46584224700927734 - }, - "confidence": 0.5867351293563843, - "label": "person", - "label_id": 1 - }, - "h": 99, - "region_id": 6463, - "roi_type": "person", - "w": 55, - "x": 584, - "y": 201 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8429373502731323, - "x_min": 0.793522834777832, - "y_max": 0.6419346928596497, - "y_min": 0.43809905648231506 - }, - "confidence": 0.96792072057724, - "label": "person", - "label_id": 1 - }, - "h": 88, - "region_id": 6464, - "roi_type": "person", - "w": 38, - "x": 609, - "y": 189 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.849794328212738, - "x_min": 0.796667754650116, - "y_max": 0.615337610244751, - "y_min": 0.44303929805755615 - }, - "confidence": 0.8853123188018799, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 6465, - "roi_type": "person", - "w": 41, - "x": 612, - "y": 191 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8533491492271423, - "x_min": 0.8009874224662781, - "y_max": 0.6051764488220215, - "y_min": 0.4295734465122223 - }, - "confidence": 0.90330970287323, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 6468, - "roi_type": "person", - "w": 40, - "x": 615, - "y": 186 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8604123592376709, - "x_min": 0.8060647249221802, - "y_max": 0.5924712419509888, - "y_min": 0.42701780796051025 - }, - "confidence": 0.8053339719772339, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 6470, - "roi_type": "person", - "w": 42, - "x": 619, - "y": 184 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8663100600242615, - "x_min": 0.810594379901886, - "y_max": 0.5942341089248657, - "y_min": 0.42083391547203064 - }, - "confidence": 0.7699306607246399, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 6472, - "roi_type": "person", - "w": 43, - "x": 623, - "y": 182 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8744010329246521, - "x_min": 0.817695677280426, - "y_max": 0.5900759696960449, - "y_min": 0.41369643807411194 - }, - "confidence": 0.9554973244667053, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 6473, - "roi_type": "person", - "w": 44, - "x": 628, - "y": 179 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8855565190315247, - "x_min": 0.8264035582542419, - "y_max": 0.5860601663589478, - "y_min": 0.4029603898525238 - }, - "confidence": 0.8228950500488281, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 6476, - "roi_type": "person", - "w": 45, - "x": 635, - "y": 174 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8908534049987793, - "x_min": 0.8350781202316284, - "y_max": 0.5897727012634277, - "y_min": 0.3878403902053833 - }, - "confidence": 0.8011389970779419, - "label": "person", - "label_id": 1 - }, - "h": 87, - "region_id": 6475, - "roi_type": "person", - "w": 43, - "x": 641, - "y": 168 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9007775187492371, - "x_min": 0.8356189131736755, - "y_max": 0.5877959132194519, - "y_min": 0.39412611722946167 - }, - "confidence": 0.6489140391349792, - "label": "person", - "label_id": 1 - }, - "h": 84, - "region_id": 6477, - "roi_type": "person", - "w": 50, - "x": 642, - "y": 170 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9088490605354309, - "x_min": 0.8531065583229065, - "y_max": 0.5604838728904724, - "y_min": 0.376047819852829 - }, - "confidence": 0.6436927914619446, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 6478, - "roi_type": "person", - "w": 43, - "x": 655, - "y": 162 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.91246098279953, - "x_min": 0.8664992451667786, - "y_max": 0.5441793203353882, - "y_min": 0.36725080013275146 - }, - "confidence": 0.8806077837944031, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 6479, - "roi_type": "person", - "w": 35, - "x": 665, - "y": 159 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9204215407371521, - "x_min": 0.8713714480400085, - "y_max": 0.5294153690338135, - "y_min": 0.3520965278148651 - }, - "confidence": 0.9779548048973083, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 6480, - "roi_type": "person", - "w": 38, - "x": 669, - "y": 152 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9224029779434204, - "x_min": 0.8775302171707153, - "y_max": 0.5218915343284607, - "y_min": 0.35059165954589844 - }, - "confidence": 0.9283971786499023, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 6481, - "roi_type": "person", - "w": 34, - "x": 674, - "y": 151 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9281563758850098, - "x_min": 0.87200927734375, - "y_max": 0.5194041728973389, - "y_min": 0.3446289598941803 - }, - "confidence": 0.7565144896507263, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 6482, - "roi_type": "person", - "w": 43, - "x": 670, - "y": 149 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.937407910823822, - "x_min": 0.8853235840797424, - "y_max": 0.5107858777046204, - "y_min": 0.34274011850357056 - }, - "confidence": 0.950576663017273, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 6483, - "roi_type": "person", - "w": 40, - "x": 680, - "y": 148 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9449759125709534, - "x_min": 0.8897075057029724, - "y_max": 0.5037586688995361, - "y_min": 0.33645257353782654 - }, - "confidence": 0.909963846206665, - "label": "person", - "label_id": 1 - }, - "h": 72, - "region_id": 6484, - "roi_type": "person", - "w": 42, - "x": 683, - "y": 145 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9549130201339722, - "x_min": 0.8982007503509521, - "y_max": 0.5104894638061523, - "y_min": 0.3242742419242859 - }, - "confidence": 0.7820349931716919, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 6485, - "roi_type": "person", - "w": 44, - "x": 690, - "y": 140 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9616369009017944, - "x_min": 0.9061300754547119, - "y_max": 0.5176384449005127, - "y_min": 0.32654041051864624 - }, - "confidence": 0.7777004837989807, - "label": "person", - "label_id": 1 - }, - "h": 83, - "region_id": 6486, - "roi_type": "person", - "w": 43, - "x": 696, - "y": 141 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9738940000534058, - "x_min": 0.9141021966934204, - "y_max": 0.4915769100189209, - "y_min": 0.3181222677230835 - }, - "confidence": 0.7904218435287476, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 6488, - "roi_type": "person", - "w": 46, - "x": 702, - "y": 137 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.975996196269989, - "x_min": 0.9256718754768372, - "y_max": 0.4855739176273346, - "y_min": 0.30408164858818054 - }, - "confidence": 0.7352949976921082, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 6487, - "roi_type": "person", - "w": 39, - "x": 711, - "y": 131 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9818256497383118, - "x_min": 0.928584635257721, - "y_max": 0.47780394554138184, - "y_min": 0.2946469187736511 - }, - "confidence": 0.8346178531646729, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 6489, - "roi_type": "person", - "w": 41, - "x": 713, - "y": 127 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9829865097999573, - "x_min": 0.9321264624595642, - "y_max": 0.46189287304878235, - "y_min": 0.2909712493419647 - }, - "confidence": 0.9709599018096924, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 6490, - "roi_type": "person", - "w": 39, - "x": 716, - "y": 126 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9856051206588745, - "x_min": 0.9314626455307007, - "y_max": 0.4595508873462677, - "y_min": 0.2890259921550751 - }, - "confidence": 0.6953359246253967, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 6491, - "roi_type": "person", - "w": 42, - "x": 715, - "y": 125 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9974535703659058, - "x_min": 0.9289860725402832, - "y_max": 0.46979770064353943, - "y_min": 0.25890347361564636 - }, - "confidence": 0.5784777998924255, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 6492, - "roi_type": "person", - "w": 53, - "x": 713, - "y": 112 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9965777397155762, - "x_min": 0.948677659034729, - "y_max": 0.4469355344772339, - "y_min": 0.2675803303718567 - }, - "confidence": 0.5522598028182983, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 6493, - "roi_type": "person", - "w": 37, - "x": 729, - "y": 116 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7891656160354614, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.11904987692832947, - "y_max": 0.9856871068477631, - "y_min": 0.019983261823654175 - }, - "confidence": 0.5811690092086792, - "label": "vehicle", - "label_id": 2 - }, - "h": 417, - "region_id": 6494, - "roi_type": "vehicle", - "type": { - "confidence": 0.9973426461219788, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 677, - "x": 91, - "y": 9 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 13916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999992847442627, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3472718670964241, - "x_min": 0.12164772301912308, - "y_max": 1.0, - "y_min": 0.8393084406852722 - }, - "confidence": 0.6197941899299622, - "label": "vehicle", - "label_id": 2 - }, - "h": 69, - "region_id": 6495, - "roi_type": "vehicle", - "type": { - "confidence": 0.9978079199790955, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 173, - "x": 93, - "y": 363 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999407529830933, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35296928882598877, - "x_min": 0.12145508825778961, - "y_max": 1.0, - "y_min": 0.809481143951416 - }, - "confidence": 0.7172138094902039, - "label": "vehicle", - "label_id": 2 - }, - "h": 82, - "region_id": 6496, - "roi_type": "vehicle", - "type": { - "confidence": 0.9810752272605896, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 178, - "x": 93, - "y": 350 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9996539354324341, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35698965191841125, - "x_min": 0.12027296423912048, - "y_max": 0.9967044591903687, - "y_min": 0.783829927444458 - }, - "confidence": 0.8247243762016296, - "label": "vehicle", - "label_id": 2 - }, - "h": 92, - "region_id": 6497, - "roi_type": "vehicle", - "type": { - "confidence": 0.7544021010398865, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 182, - "x": 92, - "y": 339 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.999993085861206, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35937564820051193, - "x_min": 0.1130119189620018, - "y_max": 0.9963881969451904, - "y_min": 0.7641627788543701 - }, - "confidence": 0.8237555027008057, - "label": "vehicle", - "label_id": 2 - }, - "h": 100, - "region_id": 6498, - "roi_type": "vehicle", - "type": { - "confidence": 0.9930738210678101, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 189, - "x": 87, - "y": 330 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9995425939559937, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3695478141307831, - "x_min": 0.11453911662101746, - "y_max": 1.0, - "y_min": 0.7280340790748596 - }, - "confidence": 0.7173946499824524, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 6499, - "roi_type": "vehicle", - "type": { - "confidence": 0.50337153673172, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 196, - "x": 88, - "y": 315 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9991163611412048, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36808082461357117, - "x_min": 0.10083702206611633, - "y_max": 0.9959658980369568, - "y_min": 0.7031351923942566 - }, - "confidence": 0.8457762002944946, - "label": "vehicle", - "label_id": 2 - }, - "h": 127, - "region_id": 6500, - "roi_type": "vehicle", - "type": { - "confidence": 0.8348413705825806, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 205, - "x": 77, - "y": 304 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9991899132728577, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.37700890004634857, - "x_min": 0.10729126632213593, - "y_max": 0.9994959831237793, - "y_min": 0.6779965162277222 - }, - "confidence": 0.9278457760810852, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "region_id": 6501, - "roi_type": "vehicle", - "type": { - "confidence": 0.9957727789878845, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 207, - "x": 82, - "y": 293 - }, - { - "color": { - "confidence": 0.7643881440162659, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.12105026841163635, - "y_max": 0.9884764552116394, - "y_min": 0.031229078769683838 - }, - "confidence": 0.6490932106971741, - "label": "vehicle", - "label_id": 2 - }, - "h": 414, - "region_id": 6502, - "roi_type": "vehicle", - "type": { - "confidence": 0.9641008973121643, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 675, - "x": 93, - "y": 13 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9966446161270142, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.37933249771595, - "x_min": 0.10664261877536774, - "y_max": 1.0, - "y_min": 0.6494535207748413 - }, - "confidence": 0.9569631814956665, - "label": "vehicle", - "label_id": 2 - }, - "h": 151, - "region_id": 6503, - "roi_type": "vehicle", - "type": { - "confidence": 0.9936966300010681, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 209, - "x": 82, - "y": 281 - }, - { - "color": { - "confidence": 0.5622632503509521, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.12350031733512878, - "y_max": 0.9561575353145599, - "y_min": 0.036140888929367065 - }, - "confidence": 0.6475626826286316, - "label": "vehicle", - "label_id": 2 - }, - "h": 397, - "region_id": 6504, - "roi_type": "vehicle", - "type": { - "confidence": 0.9848967790603638, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 673, - "x": 95, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9998095631599426, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.37901879847049713, - "x_min": 0.10554523766040802, - "y_max": 1.0, - "y_min": 0.6312699913978577 - }, - "confidence": 0.9906972646713257, - "label": "vehicle", - "label_id": 2 - }, - "h": 159, - "region_id": 6505, - "roi_type": "vehicle", - "type": { - "confidence": 0.9978911280632019, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 210, - "x": 81, - "y": 273 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999986886978149, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3792016804218292, - "x_min": 0.11973920464515686, - "y_max": 0.9997225999832153, - "y_min": 0.6097801923751831 - }, - "confidence": 0.9947446584701538, - "label": "vehicle", - "label_id": 2 - }, - "h": 168, - "region_id": 6506, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998151659965515, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 199, - "x": 92, - "y": 263 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999973773956299, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3760889172554016, - "x_min": 0.11782974004745483, - "y_max": 0.9969019889831543, - "y_min": 0.5848079919815063 - }, - "confidence": 0.9949920773506165, - "label": "vehicle", - "label_id": 2 - }, - "h": 178, - "region_id": 6507, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999407529830933, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 198, - "x": 90, - "y": 253 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999994039535522, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3769965320825577, - "x_min": 0.11793924868106842, - "y_max": 0.9975459575653076, - "y_min": 0.5624508857727051 - }, - "confidence": 0.9885396361351013, - "label": "vehicle", - "label_id": 2 - }, - "h": 188, - "region_id": 6508, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999685287475586, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 199, - "x": 91, - "y": 243 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999995231628418, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.37293992936611176, - "x_min": 0.11036746203899384, - "y_max": 1.0, - "y_min": 0.5396616458892822 - }, - "confidence": 0.9783477783203125, - "label": "vehicle", - "label_id": 2 - }, - "h": 199, - "region_id": 6509, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998794794082642, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 202, - "x": 85, - "y": 233 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999992847442627, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36592480540275574, - "x_min": 0.13214635848999023, - "y_max": 1.0, - "y_min": 0.5241050720214844 - }, - "confidence": 0.9772934317588806, - "label": "vehicle", - "label_id": 2 - }, - "h": 206, - "region_id": 6510, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998465776443481, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 180, - "x": 101, - "y": 226 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999992847442627, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3634260296821594, - "x_min": 0.13490857183933258, - "y_max": 1.0, - "y_min": 0.5041921138763428 - }, - "confidence": 0.9919345378875732, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "region_id": 6511, - "roi_type": "vehicle", - "type": { - "confidence": 0.9955381751060486, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 176, - "x": 104, - "y": 218 - }, - { - "color": { - "confidence": 0.5667799711227417, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.960456371307373, - "x_min": 0.14331555366516113, - "y_max": 0.8030669689178467, - "y_min": 0.04740440845489502 - }, - "confidence": 0.6498066186904907, - "label": "vehicle", - "label_id": 2 - }, - "h": 326, - "region_id": 6512, - "roi_type": "vehicle", - "type": { - "confidence": 0.9822282195091248, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 628, - "x": 110, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999997615814209, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3554348349571228, - "x_min": 0.14201128482818604, - "y_max": 0.9914812445640564, - "y_min": 0.49649685621261597 - }, - "confidence": 0.9959776997566223, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "region_id": 6513, - "roi_type": "vehicle", - "type": { - "confidence": 0.9852773547172546, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 164, - "x": 109, - "y": 214 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35458171367645264, - "x_min": 0.14792513847351074, - "y_max": 0.9985901713371277, - "y_min": 0.47491592168807983 - }, - "confidence": 0.9977288842201233, - "label": "vehicle", - "label_id": 2 - }, - "h": 226, - "region_id": 6514, - "roi_type": "vehicle", - "type": { - "confidence": 0.9812224507331848, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 159, - "x": 114, - "y": 205 - }, - { - "color": { - "confidence": 0.6801050901412964, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9464908838272095, - "x_min": 0.37183070182800293, - "y_max": 0.8923693895339966, - "y_min": 0.04037749767303467 - }, - "confidence": 0.5506706833839417, - "label": "vehicle", - "label_id": 2 - }, - "h": 368, - "region_id": 6515, - "roi_type": "vehicle", - "type": { - "confidence": 0.9994076490402222, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 441, - "x": 286, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999994039535522, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35628217458724976, - "x_min": 0.1539267748594284, - "y_max": 0.9833188056945801, - "y_min": 0.4503910541534424 - }, - "confidence": 0.994249701499939, - "label": "vehicle", - "label_id": 2 - }, - "h": 230, - "region_id": 6516, - "roi_type": "vehicle", - "type": { - "confidence": 0.9980984330177307, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 155, - "x": 118, - "y": 195 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999985694885254, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3493105173110962, - "x_min": 0.15961898863315582, - "y_max": 0.9475720822811127, - "y_min": 0.4319262206554413 - }, - "confidence": 0.9976761937141418, - "label": "vehicle", - "label_id": 2 - }, - "h": 223, - "region_id": 6517, - "roi_type": "vehicle", - "type": { - "confidence": 0.9835509657859802, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 146, - "x": 123, - "y": 187 - }, - { - "color": { - "confidence": 0.614988386631012, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9634890258312225, - "x_min": 0.3556390702724457, - "y_max": 0.7470780611038208, - "y_min": 0.06608313322067261 - }, - "confidence": 0.7034559845924377, - "label": "vehicle", - "label_id": 2 - }, - "h": 294, - "region_id": 6518, - "roi_type": "vehicle", - "type": { - "confidence": 0.998102605342865, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 467, - "x": 273, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999997615814209, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3447081446647644, - "x_min": 0.16244013607501984, - "y_max": 0.9356728792190552, - "y_min": 0.42220282554626465 - }, - "confidence": 0.997654139995575, - "label": "vehicle", - "label_id": 2 - }, - "h": 222, - "region_id": 6519, - "roi_type": "vehicle", - "type": { - "confidence": 0.9667874574661255, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 140, - "x": 125, - "y": 182 - }, - { - "color": { - "confidence": 0.5594086050987244, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9825330972671509, - "x_min": 0.34150373935699463, - "y_max": 0.9223797023296356, - "y_min": 0.048903077840805054 - }, - "confidence": 0.5919698476791382, - "label": "vehicle", - "label_id": 2 - }, - "h": 377, - "region_id": 6520, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998914003372192, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 492, - "x": 262, - "y": 21 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.999996542930603, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3389114439487457, - "x_min": 0.16517701745033264, - "y_max": 0.9076908528804779, - "y_min": 0.4019246995449066 - }, - "confidence": 0.9994926452636719, - "label": "vehicle", - "label_id": 2 - }, - "h": 218, - "region_id": 6521, - "roi_type": "vehicle", - "type": { - "confidence": 0.547698438167572, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 133, - "x": 127, - "y": 174 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999867677688599, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3360127806663513, - "x_min": 0.1654418557882309, - "y_max": 0.8818584084510803, - "y_min": 0.3884504437446594 - }, - "confidence": 0.9987764954566956, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "region_id": 6522, - "roi_type": "vehicle", - "type": { - "confidence": 0.885420560836792, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 131, - "x": 127, - "y": 168 - }, - { - "color": { - "confidence": 0.42734625935554504, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9590835273265839, - "x_min": 0.31477364897727966, - "y_max": 0.8576100170612335, - "y_min": 0.07268145680427551 - }, - "confidence": 0.5272276401519775, - "label": "vehicle", - "label_id": 2 - }, - "h": 339, - "region_id": 6523, - "roi_type": "vehicle", - "type": { - "confidence": 0.999447762966156, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 495, - "x": 242, - "y": 31 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999828338623047, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.33232998847961426, - "x_min": 0.16263365745544434, - "y_max": 0.8597554564476013, - "y_min": 0.3726103901863098 - }, - "confidence": 0.9985213875770569, - "label": "vehicle", - "label_id": 2 - }, - "h": 210, - "region_id": 6524, - "roi_type": "vehicle", - "type": { - "confidence": 0.9828891754150391, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 130, - "x": 125, - "y": 161 - }, - { - "color": { - "confidence": 0.7075168490409851, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9746560454368591, - "x_min": 0.3364577889442444, - "y_max": 0.9104736745357513, - "y_min": 0.05242249369621277 - }, - "confidence": 0.5714530348777771, - "label": "vehicle", - "label_id": 2 - }, - "h": 371, - "region_id": 6525, - "roi_type": "vehicle", - "type": { - "confidence": 0.9997761845588684, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 490, - "x": 258, - "y": 23 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999812841415405, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.33004996180534363, - "x_min": 0.16184934973716736, - "y_max": 0.831344723701477, - "y_min": 0.35449519753456116 - }, - "confidence": 0.9997923970222473, - "label": "vehicle", - "label_id": 2 - }, - "h": 206, - "region_id": 6528, - "roi_type": "vehicle", - "type": { - "confidence": 0.9883471131324768, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 129, - "x": 124, - "y": 153 - }, - { - "color": { - "confidence": 0.5001221895217896, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9590028822422028, - "x_min": 0.3254684507846832, - "y_max": 0.8569502830505371, - "y_min": 0.06740456819534302 - }, - "confidence": 0.7004438042640686, - "label": "vehicle", - "label_id": 2 - }, - "h": 341, - "region_id": 6529, - "roi_type": "vehicle", - "type": { - "confidence": 0.9997856020927429, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 487, - "x": 250, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3289366066455841, - "x_min": 0.1574317216873169, - "y_max": 0.8062315583229065, - "y_min": 0.34386783838272095 - }, - "confidence": 0.9998531341552734, - "label": "vehicle", - "label_id": 2 - }, - "h": 200, - "region_id": 6526, - "roi_type": "vehicle", - "type": { - "confidence": 0.9963167905807495, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 132, - "x": 121, - "y": 149 - }, - { - "color": { - "confidence": 0.40223732590675354, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.964382529258728, - "x_min": 0.32466232776641846, - "y_max": 0.8281485438346863, - "y_min": 0.05045187473297119 - }, - "confidence": 0.7299045920372009, - "label": "vehicle", - "label_id": 2 - }, - "h": 336, - "region_id": 6527, - "roi_type": "vehicle", - "type": { - "confidence": 0.9992221593856812, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 491, - "x": 249, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999998807907104, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.32749849557876587, - "x_min": 0.15210948884487152, - "y_max": 0.7838110327720642, - "y_min": 0.3270363211631775 - }, - "confidence": 0.9998413324356079, - "label": "vehicle", - "label_id": 2 - }, - "h": 197, - "region_id": 6530, - "roi_type": "vehicle", - "type": { - "confidence": 0.9661583304405212, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 135, - "x": 117, - "y": 141 - }, - { - "color": { - "confidence": 0.4082354009151459, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9622262120246887, - "x_min": 0.3427131772041321, - "y_max": 0.87251016497612, - "y_min": 0.04009708762168884 - }, - "confidence": 0.5857366919517517, - "label": "vehicle", - "label_id": 2 - }, - "h": 360, - "region_id": 6531, - "roi_type": "vehicle", - "type": { - "confidence": 0.9991716146469116, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 476, - "x": 263, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.999996542930603, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3233610689640045, - "x_min": 0.14286422729492188, - "y_max": 0.7728333473205566, - "y_min": 0.3200983703136444 - }, - "confidence": 0.9999895095825195, - "label": "vehicle", - "label_id": 2 - }, - "h": 196, - "region_id": 6532, - "roi_type": "vehicle", - "type": { - "confidence": 0.9968462586402893, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 139, - "x": 110, - "y": 138 - }, - { - "color": { - "confidence": 0.32906028628349304, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9750470519065857, - "x_min": 0.29748600721359253, - "y_max": 0.878402590751648, - "y_min": 0.02611905336380005 - }, - "confidence": 0.6027935147285461, - "label": "vehicle", - "label_id": 2 - }, - "h": 368, - "region_id": 6533, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998162388801575, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 520, - "x": 228, - "y": 11 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999997615814209, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3201468884944916, - "x_min": 0.13641870021820068, - "y_max": 0.7574479579925537, - "y_min": 0.309865802526474 - }, - "confidence": 0.9999890327453613, - "label": "vehicle", - "label_id": 2 - }, - "h": 193, - "region_id": 6534, - "roi_type": "vehicle", - "type": { - "confidence": 0.9931427240371704, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 141, - "x": 105, - "y": 134 - }, - { - "color": { - "confidence": 0.5577108860015869, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.967246949672699, - "x_min": 0.2861178517341614, - "y_max": 0.8358006775379181, - "y_min": 0.03851500153541565 - }, - "confidence": 0.7227263450622559, - "label": "vehicle", - "label_id": 2 - }, - "h": 344, - "region_id": 6535, - "roi_type": "vehicle", - "type": { - "confidence": 0.999649167060852, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 523, - "x": 220, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.31699711084365845, - "x_min": 0.13015078008174896, - "y_max": 0.7375568151473999, - "y_min": 0.29937541484832764 - }, - "confidence": 0.9999899864196777, - "label": "vehicle", - "label_id": 2 - }, - "h": 189, - "region_id": 6536, - "roi_type": "vehicle", - "type": { - "confidence": 0.9005993008613586, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 143, - "x": 100, - "y": 129 - }, - { - "color": { - "confidence": 0.4868549406528473, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9515461325645447, - "x_min": 0.33267635107040405, - "y_max": 0.8539553582668304, - "y_min": 0.03352043032646179 - }, - "confidence": 0.8081793785095215, - "label": "vehicle", - "label_id": 2 - }, - "h": 354, - "region_id": 6537, - "roi_type": "vehicle", - "type": { - "confidence": 0.9985513091087341, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 475, - "x": 255, - "y": 14 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.313996784389019, - "x_min": 0.1178915724158287, - "y_max": 0.721222996711731, - "y_min": 0.2869602143764496 - }, - "confidence": 0.9999879598617554, - "label": "vehicle", - "label_id": 2 - }, - "h": 188, - "region_id": 6538, - "roi_type": "vehicle", - "type": { - "confidence": 0.4962369203567505, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 151, - "x": 91, - "y": 124 - }, - { - "color": { - "confidence": 0.5879678130149841, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9608641266822815, - "x_min": 0.32193297147750854, - "y_max": 0.872944712638855, - "y_min": 0.03886592388153076 - }, - "confidence": 0.6384647488594055, - "label": "vehicle", - "label_id": 2 - }, - "h": 360, - "region_id": 6539, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998008608818054, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 491, - "x": 247, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.31122130155563354, - "x_min": 0.10584880411624908, - "y_max": 0.7095153331756592, - "y_min": 0.28365960717201233 - }, - "confidence": 0.9999860525131226, - "label": "vehicle", - "label_id": 2 - }, - "h": 184, - "region_id": 6540, - "roi_type": "vehicle", - "type": { - "confidence": 0.7103947401046753, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 158, - "x": 81, - "y": 123 - }, - { - "color": { - "confidence": 0.6019455790519714, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9637041389942169, - "x_min": 0.32208338379859924, - "y_max": 0.8715708255767822, - "y_min": 0.04041773080825806 - }, - "confidence": 0.649631142616272, - "label": "vehicle", - "label_id": 2 - }, - "h": 359, - "region_id": 6541, - "roi_type": "vehicle", - "type": { - "confidence": 0.9997046589851379, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 493, - "x": 247, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.30708828568458557, - "x_min": 0.08848142623901367, - "y_max": 0.6941937208175659, - "y_min": 0.27684852480888367 - }, - "confidence": 0.9999517202377319, - "label": "vehicle", - "label_id": 2 - }, - "h": 180, - "region_id": 6542, - "roi_type": "vehicle", - "type": { - "confidence": 0.5102647542953491, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 168, - "x": 68, - "y": 120 - }, - { - "color": { - "confidence": 0.6667999625205994, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9554692804813385, - "x_min": 0.3402766287326813, - "y_max": 0.8379943072795868, - "y_min": 0.04827651381492615 - }, - "confidence": 0.7163934707641602, - "label": "vehicle", - "label_id": 2 - }, - "h": 341, - "region_id": 6543, - "roi_type": "vehicle", - "type": { - "confidence": 0.9969905614852905, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 472, - "x": 261, - "y": 21 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3021143078804016, - "x_min": 0.08180795609951019, - "y_max": 0.6738347411155701, - "y_min": 0.2771807909011841 - }, - "confidence": 0.9999845027923584, - "label": "vehicle", - "label_id": 2 - }, - "h": 171, - "region_id": 6544, - "roi_type": "vehicle", - "type": { - "confidence": 0.8760337233543396, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 169, - "x": 63, - "y": 120 - }, - { - "color": { - "confidence": 0.7902370691299438, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9660838842391968, - "x_min": 0.33971118927001953, - "y_max": 0.8525603115558624, - "y_min": 0.0668802559375763 - }, - "confidence": 0.5413897633552551, - "label": "vehicle", - "label_id": 2 - }, - "h": 339, - "region_id": 6545, - "roi_type": "vehicle", - "type": { - "confidence": 0.9997109770774841, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 481, - "x": 261, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2942667081952095, - "x_min": 0.07385558634996414, - "y_max": 0.656566858291626, - "y_min": 0.27267447113990784 - }, - "confidence": 0.9999916553497314, - "label": "vehicle", - "label_id": 2 - }, - "h": 166, - "region_id": 6546, - "roi_type": "vehicle", - "type": { - "confidence": 0.9852901697158813, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 169, - "x": 57, - "y": 118 - }, - { - "color": { - "confidence": 0.590167760848999, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9926852583885193, - "x_min": 0.3049655556678772, - "y_max": 0.8486753702163696, - "y_min": 0.05000650882720947 - }, - "confidence": 0.5591980814933777, - "label": "vehicle", - "label_id": 2 - }, - "h": 345, - "region_id": 6547, - "roi_type": "vehicle", - "type": { - "confidence": 0.9996962547302246, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 528, - "x": 234, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.28687456995248795, - "x_min": 0.06621802598237991, - "y_max": 0.6433695554733276, - "y_min": 0.2654878795146942 - }, - "confidence": 0.9999983310699463, - "label": "vehicle", - "label_id": 2 - }, - "h": 163, - "region_id": 6548, - "roi_type": "vehicle", - "type": { - "confidence": 0.9969983100891113, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 169, - "x": 51, - "y": 115 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.28295157104730606, - "x_min": 0.055335767567157745, - "y_max": 0.6373208165168762, - "y_min": 0.2616565227508545 - }, - "confidence": 0.9999963045120239, - "label": "vehicle", - "label_id": 2 - }, - "h": 162, - "region_id": 6549, - "roi_type": "vehicle", - "type": { - "confidence": 0.9995378255844116, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 175, - "x": 42, - "y": 113 - }, - { - "color": { - "confidence": 0.7691952586174011, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.95826455950737, - "x_min": 0.3554447591304779, - "y_max": 0.7013552486896515, - "y_min": 0.061350494623184204 - }, - "confidence": 0.6528945565223694, - "label": "vehicle", - "label_id": 2 - }, - "h": 276, - "region_id": 6550, - "roi_type": "vehicle", - "type": { - "confidence": 0.998582124710083, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 463, - "x": 273, - "y": 27 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.27854787558317184, - "x_min": 0.04411589354276657, - "y_max": 0.62773197889328, - "y_min": 0.2605406641960144 - }, - "confidence": 0.999983549118042, - "label": "vehicle", - "label_id": 2 - }, - "h": 159, - "region_id": 6551, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999783039093018, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 180, - "x": 34, - "y": 113 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.27031123638153076, - "x_min": 0.03065599501132965, - "y_max": 0.6122254133224487, - "y_min": 0.2575317919254303 - }, - "confidence": 0.9999444484710693, - "label": "vehicle", - "label_id": 2 - }, - "h": 153, - "region_id": 6552, - "roi_type": "vehicle", - "type": { - "confidence": 0.99994957447052, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 184, - "x": 24, - "y": 111 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2618173286318779, - "x_min": 0.01927035301923752, - "y_max": 0.6008049249649048, - "y_min": 0.2527608275413513 - }, - "confidence": 0.9999783039093018, - "label": "vehicle", - "label_id": 2 - }, - "h": 150, - "region_id": 6553, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999005794525146, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 186, - "x": 15, - "y": 109 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2521120309829712, - "x_min": 0.006787553429603577, - "y_max": 0.5942617058753967, - "y_min": 0.25123631954193115 - }, - "confidence": 0.999976396560669, - "label": "vehicle", - "label_id": 2 - }, - "h": 148, - "region_id": 6554, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999986886978149, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 188, - "x": 5, - "y": 109 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2455773949623108, - "x_min": 0.0038528144359588623, - "y_max": 0.5852652192115784, - "y_min": 0.25117599964141846 - }, - "confidence": 0.999962568283081, - "label": "vehicle", - "label_id": 2 - }, - "h": 144, - "region_id": 6555, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999997615814209, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 186, - "x": 3, - "y": 109 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.23418442159891129, - "x_min": 0.00190020352602005, - "y_max": 0.5771202892065048, - "y_min": 0.24817226827144623 - }, - "confidence": 0.9999908208847046, - "label": "vehicle", - "label_id": 2 - }, - "h": 142, - "region_id": 6556, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999977350234985, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 178, - "x": 1, - "y": 107 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.22408055514097214, - "x_min": 0.000627569854259491, - "y_max": 0.5654963403940201, - "y_min": 0.2458530217409134 - }, - "confidence": 0.9999959468841553, - "label": "vehicle", - "label_id": 2 - }, - "h": 138, - "region_id": 6557, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999964237213135, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 172, - "x": 0, - "y": 106 - }, - { - "color": { - "confidence": 0.5029367804527283, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9729532599449158, - "x_min": 0.3975161910057068, - "y_max": 0.7704417705535889, - "y_min": 0.06877964735031128 - }, - "confidence": 0.5025386214256287, - "label": "vehicle", - "label_id": 2 - }, - "h": 303, - "region_id": 6558, - "roi_type": "vehicle", - "type": { - "confidence": 0.9997140765190125, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 442, - "x": 305, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.21542106568813324, - "x_min": 0.0, - "y_max": 0.5575774908065796, - "y_min": 0.24282824993133545 - }, - "confidence": 0.9999918937683105, - "label": "vehicle", - "label_id": 2 - }, - "h": 136, - "region_id": 6559, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999957084655762, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 165, - "x": 0, - "y": 105 - }, - { - "color": { - "confidence": 0.6172573566436768, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9764736294746399, - "x_min": 0.3866834044456482, - "y_max": 0.8177641928195953, - "y_min": 0.04835072159767151 - }, - "confidence": 0.5299532413482666, - "label": "vehicle", - "label_id": 2 - }, - "h": 332, - "region_id": 6560, - "roi_type": "vehicle", - "type": { - "confidence": 0.9991831183433533, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 453, - "x": 297, - "y": 21 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.20652518421411514, - "x_min": 0.0, - "y_max": 0.5523459762334824, - "y_min": 0.2393653839826584 - }, - "confidence": 0.9999760389328003, - "label": "vehicle", - "label_id": 2 - }, - "h": 135, - "region_id": 6561, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998032450675964, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 159, - "x": 0, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.19814243912696838, - "x_min": 9.648501873016357e-05, - "y_max": 0.5438299030065536, - "y_min": 0.23729972541332245 - }, - "confidence": 0.99991774559021, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 6562, - "roi_type": "vehicle", - "type": { - "confidence": 0.9986026883125305, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 152, - "x": 0, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.18656962364912033, - "x_min": 0.00026082247495651245, - "y_max": 0.540632963180542, - "y_min": 0.22892174124717712 - }, - "confidence": 0.999891996383667, - "label": "vehicle", - "label_id": 2 - }, - "h": 135, - "region_id": 6563, - "roi_type": "vehicle", - "type": { - "confidence": 0.9873902797698975, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 143, - "x": 0, - "y": 99 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.17477919906377792, - "x_min": 0.001994602382183075, - "y_max": 0.5303716063499451, - "y_min": 0.22543710470199585 - }, - "confidence": 0.9990342855453491, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 6564, - "roi_type": "vehicle", - "type": { - "confidence": 0.9910529255867004, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 133, - "x": 2, - "y": 97 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.16638848185539246, - "x_min": 0.0, - "y_max": 0.5288660079240799, - "y_min": 0.22173668444156647 - }, - "confidence": 0.9978117346763611, - "label": "vehicle", - "label_id": 2 - }, - "h": 133, - "region_id": 6565, - "roi_type": "vehicle", - "type": { - "confidence": 0.9547353982925415, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 128, - "x": 0, - "y": 96 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.15866544842720032, - "x_min": 0.0, - "y_max": 0.5260069519281387, - "y_min": 0.22341085970401764 - }, - "confidence": 0.9969075322151184, - "label": "vehicle", - "label_id": 2 - }, - "h": 131, - "region_id": 6566, - "roi_type": "vehicle", - "type": { - "confidence": 0.8816348910331726, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 122, - "x": 0, - "y": 97 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999998807907104, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.14424734562635422, - "x_min": 0.0004708394408226013, - "y_max": 0.5235311985015869, - "y_min": 0.22360435128211975 - }, - "confidence": 0.9907389879226685, - "label": "vehicle", - "label_id": 2 - }, - "h": 130, - "region_id": 6567, - "roi_type": "vehicle", - "type": { - "confidence": 0.9703205227851868, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 110, - "x": 0, - "y": 97 - }, - { - "color": { - "confidence": 0.8621606230735779, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.11542871594429016, - "y_max": 0.9303610026836395, - "y_min": 0.03652903437614441 - }, - "confidence": 0.5644902586936951, - "label": "vehicle", - "label_id": 2 - }, - "h": 386, - "region_id": 6568, - "roi_type": "vehicle", - "type": { - "confidence": 0.9965773224830627, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 679, - "x": 89, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999995231628418, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.1311522275209427, - "x_min": 0.0012656599283218384, - "y_max": 0.5229739546775818, - "y_min": 0.2319927215576172 - }, - "confidence": 0.8800601363182068, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 6569, - "roi_type": "vehicle", - "type": { - "confidence": 0.627292275428772, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 100, - "x": 1, - "y": 100 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999997615814209, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.12498541176319122, - "x_min": 0.0, - "y_max": 0.5163314342498779, - "y_min": 0.24239161610603333 - }, - "confidence": 0.7448732256889343, - "label": "vehicle", - "label_id": 2 - }, - "h": 118, - "region_id": 6570, - "roi_type": "vehicle", - "type": { - "confidence": 0.8046652674674988, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 96, - "x": 0, - "y": 105 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999982118606567, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.1116863377392292, - "x_min": 0.0006904192268848419, - "y_max": 0.5155525207519531, - "y_min": 0.24023357033729553 - }, - "confidence": 0.8874056935310364, - "label": "vehicle", - "label_id": 2 - }, - "h": 119, - "region_id": 6571, - "roi_type": "vehicle", - "type": { - "confidence": 0.9438390135765076, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 85, - "x": 1, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9998836517333984, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.09923026710748672, - "x_min": 0.001333586871623993, - "y_max": 0.5189979076385498, - "y_min": 0.23733755946159363 - }, - "confidence": 0.6848376989364624, - "label": "vehicle", - "label_id": 2 - }, - "h": 122, - "region_id": 6572, - "roi_type": "vehicle", - "type": { - "confidence": 0.9106685519218445, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 75, - "x": 1, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9994813799858093, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.08814660087227821, - "x_min": 0.0, - "y_max": 0.5184166878461838, - "y_min": 0.23750726878643036 - }, - "confidence": 0.547851026058197, - "label": "vehicle", - "label_id": 2 - }, - "h": 121, - "region_id": 6573, - "roi_type": "vehicle", - "type": { - "confidence": 0.8611072301864624, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 68, - "x": 0, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9998313188552856, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.07822689414024353, - "x_min": 0.0, - "y_max": 0.5102934390306473, - "y_min": 0.23988105356693268 - }, - "confidence": 0.7760471105575562, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 6574, - "roi_type": "vehicle", - "type": { - "confidence": 0.9552167057991028, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 60, - "x": 0, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9996935129165649, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.06671496108174324, - "x_min": 0.0004887916147708893, - "y_max": 0.5063621997833252, - "y_min": 0.24073129892349243 - }, - "confidence": 0.721200168132782, - "label": "vehicle", - "label_id": 2 - }, - "h": 115, - "region_id": 6575, - "roi_type": "vehicle", - "type": { - "confidence": 0.8604604005813599, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 51, - "x": 0, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.999586284160614, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.058564310893416405, - "x_min": 0.0012591909617185593, - "y_max": 0.49973881244659424, - "y_min": 0.2501286268234253 - }, - "confidence": 0.7428306341171265, - "label": "vehicle", - "label_id": 2 - }, - "h": 108, - "region_id": 6576, - "roi_type": "vehicle", - "type": { - "confidence": 0.6634000539779663, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 44, - "x": 1, - "y": 108 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9998461008071899, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.04703952744603157, - "x_min": 0.0021373629570007324, - "y_max": 0.491912305355072, - "y_min": 0.27300935983657837 - }, - "confidence": 0.5740195512771606, - "label": "vehicle", - "label_id": 2 - }, - "h": 95, - "region_id": 6577, - "roi_type": "vehicle", - "type": { - "confidence": 0.7999000549316406, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 34, - "x": 2, - "y": 118 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999052286148071, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.03855092264711857, - "x_min": 0.0, - "y_max": 0.48962903022766113, - "y_min": 0.2736285924911499 - }, - "confidence": 0.5253973007202148, - "label": "vehicle", - "label_id": 2 - }, - "h": 93, - "region_id": 6578, - "roi_type": "vehicle", - "type": { - "confidence": 0.5418111681938171, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 30, - "x": 0, - "y": 118 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.754129946231842, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.934235006570816, - "x_min": 0.04731431603431702, - "y_max": 0.9905672669410706, - "y_min": 0.005245864391326904 - }, - "confidence": 0.5478575229644775, - "label": "vehicle", - "label_id": 2 - }, - "h": 426, - "region_id": 6585, - "roi_type": "vehicle", - "type": { - "confidence": 0.9800358414649963, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 681, - "x": 36, - "y": 2 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8263446688652039, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9340743124485016, - "x_min": 0.05626228451728821, - "y_max": 0.9993162155151367, - "y_min": 0.0 - }, - "confidence": 0.5252728462219238, - "label": "vehicle", - "label_id": 2 - }, - "h": 432, - "region_id": 6586, - "roi_type": "vehicle", - "type": { - "confidence": 0.983135998249054, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 674, - "x": 43, - "y": 0 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.853427529335022, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9431887567043304, - "x_min": 0.05145725607872009, - "y_max": 0.9891375601291656, - "y_min": 0.0 - }, - "confidence": 0.5604560375213623, - "label": "vehicle", - "label_id": 2 - }, - "h": 427, - "region_id": 6587, - "roi_type": "vehicle", - "type": { - "confidence": 0.9693769216537476, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 685, - "x": 40, - "y": 0 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7200186848640442, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9341979622840881, - "x_min": 0.04894071817398071, - "y_max": 0.9517980813980103, - "y_min": 0.0 - }, - "confidence": 0.5412791967391968, - "label": "vehicle", - "label_id": 2 - }, - "h": 411, - "region_id": 6588, - "roi_type": "vehicle", - "type": { - "confidence": 0.9950309991836548, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 680, - "x": 38, - "y": 0 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.6869295835494995, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9681801199913025, - "x_min": 0.22439366579055786, - "y_max": 0.795999139547348, - "y_min": 0.07999715209007263 - }, - "confidence": 0.6512441039085388, - "label": "vehicle", - "label_id": 2 - }, - "h": 309, - "region_id": 6589, - "roi_type": "vehicle", - "type": { - "confidence": 0.9984294772148132, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 571, - "x": 172, - "y": 35 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 27333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.4468967616558075, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.1108655333518982, - "y_max": 0.9221687614917755, - "y_min": 0.024473220109939575 - }, - "confidence": 0.5428245663642883, - "label": "vehicle", - "label_id": 2 - }, - "h": 388, - "region_id": 6590, - "roi_type": "vehicle", - "type": { - "confidence": 0.9917234778404236, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 683, - "x": 85, - "y": 11 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 28166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.6823842525482178, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9668244123458862, - "x_min": 0.04019737243652344, - "y_max": 1.0, - "y_min": 0.018689513206481934 - }, - "confidence": 0.5183915495872498, - "label": "vehicle", - "label_id": 2 - }, - "h": 424, - "region_id": 6593, - "roi_type": "vehicle", - "type": { - "confidence": 0.9840757250785828, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 712, - "x": 31, - "y": 8 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 28916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.05809926800429821, - "x_min": 0.0035657789558172226, - "y_max": 0.2681969776749611, - "y_min": 0.09560371190309525 - }, - "confidence": 0.7589443922042847, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 6601, - "roi_type": "person", - "w": 42, - "x": 3, - "y": 41 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06384254433214664, - "x_min": 0.007957043126225471, - "y_max": 0.274237722158432, - "y_min": 0.1018730103969574 - }, - "confidence": 0.7985617518424988, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 6602, - "roi_type": "person", - "w": 43, - "x": 6, - "y": 44 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07437356747686863, - "x_min": 0.015382559970021248, - "y_max": 0.2672903835773468, - "y_min": 0.09030735492706299 - }, - "confidence": 0.893984317779541, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 6603, - "roi_type": "person", - "w": 45, - "x": 12, - "y": 39 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06839273869991302, - "x_min": 0.022368106991052628, - "y_max": 0.26446548104286194, - "y_min": 0.0925963819026947 - }, - "confidence": 0.946168839931488, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 6604, - "roi_type": "person", - "w": 35, - "x": 17, - "y": 40 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06265867501497269, - "x_min": 0.02845694124698639, - "y_max": 0.2631925344467163, - "y_min": 0.0876958817243576 - }, - "confidence": 0.7030326128005981, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 6606, - "roi_type": "person", - "w": 26, - "x": 22, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07015539705753326, - "x_min": 0.038974471390247345, - "y_max": 0.2708924114704132, - "y_min": 0.08729448914527893 - }, - "confidence": 0.8550823330879211, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 6605, - "roi_type": "person", - "w": 24, - "x": 30, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.08978046476840973, - "x_min": 0.04507404938340187, - "y_max": 0.26029662042856216, - "y_min": 0.08790374547243118 - }, - "confidence": 0.977257251739502, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 6607, - "roi_type": "person", - "w": 34, - "x": 35, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.10240232944488525, - "x_min": 0.050258174538612366, - "y_max": 0.26179608702659607, - "y_min": 0.08916294574737549 - }, - "confidence": 0.9634844064712524, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 6608, - "roi_type": "person", - "w": 40, - "x": 39, - "y": 39 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11237834393978119, - "x_min": 0.0557108074426651, - "y_max": 0.265661358833313, - "y_min": 0.08681026101112366 - }, - "confidence": 0.9638311266899109, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 6609, - "roi_type": "person", - "w": 44, - "x": 43, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11509420722723007, - "x_min": 0.0598953440785408, - "y_max": 0.26093965768814087, - "y_min": 0.08726376295089722 - }, - "confidence": 0.9589016437530518, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 6610, - "roi_type": "person", - "w": 42, - "x": 46, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.10801342129707336, - "x_min": 0.0689283162355423, - "y_max": 0.2573170065879822, - "y_min": 0.0888819694519043 - }, - "confidence": 0.7473644018173218, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 6611, - "roi_type": "person", - "w": 30, - "x": 53, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11594520509243011, - "x_min": 0.08451759815216064, - "y_max": 0.2598234713077545, - "y_min": 0.08372160792350769 - }, - "confidence": 0.9428697824478149, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 6612, - "roi_type": "person", - "w": 24, - "x": 65, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.14308200776576996, - "x_min": 0.08935531973838806, - "y_max": 0.25856076925992966, - "y_min": 0.08275481313467026 - }, - "confidence": 0.9797755479812622, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 6613, - "roi_type": "person", - "w": 41, - "x": 69, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15327730774879456, - "x_min": 0.09761051088571548, - "y_max": 0.25556155294179916, - "y_min": 0.08270096033811569 - }, - "confidence": 0.9193074703216553, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 6614, - "roi_type": "person", - "w": 43, - "x": 75, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15708927810192108, - "x_min": 0.09718881547451019, - "y_max": 0.2538745477795601, - "y_min": 0.08122579008340836 - }, - "confidence": 0.9810740351676941, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 6615, - "roi_type": "person", - "w": 46, - "x": 75, - "y": 35 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15849240124225616, - "x_min": 0.10766856372356415, - "y_max": 0.2546975910663605, - "y_min": 0.07851284742355347 - }, - "confidence": 0.9863011837005615, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 6616, - "roi_type": "person", - "w": 39, - "x": 83, - "y": 34 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.14903458952903748, - "x_min": 0.11753658205270767, - "y_max": 0.2580205202102661, - "y_min": 0.07362668216228485 - }, - "confidence": 0.9098013639450073, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 6618, - "roi_type": "person", - "w": 24, - "x": 90, - "y": 32 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15783970057964325, - "x_min": 0.13124407827854156, - "y_max": 0.25078579038381577, - "y_min": 0.08267303556203842 - }, - "confidence": 0.5655198097229004, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 6617, - "roi_type": "person", - "w": 20, - "x": 101, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1712721735239029, - "x_min": 0.13269366323947906, - "y_max": 0.25339871644973755, - "y_min": 0.0712251216173172 - }, - "confidence": 0.9201220273971558, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 6619, - "roi_type": "person", - "w": 30, - "x": 102, - "y": 31 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.188812255859375, - "x_min": 0.1387019157409668, - "y_max": 0.2481667771935463, - "y_min": 0.06929013878107071 - }, - "confidence": 0.972706139087677, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 6620, - "roi_type": "person", - "w": 38, - "x": 107, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19876964390277863, - "x_min": 0.14241482317447662, - "y_max": 0.24410223960876465, - "y_min": 0.06995522975921631 - }, - "confidence": 0.935201108455658, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 6621, - "roi_type": "person", - "w": 43, - "x": 109, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19850021600723267, - "x_min": 0.14565402269363403, - "y_max": 0.24200070649385452, - "y_min": 0.06734246760606766 - }, - "confidence": 0.9604580402374268, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 6622, - "roi_type": "person", - "w": 41, - "x": 112, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19670461118221283, - "x_min": 0.15936703979969025, - "y_max": 0.24713708460330963, - "y_min": 0.06951303780078888 - }, - "confidence": 0.9338945746421814, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 6623, - "roi_type": "person", - "w": 29, - "x": 122, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19646276533603668, - "x_min": 0.1669870764017105, - "y_max": 0.246548093855381, - "y_min": 0.05969572812318802 - }, - "confidence": 0.8135930299758911, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 6624, - "roi_type": "person", - "w": 23, - "x": 128, - "y": 26 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.20714330673217773, - "x_min": 0.17688614130020142, - "y_max": 0.24033692479133606, - "y_min": 0.06553769111633301 - }, - "confidence": 0.8666308522224426, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 6625, - "roi_type": "person", - "w": 23, - "x": 136, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.22876504063606262, - "x_min": 0.17733925580978394, - "y_max": 0.23425975441932678, - "y_min": 0.0654514729976654 - }, - "confidence": 0.9463271498680115, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 6626, - "roi_type": "person", - "w": 39, - "x": 136, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23787567019462585, - "x_min": 0.18617352843284607, - "y_max": 0.2328994944691658, - "y_min": 0.06733778864145279 - }, - "confidence": 0.8578006029129028, - "label": "person", - "label_id": 1 - }, - "h": 72, - "region_id": 6627, - "roi_type": "person", - "w": 40, - "x": 143, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24495282769203186, - "x_min": 0.18914848566055298, - "y_max": 0.2286892682313919, - "y_min": 0.06330259144306183 - }, - "confidence": 0.9402493834495544, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 6628, - "roi_type": "person", - "w": 43, - "x": 145, - "y": 27 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24374517798423767, - "x_min": 0.19896605610847473, - "y_max": 0.22477789968252182, - "y_min": 0.06456565111875534 - }, - "confidence": 0.9167733192443848, - "label": "person", - "label_id": 1 - }, - "h": 69, - "region_id": 6629, - "roi_type": "person", - "w": 34, - "x": 153, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23920002579689026, - "x_min": 0.2088455855846405, - "y_max": 0.2315978854894638, - "y_min": 0.050867900252342224 - }, - "confidence": 0.7405911087989807, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 6630, - "roi_type": "person", - "w": 23, - "x": 160, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24580711126327515, - "x_min": 0.21504563093185425, - "y_max": 0.22459035366773605, - "y_min": 0.04561009258031845 - }, - "confidence": 0.8077870607376099, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 6631, - "roi_type": "person", - "w": 24, - "x": 165, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.258386492729187, - "x_min": 0.22124245762825012, - "y_max": 0.22196873277425766, - "y_min": 0.04270251840353012 - }, - "confidence": 0.9389499425888062, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 6632, - "roi_type": "person", - "w": 29, - "x": 170, - "y": 18 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2686212658882141, - "x_min": 0.22306442260742188, - "y_max": 0.22240334749221802, - "y_min": 0.03721362352371216 - }, - "confidence": 0.8532395958900452, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 6633, - "roi_type": "person", - "w": 35, - "x": 171, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27878496050834656, - "x_min": 0.2256826013326645, - "y_max": 0.21868880838155746, - "y_min": 0.04378651827573776 - }, - "confidence": 0.940152108669281, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 6634, - "roi_type": "person", - "w": 41, - "x": 173, - "y": 19 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2782133221626282, - "x_min": 0.22981303930282593, - "y_max": 0.21300845593214035, - "y_min": 0.04048468917608261 - }, - "confidence": 0.8954000473022461, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 6635, - "roi_type": "person", - "w": 37, - "x": 176, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27863314747810364, - "x_min": 0.2395808845758438, - "y_max": 0.21157341450452805, - "y_min": 0.026669137179851532 - }, - "confidence": 0.5580120086669922, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 6636, - "roi_type": "person", - "w": 30, - "x": 184, - "y": 12 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2845720052719116, - "x_min": 0.25448018312454224, - "y_max": 0.21495232731103897, - "y_min": 0.026290185749530792 - }, - "confidence": 0.80083167552948, - "label": "person", - "label_id": 1 - }, - "h": 82, - "region_id": 6637, - "roi_type": "person", - "w": 23, - "x": 195, - "y": 11 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.29074627161026, - "x_min": 0.2599877119064331, - "y_max": 0.20789270102977753, - "y_min": 0.022824198007583618 - }, - "confidence": 0.8385727405548096, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 6638, - "roi_type": "person", - "w": 24, - "x": 200, - "y": 10 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.30755072832107544, - "x_min": 0.2656424045562744, - "y_max": 0.19290897250175476, - "y_min": 0.022242024540901184 - }, - "confidence": 0.977880597114563, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 6639, - "roi_type": "person", - "w": 32, - "x": 204, - "y": 10 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31079021096229553, - "x_min": 0.2677251994609833, - "y_max": 0.19722382724285126, - "y_min": 0.023035749793052673 - }, - "confidence": 0.9654287099838257, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 6640, - "roi_type": "person", - "w": 33, - "x": 206, - "y": 10 - }, - { - "color": { - "confidence": 0.7468725442886353, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.29563216120004654, - "x_min": 0.10331843048334122, - "y_max": 1.0, - "y_min": 0.8515570759773254 - }, - "confidence": 0.761517345905304, - "label": "vehicle", - "label_id": 2 - }, - "h": 64, - "region_id": 6641, - "roi_type": "vehicle", - "type": { - "confidence": 0.545889675617218, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 148, - "x": 79, - "y": 368 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31590598821640015, - "x_min": 0.27411168813705444, - "y_max": 0.18277175724506378, - "y_min": 0.019142642617225647 - }, - "confidence": 0.9806784987449646, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 6642, - "roi_type": "person", - "w": 32, - "x": 211, - "y": 8 - }, - { - "color": { - "confidence": 0.966917872428894, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.302535243332386, - "x_min": 0.08773649483919144, - "y_max": 1.0, - "y_min": 0.8262227177619934 - }, - "confidence": 0.908391535282135, - "label": "vehicle", - "label_id": 2 - }, - "h": 75, - "region_id": 6643, - "roi_type": "vehicle", - "type": { - "confidence": 0.7184173464775085, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 165, - "x": 67, - "y": 357 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3163120448589325, - "x_min": 0.27949169278144836, - "y_max": 0.18241430073976517, - "y_min": 0.00963614135980606 - }, - "confidence": 0.8560529351234436, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 6644, - "roi_type": "person", - "w": 28, - "x": 215, - "y": 4 - }, - { - "color": { - "confidence": 0.9669363498687744, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3071591779589653, - "x_min": 0.08984949439764023, - "y_max": 1.0, - "y_min": 0.7983192205429077 - }, - "confidence": 0.9688770174980164, - "label": "vehicle", - "label_id": 2 - }, - "h": 87, - "region_id": 6645, - "roi_type": "vehicle", - "type": { - "confidence": 0.8623602986335754, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 167, - "x": 69, - "y": 345 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31996291875839233, - "x_min": 0.28390347957611084, - "y_max": 0.17544172704219818, - "y_min": 0.002514094114303589 - }, - "confidence": 0.9317660927772522, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 6646, - "roi_type": "person", - "w": 28, - "x": 218, - "y": 1 - }, - { - "color": { - "confidence": 0.9985125660896301, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.31785333156585693, - "x_min": 0.09327417612075806, - "y_max": 0.9961552023887634, - "y_min": 0.7738481163978577 - }, - "confidence": 0.9980048537254333, - "label": "vehicle", - "label_id": 2 - }, - "h": 96, - "region_id": 6647, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990713596343994, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 172, - "x": 72, - "y": 334 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3244977593421936, - "x_min": 0.29137319326400757, - "y_max": 0.18117792904376984, - "y_min": 0.0 - }, - "confidence": 0.9299455285072327, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 6648, - "roi_type": "person", - "w": 25, - "x": 224, - "y": 0 - }, - { - "color": { - "confidence": 0.9868773818016052, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3211563229560852, - "x_min": 0.09341153502464294, - "y_max": 0.9977253675460815, - "y_min": 0.7558172941207886 - }, - "confidence": 0.995922327041626, - "label": "vehicle", - "label_id": 2 - }, - "h": 105, - "region_id": 6649, - "roi_type": "vehicle", - "type": { - "confidence": 0.9961318969726562, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 175, - "x": 72, - "y": 327 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33760935068130493, - "x_min": 0.2969669699668884, - "y_max": 0.1680586189031601, - "y_min": 0.0 - }, - "confidence": 0.97437584400177, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 6650, - "roi_type": "person", - "w": 31, - "x": 228, - "y": 0 - }, - { - "color": { - "confidence": 0.9531167149543762, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.32524099946022034, - "x_min": 0.09379306435585022, - "y_max": 0.9987419843673706, - "y_min": 0.728178858757019 - }, - "confidence": 0.9982354640960693, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 6651, - "roi_type": "vehicle", - "type": { - "confidence": 0.99638831615448, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 178, - "x": 72, - "y": 315 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34123092889785767, - "x_min": 0.2997239828109741, - "y_max": 0.1591828241944313, - "y_min": 0.0 - }, - "confidence": 0.9657360315322876, - "label": "person", - "label_id": 1 - }, - "h": 69, - "region_id": 6652, - "roi_type": "person", - "w": 32, - "x": 230, - "y": 0 - }, - { - "color": { - "confidence": 0.9923230409622192, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3318566754460335, - "x_min": 0.09386516362428665, - "y_max": 0.9967382550239563, - "y_min": 0.7049055695533752 - }, - "confidence": 0.996229350566864, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 6653, - "roi_type": "vehicle", - "type": { - "confidence": 0.9930793642997742, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 183, - "x": 72, - "y": 305 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3466411232948303, - "x_min": 0.3028194308280945, - "y_max": 0.1562092900276184, - "y_min": 0.0 - }, - "confidence": 0.9846485257148743, - "label": "person", - "label_id": 1 - }, - "h": 67, - "region_id": 6654, - "roi_type": "person", - "w": 34, - "x": 233, - "y": 0 - }, - { - "color": { - "confidence": 0.9815136194229126, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3395664617419243, - "x_min": 0.08993595093488693, - "y_max": 0.9996479153633118, - "y_min": 0.6784219145774841 - }, - "confidence": 0.9955138564109802, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "region_id": 6655, - "roi_type": "vehicle", - "type": { - "confidence": 0.9888794422149658, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 192, - "x": 69, - "y": 293 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34522509574890137, - "x_min": 0.30906105041503906, - "y_max": 0.15079188346862793, - "y_min": 0.0 - }, - "confidence": 0.9445015788078308, - "label": "person", - "label_id": 1 - }, - "h": 65, - "region_id": 6656, - "roi_type": "person", - "w": 28, - "x": 237, - "y": 0 - }, - { - "color": { - "confidence": 0.9439544677734375, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3419874384999275, - "x_min": 0.0941135361790657, - "y_max": 1.0, - "y_min": 0.6525993943214417 - }, - "confidence": 0.9987126588821411, - "label": "vehicle", - "label_id": 2 - }, - "h": 150, - "region_id": 6657, - "roi_type": "vehicle", - "type": { - "confidence": 0.9753090739250183, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 190, - "x": 72, - "y": 282 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3481338918209076, - "x_min": 0.3160833418369293, - "y_max": 0.14550430327653885, - "y_min": 0.0 - }, - "confidence": 0.963749885559082, - "label": "person", - "label_id": 1 - }, - "h": 63, - "region_id": 6658, - "roi_type": "person", - "w": 25, - "x": 243, - "y": 0 - }, - { - "color": { - "confidence": 0.8111639022827148, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34435374289751053, - "x_min": 0.09984970837831497, - "y_max": 0.9990871548652649, - "y_min": 0.6355069279670715 - }, - "confidence": 0.9971874356269836, - "label": "vehicle", - "label_id": 2 - }, - "h": 157, - "region_id": 6659, - "roi_type": "vehicle", - "type": { - "confidence": 0.9859831929206848, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 188, - "x": 77, - "y": 275 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3530542850494385, - "x_min": 0.3201481103897095, - "y_max": 0.14842259883880615, - "y_min": 0.0 - }, - "confidence": 0.8752254843711853, - "label": "person", - "label_id": 1 - }, - "h": 64, - "region_id": 6660, - "roi_type": "person", - "w": 25, - "x": 246, - "y": 0 - }, - { - "color": { - "confidence": 0.5280356407165527, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34952497482299805, - "x_min": 0.10708582401275635, - "y_max": 1.0, - "y_min": 0.6191877722740173 - }, - "confidence": 0.998619794845581, - "label": "vehicle", - "label_id": 2 - }, - "h": 165, - "region_id": 6661, - "roi_type": "vehicle", - "type": { - "confidence": 0.9884899258613586, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 186, - "x": 82, - "y": 267 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35819557309150696, - "x_min": 0.3240784704685211, - "y_max": 0.14493504911661148, - "y_min": 0.0 - }, - "confidence": 0.7914350032806396, - "label": "person", - "label_id": 1 - }, - "h": 63, - "region_id": 6662, - "roi_type": "person", - "w": 26, - "x": 249, - "y": 0 - }, - { - "color": { - "confidence": 0.8881661891937256, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3578673005104065, - "x_min": 0.11816421151161194, - "y_max": 0.9963030219078064, - "y_min": 0.5943846106529236 - }, - "confidence": 0.9954742789268494, - "label": "vehicle", - "label_id": 2 - }, - "h": 174, - "region_id": 6663, - "roi_type": "vehicle", - "type": { - "confidence": 0.9638090133666992, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 184, - "x": 91, - "y": 257 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36160674691200256, - "x_min": 0.3288991153240204, - "y_max": 0.14174089580774307, - "y_min": 0.0 - }, - "confidence": 0.6194042563438416, - "label": "person", - "label_id": 1 - }, - "h": 61, - "region_id": 6664, - "roi_type": "person", - "w": 25, - "x": 253, - "y": 0 - }, - { - "color": { - "confidence": 0.6927691698074341, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35685088485479355, - "x_min": 0.11790122836828232, - "y_max": 0.9961073994636536, - "y_min": 0.5718068480491638 - }, - "confidence": 0.9947429895401001, - "label": "vehicle", - "label_id": 2 - }, - "h": 183, - "region_id": 6665, - "roi_type": "vehicle", - "type": { - "confidence": 0.9615950584411621, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 184, - "x": 91, - "y": 247 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36447739601135254, - "x_min": 0.33208173513412476, - "y_max": 0.14312608540058136, - "y_min": 0.0 - }, - "confidence": 0.8804531693458557, - "label": "person", - "label_id": 1 - }, - "h": 62, - "region_id": 6666, - "roi_type": "person", - "w": 25, - "x": 255, - "y": 0 - }, - { - "color": { - "confidence": 0.6090085506439209, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36100974678993225, - "x_min": 0.10920840501785278, - "y_max": 1.0, - "y_min": 0.5514669418334961 - }, - "confidence": 0.9975082874298096, - "label": "vehicle", - "label_id": 2 - }, - "h": 194, - "region_id": 6667, - "roi_type": "vehicle", - "type": { - "confidence": 0.9945594668388367, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 193, - "x": 84, - "y": 238 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3689320683479309, - "x_min": 0.33504199981689453, - "y_max": 0.1309487745165825, - "y_min": 0.0 - }, - "confidence": 0.5245084166526794, - "label": "person", - "label_id": 1 - }, - "h": 57, - "region_id": 6668, - "roi_type": "person", - "w": 26, - "x": 257, - "y": 0 - }, - { - "color": { - "confidence": 0.8659559488296509, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36274436861276627, - "x_min": 0.11731896549463272, - "y_max": 1.0, - "y_min": 0.5336947441101074 - }, - "confidence": 0.9914770722389221, - "label": "vehicle", - "label_id": 2 - }, - "h": 201, - "region_id": 6669, - "roi_type": "vehicle", - "type": { - "confidence": 0.9782851338386536, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 188, - "x": 90, - "y": 231 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7261171936988831, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3659408688545227, - "x_min": 0.11780126392841339, - "y_max": 1.0, - "y_min": 0.518149733543396 - }, - "confidence": 0.9818969964981079, - "label": "vehicle", - "label_id": 2 - }, - "h": 208, - "region_id": 6670, - "roi_type": "vehicle", - "type": { - "confidence": 0.9929179549217224, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 191, - "x": 90, - "y": 224 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7979229688644409, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3604143261909485, - "x_min": 0.11885426938533783, - "y_max": 1.0, - "y_min": 0.5062888264656067 - }, - "confidence": 0.9770739674568176, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "region_id": 6672, - "roi_type": "vehicle", - "type": { - "confidence": 0.9997255206108093, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 186, - "x": 91, - "y": 219 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.6396380662918091, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35873663425445557, - "x_min": 0.12577953934669495, - "y_max": 1.0, - "y_min": 0.487548291683197 - }, - "confidence": 0.9604198932647705, - "label": "vehicle", - "label_id": 2 - }, - "h": 221, - "region_id": 6671, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998347759246826, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 179, - "x": 97, - "y": 211 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9329293966293335, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36819857358932495, - "x_min": 0.13242483139038086, - "y_max": 1.0, - "y_min": 0.4729745090007782 - }, - "confidence": 0.9679286479949951, - "label": "vehicle", - "label_id": 2 - }, - "h": 228, - "region_id": 6673, - "roi_type": "vehicle", - "type": { - "confidence": 0.9380549788475037, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 181, - "x": 102, - "y": 204 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9758688807487488, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.37145912647247314, - "x_min": 0.13698597252368927, - "y_max": 0.9822669923305511, - "y_min": 0.45337817072868347 - }, - "confidence": 0.9909036755561829, - "label": "vehicle", - "label_id": 2 - }, - "h": 228, - "region_id": 6674, - "roi_type": "vehicle", - "type": { - "confidence": 0.8175630569458008, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 180, - "x": 105, - "y": 196 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.99601811170578, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.360751211643219, - "x_min": 0.14602144062519073, - "y_max": 0.9427908360958099, - "y_min": 0.4422529637813568 - }, - "confidence": 0.9961796998977661, - "label": "vehicle", - "label_id": 2 - }, - "h": 216, - "region_id": 6675, - "roi_type": "vehicle", - "type": { - "confidence": 0.9925321936607361, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 165, - "x": 112, - "y": 191 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9773136973381042, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3665272891521454, - "x_min": 0.15879389643669128, - "y_max": 0.9357600212097168, - "y_min": 0.41560184955596924 - }, - "confidence": 0.9988160133361816, - "label": "vehicle", - "label_id": 2 - }, - "h": 225, - "region_id": 6676, - "roi_type": "vehicle", - "type": { - "confidence": 0.614161491394043, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 160, - "x": 122, - "y": 180 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9930024743080139, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36519184708595276, - "x_min": 0.1624055802822113, - "y_max": 0.9030640423297882, - "y_min": 0.3991294205188751 - }, - "confidence": 0.99962317943573, - "label": "vehicle", - "label_id": 2 - }, - "h": 218, - "region_id": 6677, - "roi_type": "vehicle", - "type": { - "confidence": 0.5760512351989746, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 156, - "x": 125, - "y": 172 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9986255168914795, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36517783999443054, - "x_min": 0.17351636290550232, - "y_max": 0.8792468309402466, - "y_min": 0.3837735652923584 - }, - "confidence": 0.9997884631156921, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "region_id": 6678, - "roi_type": "vehicle", - "type": { - "confidence": 0.533503532409668, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 147, - "x": 133, - "y": 166 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9977391958236694, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36106088757514954, - "x_min": 0.1790127456188202, - "y_max": 0.8557636737823486, - "y_min": 0.36366569995880127 - }, - "confidence": 0.9998449087142944, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "region_id": 6679, - "roi_type": "vehicle", - "type": { - "confidence": 0.6246165633201599, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 140, - "x": 137, - "y": 157 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9996715784072876, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36285877227783203, - "x_min": 0.18275152146816254, - "y_max": 0.8229827284812927, - "y_min": 0.34286290407180786 - }, - "confidence": 0.9999336004257202, - "label": "vehicle", - "label_id": 2 - }, - "h": 207, - "region_id": 6680, - "roi_type": "vehicle", - "type": { - "confidence": 0.7438144087791443, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 138, - "x": 140, - "y": 148 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9991983771324158, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3602021038532257, - "x_min": 0.18906906247138977, - "y_max": 0.7855886220932007, - "y_min": 0.32251763343811035 - }, - "confidence": 0.9999699592590332, - "label": "vehicle", - "label_id": 2 - }, - "h": 200, - "region_id": 6681, - "roi_type": "vehicle", - "type": { - "confidence": 0.7719494104385376, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 131, - "x": 145, - "y": 139 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9998089671134949, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3588583469390869, - "x_min": 0.1904894858598709, - "y_max": 0.766708493232727, - "y_min": 0.31205347180366516 - }, - "confidence": 0.9999749660491943, - "label": "vehicle", - "label_id": 2 - }, - "h": 196, - "region_id": 6682, - "roi_type": "vehicle", - "type": { - "confidence": 0.6637498736381531, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 129, - "x": 146, - "y": 135 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999306201934814, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.354780912399292, - "x_min": 0.19472239911556244, - "y_max": 0.7405029535293579, - "y_min": 0.29147496819496155 - }, - "confidence": 0.9999440908432007, - "label": "vehicle", - "label_id": 2 - }, - "h": 194, - "region_id": 6683, - "roi_type": "vehicle", - "type": { - "confidence": 0.8586626648902893, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 123, - "x": 150, - "y": 126 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9711026549339294, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34999334812164307, - "x_min": 0.194540336728096, - "y_max": 0.7187595367431641, - "y_min": 0.2768002152442932 - }, - "confidence": 0.9998922348022461, - "label": "vehicle", - "label_id": 2 - }, - "h": 191, - "region_id": 6684, - "roi_type": "vehicle", - "type": { - "confidence": 0.9108662605285645, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 119, - "x": 149, - "y": 120 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9928416013717651, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3457085192203522, - "x_min": 0.20007964968681335, - "y_max": 0.6881219744682312, - "y_min": 0.2653038501739502 - }, - "confidence": 0.9998040795326233, - "label": "vehicle", - "label_id": 2 - }, - "h": 183, - "region_id": 6685, - "roi_type": "vehicle", - "type": { - "confidence": 0.8837874531745911, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 112, - "x": 154, - "y": 115 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9985859394073486, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34467506408691406, - "x_min": 0.19982749223709106, - "y_max": 0.6525393724441528, - "y_min": 0.2548128664493561 - }, - "confidence": 0.9998615980148315, - "label": "vehicle", - "label_id": 2 - }, - "h": 172, - "region_id": 6686, - "roi_type": "vehicle", - "type": { - "confidence": 0.6626163721084595, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 111, - "x": 153, - "y": 110 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9502972960472107, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34181272983551025, - "x_min": 0.1947338730096817, - "y_max": 0.6376242786645889, - "y_min": 0.23916591703891754 - }, - "confidence": 0.9997871518135071, - "label": "vehicle", - "label_id": 2 - }, - "h": 172, - "region_id": 6687, - "roi_type": "vehicle", - "type": { - "confidence": 0.7591845989227295, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 113, - "x": 150, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9493867754936218, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3388643264770508, - "x_min": 0.19013750553131104, - "y_max": 0.6308777332305908, - "y_min": 0.2227199673652649 - }, - "confidence": 0.9997004270553589, - "label": "vehicle", - "label_id": 2 - }, - "h": 176, - "region_id": 6688, - "roi_type": "vehicle", - "type": { - "confidence": 0.5599343776702881, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 114, - "x": 146, - "y": 96 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9648703336715698, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3375055193901062, - "x_min": 0.18740473687648773, - "y_max": 0.5995768308639526, - "y_min": 0.20673570036888123 - }, - "confidence": 0.9998914003372192, - "label": "vehicle", - "label_id": 2 - }, - "h": 170, - "region_id": 6689, - "roi_type": "vehicle", - "type": { - "confidence": 0.6556660532951355, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 115, - "x": 144, - "y": 89 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8755231499671936, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3318176567554474, - "x_min": 0.17809423804283142, - "y_max": 0.5778812617063522, - "y_min": 0.19000546634197235 - }, - "confidence": 0.9998241066932678, - "label": "vehicle", - "label_id": 2 - }, - "h": 168, - "region_id": 6690, - "roi_type": "vehicle", - "type": { - "confidence": 0.620614767074585, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 118, - "x": 137, - "y": 82 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.5343877077102661, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3320659399032593, - "x_min": 0.1678294688463211, - "y_max": 0.5662893801927567, - "y_min": 0.17552174627780914 - }, - "confidence": 0.9969955682754517, - "label": "vehicle", - "label_id": 2 - }, - "h": 169, - "region_id": 6691, - "roi_type": "vehicle", - "type": { - "confidence": 0.5632005333900452, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 126, - "x": 129, - "y": 76 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7536901831626892, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.33100444078445435, - "x_min": 0.15877386927604675, - "y_max": 0.5364057421684265, - "y_min": 0.16238099336624146 - }, - "confidence": 0.99989914894104, - "label": "vehicle", - "label_id": 2 - }, - "h": 162, - "region_id": 6692, - "roi_type": "vehicle", - "type": { - "confidence": 0.9606968760490417, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 132, - "x": 122, - "y": 70 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7409470081329346, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.32596272230148315, - "x_min": 0.1472930908203125, - "y_max": 0.5152767300605774, - "y_min": 0.15732121467590332 - }, - "confidence": 0.9999929666519165, - "label": "vehicle", - "label_id": 2 - }, - "h": 155, - "region_id": 6693, - "roi_type": "vehicle", - "type": { - "confidence": 0.9005874991416931, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 137, - "x": 113, - "y": 68 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8630040884017944, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3235021233558655, - "x_min": 0.13618597388267517, - "y_max": 0.5010689496994019, - "y_min": 0.15680626034736633 - }, - "confidence": 0.999995231628418, - "label": "vehicle", - "label_id": 2 - }, - "h": 149, - "region_id": 6694, - "roi_type": "vehicle", - "type": { - "confidence": 0.963317334651947, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 144, - "x": 105, - "y": 68 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.5177339315414429, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.31811434030532837, - "x_min": 0.12496490776538849, - "y_max": 0.48322823643684387, - "y_min": 0.1473962366580963 - }, - "confidence": 0.9999911785125732, - "label": "vehicle", - "label_id": 2 - }, - "h": 145, - "region_id": 6695, - "roi_type": "vehicle", - "type": { - "confidence": 0.9834175705909729, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 148, - "x": 96, - "y": 64 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9002454876899719, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.31093723326921463, - "x_min": 0.10377121716737747, - "y_max": 0.46475063264369965, - "y_min": 0.14403758943080902 - }, - "confidence": 0.9999978542327881, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "region_id": 6696, - "roi_type": "vehicle", - "type": { - "confidence": 0.979969322681427, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 159, - "x": 80, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.5329621434211731, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3060434088110924, - "x_min": 0.08956294506788254, - "y_max": 0.4555552154779434, - "y_min": 0.13558460772037506 - }, - "confidence": 0.9999889135360718, - "label": "vehicle", - "label_id": 2 - }, - "h": 138, - "region_id": 6697, - "roi_type": "vehicle", - "type": { - "confidence": 0.6467808485031128, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 166, - "x": 69, - "y": 59 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8349910974502563, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.29430411010980606, - "x_min": 0.07462427765130997, - "y_max": 0.4425668269395828, - "y_min": 0.13647617399692535 - }, - "confidence": 0.9999735355377197, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 6698, - "roi_type": "vehicle", - "type": { - "confidence": 0.8573600649833679, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 169, - "x": 57, - "y": 59 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9079904556274414, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.28833314031362534, - "x_min": 0.06440760940313339, - "y_max": 0.42713563144207, - "y_min": 0.1353260725736618 - }, - "confidence": 0.9999496936798096, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 6699, - "roi_type": "vehicle", - "type": { - "confidence": 0.9182760715484619, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 172, - "x": 49, - "y": 58 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9153870940208435, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2806038334965706, - "x_min": 0.046518273651599884, - "y_max": 0.4131326228380203, - "y_min": 0.13239772617816925 - }, - "confidence": 0.9999241828918457, - "label": "vehicle", - "label_id": 2 - }, - "h": 121, - "region_id": 6700, - "roi_type": "vehicle", - "type": { - "confidence": 0.9403806328773499, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 180, - "x": 36, - "y": 57 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9474499225616455, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.27025366574525833, - "x_min": 0.031960584223270416, - "y_max": 0.40551871061325073, - "y_min": 0.1313827633857727 - }, - "confidence": 0.9999902248382568, - "label": "vehicle", - "label_id": 2 - }, - "h": 118, - "region_id": 6701, - "roi_type": "vehicle", - "type": { - "confidence": 0.9429293870925903, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 183, - "x": 25, - "y": 57 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9998084902763367, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2574407830834389, - "x_min": 0.018124915659427643, - "y_max": 0.39813748002052307, - "y_min": 0.12768623232841492 - }, - "confidence": 0.9999737739562988, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 6703, - "roi_type": "vehicle", - "type": { - "confidence": 0.8892050981521606, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 184, - "x": 14, - "y": 55 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999219179153442, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.24728650599718094, - "x_min": 0.004216648638248444, - "y_max": 0.39358004927635193, - "y_min": 0.12342569231987 - }, - "confidence": 0.9995150566101074, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 6702, - "roi_type": "vehicle", - "type": { - "confidence": 0.722600519657135, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 187, - "x": 3, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.994304358959198, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.23507950454950333, - "x_min": 0.0055961087346076965, - "y_max": 0.3909708857536316, - "y_min": 0.12340492010116577 - }, - "confidence": 0.9983311295509338, - "label": "vehicle", - "label_id": 2 - }, - "h": 116, - "region_id": 6704, - "roi_type": "vehicle", - "type": { - "confidence": 0.9526728987693787, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 176, - "x": 4, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9984727501869202, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.22479692846536636, - "x_min": 0.0017654374241828918, - "y_max": 0.3854464143514633, - "y_min": 0.12457780539989471 - }, - "confidence": 0.9997487664222717, - "label": "vehicle", - "label_id": 2 - }, - "h": 113, - "region_id": 6705, - "roi_type": "vehicle", - "type": { - "confidence": 0.962515115737915, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 171, - "x": 1, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9998278617858887, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.21433766931295395, - "x_min": 0.0017601177096366882, - "y_max": 0.37883228063583374, - "y_min": 0.1250355839729309 - }, - "confidence": 0.99918133020401, - "label": "vehicle", - "label_id": 2 - }, - "h": 110, - "region_id": 6706, - "roi_type": "vehicle", - "type": { - "confidence": 0.9985003471374512, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 163, - "x": 1, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.999667763710022, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2030910775065422, - "x_min": 0.0008123144507408142, - "y_max": 0.37199288606643677, - "y_min": 0.12212663888931274 - }, - "confidence": 0.9997194409370422, - "label": "vehicle", - "label_id": 2 - }, - "h": 108, - "region_id": 6707, - "roi_type": "vehicle", - "type": { - "confidence": 0.9995529055595398, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 155, - "x": 1, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999610185623169, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.18479623645544052, - "x_min": 0.0, - "y_max": 0.36851049214601517, - "y_min": 0.1222873404622078 - }, - "confidence": 0.9995477795600891, - "label": "vehicle", - "label_id": 2 - }, - "h": 106, - "region_id": 6708, - "roi_type": "vehicle", - "type": { - "confidence": 0.9995977282524109, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 142, - "x": 0, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9997596144676208, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.1737116277217865, - "x_min": 0.0, - "y_max": 0.36372971534729004, - "y_min": 0.11915415525436401 - }, - "confidence": 0.9950657486915588, - "label": "vehicle", - "label_id": 2 - }, - "h": 106, - "region_id": 6709, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999232292175293, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 133, - "x": 0, - "y": 51 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999818801879883, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.16038884222507477, - "x_min": 0.0, - "y_max": 0.3588944375514984, - "y_min": 0.1205725371837616 - }, - "confidence": 0.9822043776512146, - "label": "vehicle", - "label_id": 2 - }, - "h": 103, - "region_id": 6710, - "roi_type": "vehicle", - "type": { - "confidence": 0.999942421913147, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 123, - "x": 0, - "y": 52 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999450445175171, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.14810673147439957, - "x_min": 0.0, - "y_max": 0.35652363300323486, - "y_min": 0.12085320055484772 - }, - "confidence": 0.9530179500579834, - "label": "vehicle", - "label_id": 2 - }, - "h": 102, - "region_id": 6711, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998893737792969, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 114, - "x": 0, - "y": 52 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9992677569389343, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.13574014604091644, - "x_min": 0.0, - "y_max": 0.3567160964012146, - "y_min": 0.12330564856529236 - }, - "confidence": 0.7856730818748474, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "region_id": 6712, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998465776443481, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 104, - "x": 0, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9976156949996948, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.11242122203111649, - "x_min": 0.0019209012389183044, - "y_max": 0.35550349950790405, - "y_min": 0.1260470598936081 - }, - "confidence": 0.6798886060714722, - "label": "vehicle", - "label_id": 2 - }, - "h": 99, - "region_id": 6713, - "roi_type": "vehicle", - "type": { - "confidence": 0.9904062151908875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 85, - "x": 1, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9454761147499084, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.09885160624980927, - "x_min": 0.003643341362476349, - "y_max": 0.358278751373291, - "y_min": 0.1264287382364273 - }, - "confidence": 0.7773323655128479, - "label": "vehicle", - "label_id": 2 - }, - "h": 100, - "region_id": 6714, - "roi_type": "vehicle", - "type": { - "confidence": 0.9880791306495667, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 73, - "x": 3, - "y": 55 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.39773839712142944, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.0878419578075409, - "x_min": 0.0017804354429244995, - "y_max": 0.3632156252861023, - "y_min": 0.12948653101921082 - }, - "confidence": 0.6258467435836792, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "region_id": 6715, - "roi_type": "vehicle", - "type": { - "confidence": 0.9339539408683777, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 66, - "x": 1, - "y": 56 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9392625093460083, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.07318701222538948, - "x_min": 0.004130352288484573, - "y_max": 0.3511764109134674, - "y_min": 0.14347276091575623 - }, - "confidence": 0.6314224004745483, - "label": "vehicle", - "label_id": 2 - }, - "h": 90, - "region_id": 6716, - "roi_type": "vehicle", - "type": { - "confidence": 0.591683566570282, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 53, - "x": 3, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9517311453819275, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.06266952119767666, - "x_min": 0.0, - "y_max": 0.34957605600357056, - "y_min": 0.14383465051651 - }, - "confidence": 0.6896519064903259, - "label": "vehicle", - "label_id": 2 - }, - "h": 89, - "region_id": 6717, - "roi_type": "vehicle", - "type": { - "confidence": 0.8126508593559265, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 48, - "x": 0, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7189172506332397, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.04970441199839115, - "x_min": 0.0, - "y_max": 0.34233343601226807, - "y_min": 0.14351695775985718 - }, - "confidence": 0.6430801749229431, - "label": "vehicle", - "label_id": 2 - }, - "h": 86, - "region_id": 6718, - "roi_type": "vehicle", - "type": { - "confidence": 0.9153555035591125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 38, - "x": 0, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49250000000 - } - ] -} \ No newline at end of file diff --git a/tests/test_cases/pipeline_execution/cpu/object_classification_intver_cpu_gstreamer.json b/tests/test_cases/pipeline_execution/cpu/object_classification_intver_cpu_gstreamer.json deleted file mode 100644 index 02da9c9..0000000 --- a/tests/test_cases/pipeline_execution/cpu/object_classification_intver_cpu_gstreamer.json +++ /dev/null @@ -1,11705 +0,0 @@ -{ - "options": {}, - "pipeline": { - "name": "object_classification", - "version": 1 - }, - "request": { - "source": { - "type": "uri", - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4" - }, - "destination": { - "type": "file", - "path": "/tmp/emotion_recognition_copy_results.json", - "format": "json-lines" - }, - "parameters": { - "detection-device": "CPU", - "classification-device": "CPU" - } - }, - "numerical_tolerance": 0.001, - "result": [ - { - "objects": [ - { - "color": { - "confidence": 0.85414719581604, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.7448995113372803, - "x_min": 0.6734092235565186, - "y_max": 0.9991496205329895, - "y_min": 0.8781012892723083 - }, - "confidence": 0.5402482748031616, - "label": "person", - "label_id": 1 - }, - "h": 52, - "region_id": 8198, - "roi_type": "person", - "type": { - "confidence": 0.9997184872627258, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 55, - "x": 517, - "y": 379 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8775017857551575, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.7442192435264587, - "x_min": 0.6763269305229187, - "y_max": 1.0, - "y_min": 0.8277981281280518 - }, - "confidence": 0.5505853295326233, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 8199, - "roi_type": "person", - "type": { - "confidence": 0.9931918978691101, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 52, - "x": 519, - "y": 358 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.3408125638961792, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.7465136051177979, - "x_min": 0.6821862459182739, - "y_max": 1.0, - "y_min": 0.8104690909385681 - }, - "confidence": 0.6447358131408691, - "label": "person", - "label_id": 1 - }, - "h": 82, - "region_id": 8200, - "roi_type": "person", - "type": { - "confidence": 0.9991617202758789, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 49, - "x": 524, - "y": 350 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8704882264137268, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.7481286525726318, - "x_min": 0.68366539478302, - "y_max": 0.9999657869338989, - "y_min": 0.7867170572280884 - }, - "confidence": 0.882526695728302, - "label": "person", - "label_id": 1 - }, - "h": 92, - "region_id": 8201, - "roi_type": "person", - "type": { - "confidence": 0.9977902173995972, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 50, - "x": 525, - "y": 340 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.6216492056846619, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.7502986788749695, - "x_min": 0.6836960911750793, - "y_max": 0.9965759515762329, - "y_min": 0.7709740400314331 - }, - "confidence": 0.9252126812934875, - "label": "person", - "label_id": 1 - }, - "h": 97, - "region_id": 8202, - "roi_type": "person", - "type": { - "confidence": 0.9967226386070251, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 51, - "x": 525, - "y": 333 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.5905908346176147, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.7533046007156372, - "x_min": 0.6833932399749756, - "y_max": 0.9992514848709106, - "y_min": 0.7517307996749878 - }, - "confidence": 0.9160429835319519, - "label": "person", - "label_id": 1 - }, - "h": 107, - "region_id": 8203, - "roi_type": "person", - "type": { - "confidence": 0.9979236125946045, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 54, - "x": 525, - "y": 325 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9116435050964355, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.7569091320037842, - "x_min": 0.6831721067428589, - "y_max": 0.9893119931221008, - "y_min": 0.7454761862754822 - }, - "confidence": 0.9452281594276428, - "label": "person", - "label_id": 1 - }, - "h": 105, - "region_id": 8205, - "roi_type": "person", - "type": { - "confidence": 0.9996843338012695, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 57, - "x": 525, - "y": 322 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.5236219763755798, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.758220374584198, - "x_min": 0.6869714856147766, - "y_max": 0.9744250774383545, - "y_min": 0.7232376337051392 - }, - "confidence": 0.9522698521614075, - "label": "person", - "label_id": 1 - }, - "h": 109, - "region_id": 8206, - "roi_type": "person", - "type": { - "confidence": 0.9999343156814575, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 55, - "x": 528, - "y": 312 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8037455677986145, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.757515549659729, - "x_min": 0.6908836364746094, - "y_max": 0.9485968351364136, - "y_min": 0.7128696441650391 - }, - "confidence": 0.8796297907829285, - "label": "person", - "label_id": 1 - }, - "h": 102, - "region_id": 8207, - "roi_type": "person", - "type": { - "confidence": 0.9995437264442444, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 51, - "x": 531, - "y": 308 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.6591662764549255, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.7562522292137146, - "x_min": 0.6947104334831238, - "y_max": 0.8969831466674805, - "y_min": 0.7029379606246948 - }, - "confidence": 0.8928061127662659, - "label": "person", - "label_id": 1 - }, - "h": 84, - "region_id": 8208, - "roi_type": "person", - "type": { - "confidence": 0.9998576641082764, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 47, - "x": 534, - "y": 304 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8908748030662537, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.7574296593666077, - "x_min": 0.6979045271873474, - "y_max": 0.8754802346229553, - "y_min": 0.6884984374046326 - }, - "confidence": 0.8720522522926331, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 8210, - "roi_type": "person", - "type": { - "confidence": 0.9999436140060425, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 46, - "x": 536, - "y": 297 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.6148545145988464, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.7628753781318665, - "x_min": 0.6962668299674988, - "y_max": 0.9012861251831055, - "y_min": 0.6672508716583252 - }, - "confidence": 0.6989018321037292, - "label": "person", - "label_id": 1 - }, - "h": 101, - "region_id": 8209, - "roi_type": "person", - "type": { - "confidence": 0.9999972581863403, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 51, - "x": 535, - "y": 288 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.46115830540657043, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.7642366886138916, - "x_min": 0.6945128440856934, - "y_max": 0.8976410031318665, - "y_min": 0.6511140465736389 - }, - "confidence": 0.6954102516174316, - "label": "person", - "label_id": 1 - }, - "h": 106, - "region_id": 8211, - "roi_type": "person", - "type": { - "confidence": 0.9999994039535522, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 54, - "x": 533, - "y": 281 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.3595777451992035, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.7641031742095947, - "x_min": 0.7028636932373047, - "y_max": 0.8516806960105896, - "y_min": 0.6483859419822693 - }, - "confidence": 0.6670747995376587, - "label": "person", - "label_id": 1 - }, - "h": 88, - "region_id": 8212, - "roi_type": "person", - "type": { - "confidence": 0.9999902248382568, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 47, - "x": 540, - "y": 280 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.6526699066162109, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.7670164108276367, - "x_min": 0.7064443826675415, - "y_max": 0.829826295375824, - "y_min": 0.6299616694450378 - }, - "confidence": 0.929532527923584, - "label": "person", - "label_id": 1 - }, - "h": 86, - "region_id": 8213, - "roi_type": "person", - "type": { - "confidence": 0.9998779296875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 47, - "x": 543, - "y": 272 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.871353030204773, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.7725509405136108, - "x_min": 0.7098292112350464, - "y_max": 0.8254445195198059, - "y_min": 0.6173177361488342 - }, - "confidence": 0.6896131634712219, - "label": "person", - "label_id": 1 - }, - "h": 90, - "region_id": 8214, - "roi_type": "person", - "type": { - "confidence": 0.9999974966049194, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 48, - "x": 545, - "y": 267 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8975631594657898, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.77418452501297, - "x_min": 0.7090356945991516, - "y_max": 0.8218122124671936, - "y_min": 0.6104786992073059 - }, - "confidence": 0.7604833841323853, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 8215, - "roi_type": "person", - "type": { - "confidence": 0.9999978542327881, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 50, - "x": 545, - "y": 264 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8411992788314819, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.7783714532852173, - "x_min": 0.7181830406188965, - "y_max": 0.7849859595298767, - "y_min": 0.5744112133979797 - }, - "confidence": 0.502738356590271, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 8216, - "roi_type": "person", - "type": { - "confidence": 0.9999980926513672, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 46, - "x": 552, - "y": 248 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9178411960601807, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.7834279537200928, - "x_min": 0.7257949113845825, - "y_max": 0.7589362263679504, - "y_min": 0.5519590973854065 - }, - "confidence": 0.7043135166168213, - "label": "person", - "label_id": 1 - }, - "h": 89, - "region_id": 8217, - "roi_type": "person", - "type": { - "confidence": 0.9997788071632385, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 44, - "x": 557, - "y": 238 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.6195650696754456, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.78952956199646, - "x_min": 0.7326743602752686, - "y_max": 0.7261121273040771, - "y_min": 0.5483003854751587 - }, - "confidence": 0.9756479263305664, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 8218, - "roi_type": "person", - "type": { - "confidence": 0.9999959468841553, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 44, - "x": 563, - "y": 237 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.988448441028595, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.7890371084213257, - "x_min": 0.737720251083374, - "y_max": 0.7031307816505432, - "y_min": 0.5400574803352356 - }, - "confidence": 0.8415098786354065, - "label": "person", - "label_id": 1 - }, - "h": 70, - "region_id": 8219, - "roi_type": "person", - "type": { - "confidence": 0.9999988079071045, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 39, - "x": 567, - "y": 233 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9893774390220642, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.7952908873558044, - "x_min": 0.7402903437614441, - "y_max": 0.6921250820159912, - "y_min": 0.5216915607452393 - }, - "confidence": 0.7716295719146729, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 8220, - "roi_type": "person", - "type": { - "confidence": 0.999998927116394, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 42, - "x": 569, - "y": 225 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9522087574005127, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.8006463646888733, - "x_min": 0.746234118938446, - "y_max": 0.6880520582199097, - "y_min": 0.5218417644500732 - }, - "confidence": 0.8759844303131104, - "label": "person", - "label_id": 1 - }, - "h": 72, - "region_id": 8221, - "roi_type": "person", - "type": { - "confidence": 0.9999991655349731, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 42, - "x": 573, - "y": 225 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.5695065855979919, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.8098055720329285, - "x_min": 0.7457361817359924, - "y_max": 0.7030310034751892, - "y_min": 0.5026633143424988 - }, - "confidence": 0.9101058840751648, - "label": "person", - "label_id": 1 - }, - "h": 87, - "region_id": 8222, - "roi_type": "person", - "type": { - "confidence": 0.9999678134918213, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 49, - "x": 573, - "y": 217 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.6269248127937317, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.8131635785102844, - "x_min": 0.7560372948646545, - "y_max": 0.68419349193573, - "y_min": 0.4961233139038086 - }, - "confidence": 0.9086412787437439, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 8223, - "roi_type": "person", - "type": { - "confidence": 0.9999982118606567, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 44, - "x": 581, - "y": 214 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.933232307434082, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.823058545589447, - "x_min": 0.7637491822242737, - "y_max": 0.6855756640434265, - "y_min": 0.4885023236274719 - }, - "confidence": 0.8248202800750732, - "label": "person", - "label_id": 1 - }, - "h": 85, - "region_id": 8226, - "roi_type": "person", - "type": { - "confidence": 0.9999990463256836, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 46, - "x": 587, - "y": 211 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.869202733039856, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.8232852220535278, - "x_min": 0.760567307472229, - "y_max": 0.6924915909767151, - "y_min": 0.47507840394973755 - }, - "confidence": 0.6950181126594543, - "label": "person", - "label_id": 1 - }, - "h": 94, - "region_id": 8229, - "roi_type": "person", - "type": { - "confidence": 0.9999958276748657, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 48, - "x": 584, - "y": 205 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.972730815410614, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.8322221040725708, - "x_min": 0.7602424621582031, - "y_max": 0.6941542625427246, - "y_min": 0.46584224700927734 - }, - "confidence": 0.5867351293563843, - "label": "person", - "label_id": 1 - }, - "h": 99, - "region_id": 8230, - "roi_type": "person", - "type": { - "confidence": 0.9999988079071045, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 55, - "x": 584, - "y": 201 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.4252772927284241, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.8429373502731323, - "x_min": 0.793522834777832, - "y_max": 0.6419346928596497, - "y_min": 0.43809905648231506 - }, - "confidence": 0.96792072057724, - "label": "person", - "label_id": 1 - }, - "h": 88, - "region_id": 8231, - "roi_type": "person", - "type": { - "confidence": 0.9996010661125183, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 38, - "x": 609, - "y": 189 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.6223617792129517, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.849794328212738, - "x_min": 0.796667754650116, - "y_max": 0.615337610244751, - "y_min": 0.44303929805755615 - }, - "confidence": 0.8853123188018799, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 8232, - "roi_type": "person", - "type": { - "confidence": 0.999998927116394, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 41, - "x": 612, - "y": 191 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7868944406509399, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.8533491492271423, - "x_min": 0.8009874224662781, - "y_max": 0.6051764488220215, - "y_min": 0.4295734465122223 - }, - "confidence": 0.90330970287323, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 8235, - "roi_type": "person", - "type": { - "confidence": 0.9999786615371704, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 40, - "x": 615, - "y": 186 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.970276951789856, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.8604123592376709, - "x_min": 0.8060647249221802, - "y_max": 0.5924712419509888, - "y_min": 0.42701780796051025 - }, - "confidence": 0.8053339719772339, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 8237, - "roi_type": "person", - "type": { - "confidence": 0.9999996423721313, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 42, - "x": 619, - "y": 184 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.97050940990448, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.8663100600242615, - "x_min": 0.810594379901886, - "y_max": 0.5942341089248657, - "y_min": 0.42083391547203064 - }, - "confidence": 0.7699306607246399, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 8239, - "roi_type": "person", - "type": { - "confidence": 0.9999923706054688, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 43, - "x": 623, - "y": 182 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.5574979186058044, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.8744010329246521, - "x_min": 0.817695677280426, - "y_max": 0.5900759696960449, - "y_min": 0.41369643807411194 - }, - "confidence": 0.9554973244667053, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 8240, - "roi_type": "person", - "type": { - "confidence": 0.9994456171989441, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 44, - "x": 628, - "y": 179 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.6076091527938843, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.8855565190315247, - "x_min": 0.8264035582542419, - "y_max": 0.5860601663589478, - "y_min": 0.4029603898525238 - }, - "confidence": 0.8228950500488281, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 8242, - "roi_type": "person", - "type": { - "confidence": 0.9999911785125732, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 45, - "x": 635, - "y": 174 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9287952780723572, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.8908534049987793, - "x_min": 0.8350781202316284, - "y_max": 0.5897727012634277, - "y_min": 0.3878403902053833 - }, - "confidence": 0.8011389970779419, - "label": "person", - "label_id": 1 - }, - "h": 87, - "region_id": 8243, - "roi_type": "person", - "type": { - "confidence": 0.9999973773956299, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 43, - "x": 641, - "y": 168 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9318844676017761, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9007775187492371, - "x_min": 0.8356189131736755, - "y_max": 0.5877959132194519, - "y_min": 0.39412611722946167 - }, - "confidence": 0.6489140391349792, - "label": "person", - "label_id": 1 - }, - "h": 84, - "region_id": 8244, - "roi_type": "person", - "type": { - "confidence": 0.999998927116394, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 50, - "x": 642, - "y": 170 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.6083628535270691, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9088490605354309, - "x_min": 0.8531065583229065, - "y_max": 0.5604838728904724, - "y_min": 0.376047819852829 - }, - "confidence": 0.6436927914619446, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 8245, - "roi_type": "person", - "type": { - "confidence": 0.9999017715454102, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 43, - "x": 655, - "y": 162 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.5269939303398132, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.91246098279953, - "x_min": 0.8664992451667786, - "y_max": 0.5441793203353882, - "y_min": 0.36725080013275146 - }, - "confidence": 0.8806077837944031, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 8246, - "roi_type": "person", - "type": { - "confidence": 0.9999099969863892, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 35, - "x": 665, - "y": 159 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.5704718232154846, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9204215407371521, - "x_min": 0.8713714480400085, - "y_max": 0.5294153690338135, - "y_min": 0.3520965278148651 - }, - "confidence": 0.9779548048973083, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 8247, - "roi_type": "person", - "type": { - "confidence": 0.999998927116394, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 38, - "x": 669, - "y": 152 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.826261043548584, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9224029779434204, - "x_min": 0.8775302171707153, - "y_max": 0.5218915343284607, - "y_min": 0.35059165954589844 - }, - "confidence": 0.9283971786499023, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 8249, - "roi_type": "person", - "type": { - "confidence": 0.999991774559021, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 34, - "x": 674, - "y": 151 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8079016208648682, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9281563758850098, - "x_min": 0.87200927734375, - "y_max": 0.5194041728973389, - "y_min": 0.3446289598941803 - }, - "confidence": 0.7565144896507263, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 8248, - "roi_type": "person", - "type": { - "confidence": 0.9999970197677612, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 43, - "x": 670, - "y": 149 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.812054455280304, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.937407910823822, - "x_min": 0.8853235840797424, - "y_max": 0.5107858777046204, - "y_min": 0.34274011850357056 - }, - "confidence": 0.950576663017273, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 8250, - "roi_type": "person", - "type": { - "confidence": 0.999974250793457, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 40, - "x": 680, - "y": 148 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9105177521705627, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9449759125709534, - "x_min": 0.8897075057029724, - "y_max": 0.5037586688995361, - "y_min": 0.33645257353782654 - }, - "confidence": 0.909963846206665, - "label": "person", - "label_id": 1 - }, - "h": 72, - "region_id": 8251, - "roi_type": "person", - "type": { - "confidence": 0.999998927116394, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 42, - "x": 683, - "y": 145 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9402719736099243, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9549130201339722, - "x_min": 0.8982007503509521, - "y_max": 0.5104894638061523, - "y_min": 0.3242742419242859 - }, - "confidence": 0.7820349931716919, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 8252, - "roi_type": "person", - "type": { - "confidence": 0.9999821186065674, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 44, - "x": 690, - "y": 140 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9804710149765015, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9616369009017944, - "x_min": 0.9061300754547119, - "y_max": 0.5176384449005127, - "y_min": 0.32654041051864624 - }, - "confidence": 0.7777004837989807, - "label": "person", - "label_id": 1 - }, - "h": 83, - "region_id": 8253, - "roi_type": "person", - "type": { - "confidence": 0.9999997615814209, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 43, - "x": 696, - "y": 141 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9912101030349731, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9738940000534058, - "x_min": 0.9141021966934204, - "y_max": 0.4915769100189209, - "y_min": 0.3181222677230835 - }, - "confidence": 0.7904218435287476, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 8254, - "roi_type": "person", - "type": { - "confidence": 0.9999995231628418, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 46, - "x": 702, - "y": 137 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.5516875386238098, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.975996196269989, - "x_min": 0.9256718754768372, - "y_max": 0.4855739176273346, - "y_min": 0.30408164858818054 - }, - "confidence": 0.7352949976921082, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 8255, - "roi_type": "person", - "type": { - "confidence": 0.9999760389328003, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 39, - "x": 711, - "y": 131 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.5773059129714966, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9818256497383118, - "x_min": 0.928584635257721, - "y_max": 0.47780394554138184, - "y_min": 0.2946469187736511 - }, - "confidence": 0.8346178531646729, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 8256, - "roi_type": "person", - "type": { - "confidence": 0.9998952150344849, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 41, - "x": 713, - "y": 127 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.5119068026542664, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9829865097999573, - "x_min": 0.9321264624595642, - "y_max": 0.46189287304878235, - "y_min": 0.2909712493419647 - }, - "confidence": 0.9709599018096924, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 8257, - "roi_type": "person", - "type": { - "confidence": 0.9999974966049194, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 39, - "x": 716, - "y": 126 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.6754337549209595, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9856051206588745, - "x_min": 0.9314626455307007, - "y_max": 0.4595508873462677, - "y_min": 0.2890259921550751 - }, - "confidence": 0.6953359246253967, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 8258, - "roi_type": "person", - "type": { - "confidence": 0.9970470070838928, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 42, - "x": 715, - "y": 125 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9611231684684753, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9974535703659058, - "x_min": 0.9289860725402832, - "y_max": 0.46979770064353943, - "y_min": 0.25890347361564636 - }, - "confidence": 0.5784777998924255, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 8259, - "roi_type": "person", - "type": { - "confidence": 0.992746889591217, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 53, - "x": 713, - "y": 112 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8589671850204468, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9965777397155762, - "x_min": 0.948677659034729, - "y_max": 0.4469355344772339, - "y_min": 0.2675803303718567 - }, - "confidence": 0.5522598028182983, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 8260, - "roi_type": "person", - "type": { - "confidence": 0.998832643032074, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 37, - "x": 729, - "y": 116 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7891656160354614, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.11904987692832947, - "y_max": 0.9856871068477631, - "y_min": 0.019983261823654175 - }, - "confidence": 0.5811690092086792, - "label": "vehicle", - "label_id": 2 - }, - "h": 417, - "region_id": 8261, - "roi_type": "vehicle", - "type": { - "confidence": 0.9973426461219788, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 677, - "x": 91, - "y": 9 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 13916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999992847442627, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3472718670964241, - "x_min": 0.12164772301912308, - "y_max": 1.0, - "y_min": 0.8393084406852722 - }, - "confidence": 0.6197941899299622, - "label": "vehicle", - "label_id": 2 - }, - "h": 69, - "region_id": 8262, - "roi_type": "vehicle", - "type": { - "confidence": 0.9978079199790955, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 173, - "x": 93, - "y": 363 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999407529830933, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35296928882598877, - "x_min": 0.12145508825778961, - "y_max": 1.0, - "y_min": 0.809481143951416 - }, - "confidence": 0.7172138094902039, - "label": "vehicle", - "label_id": 2 - }, - "h": 82, - "region_id": 8263, - "roi_type": "vehicle", - "type": { - "confidence": 0.9810752272605896, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 178, - "x": 93, - "y": 350 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9996539354324341, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35698965191841125, - "x_min": 0.12027296423912048, - "y_max": 0.9967044591903687, - "y_min": 0.783829927444458 - }, - "confidence": 0.8247243762016296, - "label": "vehicle", - "label_id": 2 - }, - "h": 92, - "region_id": 8264, - "roi_type": "vehicle", - "type": { - "confidence": 0.7544021010398865, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 182, - "x": 92, - "y": 339 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.999993085861206, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35937564820051193, - "x_min": 0.1130119189620018, - "y_max": 0.9963881969451904, - "y_min": 0.7641627788543701 - }, - "confidence": 0.8237555027008057, - "label": "vehicle", - "label_id": 2 - }, - "h": 100, - "region_id": 8265, - "roi_type": "vehicle", - "type": { - "confidence": 0.9930738210678101, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 189, - "x": 87, - "y": 330 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9995425939559937, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3695478141307831, - "x_min": 0.11453911662101746, - "y_max": 1.0, - "y_min": 0.7280340790748596 - }, - "confidence": 0.7173946499824524, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 8266, - "roi_type": "vehicle", - "type": { - "confidence": 0.50337153673172, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 196, - "x": 88, - "y": 315 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9991163611412048, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36808082461357117, - "x_min": 0.10083702206611633, - "y_max": 0.9959658980369568, - "y_min": 0.7031351923942566 - }, - "confidence": 0.8457762002944946, - "label": "vehicle", - "label_id": 2 - }, - "h": 127, - "region_id": 8267, - "roi_type": "vehicle", - "type": { - "confidence": 0.8348413705825806, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 205, - "x": 77, - "y": 304 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9991899132728577, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.37700890004634857, - "x_min": 0.10729126632213593, - "y_max": 0.9994959831237793, - "y_min": 0.6779965162277222 - }, - "confidence": 0.9278457760810852, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "region_id": 8268, - "roi_type": "vehicle", - "type": { - "confidence": 0.9957727789878845, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 207, - "x": 82, - "y": 293 - }, - { - "color": { - "confidence": 0.7643881440162659, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.12105026841163635, - "y_max": 0.9884764552116394, - "y_min": 0.031229078769683838 - }, - "confidence": 0.6490932106971741, - "label": "vehicle", - "label_id": 2 - }, - "h": 414, - "region_id": 8269, - "roi_type": "vehicle", - "type": { - "confidence": 0.9641008973121643, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 675, - "x": 93, - "y": 13 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9966446161270142, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.37933249771595, - "x_min": 0.10664261877536774, - "y_max": 1.0, - "y_min": 0.6494535207748413 - }, - "confidence": 0.9569631814956665, - "label": "vehicle", - "label_id": 2 - }, - "h": 151, - "region_id": 8270, - "roi_type": "vehicle", - "type": { - "confidence": 0.9936966300010681, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 209, - "x": 82, - "y": 281 - }, - { - "color": { - "confidence": 0.5622632503509521, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.12350031733512878, - "y_max": 0.9561575353145599, - "y_min": 0.036140888929367065 - }, - "confidence": 0.6475626826286316, - "label": "vehicle", - "label_id": 2 - }, - "h": 397, - "region_id": 8271, - "roi_type": "vehicle", - "type": { - "confidence": 0.9848967790603638, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 673, - "x": 95, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9998095631599426, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.37901879847049713, - "x_min": 0.10554523766040802, - "y_max": 1.0, - "y_min": 0.6312699913978577 - }, - "confidence": 0.9906972646713257, - "label": "vehicle", - "label_id": 2 - }, - "h": 159, - "region_id": 8272, - "roi_type": "vehicle", - "type": { - "confidence": 0.9978911280632019, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 210, - "x": 81, - "y": 273 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999986886978149, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3792016804218292, - "x_min": 0.11973920464515686, - "y_max": 0.9997225999832153, - "y_min": 0.6097801923751831 - }, - "confidence": 0.9947446584701538, - "label": "vehicle", - "label_id": 2 - }, - "h": 168, - "region_id": 8273, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998151659965515, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 199, - "x": 92, - "y": 263 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999973773956299, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3760889172554016, - "x_min": 0.11782974004745483, - "y_max": 0.9969019889831543, - "y_min": 0.5848079919815063 - }, - "confidence": 0.9949920773506165, - "label": "vehicle", - "label_id": 2 - }, - "h": 178, - "region_id": 8274, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999407529830933, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 198, - "x": 90, - "y": 253 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999994039535522, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3769965320825577, - "x_min": 0.11793924868106842, - "y_max": 0.9975459575653076, - "y_min": 0.5624508857727051 - }, - "confidence": 0.9885396361351013, - "label": "vehicle", - "label_id": 2 - }, - "h": 188, - "region_id": 8275, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999685287475586, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 199, - "x": 91, - "y": 243 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999995231628418, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.37293992936611176, - "x_min": 0.11036746203899384, - "y_max": 1.0, - "y_min": 0.5396616458892822 - }, - "confidence": 0.9783477783203125, - "label": "vehicle", - "label_id": 2 - }, - "h": 199, - "region_id": 8276, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998794794082642, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 202, - "x": 85, - "y": 233 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999992847442627, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36592480540275574, - "x_min": 0.13214635848999023, - "y_max": 1.0, - "y_min": 0.5241050720214844 - }, - "confidence": 0.9772934317588806, - "label": "vehicle", - "label_id": 2 - }, - "h": 206, - "region_id": 8277, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998465776443481, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 180, - "x": 101, - "y": 226 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999992847442627, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3634260296821594, - "x_min": 0.13490857183933258, - "y_max": 1.0, - "y_min": 0.5041921138763428 - }, - "confidence": 0.9919345378875732, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "region_id": 8278, - "roi_type": "vehicle", - "type": { - "confidence": 0.9955381751060486, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 176, - "x": 104, - "y": 218 - }, - { - "color": { - "confidence": 0.5667799711227417, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.960456371307373, - "x_min": 0.14331555366516113, - "y_max": 0.8030669689178467, - "y_min": 0.04740440845489502 - }, - "confidence": 0.6498066186904907, - "label": "vehicle", - "label_id": 2 - }, - "h": 326, - "region_id": 8279, - "roi_type": "vehicle", - "type": { - "confidence": 0.9822282195091248, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 628, - "x": 110, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999997615814209, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3554348349571228, - "x_min": 0.14201128482818604, - "y_max": 0.9914812445640564, - "y_min": 0.49649685621261597 - }, - "confidence": 0.9959776997566223, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "region_id": 8280, - "roi_type": "vehicle", - "type": { - "confidence": 0.9852773547172546, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 164, - "x": 109, - "y": 214 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35458171367645264, - "x_min": 0.14792513847351074, - "y_max": 0.9985901713371277, - "y_min": 0.47491592168807983 - }, - "confidence": 0.9977288842201233, - "label": "vehicle", - "label_id": 2 - }, - "h": 226, - "region_id": 8281, - "roi_type": "vehicle", - "type": { - "confidence": 0.9812224507331848, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 159, - "x": 114, - "y": 205 - }, - { - "color": { - "confidence": 0.6801050901412964, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9464908838272095, - "x_min": 0.37183070182800293, - "y_max": 0.8923693895339966, - "y_min": 0.04037749767303467 - }, - "confidence": 0.5506706833839417, - "label": "vehicle", - "label_id": 2 - }, - "h": 368, - "region_id": 8282, - "roi_type": "vehicle", - "type": { - "confidence": 0.9994076490402222, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 441, - "x": 286, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999994039535522, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35628217458724976, - "x_min": 0.1539267748594284, - "y_max": 0.9833188056945801, - "y_min": 0.4503910541534424 - }, - "confidence": 0.994249701499939, - "label": "vehicle", - "label_id": 2 - }, - "h": 230, - "region_id": 8283, - "roi_type": "vehicle", - "type": { - "confidence": 0.9980984330177307, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 155, - "x": 118, - "y": 195 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999985694885254, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3493105173110962, - "x_min": 0.15961898863315582, - "y_max": 0.9475720822811127, - "y_min": 0.4319262206554413 - }, - "confidence": 0.9976761937141418, - "label": "vehicle", - "label_id": 2 - }, - "h": 223, - "region_id": 8284, - "roi_type": "vehicle", - "type": { - "confidence": 0.9835509657859802, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 146, - "x": 123, - "y": 187 - }, - { - "color": { - "confidence": 0.614988386631012, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9634890258312225, - "x_min": 0.3556390702724457, - "y_max": 0.7470780611038208, - "y_min": 0.06608313322067261 - }, - "confidence": 0.7034559845924377, - "label": "vehicle", - "label_id": 2 - }, - "h": 294, - "region_id": 8285, - "roi_type": "vehicle", - "type": { - "confidence": 0.998102605342865, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 467, - "x": 273, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999997615814209, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3447081446647644, - "x_min": 0.16244013607501984, - "y_max": 0.9356728792190552, - "y_min": 0.42220282554626465 - }, - "confidence": 0.997654139995575, - "label": "vehicle", - "label_id": 2 - }, - "h": 222, - "region_id": 8286, - "roi_type": "vehicle", - "type": { - "confidence": 0.9667874574661255, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 140, - "x": 125, - "y": 182 - }, - { - "color": { - "confidence": 0.5594086050987244, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9825330972671509, - "x_min": 0.34150373935699463, - "y_max": 0.9223797023296356, - "y_min": 0.048903077840805054 - }, - "confidence": 0.5919698476791382, - "label": "vehicle", - "label_id": 2 - }, - "h": 377, - "region_id": 8287, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998914003372192, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 492, - "x": 262, - "y": 21 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.999996542930603, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3389114439487457, - "x_min": 0.16517701745033264, - "y_max": 0.9076908528804779, - "y_min": 0.4019246995449066 - }, - "confidence": 0.9994926452636719, - "label": "vehicle", - "label_id": 2 - }, - "h": 218, - "region_id": 8288, - "roi_type": "vehicle", - "type": { - "confidence": 0.547698438167572, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 133, - "x": 127, - "y": 174 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999867677688599, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3360127806663513, - "x_min": 0.1654418557882309, - "y_max": 0.8818584084510803, - "y_min": 0.3884504437446594 - }, - "confidence": 0.9987764954566956, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "region_id": 8289, - "roi_type": "vehicle", - "type": { - "confidence": 0.885420560836792, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 131, - "x": 127, - "y": 168 - }, - { - "color": { - "confidence": 0.42734625935554504, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9590835273265839, - "x_min": 0.31477364897727966, - "y_max": 0.8576100170612335, - "y_min": 0.07268145680427551 - }, - "confidence": 0.5272276401519775, - "label": "vehicle", - "label_id": 2 - }, - "h": 339, - "region_id": 8290, - "roi_type": "vehicle", - "type": { - "confidence": 0.999447762966156, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 495, - "x": 242, - "y": 31 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999828338623047, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.33232998847961426, - "x_min": 0.16263365745544434, - "y_max": 0.8597554564476013, - "y_min": 0.3726103901863098 - }, - "confidence": 0.9985213875770569, - "label": "vehicle", - "label_id": 2 - }, - "h": 210, - "region_id": 8291, - "roi_type": "vehicle", - "type": { - "confidence": 0.9828891754150391, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 130, - "x": 125, - "y": 161 - }, - { - "color": { - "confidence": 0.7075168490409851, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9746560454368591, - "x_min": 0.3364577889442444, - "y_max": 0.9104736745357513, - "y_min": 0.05242249369621277 - }, - "confidence": 0.5714530348777771, - "label": "vehicle", - "label_id": 2 - }, - "h": 371, - "region_id": 8292, - "roi_type": "vehicle", - "type": { - "confidence": 0.9997761845588684, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 490, - "x": 258, - "y": 23 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999812841415405, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.33004996180534363, - "x_min": 0.16184934973716736, - "y_max": 0.831344723701477, - "y_min": 0.35449519753456116 - }, - "confidence": 0.9997923970222473, - "label": "vehicle", - "label_id": 2 - }, - "h": 206, - "region_id": 8293, - "roi_type": "vehicle", - "type": { - "confidence": 0.9883471131324768, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 129, - "x": 124, - "y": 153 - }, - { - "color": { - "confidence": 0.5001221895217896, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9590028822422028, - "x_min": 0.3254684507846832, - "y_max": 0.8569502830505371, - "y_min": 0.06740456819534302 - }, - "confidence": 0.7004438042640686, - "label": "vehicle", - "label_id": 2 - }, - "h": 341, - "region_id": 8294, - "roi_type": "vehicle", - "type": { - "confidence": 0.9997856020927429, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 487, - "x": 250, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3289366066455841, - "x_min": 0.1574317216873169, - "y_max": 0.8062315583229065, - "y_min": 0.34386783838272095 - }, - "confidence": 0.9998531341552734, - "label": "vehicle", - "label_id": 2 - }, - "h": 200, - "region_id": 8295, - "roi_type": "vehicle", - "type": { - "confidence": 0.9963167905807495, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 132, - "x": 121, - "y": 149 - }, - { - "color": { - "confidence": 0.40223732590675354, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.964382529258728, - "x_min": 0.32466232776641846, - "y_max": 0.8281485438346863, - "y_min": 0.05045187473297119 - }, - "confidence": 0.7299045920372009, - "label": "vehicle", - "label_id": 2 - }, - "h": 336, - "region_id": 8296, - "roi_type": "vehicle", - "type": { - "confidence": 0.9992221593856812, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 491, - "x": 249, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999998807907104, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.32749849557876587, - "x_min": 0.15210948884487152, - "y_max": 0.7838110327720642, - "y_min": 0.3270363211631775 - }, - "confidence": 0.9998413324356079, - "label": "vehicle", - "label_id": 2 - }, - "h": 197, - "region_id": 8297, - "roi_type": "vehicle", - "type": { - "confidence": 0.9661583304405212, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 135, - "x": 117, - "y": 141 - }, - { - "color": { - "confidence": 0.4082354009151459, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9622262120246887, - "x_min": 0.3427131772041321, - "y_max": 0.87251016497612, - "y_min": 0.04009708762168884 - }, - "confidence": 0.5857366919517517, - "label": "vehicle", - "label_id": 2 - }, - "h": 360, - "region_id": 8298, - "roi_type": "vehicle", - "type": { - "confidence": 0.9991716146469116, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 476, - "x": 263, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.999996542930603, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3233610689640045, - "x_min": 0.14286422729492188, - "y_max": 0.7728333473205566, - "y_min": 0.3200983703136444 - }, - "confidence": 0.9999895095825195, - "label": "vehicle", - "label_id": 2 - }, - "h": 196, - "region_id": 8299, - "roi_type": "vehicle", - "type": { - "confidence": 0.9968462586402893, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 139, - "x": 110, - "y": 138 - }, - { - "color": { - "confidence": 0.32906028628349304, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9750470519065857, - "x_min": 0.29748600721359253, - "y_max": 0.878402590751648, - "y_min": 0.02611905336380005 - }, - "confidence": 0.6027935147285461, - "label": "vehicle", - "label_id": 2 - }, - "h": 368, - "region_id": 8300, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998162388801575, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 520, - "x": 228, - "y": 11 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999997615814209, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3201468884944916, - "x_min": 0.13641870021820068, - "y_max": 0.7574479579925537, - "y_min": 0.309865802526474 - }, - "confidence": 0.9999890327453613, - "label": "vehicle", - "label_id": 2 - }, - "h": 193, - "region_id": 8301, - "roi_type": "vehicle", - "type": { - "confidence": 0.9931427240371704, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 141, - "x": 105, - "y": 134 - }, - { - "color": { - "confidence": 0.5577108860015869, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.967246949672699, - "x_min": 0.2861178517341614, - "y_max": 0.8358006775379181, - "y_min": 0.03851500153541565 - }, - "confidence": 0.7227263450622559, - "label": "vehicle", - "label_id": 2 - }, - "h": 344, - "region_id": 8302, - "roi_type": "vehicle", - "type": { - "confidence": 0.999649167060852, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 523, - "x": 220, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.31699711084365845, - "x_min": 0.13015078008174896, - "y_max": 0.7375568151473999, - "y_min": 0.29937541484832764 - }, - "confidence": 0.9999899864196777, - "label": "vehicle", - "label_id": 2 - }, - "h": 189, - "region_id": 8303, - "roi_type": "vehicle", - "type": { - "confidence": 0.9005993008613586, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 143, - "x": 100, - "y": 129 - }, - { - "color": { - "confidence": 0.4868549406528473, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9515461325645447, - "x_min": 0.33267635107040405, - "y_max": 0.8539553582668304, - "y_min": 0.03352043032646179 - }, - "confidence": 0.8081793785095215, - "label": "vehicle", - "label_id": 2 - }, - "h": 354, - "region_id": 8304, - "roi_type": "vehicle", - "type": { - "confidence": 0.9985513091087341, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 475, - "x": 255, - "y": 14 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.313996784389019, - "x_min": 0.1178915724158287, - "y_max": 0.721222996711731, - "y_min": 0.2869602143764496 - }, - "confidence": 0.9999879598617554, - "label": "vehicle", - "label_id": 2 - }, - "h": 188, - "region_id": 8305, - "roi_type": "vehicle", - "type": { - "confidence": 0.4962369203567505, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 151, - "x": 91, - "y": 124 - }, - { - "color": { - "confidence": 0.5879678130149841, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9608641266822815, - "x_min": 0.32193297147750854, - "y_max": 0.872944712638855, - "y_min": 0.03886592388153076 - }, - "confidence": 0.6384647488594055, - "label": "vehicle", - "label_id": 2 - }, - "h": 360, - "region_id": 8306, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998008608818054, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 491, - "x": 247, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.31122130155563354, - "x_min": 0.10584880411624908, - "y_max": 0.7095153331756592, - "y_min": 0.28365960717201233 - }, - "confidence": 0.9999860525131226, - "label": "vehicle", - "label_id": 2 - }, - "h": 184, - "region_id": 8307, - "roi_type": "vehicle", - "type": { - "confidence": 0.7103947401046753, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 158, - "x": 81, - "y": 123 - }, - { - "color": { - "confidence": 0.6019455790519714, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9637041389942169, - "x_min": 0.32208338379859924, - "y_max": 0.8715708255767822, - "y_min": 0.04041773080825806 - }, - "confidence": 0.649631142616272, - "label": "vehicle", - "label_id": 2 - }, - "h": 359, - "region_id": 8308, - "roi_type": "vehicle", - "type": { - "confidence": 0.9997046589851379, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 493, - "x": 247, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.30708828568458557, - "x_min": 0.08848142623901367, - "y_max": 0.6941937208175659, - "y_min": 0.27684852480888367 - }, - "confidence": 0.9999517202377319, - "label": "vehicle", - "label_id": 2 - }, - "h": 180, - "region_id": 8309, - "roi_type": "vehicle", - "type": { - "confidence": 0.5102647542953491, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 168, - "x": 68, - "y": 120 - }, - { - "color": { - "confidence": 0.6667999625205994, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9554692804813385, - "x_min": 0.3402766287326813, - "y_max": 0.8379943072795868, - "y_min": 0.04827651381492615 - }, - "confidence": 0.7163934707641602, - "label": "vehicle", - "label_id": 2 - }, - "h": 341, - "region_id": 8310, - "roi_type": "vehicle", - "type": { - "confidence": 0.9969905614852905, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 472, - "x": 261, - "y": 21 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3021143078804016, - "x_min": 0.08180795609951019, - "y_max": 0.6738347411155701, - "y_min": 0.2771807909011841 - }, - "confidence": 0.9999845027923584, - "label": "vehicle", - "label_id": 2 - }, - "h": 171, - "region_id": 8311, - "roi_type": "vehicle", - "type": { - "confidence": 0.8760337233543396, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 169, - "x": 63, - "y": 120 - }, - { - "color": { - "confidence": 0.7902370691299438, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9660838842391968, - "x_min": 0.33971118927001953, - "y_max": 0.8525603115558624, - "y_min": 0.0668802559375763 - }, - "confidence": 0.5413897633552551, - "label": "vehicle", - "label_id": 2 - }, - "h": 339, - "region_id": 8312, - "roi_type": "vehicle", - "type": { - "confidence": 0.9997109770774841, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 481, - "x": 261, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2942667081952095, - "x_min": 0.07385558634996414, - "y_max": 0.656566858291626, - "y_min": 0.27267447113990784 - }, - "confidence": 0.9999916553497314, - "label": "vehicle", - "label_id": 2 - }, - "h": 166, - "region_id": 8313, - "roi_type": "vehicle", - "type": { - "confidence": 0.9852901697158813, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 169, - "x": 57, - "y": 118 - }, - { - "color": { - "confidence": 0.590167760848999, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9926852583885193, - "x_min": 0.3049655556678772, - "y_max": 0.8486753702163696, - "y_min": 0.05000650882720947 - }, - "confidence": 0.5591980814933777, - "label": "vehicle", - "label_id": 2 - }, - "h": 345, - "region_id": 8314, - "roi_type": "vehicle", - "type": { - "confidence": 0.9996962547302246, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 528, - "x": 234, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.28687456995248795, - "x_min": 0.06621802598237991, - "y_max": 0.6433695554733276, - "y_min": 0.2654878795146942 - }, - "confidence": 0.9999983310699463, - "label": "vehicle", - "label_id": 2 - }, - "h": 163, - "region_id": 8315, - "roi_type": "vehicle", - "type": { - "confidence": 0.9969983100891113, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 169, - "x": 51, - "y": 115 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.28295157104730606, - "x_min": 0.055335767567157745, - "y_max": 0.6373208165168762, - "y_min": 0.2616565227508545 - }, - "confidence": 0.9999963045120239, - "label": "vehicle", - "label_id": 2 - }, - "h": 162, - "region_id": 8316, - "roi_type": "vehicle", - "type": { - "confidence": 0.9995378255844116, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 175, - "x": 42, - "y": 113 - }, - { - "color": { - "confidence": 0.7691952586174011, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.95826455950737, - "x_min": 0.3554447591304779, - "y_max": 0.7013552486896515, - "y_min": 0.061350494623184204 - }, - "confidence": 0.6528945565223694, - "label": "vehicle", - "label_id": 2 - }, - "h": 276, - "region_id": 8317, - "roi_type": "vehicle", - "type": { - "confidence": 0.998582124710083, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 463, - "x": 273, - "y": 27 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.27854787558317184, - "x_min": 0.04411589354276657, - "y_max": 0.62773197889328, - "y_min": 0.2605406641960144 - }, - "confidence": 0.999983549118042, - "label": "vehicle", - "label_id": 2 - }, - "h": 159, - "region_id": 8318, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999783039093018, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 180, - "x": 34, - "y": 113 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.27031123638153076, - "x_min": 0.03065599501132965, - "y_max": 0.6122254133224487, - "y_min": 0.2575317919254303 - }, - "confidence": 0.9999444484710693, - "label": "vehicle", - "label_id": 2 - }, - "h": 153, - "region_id": 8319, - "roi_type": "vehicle", - "type": { - "confidence": 0.99994957447052, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 184, - "x": 24, - "y": 111 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2618173286318779, - "x_min": 0.01927035301923752, - "y_max": 0.6008049249649048, - "y_min": 0.2527608275413513 - }, - "confidence": 0.9999783039093018, - "label": "vehicle", - "label_id": 2 - }, - "h": 150, - "region_id": 8320, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999005794525146, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 186, - "x": 15, - "y": 109 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2521120309829712, - "x_min": 0.006787553429603577, - "y_max": 0.5942617058753967, - "y_min": 0.25123631954193115 - }, - "confidence": 0.999976396560669, - "label": "vehicle", - "label_id": 2 - }, - "h": 148, - "region_id": 8321, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999986886978149, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 188, - "x": 5, - "y": 109 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2455773949623108, - "x_min": 0.0038528144359588623, - "y_max": 0.5852652192115784, - "y_min": 0.25117599964141846 - }, - "confidence": 0.999962568283081, - "label": "vehicle", - "label_id": 2 - }, - "h": 144, - "region_id": 8322, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999997615814209, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 186, - "x": 3, - "y": 109 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.23418442159891129, - "x_min": 0.00190020352602005, - "y_max": 0.5771202892065048, - "y_min": 0.24817226827144623 - }, - "confidence": 0.9999908208847046, - "label": "vehicle", - "label_id": 2 - }, - "h": 142, - "region_id": 8323, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999977350234985, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 178, - "x": 1, - "y": 107 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.22408055514097214, - "x_min": 0.000627569854259491, - "y_max": 0.5654963403940201, - "y_min": 0.2458530217409134 - }, - "confidence": 0.9999959468841553, - "label": "vehicle", - "label_id": 2 - }, - "h": 138, - "region_id": 8324, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999964237213135, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 172, - "x": 0, - "y": 106 - }, - { - "color": { - "confidence": 0.5029367804527283, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9729532599449158, - "x_min": 0.3975161910057068, - "y_max": 0.7704417705535889, - "y_min": 0.06877964735031128 - }, - "confidence": 0.5025386214256287, - "label": "vehicle", - "label_id": 2 - }, - "h": 303, - "region_id": 8325, - "roi_type": "vehicle", - "type": { - "confidence": 0.9997140765190125, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 442, - "x": 305, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.21542106568813324, - "x_min": 0.0, - "y_max": 0.5575774908065796, - "y_min": 0.24282824993133545 - }, - "confidence": 0.9999918937683105, - "label": "vehicle", - "label_id": 2 - }, - "h": 136, - "region_id": 8326, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999957084655762, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 165, - "x": 0, - "y": 105 - }, - { - "color": { - "confidence": 0.6172573566436768, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9764736294746399, - "x_min": 0.3866834044456482, - "y_max": 0.8177641928195953, - "y_min": 0.04835072159767151 - }, - "confidence": 0.5299532413482666, - "label": "vehicle", - "label_id": 2 - }, - "h": 332, - "region_id": 8327, - "roi_type": "vehicle", - "type": { - "confidence": 0.9991831183433533, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 453, - "x": 297, - "y": 21 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.20652518421411514, - "x_min": 0.0, - "y_max": 0.5523459762334824, - "y_min": 0.2393653839826584 - }, - "confidence": 0.9999760389328003, - "label": "vehicle", - "label_id": 2 - }, - "h": 135, - "region_id": 8328, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998032450675964, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 159, - "x": 0, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.19814243912696838, - "x_min": 9.648501873016357e-05, - "y_max": 0.5438299030065536, - "y_min": 0.23729972541332245 - }, - "confidence": 0.99991774559021, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 8329, - "roi_type": "vehicle", - "type": { - "confidence": 0.9986026883125305, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 152, - "x": 0, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.18656962364912033, - "x_min": 0.00026082247495651245, - "y_max": 0.540632963180542, - "y_min": 0.22892174124717712 - }, - "confidence": 0.999891996383667, - "label": "vehicle", - "label_id": 2 - }, - "h": 135, - "region_id": 8330, - "roi_type": "vehicle", - "type": { - "confidence": 0.9873902797698975, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 143, - "x": 0, - "y": 99 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.17477919906377792, - "x_min": 0.001994602382183075, - "y_max": 0.5303716063499451, - "y_min": 0.22543710470199585 - }, - "confidence": 0.9990342855453491, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 8332, - "roi_type": "vehicle", - "type": { - "confidence": 0.9910529255867004, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 133, - "x": 2, - "y": 97 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.16638848185539246, - "x_min": 0.0, - "y_max": 0.5288660079240799, - "y_min": 0.22173668444156647 - }, - "confidence": 0.9978117346763611, - "label": "vehicle", - "label_id": 2 - }, - "h": 133, - "region_id": 8331, - "roi_type": "vehicle", - "type": { - "confidence": 0.9547353982925415, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 128, - "x": 0, - "y": 96 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.15866544842720032, - "x_min": 0.0, - "y_max": 0.5260069519281387, - "y_min": 0.22341085970401764 - }, - "confidence": 0.9969075322151184, - "label": "vehicle", - "label_id": 2 - }, - "h": 131, - "region_id": 8333, - "roi_type": "vehicle", - "type": { - "confidence": 0.8816348910331726, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 122, - "x": 0, - "y": 97 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999998807907104, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.14424734562635422, - "x_min": 0.0004708394408226013, - "y_max": 0.5235311985015869, - "y_min": 0.22360435128211975 - }, - "confidence": 0.9907389879226685, - "label": "vehicle", - "label_id": 2 - }, - "h": 130, - "region_id": 8334, - "roi_type": "vehicle", - "type": { - "confidence": 0.9703205227851868, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 110, - "x": 0, - "y": 97 - }, - { - "color": { - "confidence": 0.8621606230735779, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.11542871594429016, - "y_max": 0.9303610026836395, - "y_min": 0.03652903437614441 - }, - "confidence": 0.5644902586936951, - "label": "vehicle", - "label_id": 2 - }, - "h": 386, - "region_id": 8335, - "roi_type": "vehicle", - "type": { - "confidence": 0.9965773224830627, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 679, - "x": 89, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999995231628418, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.1311522275209427, - "x_min": 0.0012656599283218384, - "y_max": 0.5229739546775818, - "y_min": 0.2319927215576172 - }, - "confidence": 0.8800601363182068, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 8336, - "roi_type": "vehicle", - "type": { - "confidence": 0.627292275428772, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 100, - "x": 1, - "y": 100 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999997615814209, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.12498541176319122, - "x_min": 0.0, - "y_max": 0.5163314342498779, - "y_min": 0.24239161610603333 - }, - "confidence": 0.7448732256889343, - "label": "vehicle", - "label_id": 2 - }, - "h": 118, - "region_id": 8337, - "roi_type": "vehicle", - "type": { - "confidence": 0.8046652674674988, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 96, - "x": 0, - "y": 105 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999982118606567, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.1116863377392292, - "x_min": 0.0006904192268848419, - "y_max": 0.5155525207519531, - "y_min": 0.24023357033729553 - }, - "confidence": 0.8874056935310364, - "label": "vehicle", - "label_id": 2 - }, - "h": 119, - "region_id": 8338, - "roi_type": "vehicle", - "type": { - "confidence": 0.9438390135765076, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 85, - "x": 1, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9998836517333984, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.09923026710748672, - "x_min": 0.001333586871623993, - "y_max": 0.5189979076385498, - "y_min": 0.23733755946159363 - }, - "confidence": 0.6848376989364624, - "label": "vehicle", - "label_id": 2 - }, - "h": 122, - "region_id": 8339, - "roi_type": "vehicle", - "type": { - "confidence": 0.9106685519218445, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 75, - "x": 1, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9994813799858093, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.08814660087227821, - "x_min": 0.0, - "y_max": 0.5184166878461838, - "y_min": 0.23750726878643036 - }, - "confidence": 0.547851026058197, - "label": "vehicle", - "label_id": 2 - }, - "h": 121, - "region_id": 8340, - "roi_type": "vehicle", - "type": { - "confidence": 0.8611072301864624, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 68, - "x": 0, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9998313188552856, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.07822689414024353, - "x_min": 0.0, - "y_max": 0.5102934390306473, - "y_min": 0.23988105356693268 - }, - "confidence": 0.7760471105575562, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 8341, - "roi_type": "vehicle", - "type": { - "confidence": 0.9552167057991028, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 60, - "x": 0, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9996935129165649, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.06671496108174324, - "x_min": 0.0004887916147708893, - "y_max": 0.5063621997833252, - "y_min": 0.24073129892349243 - }, - "confidence": 0.721200168132782, - "label": "vehicle", - "label_id": 2 - }, - "h": 115, - "region_id": 8342, - "roi_type": "vehicle", - "type": { - "confidence": 0.8604604005813599, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 51, - "x": 0, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.999586284160614, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.058564310893416405, - "x_min": 0.0012591909617185593, - "y_max": 0.49973881244659424, - "y_min": 0.2501286268234253 - }, - "confidence": 0.7428306341171265, - "label": "vehicle", - "label_id": 2 - }, - "h": 108, - "region_id": 8343, - "roi_type": "vehicle", - "type": { - "confidence": 0.6634000539779663, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 44, - "x": 1, - "y": 108 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9998461008071899, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.04703952744603157, - "x_min": 0.0021373629570007324, - "y_max": 0.491912305355072, - "y_min": 0.27300935983657837 - }, - "confidence": 0.5740195512771606, - "label": "vehicle", - "label_id": 2 - }, - "h": 95, - "region_id": 8345, - "roi_type": "vehicle", - "type": { - "confidence": 0.7999000549316406, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 34, - "x": 2, - "y": 118 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999052286148071, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.03855092264711857, - "x_min": 0.0, - "y_max": 0.48962903022766113, - "y_min": 0.2736285924911499 - }, - "confidence": 0.5253973007202148, - "label": "vehicle", - "label_id": 2 - }, - "h": 93, - "region_id": 8344, - "roi_type": "vehicle", - "type": { - "confidence": 0.5418111681938171, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 30, - "x": 0, - "y": 118 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.754129946231842, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.934235006570816, - "x_min": 0.04731431603431702, - "y_max": 0.9905672669410706, - "y_min": 0.005245864391326904 - }, - "confidence": 0.5478575229644775, - "label": "vehicle", - "label_id": 2 - }, - "h": 426, - "region_id": 8352, - "roi_type": "vehicle", - "type": { - "confidence": 0.9800358414649963, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 681, - "x": 36, - "y": 2 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8263446688652039, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9340743124485016, - "x_min": 0.05626228451728821, - "y_max": 0.9993162155151367, - "y_min": 0.0 - }, - "confidence": 0.5252728462219238, - "label": "vehicle", - "label_id": 2 - }, - "h": 432, - "region_id": 8353, - "roi_type": "vehicle", - "type": { - "confidence": 0.983135998249054, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 674, - "x": 43, - "y": 0 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.853427529335022, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9431887567043304, - "x_min": 0.05145725607872009, - "y_max": 0.9891375601291656, - "y_min": 0.0 - }, - "confidence": 0.5604560375213623, - "label": "vehicle", - "label_id": 2 - }, - "h": 427, - "region_id": 8354, - "roi_type": "vehicle", - "type": { - "confidence": 0.9693769216537476, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 685, - "x": 40, - "y": 0 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7200186848640442, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9341979622840881, - "x_min": 0.04894071817398071, - "y_max": 0.9517980813980103, - "y_min": 0.0 - }, - "confidence": 0.5412791967391968, - "label": "vehicle", - "label_id": 2 - }, - "h": 411, - "region_id": 8355, - "roi_type": "vehicle", - "type": { - "confidence": 0.9950309991836548, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 680, - "x": 38, - "y": 0 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.6869295835494995, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9681801199913025, - "x_min": 0.22439366579055786, - "y_max": 0.795999139547348, - "y_min": 0.07999715209007263 - }, - "confidence": 0.6512441039085388, - "label": "vehicle", - "label_id": 2 - }, - "h": 309, - "region_id": 8356, - "roi_type": "vehicle", - "type": { - "confidence": 0.9984294772148132, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 571, - "x": 172, - "y": 35 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 27333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.4468967616558075, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.1108655333518982, - "y_max": 0.9221687614917755, - "y_min": 0.024473220109939575 - }, - "confidence": 0.5428245663642883, - "label": "vehicle", - "label_id": 2 - }, - "h": 388, - "region_id": 8357, - "roi_type": "vehicle", - "type": { - "confidence": 0.9917234778404236, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 683, - "x": 85, - "y": 11 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 28166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.6823842525482178, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9668244123458862, - "x_min": 0.04019737243652344, - "y_max": 1.0, - "y_min": 0.018689513206481934 - }, - "confidence": 0.5183915495872498, - "label": "vehicle", - "label_id": 2 - }, - "h": 424, - "region_id": 8360, - "roi_type": "vehicle", - "type": { - "confidence": 0.9840757250785828, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 712, - "x": 31, - "y": 8 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 28916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7281453013420105, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.05809926800429821, - "x_min": 0.0035657789558172226, - "y_max": 0.2681969776749611, - "y_min": 0.09560371190309525 - }, - "confidence": 0.7589443922042847, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 8368, - "roi_type": "person", - "type": { - "confidence": 0.6155390739440918, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 42, - "x": 3, - "y": 41 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.45258644223213196, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.06384254433214664, - "x_min": 0.007957043126225471, - "y_max": 0.274237722158432, - "y_min": 0.1018730103969574 - }, - "confidence": 0.7985617518424988, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 8369, - "roi_type": "person", - "type": { - "confidence": 0.9805622696876526, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 43, - "x": 6, - "y": 44 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7650814652442932, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.07437356747686863, - "x_min": 0.015382559970021248, - "y_max": 0.2672903835773468, - "y_min": 0.09030735492706299 - }, - "confidence": 0.893984317779541, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 8370, - "roi_type": "person", - "type": { - "confidence": 0.9312949776649475, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 45, - "x": 12, - "y": 39 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.5746757984161377, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.06839273869991302, - "x_min": 0.022368106991052628, - "y_max": 0.26446548104286194, - "y_min": 0.0925963819026947 - }, - "confidence": 0.946168839931488, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 8371, - "roi_type": "person", - "type": { - "confidence": 0.595738410949707, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 35, - "x": 17, - "y": 40 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7999228239059448, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.06265867501497269, - "x_min": 0.02845694124698639, - "y_max": 0.2631925344467163, - "y_min": 0.0876958817243576 - }, - "confidence": 0.7030326128005981, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 8372, - "roi_type": "person", - "type": { - "confidence": 0.9347547888755798, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 26, - "x": 22, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9901305437088013, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.07015539705753326, - "x_min": 0.038974471390247345, - "y_max": 0.2708924114704132, - "y_min": 0.08729448914527893 - }, - "confidence": 0.8550823330879211, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 8373, - "roi_type": "person", - "type": { - "confidence": 0.7148114442825317, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 24, - "x": 30, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9692292213439941, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.08978046476840973, - "x_min": 0.04507404938340187, - "y_max": 0.26029662042856216, - "y_min": 0.08790374547243118 - }, - "confidence": 0.977257251739502, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 8374, - "roi_type": "person", - "type": { - "confidence": 0.9982550740242004, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 34, - "x": 35, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8957300782203674, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.10240232944488525, - "x_min": 0.050258174538612366, - "y_max": 0.26179608702659607, - "y_min": 0.08916294574737549 - }, - "confidence": 0.9634844064712524, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 8375, - "roi_type": "person", - "type": { - "confidence": 0.9975417852401733, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 40, - "x": 39, - "y": 39 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.6163966059684753, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.11237834393978119, - "x_min": 0.0557108074426651, - "y_max": 0.265661358833313, - "y_min": 0.08681026101112366 - }, - "confidence": 0.9638311266899109, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 8376, - "roi_type": "person", - "type": { - "confidence": 0.9229568243026733, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 44, - "x": 43, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9034660458564758, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.11509420722723007, - "x_min": 0.0598953440785408, - "y_max": 0.26093965768814087, - "y_min": 0.08726376295089722 - }, - "confidence": 0.9589016437530518, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 8377, - "roi_type": "person", - "type": { - "confidence": 0.9999840259552002, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 42, - "x": 46, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9882267117500305, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.10801342129707336, - "x_min": 0.0689283162355423, - "y_max": 0.2573170065879822, - "y_min": 0.0888819694519043 - }, - "confidence": 0.7473644018173218, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 8378, - "roi_type": "person", - "type": { - "confidence": 0.999778687953949, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 30, - "x": 53, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9423726201057434, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.11594520509243011, - "x_min": 0.08451759815216064, - "y_max": 0.2598234713077545, - "y_min": 0.08372160792350769 - }, - "confidence": 0.9428697824478149, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 8379, - "roi_type": "person", - "type": { - "confidence": 0.9339704513549805, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 24, - "x": 65, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.48739340901374817, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.14308200776576996, - "x_min": 0.08935531973838806, - "y_max": 0.25856076925992966, - "y_min": 0.08275481313467026 - }, - "confidence": 0.9797755479812622, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 8380, - "roi_type": "person", - "type": { - "confidence": 0.9205372929573059, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 41, - "x": 69, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.6052456498146057, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.15327730774879456, - "x_min": 0.09761051088571548, - "y_max": 0.25556155294179916, - "y_min": 0.08270096033811569 - }, - "confidence": 0.9193074703216553, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 8381, - "roi_type": "person", - "type": { - "confidence": 0.8920587301254272, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 43, - "x": 75, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.33292198181152344, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.15708927810192108, - "x_min": 0.09718881547451019, - "y_max": 0.2538745477795601, - "y_min": 0.08122579008340836 - }, - "confidence": 0.9810740351676941, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 8382, - "roi_type": "person", - "type": { - "confidence": 0.9987550973892212, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 46, - "x": 75, - "y": 35 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8184078931808472, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.15849240124225616, - "x_min": 0.10766856372356415, - "y_max": 0.2546975910663605, - "y_min": 0.07851284742355347 - }, - "confidence": 0.9863011837005615, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 8383, - "roi_type": "person", - "type": { - "confidence": 0.9836492538452148, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 39, - "x": 83, - "y": 34 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7947161197662354, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.14903458952903748, - "x_min": 0.11753658205270767, - "y_max": 0.2580205202102661, - "y_min": 0.07362668216228485 - }, - "confidence": 0.9098013639450073, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 8384, - "roi_type": "person", - "type": { - "confidence": 0.8440573811531067, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 24, - "x": 90, - "y": 32 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9502004384994507, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.15783970057964325, - "x_min": 0.13124407827854156, - "y_max": 0.25078579038381577, - "y_min": 0.08267303556203842 - }, - "confidence": 0.5655198097229004, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 8385, - "roi_type": "person", - "type": { - "confidence": 0.9955911636352539, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 20, - "x": 101, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9979820251464844, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.1712721735239029, - "x_min": 0.13269366323947906, - "y_max": 0.25339871644973755, - "y_min": 0.0712251216173172 - }, - "confidence": 0.9201220273971558, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 8386, - "roi_type": "person", - "type": { - "confidence": 0.7056864500045776, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 30, - "x": 102, - "y": 31 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9548686742782593, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.188812255859375, - "x_min": 0.1387019157409668, - "y_max": 0.2481667771935463, - "y_min": 0.06929013878107071 - }, - "confidence": 0.972706139087677, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 8387, - "roi_type": "person", - "type": { - "confidence": 0.9147148132324219, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 38, - "x": 107, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7450867891311646, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.19876964390277863, - "x_min": 0.14241482317447662, - "y_max": 0.24410223960876465, - "y_min": 0.06995522975921631 - }, - "confidence": 0.935201108455658, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 8388, - "roi_type": "person", - "type": { - "confidence": 0.9932077527046204, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 43, - "x": 109, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8204612731933594, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.19850021600723267, - "x_min": 0.14565402269363403, - "y_max": 0.24200070649385452, - "y_min": 0.06734246760606766 - }, - "confidence": 0.9604580402374268, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 8389, - "roi_type": "person", - "type": { - "confidence": 0.9999197721481323, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 41, - "x": 112, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7139235138893127, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.19670461118221283, - "x_min": 0.15936703979969025, - "y_max": 0.24713708460330963, - "y_min": 0.06951303780078888 - }, - "confidence": 0.9338945746421814, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 8390, - "roi_type": "person", - "type": { - "confidence": 0.9954046010971069, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 29, - "x": 122, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8087998032569885, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.19646276533603668, - "x_min": 0.1669870764017105, - "y_max": 0.246548093855381, - "y_min": 0.05969572812318802 - }, - "confidence": 0.8135930299758911, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 8391, - "roi_type": "person", - "type": { - "confidence": 0.9563140273094177, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 23, - "x": 128, - "y": 26 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9277005791664124, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.20714330673217773, - "x_min": 0.17688614130020142, - "y_max": 0.24033692479133606, - "y_min": 0.06553769111633301 - }, - "confidence": 0.8666308522224426, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 8392, - "roi_type": "person", - "type": { - "confidence": 0.9153615832328796, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 23, - "x": 136, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.5139598846435547, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.22876504063606262, - "x_min": 0.17733925580978394, - "y_max": 0.23425975441932678, - "y_min": 0.0654514729976654 - }, - "confidence": 0.9463271498680115, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 8393, - "roi_type": "person", - "type": { - "confidence": 0.9950911998748779, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 39, - "x": 136, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.5785589814186096, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.23787567019462585, - "x_min": 0.18617352843284607, - "y_max": 0.2328994944691658, - "y_min": 0.06733778864145279 - }, - "confidence": 0.8578006029129028, - "label": "person", - "label_id": 1 - }, - "h": 72, - "region_id": 8394, - "roi_type": "person", - "type": { - "confidence": 0.842267632484436, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 40, - "x": 143, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8827391862869263, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.24495282769203186, - "x_min": 0.18914848566055298, - "y_max": 0.2286892682313919, - "y_min": 0.06330259144306183 - }, - "confidence": 0.9402493834495544, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 8395, - "roi_type": "person", - "type": { - "confidence": 0.9991090893745422, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 43, - "x": 145, - "y": 27 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8835853934288025, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.24374517798423767, - "x_min": 0.19896605610847473, - "y_max": 0.22477789968252182, - "y_min": 0.06456565111875534 - }, - "confidence": 0.9167733192443848, - "label": "person", - "label_id": 1 - }, - "h": 69, - "region_id": 8396, - "roi_type": "person", - "type": { - "confidence": 0.9922773838043213, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 34, - "x": 153, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8802521824836731, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.23920002579689026, - "x_min": 0.2088455855846405, - "y_max": 0.2315978854894638, - "y_min": 0.050867900252342224 - }, - "confidence": 0.7405911087989807, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 8397, - "roi_type": "person", - "type": { - "confidence": 0.9510374665260315, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 23, - "x": 160, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.4453832805156708, - "label": "red", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.24580711126327515, - "x_min": 0.21504563093185425, - "y_max": 0.22459035366773605, - "y_min": 0.04561009258031845 - }, - "confidence": 0.8077870607376099, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 8398, - "roi_type": "person", - "type": { - "confidence": 0.6637552976608276, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 24, - "x": 165, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.5218133926391602, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.258386492729187, - "x_min": 0.22124245762825012, - "y_max": 0.22196873277425766, - "y_min": 0.04270251840353012 - }, - "confidence": 0.9389499425888062, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 8399, - "roi_type": "person", - "type": { - "confidence": 0.5430211424827576, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 29, - "x": 170, - "y": 18 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8737760186195374, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2686212658882141, - "x_min": 0.22306442260742188, - "y_max": 0.22240334749221802, - "y_min": 0.03721362352371216 - }, - "confidence": 0.8532395958900452, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 8400, - "roi_type": "person", - "type": { - "confidence": 0.7769581079483032, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 35, - "x": 171, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9139444231987, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.27878496050834656, - "x_min": 0.2256826013326645, - "y_max": 0.21868880838155746, - "y_min": 0.04378651827573776 - }, - "confidence": 0.940152108669281, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 8401, - "roi_type": "person", - "type": { - "confidence": 0.9943174719810486, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 41, - "x": 173, - "y": 19 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.83595210313797, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2782133221626282, - "x_min": 0.22981303930282593, - "y_max": 0.21300845593214035, - "y_min": 0.04048468917608261 - }, - "confidence": 0.8954000473022461, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 8402, - "roi_type": "person", - "type": { - "confidence": 0.9998680353164673, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 37, - "x": 176, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7851448059082031, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.27863314747810364, - "x_min": 0.2395808845758438, - "y_max": 0.21157341450452805, - "y_min": 0.026669137179851532 - }, - "confidence": 0.5580120086669922, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 8403, - "roi_type": "person", - "type": { - "confidence": 0.9998608827590942, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 30, - "x": 184, - "y": 12 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7657860517501831, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2845720052719116, - "x_min": 0.25448018312454224, - "y_max": 0.21495232731103897, - "y_min": 0.026290185749530792 - }, - "confidence": 0.80083167552948, - "label": "person", - "label_id": 1 - }, - "h": 82, - "region_id": 8404, - "roi_type": "person", - "type": { - "confidence": 0.5836566686630249, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 23, - "x": 195, - "y": 11 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7340410947799683, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.29074627161026, - "x_min": 0.2599877119064331, - "y_max": 0.20789270102977753, - "y_min": 0.022824198007583618 - }, - "confidence": 0.8385727405548096, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 8405, - "roi_type": "person", - "type": { - "confidence": 0.9996445178985596, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 24, - "x": 200, - "y": 10 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8819329738616943, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.30755072832107544, - "x_min": 0.2656424045562744, - "y_max": 0.19290897250175476, - "y_min": 0.022242024540901184 - }, - "confidence": 0.977880597114563, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 8406, - "roi_type": "person", - "type": { - "confidence": 0.9997754693031311, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 32, - "x": 204, - "y": 10 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.49220550060272217, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.31079021096229553, - "x_min": 0.2677251994609833, - "y_max": 0.19722382724285126, - "y_min": 0.023035749793052673 - }, - "confidence": 0.9654287099838257, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 8407, - "roi_type": "person", - "type": { - "confidence": 0.9995170831680298, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 33, - "x": 206, - "y": 10 - }, - { - "color": { - "confidence": 0.7468725442886353, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.29563216120004654, - "x_min": 0.10331843048334122, - "y_max": 1.0, - "y_min": 0.8515570759773254 - }, - "confidence": 0.761517345905304, - "label": "vehicle", - "label_id": 2 - }, - "h": 64, - "region_id": 8408, - "roi_type": "vehicle", - "type": { - "confidence": 0.545889675617218, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 148, - "x": 79, - "y": 368 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.6209607124328613, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.31590598821640015, - "x_min": 0.27411168813705444, - "y_max": 0.18277175724506378, - "y_min": 0.019142642617225647 - }, - "confidence": 0.9806784987449646, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 8409, - "roi_type": "person", - "type": { - "confidence": 0.999908447265625, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 32, - "x": 211, - "y": 8 - }, - { - "color": { - "confidence": 0.966917872428894, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.302535243332386, - "x_min": 0.08773649483919144, - "y_max": 1.0, - "y_min": 0.8262227177619934 - }, - "confidence": 0.908391535282135, - "label": "vehicle", - "label_id": 2 - }, - "h": 75, - "region_id": 8410, - "roi_type": "vehicle", - "type": { - "confidence": 0.7184173464775085, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 165, - "x": 67, - "y": 357 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8600323796272278, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3163120448589325, - "x_min": 0.27949169278144836, - "y_max": 0.18241430073976517, - "y_min": 0.00963614135980606 - }, - "confidence": 0.8560529351234436, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 8411, - "roi_type": "person", - "type": { - "confidence": 0.998460054397583, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 28, - "x": 215, - "y": 4 - }, - { - "color": { - "confidence": 0.9669363498687744, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3071591779589653, - "x_min": 0.08984949439764023, - "y_max": 1.0, - "y_min": 0.7983192205429077 - }, - "confidence": 0.9688770174980164, - "label": "vehicle", - "label_id": 2 - }, - "h": 87, - "region_id": 8412, - "roi_type": "vehicle", - "type": { - "confidence": 0.8623602986335754, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 167, - "x": 69, - "y": 345 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8695591688156128, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.31996291875839233, - "x_min": 0.28390347957611084, - "y_max": 0.17544172704219818, - "y_min": 0.002514094114303589 - }, - "confidence": 0.9317660927772522, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 8413, - "roi_type": "person", - "type": { - "confidence": 0.5749371647834778, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 28, - "x": 218, - "y": 1 - }, - { - "color": { - "confidence": 0.9985125660896301, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.31785333156585693, - "x_min": 0.09327417612075806, - "y_max": 0.9961552023887634, - "y_min": 0.7738481163978577 - }, - "confidence": 0.9980048537254333, - "label": "vehicle", - "label_id": 2 - }, - "h": 96, - "region_id": 8414, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990713596343994, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 172, - "x": 72, - "y": 334 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.2447032332420349, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3244977593421936, - "x_min": 0.29137319326400757, - "y_max": 0.18117792904376984, - "y_min": 0.0 - }, - "confidence": 0.9299455285072327, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 8415, - "roi_type": "person", - "type": { - "confidence": 0.5054982900619507, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 25, - "x": 224, - "y": 0 - }, - { - "color": { - "confidence": 0.9868773818016052, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3211563229560852, - "x_min": 0.09341153502464294, - "y_max": 0.9977253675460815, - "y_min": 0.7558172941207886 - }, - "confidence": 0.995922327041626, - "label": "vehicle", - "label_id": 2 - }, - "h": 105, - "region_id": 8416, - "roi_type": "vehicle", - "type": { - "confidence": 0.9961318969726562, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 175, - "x": 72, - "y": 327 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.5411240458488464, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.33760935068130493, - "x_min": 0.2969669699668884, - "y_max": 0.1680586189031601, - "y_min": 0.0 - }, - "confidence": 0.97437584400177, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 8417, - "roi_type": "person", - "type": { - "confidence": 0.5557920336723328, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 31, - "x": 228, - "y": 0 - }, - { - "color": { - "confidence": 0.9531167149543762, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.32524099946022034, - "x_min": 0.09379306435585022, - "y_max": 0.9987419843673706, - "y_min": 0.728178858757019 - }, - "confidence": 0.9982354640960693, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 8418, - "roi_type": "vehicle", - "type": { - "confidence": 0.99638831615448, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 178, - "x": 72, - "y": 315 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.6223164796829224, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34123092889785767, - "x_min": 0.2997239828109741, - "y_max": 0.1591828241944313, - "y_min": 0.0 - }, - "confidence": 0.9657360315322876, - "label": "person", - "label_id": 1 - }, - "h": 69, - "region_id": 8419, - "roi_type": "person", - "type": { - "confidence": 0.816781222820282, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 32, - "x": 230, - "y": 0 - }, - { - "color": { - "confidence": 0.9923230409622192, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3318566754460335, - "x_min": 0.09386516362428665, - "y_max": 0.9967382550239563, - "y_min": 0.7049055695533752 - }, - "confidence": 0.996229350566864, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 8420, - "roi_type": "vehicle", - "type": { - "confidence": 0.9930793642997742, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 183, - "x": 72, - "y": 305 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.6439606547355652, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3466411232948303, - "x_min": 0.3028194308280945, - "y_max": 0.1562092900276184, - "y_min": 0.0 - }, - "confidence": 0.9846485257148743, - "label": "person", - "label_id": 1 - }, - "h": 67, - "region_id": 8421, - "roi_type": "person", - "type": { - "confidence": 0.524415910243988, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 34, - "x": 233, - "y": 0 - }, - { - "color": { - "confidence": 0.9815136194229126, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3395664617419243, - "x_min": 0.08993595093488693, - "y_max": 0.9996479153633118, - "y_min": 0.6784219145774841 - }, - "confidence": 0.9955138564109802, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "region_id": 8422, - "roi_type": "vehicle", - "type": { - "confidence": 0.9888794422149658, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 192, - "x": 69, - "y": 293 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8496493697166443, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34522509574890137, - "x_min": 0.30906105041503906, - "y_max": 0.15079188346862793, - "y_min": 0.0 - }, - "confidence": 0.9445015788078308, - "label": "person", - "label_id": 1 - }, - "h": 65, - "region_id": 8423, - "roi_type": "person", - "type": { - "confidence": 0.7430827617645264, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 28, - "x": 237, - "y": 0 - }, - { - "color": { - "confidence": 0.9439544677734375, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3419874384999275, - "x_min": 0.0941135361790657, - "y_max": 1.0, - "y_min": 0.6525993943214417 - }, - "confidence": 0.9987126588821411, - "label": "vehicle", - "label_id": 2 - }, - "h": 150, - "region_id": 8424, - "roi_type": "vehicle", - "type": { - "confidence": 0.9753090739250183, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 190, - "x": 72, - "y": 282 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9707712531089783, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3481338918209076, - "x_min": 0.3160833418369293, - "y_max": 0.14550430327653885, - "y_min": 0.0 - }, - "confidence": 0.963749885559082, - "label": "person", - "label_id": 1 - }, - "h": 63, - "region_id": 8425, - "roi_type": "person", - "type": { - "confidence": 0.7025719285011292, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 25, - "x": 243, - "y": 0 - }, - { - "color": { - "confidence": 0.8111639022827148, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34435374289751053, - "x_min": 0.09984970837831497, - "y_max": 0.9990871548652649, - "y_min": 0.6355069279670715 - }, - "confidence": 0.9971874356269836, - "label": "vehicle", - "label_id": 2 - }, - "h": 157, - "region_id": 8426, - "roi_type": "vehicle", - "type": { - "confidence": 0.9859831929206848, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 188, - "x": 77, - "y": 275 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9893765449523926, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3530542850494385, - "x_min": 0.3201481103897095, - "y_max": 0.14842259883880615, - "y_min": 0.0 - }, - "confidence": 0.8752254843711853, - "label": "person", - "label_id": 1 - }, - "h": 64, - "region_id": 8427, - "roi_type": "person", - "type": { - "confidence": 0.9552565217018127, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 25, - "x": 246, - "y": 0 - }, - { - "color": { - "confidence": 0.5280356407165527, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34952497482299805, - "x_min": 0.10708582401275635, - "y_max": 1.0, - "y_min": 0.6191877722740173 - }, - "confidence": 0.998619794845581, - "label": "vehicle", - "label_id": 2 - }, - "h": 165, - "region_id": 8428, - "roi_type": "vehicle", - "type": { - "confidence": 0.9884899258613586, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 186, - "x": 82, - "y": 267 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9933150410652161, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35819557309150696, - "x_min": 0.3240784704685211, - "y_max": 0.14493504911661148, - "y_min": 0.0 - }, - "confidence": 0.7914350032806396, - "label": "person", - "label_id": 1 - }, - "h": 63, - "region_id": 8429, - "roi_type": "person", - "type": { - "confidence": 0.9701064825057983, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 26, - "x": 249, - "y": 0 - }, - { - "color": { - "confidence": 0.8881661891937256, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3578673005104065, - "x_min": 0.11816421151161194, - "y_max": 0.9963030219078064, - "y_min": 0.5943846106529236 - }, - "confidence": 0.9954742789268494, - "label": "vehicle", - "label_id": 2 - }, - "h": 174, - "region_id": 8430, - "roi_type": "vehicle", - "type": { - "confidence": 0.9638090133666992, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 184, - "x": 91, - "y": 257 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9952588677406311, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36160674691200256, - "x_min": 0.3288991153240204, - "y_max": 0.14174089580774307, - "y_min": 0.0 - }, - "confidence": 0.6194042563438416, - "label": "person", - "label_id": 1 - }, - "h": 61, - "region_id": 8431, - "roi_type": "person", - "type": { - "confidence": 0.833453357219696, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 25, - "x": 253, - "y": 0 - }, - { - "color": { - "confidence": 0.6927691698074341, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35685088485479355, - "x_min": 0.11790122836828232, - "y_max": 0.9961073994636536, - "y_min": 0.5718068480491638 - }, - "confidence": 0.9947429895401001, - "label": "vehicle", - "label_id": 2 - }, - "h": 183, - "region_id": 8432, - "roi_type": "vehicle", - "type": { - "confidence": 0.9615950584411621, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 184, - "x": 91, - "y": 247 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9231811165809631, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36447739601135254, - "x_min": 0.33208173513412476, - "y_max": 0.14312608540058136, - "y_min": 0.0 - }, - "confidence": 0.8804531693458557, - "label": "person", - "label_id": 1 - }, - "h": 62, - "region_id": 8433, - "roi_type": "person", - "type": { - "confidence": 0.5553082227706909, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 25, - "x": 255, - "y": 0 - }, - { - "color": { - "confidence": 0.6090085506439209, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36100974678993225, - "x_min": 0.10920840501785278, - "y_max": 1.0, - "y_min": 0.5514669418334961 - }, - "confidence": 0.9975082874298096, - "label": "vehicle", - "label_id": 2 - }, - "h": 194, - "region_id": 8434, - "roi_type": "vehicle", - "type": { - "confidence": 0.9945594668388367, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 193, - "x": 84, - "y": 238 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.5560330748558044, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3689320683479309, - "x_min": 0.33504199981689453, - "y_max": 0.1309487745165825, - "y_min": 0.0 - }, - "confidence": 0.5245084166526794, - "label": "person", - "label_id": 1 - }, - "h": 57, - "region_id": 8435, - "roi_type": "person", - "type": { - "confidence": 0.5574765205383301, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 26, - "x": 257, - "y": 0 - }, - { - "color": { - "confidence": 0.8659559488296509, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36274436861276627, - "x_min": 0.11731896549463272, - "y_max": 1.0, - "y_min": 0.5336947441101074 - }, - "confidence": 0.9914770722389221, - "label": "vehicle", - "label_id": 2 - }, - "h": 201, - "region_id": 8436, - "roi_type": "vehicle", - "type": { - "confidence": 0.9782851338386536, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 188, - "x": 90, - "y": 231 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7261171936988831, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3659408688545227, - "x_min": 0.11780126392841339, - "y_max": 1.0, - "y_min": 0.518149733543396 - }, - "confidence": 0.9818969964981079, - "label": "vehicle", - "label_id": 2 - }, - "h": 208, - "region_id": 8437, - "roi_type": "vehicle", - "type": { - "confidence": 0.9929179549217224, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 191, - "x": 90, - "y": 224 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7979229688644409, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3604143261909485, - "x_min": 0.11885426938533783, - "y_max": 1.0, - "y_min": 0.5062888264656067 - }, - "confidence": 0.9770739674568176, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "region_id": 8438, - "roi_type": "vehicle", - "type": { - "confidence": 0.9997255206108093, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 186, - "x": 91, - "y": 219 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.6396380662918091, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35873663425445557, - "x_min": 0.12577953934669495, - "y_max": 1.0, - "y_min": 0.487548291683197 - }, - "confidence": 0.9604198932647705, - "label": "vehicle", - "label_id": 2 - }, - "h": 221, - "region_id": 8439, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998347759246826, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 179, - "x": 97, - "y": 211 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9329293966293335, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36819857358932495, - "x_min": 0.13242483139038086, - "y_max": 1.0, - "y_min": 0.4729745090007782 - }, - "confidence": 0.9679286479949951, - "label": "vehicle", - "label_id": 2 - }, - "h": 228, - "region_id": 8440, - "roi_type": "vehicle", - "type": { - "confidence": 0.9380549788475037, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 181, - "x": 102, - "y": 204 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9758688807487488, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.37145912647247314, - "x_min": 0.13698597252368927, - "y_max": 0.9822669923305511, - "y_min": 0.45337817072868347 - }, - "confidence": 0.9909036755561829, - "label": "vehicle", - "label_id": 2 - }, - "h": 228, - "region_id": 8441, - "roi_type": "vehicle", - "type": { - "confidence": 0.8175630569458008, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 180, - "x": 105, - "y": 196 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.99601811170578, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.360751211643219, - "x_min": 0.14602144062519073, - "y_max": 0.9427908360958099, - "y_min": 0.4422529637813568 - }, - "confidence": 0.9961796998977661, - "label": "vehicle", - "label_id": 2 - }, - "h": 216, - "region_id": 8442, - "roi_type": "vehicle", - "type": { - "confidence": 0.9925321936607361, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 165, - "x": 112, - "y": 191 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9773136973381042, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3665272891521454, - "x_min": 0.15879389643669128, - "y_max": 0.9357600212097168, - "y_min": 0.41560184955596924 - }, - "confidence": 0.9988160133361816, - "label": "vehicle", - "label_id": 2 - }, - "h": 225, - "region_id": 8443, - "roi_type": "vehicle", - "type": { - "confidence": 0.614161491394043, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 160, - "x": 122, - "y": 180 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9930024743080139, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36519184708595276, - "x_min": 0.1624055802822113, - "y_max": 0.9030640423297882, - "y_min": 0.3991294205188751 - }, - "confidence": 0.99962317943573, - "label": "vehicle", - "label_id": 2 - }, - "h": 218, - "region_id": 8444, - "roi_type": "vehicle", - "type": { - "confidence": 0.5760512351989746, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 156, - "x": 125, - "y": 172 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9986255168914795, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36517783999443054, - "x_min": 0.17351636290550232, - "y_max": 0.8792468309402466, - "y_min": 0.3837735652923584 - }, - "confidence": 0.9997884631156921, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "region_id": 8445, - "roi_type": "vehicle", - "type": { - "confidence": 0.533503532409668, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 147, - "x": 133, - "y": 166 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9977391958236694, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36106088757514954, - "x_min": 0.1790127456188202, - "y_max": 0.8557636737823486, - "y_min": 0.36366569995880127 - }, - "confidence": 0.9998449087142944, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "region_id": 8446, - "roi_type": "vehicle", - "type": { - "confidence": 0.6246165633201599, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 140, - "x": 137, - "y": 157 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9996715784072876, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36285877227783203, - "x_min": 0.18275152146816254, - "y_max": 0.8229827284812927, - "y_min": 0.34286290407180786 - }, - "confidence": 0.9999336004257202, - "label": "vehicle", - "label_id": 2 - }, - "h": 207, - "region_id": 8447, - "roi_type": "vehicle", - "type": { - "confidence": 0.7438144087791443, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 138, - "x": 140, - "y": 148 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9991983771324158, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3602021038532257, - "x_min": 0.18906906247138977, - "y_max": 0.7855886220932007, - "y_min": 0.32251763343811035 - }, - "confidence": 0.9999699592590332, - "label": "vehicle", - "label_id": 2 - }, - "h": 200, - "region_id": 8448, - "roi_type": "vehicle", - "type": { - "confidence": 0.7719494104385376, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 131, - "x": 145, - "y": 139 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9998089671134949, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3588583469390869, - "x_min": 0.1904894858598709, - "y_max": 0.766708493232727, - "y_min": 0.31205347180366516 - }, - "confidence": 0.9999749660491943, - "label": "vehicle", - "label_id": 2 - }, - "h": 196, - "region_id": 8450, - "roi_type": "vehicle", - "type": { - "confidence": 0.6637498736381531, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 129, - "x": 146, - "y": 135 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999306201934814, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.354780912399292, - "x_min": 0.19472239911556244, - "y_max": 0.7405029535293579, - "y_min": 0.29147496819496155 - }, - "confidence": 0.9999440908432007, - "label": "vehicle", - "label_id": 2 - }, - "h": 194, - "region_id": 8449, - "roi_type": "vehicle", - "type": { - "confidence": 0.8586626648902893, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 123, - "x": 150, - "y": 126 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9711026549339294, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34999334812164307, - "x_min": 0.194540336728096, - "y_max": 0.7187595367431641, - "y_min": 0.2768002152442932 - }, - "confidence": 0.9998922348022461, - "label": "vehicle", - "label_id": 2 - }, - "h": 191, - "region_id": 8451, - "roi_type": "vehicle", - "type": { - "confidence": 0.9108662605285645, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 119, - "x": 149, - "y": 120 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9928416013717651, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3457085192203522, - "x_min": 0.20007964968681335, - "y_max": 0.6881219744682312, - "y_min": 0.2653038501739502 - }, - "confidence": 0.9998040795326233, - "label": "vehicle", - "label_id": 2 - }, - "h": 183, - "region_id": 8452, - "roi_type": "vehicle", - "type": { - "confidence": 0.8837874531745911, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 112, - "x": 154, - "y": 115 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9985859394073486, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34467506408691406, - "x_min": 0.19982749223709106, - "y_max": 0.6525393724441528, - "y_min": 0.2548128664493561 - }, - "confidence": 0.9998615980148315, - "label": "vehicle", - "label_id": 2 - }, - "h": 172, - "region_id": 8453, - "roi_type": "vehicle", - "type": { - "confidence": 0.6626163721084595, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 111, - "x": 153, - "y": 110 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9502972960472107, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34181272983551025, - "x_min": 0.1947338730096817, - "y_max": 0.6376242786645889, - "y_min": 0.23916591703891754 - }, - "confidence": 0.9997871518135071, - "label": "vehicle", - "label_id": 2 - }, - "h": 172, - "region_id": 8454, - "roi_type": "vehicle", - "type": { - "confidence": 0.7591845989227295, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 113, - "x": 150, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9493867754936218, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3388643264770508, - "x_min": 0.19013750553131104, - "y_max": 0.6308777332305908, - "y_min": 0.2227199673652649 - }, - "confidence": 0.9997004270553589, - "label": "vehicle", - "label_id": 2 - }, - "h": 176, - "region_id": 8455, - "roi_type": "vehicle", - "type": { - "confidence": 0.5599343776702881, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 114, - "x": 146, - "y": 96 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9648703336715698, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3375055193901062, - "x_min": 0.18740473687648773, - "y_max": 0.5995768308639526, - "y_min": 0.20673570036888123 - }, - "confidence": 0.9998914003372192, - "label": "vehicle", - "label_id": 2 - }, - "h": 170, - "region_id": 8456, - "roi_type": "vehicle", - "type": { - "confidence": 0.6556660532951355, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 115, - "x": 144, - "y": 89 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8755231499671936, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3318176567554474, - "x_min": 0.17809423804283142, - "y_max": 0.5778812617063522, - "y_min": 0.19000546634197235 - }, - "confidence": 0.9998241066932678, - "label": "vehicle", - "label_id": 2 - }, - "h": 168, - "region_id": 8457, - "roi_type": "vehicle", - "type": { - "confidence": 0.620614767074585, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 118, - "x": 137, - "y": 82 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.5343877077102661, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3320659399032593, - "x_min": 0.1678294688463211, - "y_max": 0.5662893801927567, - "y_min": 0.17552174627780914 - }, - "confidence": 0.9969955682754517, - "label": "vehicle", - "label_id": 2 - }, - "h": 169, - "region_id": 8458, - "roi_type": "vehicle", - "type": { - "confidence": 0.5632005333900452, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 126, - "x": 129, - "y": 76 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7536901831626892, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.33100444078445435, - "x_min": 0.15877386927604675, - "y_max": 0.5364057421684265, - "y_min": 0.16238099336624146 - }, - "confidence": 0.99989914894104, - "label": "vehicle", - "label_id": 2 - }, - "h": 162, - "region_id": 8459, - "roi_type": "vehicle", - "type": { - "confidence": 0.9606968760490417, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 132, - "x": 122, - "y": 70 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7409470081329346, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.32596272230148315, - "x_min": 0.1472930908203125, - "y_max": 0.5152767300605774, - "y_min": 0.15732121467590332 - }, - "confidence": 0.9999929666519165, - "label": "vehicle", - "label_id": 2 - }, - "h": 155, - "region_id": 8460, - "roi_type": "vehicle", - "type": { - "confidence": 0.9005874991416931, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 137, - "x": 113, - "y": 68 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8630040884017944, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3235021233558655, - "x_min": 0.13618597388267517, - "y_max": 0.5010689496994019, - "y_min": 0.15680626034736633 - }, - "confidence": 0.999995231628418, - "label": "vehicle", - "label_id": 2 - }, - "h": 149, - "region_id": 8461, - "roi_type": "vehicle", - "type": { - "confidence": 0.963317334651947, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 144, - "x": 105, - "y": 68 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.5177339315414429, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.31811434030532837, - "x_min": 0.12496490776538849, - "y_max": 0.48322823643684387, - "y_min": 0.1473962366580963 - }, - "confidence": 0.9999911785125732, - "label": "vehicle", - "label_id": 2 - }, - "h": 145, - "region_id": 8462, - "roi_type": "vehicle", - "type": { - "confidence": 0.9834175705909729, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 148, - "x": 96, - "y": 64 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9002454876899719, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.31093723326921463, - "x_min": 0.10377121716737747, - "y_max": 0.46475063264369965, - "y_min": 0.14403758943080902 - }, - "confidence": 0.9999978542327881, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "region_id": 8463, - "roi_type": "vehicle", - "type": { - "confidence": 0.979969322681427, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 159, - "x": 80, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.5329621434211731, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3060434088110924, - "x_min": 0.08956294506788254, - "y_max": 0.4555552154779434, - "y_min": 0.13558460772037506 - }, - "confidence": 0.9999889135360718, - "label": "vehicle", - "label_id": 2 - }, - "h": 138, - "region_id": 8464, - "roi_type": "vehicle", - "type": { - "confidence": 0.6467808485031128, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 166, - "x": 69, - "y": 59 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8349910974502563, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.29430411010980606, - "x_min": 0.07462427765130997, - "y_max": 0.4425668269395828, - "y_min": 0.13647617399692535 - }, - "confidence": 0.9999735355377197, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 8465, - "roi_type": "vehicle", - "type": { - "confidence": 0.8573600649833679, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 169, - "x": 57, - "y": 59 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9079904556274414, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.28833314031362534, - "x_min": 0.06440760940313339, - "y_max": 0.42713563144207, - "y_min": 0.1353260725736618 - }, - "confidence": 0.9999496936798096, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 8466, - "roi_type": "vehicle", - "type": { - "confidence": 0.9182760715484619, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 172, - "x": 49, - "y": 58 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9153870940208435, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2806038334965706, - "x_min": 0.046518273651599884, - "y_max": 0.4131326228380203, - "y_min": 0.13239772617816925 - }, - "confidence": 0.9999241828918457, - "label": "vehicle", - "label_id": 2 - }, - "h": 121, - "region_id": 8467, - "roi_type": "vehicle", - "type": { - "confidence": 0.9403806328773499, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 180, - "x": 36, - "y": 57 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9474499225616455, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.27025366574525833, - "x_min": 0.031960584223270416, - "y_max": 0.40551871061325073, - "y_min": 0.1313827633857727 - }, - "confidence": 0.9999902248382568, - "label": "vehicle", - "label_id": 2 - }, - "h": 118, - "region_id": 8468, - "roi_type": "vehicle", - "type": { - "confidence": 0.9429293870925903, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 183, - "x": 25, - "y": 57 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9998084902763367, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2574407830834389, - "x_min": 0.018124915659427643, - "y_max": 0.39813748002052307, - "y_min": 0.12768623232841492 - }, - "confidence": 0.9999737739562988, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 8469, - "roi_type": "vehicle", - "type": { - "confidence": 0.8892050981521606, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 184, - "x": 14, - "y": 55 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999219179153442, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.24728650599718094, - "x_min": 0.004216648638248444, - "y_max": 0.39358004927635193, - "y_min": 0.12342569231987 - }, - "confidence": 0.9995150566101074, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 8470, - "roi_type": "vehicle", - "type": { - "confidence": 0.722600519657135, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 187, - "x": 3, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.994304358959198, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.23507950454950333, - "x_min": 0.0055961087346076965, - "y_max": 0.3909708857536316, - "y_min": 0.12340492010116577 - }, - "confidence": 0.9983311295509338, - "label": "vehicle", - "label_id": 2 - }, - "h": 116, - "region_id": 8471, - "roi_type": "vehicle", - "type": { - "confidence": 0.9526728987693787, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 176, - "x": 4, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9984727501869202, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.22479692846536636, - "x_min": 0.0017654374241828918, - "y_max": 0.3854464143514633, - "y_min": 0.12457780539989471 - }, - "confidence": 0.9997487664222717, - "label": "vehicle", - "label_id": 2 - }, - "h": 113, - "region_id": 8472, - "roi_type": "vehicle", - "type": { - "confidence": 0.962515115737915, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 171, - "x": 1, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9998278617858887, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.21433766931295395, - "x_min": 0.0017601177096366882, - "y_max": 0.37883228063583374, - "y_min": 0.1250355839729309 - }, - "confidence": 0.99918133020401, - "label": "vehicle", - "label_id": 2 - }, - "h": 110, - "region_id": 8474, - "roi_type": "vehicle", - "type": { - "confidence": 0.9985003471374512, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 163, - "x": 1, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.999667763710022, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2030910775065422, - "x_min": 0.0008123144507408142, - "y_max": 0.37199288606643677, - "y_min": 0.12212663888931274 - }, - "confidence": 0.9997194409370422, - "label": "vehicle", - "label_id": 2 - }, - "h": 108, - "region_id": 8473, - "roi_type": "vehicle", - "type": { - "confidence": 0.9995529055595398, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 155, - "x": 1, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999610185623169, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.18479623645544052, - "x_min": 0.0, - "y_max": 0.36851049214601517, - "y_min": 0.1222873404622078 - }, - "confidence": 0.9995477795600891, - "label": "vehicle", - "label_id": 2 - }, - "h": 106, - "region_id": 8475, - "roi_type": "vehicle", - "type": { - "confidence": 0.9995977282524109, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 142, - "x": 0, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9997596144676208, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.1737116277217865, - "x_min": 0.0, - "y_max": 0.36372971534729004, - "y_min": 0.11915415525436401 - }, - "confidence": 0.9950657486915588, - "label": "vehicle", - "label_id": 2 - }, - "h": 106, - "region_id": 8476, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999232292175293, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 133, - "x": 0, - "y": 51 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999818801879883, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.16038884222507477, - "x_min": 0.0, - "y_max": 0.3588944375514984, - "y_min": 0.1205725371837616 - }, - "confidence": 0.9822043776512146, - "label": "vehicle", - "label_id": 2 - }, - "h": 103, - "region_id": 8477, - "roi_type": "vehicle", - "type": { - "confidence": 0.999942421913147, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 123, - "x": 0, - "y": 52 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999450445175171, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.14810673147439957, - "x_min": 0.0, - "y_max": 0.35652363300323486, - "y_min": 0.12085320055484772 - }, - "confidence": 0.9530179500579834, - "label": "vehicle", - "label_id": 2 - }, - "h": 102, - "region_id": 8478, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998893737792969, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 114, - "x": 0, - "y": 52 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9992677569389343, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.13574014604091644, - "x_min": 0.0, - "y_max": 0.3567160964012146, - "y_min": 0.12330564856529236 - }, - "confidence": 0.7856730818748474, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "region_id": 8479, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998465776443481, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 104, - "x": 0, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9976156949996948, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.11242122203111649, - "x_min": 0.0019209012389183044, - "y_max": 0.35550349950790405, - "y_min": 0.1260470598936081 - }, - "confidence": 0.6798886060714722, - "label": "vehicle", - "label_id": 2 - }, - "h": 99, - "region_id": 8481, - "roi_type": "vehicle", - "type": { - "confidence": 0.9904062151908875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 85, - "x": 1, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9454761147499084, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.09885160624980927, - "x_min": 0.003643341362476349, - "y_max": 0.358278751373291, - "y_min": 0.1264287382364273 - }, - "confidence": 0.7773323655128479, - "label": "vehicle", - "label_id": 2 - }, - "h": 100, - "region_id": 8480, - "roi_type": "vehicle", - "type": { - "confidence": 0.9880791306495667, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 73, - "x": 3, - "y": 55 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.39773839712142944, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.0878419578075409, - "x_min": 0.0017804354429244995, - "y_max": 0.3632156252861023, - "y_min": 0.12948653101921082 - }, - "confidence": 0.6258467435836792, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "region_id": 8482, - "roi_type": "vehicle", - "type": { - "confidence": 0.9339539408683777, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 66, - "x": 1, - "y": 56 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9392625093460083, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.07318701222538948, - "x_min": 0.004130352288484573, - "y_max": 0.3511764109134674, - "y_min": 0.14347276091575623 - }, - "confidence": 0.6314224004745483, - "label": "vehicle", - "label_id": 2 - }, - "h": 90, - "region_id": 8483, - "roi_type": "vehicle", - "type": { - "confidence": 0.591683566570282, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 53, - "x": 3, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9517311453819275, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.06266952119767666, - "x_min": 0.0, - "y_max": 0.34957605600357056, - "y_min": 0.14383465051651 - }, - "confidence": 0.6896519064903259, - "label": "vehicle", - "label_id": 2 - }, - "h": 89, - "region_id": 8484, - "roi_type": "vehicle", - "type": { - "confidence": 0.8126508593559265, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 48, - "x": 0, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7189172506332397, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.04970441199839115, - "x_min": 0.0, - "y_max": 0.34233343601226807, - "y_min": 0.14351695775985718 - }, - "confidence": 0.6430801749229431, - "label": "vehicle", - "label_id": 2 - }, - "h": 86, - "region_id": 8485, - "roi_type": "vehicle", - "type": { - "confidence": 0.9153555035591125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 38, - "x": 0, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49250000000 - } - ] -} \ No newline at end of file diff --git a/tests/test_cases/pipeline_execution/cpu/object_classification_intver_cpu_gstreamer_pipelines/object_classification/1/pipeline.json b/tests/test_cases/pipeline_execution/cpu/object_classification_intver_cpu_gstreamer_pipelines/object_classification/1/pipeline.json deleted file mode 100644 index 6427848..0000000 --- a/tests/test_cases/pipeline_execution/cpu/object_classification_intver_cpu_gstreamer_pipelines/object_classification/1/pipeline.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "type": "GStreamer", - "template": ["uridecodebin name=source", - " ! gvadetect model={models[object_detection][1][network]} model-proc={models[object_detection][1][proc]} name=detection", - " ! gvaclassify model={models[object_classification][1][network]} model-proc={models[object_classification][1][proc]} name=classification", - " ! gvametaconvert name=metaconvert ! gvametapublish name=destination", - " ! appsink name=appsink"], - "description": "Object Classification Pipeline", - "parameters": { - "type": "object", - "properties": { - "detection-device": { - "element": "detection", - "type": "string" - }, - "inference-interval": { - "element": "detection", - "type": "integer" - } - } - } -} \ No newline at end of file diff --git a/tests/test_cases/pipeline_execution/cpu/object_detection_app_gstreamer.json b/tests/test_cases/pipeline_execution/cpu/object_detection_app_gstreamer.json deleted file mode 100644 index 2075b55..0000000 --- a/tests/test_cases/pipeline_execution/cpu/object_detection_app_gstreamer.json +++ /dev/null @@ -1,3452 +0,0 @@ -{ - "options": {}, - "decode": { - "pipeline": { - "name": "video_decode", - "version": "app_dst" - }, - "source": { - "type": "uri", - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4" - }, - "destination": { - "type": "application", - "class": "GStreamerAppDestination" - } - }, - "pipeline": { - "name": "object_detection", - "version": "app_src_dst" - }, - "request": { - "source": { - "type": "application", - "class": "GStreamerAppSource" - }, - "destination": { - "type": "application", - "class": "GStreamerAppDestination" - }, - "parameters": { - "detection-device": "CPU" - } - }, - "result": [ - { - "message": { - "sequence_number": 18 - }, - "regions": [ - { - "x": 517, - "y": 379, - "w": 55, - "h": 52, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 20 - }, - "regions": [ - { - "x": 519, - "y": 358, - "w": 52, - "h": 74, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 21 - }, - "regions": [ - { - "x": 524, - "y": 350, - "w": 49, - "h": 82, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 22 - }, - "regions": [ - { - "x": 525, - "y": 340, - "w": 50, - "h": 92, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 23 - }, - "regions": [ - { - "x": 525, - "y": 333, - "w": 51, - "h": 97, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 24 - }, - "regions": [ - { - "x": 525, - "y": 325, - "w": 54, - "h": 107, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 25 - }, - "regions": [ - { - "x": 525, - "y": 322, - "w": 57, - "h": 105, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 26 - }, - "regions": [ - { - "x": 528, - "y": 312, - "w": 55, - "h": 109, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 27 - }, - "regions": [ - { - "x": 531, - "y": 308, - "w": 51, - "h": 102, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 28 - }, - "regions": [ - { - "x": 534, - "y": 304, - "w": 47, - "h": 84, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 29 - }, - "regions": [ - { - "x": 536, - "y": 297, - "w": 46, - "h": 81, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 30 - }, - "regions": [ - { - "x": 535, - "y": 288, - "w": 51, - "h": 101, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 31 - }, - "regions": [ - { - "x": 533, - "y": 281, - "w": 54, - "h": 106, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 32 - }, - "regions": [ - { - "x": 540, - "y": 280, - "w": 47, - "h": 88, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 33 - }, - "regions": [ - { - "x": 543, - "y": 272, - "w": 47, - "h": 86, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 34 - }, - "regions": [ - { - "x": 545, - "y": 267, - "w": 48, - "h": 90, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 35 - }, - "regions": [ - { - "x": 545, - "y": 264, - "w": 50, - "h": 91, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 38 - }, - "regions": [ - { - "x": 552, - "y": 248, - "w": 46, - "h": 91, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 39 - }, - "regions": [ - { - "x": 557, - "y": 238, - "w": 44, - "h": 89, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 40 - }, - "regions": [ - { - "x": 563, - "y": 237, - "w": 44, - "h": 77, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 41 - }, - "regions": [ - { - "x": 567, - "y": 233, - "w": 39, - "h": 70, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 42 - }, - "regions": [ - { - "x": 569, - "y": 225, - "w": 42, - "h": 74, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 43 - }, - "regions": [ - { - "x": 573, - "y": 225, - "w": 42, - "h": 72, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 44 - }, - "regions": [ - { - "x": 573, - "y": 217, - "w": 49, - "h": 87, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 45 - }, - "regions": [ - { - "x": 581, - "y": 214, - "w": 44, - "h": 81, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 46 - }, - "regions": [ - { - "x": 587, - "y": 211, - "w": 46, - "h": 85, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 47 - }, - "regions": [ - { - "x": 584, - "y": 205, - "w": 48, - "h": 94, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 48 - }, - "regions": [ - { - "x": 584, - "y": 201, - "w": 55, - "h": 99, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 51 - }, - "regions": [ - { - "x": 609, - "y": 189, - "w": 38, - "h": 88, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 52 - }, - "regions": [ - { - "x": 612, - "y": 191, - "w": 41, - "h": 74, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 53 - }, - "regions": [ - { - "x": 615, - "y": 186, - "w": 40, - "h": 76, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 54 - }, - "regions": [ - { - "x": 619, - "y": 184, - "w": 42, - "h": 71, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 55 - }, - "regions": [ - { - "x": 623, - "y": 182, - "w": 43, - "h": 75, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 56 - }, - "regions": [ - { - "x": 628, - "y": 179, - "w": 44, - "h": 76, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 57 - }, - "regions": [ - { - "x": 635, - "y": 174, - "w": 45, - "h": 79, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 58 - }, - "regions": [ - { - "x": 641, - "y": 168, - "w": 43, - "h": 87, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 59 - }, - "regions": [ - { - "x": 642, - "y": 170, - "w": 50, - "h": 84, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 62 - }, - "regions": [ - { - "x": 655, - "y": 162, - "w": 43, - "h": 80, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 63 - }, - "regions": [ - { - "x": 665, - "y": 159, - "w": 35, - "h": 76, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 64 - }, - "regions": [ - { - "x": 669, - "y": 152, - "w": 38, - "h": 77, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 65 - }, - "regions": [ - { - "x": 674, - "y": 151, - "w": 34, - "h": 74, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 66 - }, - "regions": [ - { - "x": 670, - "y": 149, - "w": 43, - "h": 76, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 67 - }, - "regions": [ - { - "x": 680, - "y": 148, - "w": 40, - "h": 73, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 68 - }, - "regions": [ - { - "x": 683, - "y": 145, - "w": 42, - "h": 72, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 69 - }, - "regions": [ - { - "x": 690, - "y": 140, - "w": 44, - "h": 80, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 70 - }, - "regions": [ - { - "x": 696, - "y": 141, - "w": 43, - "h": 83, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 73 - }, - "regions": [ - { - "x": 702, - "y": 137, - "w": 46, - "h": 75, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 74 - }, - "regions": [ - { - "x": 711, - "y": 131, - "w": 39, - "h": 78, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 75 - }, - "regions": [ - { - "x": 713, - "y": 127, - "w": 41, - "h": 79, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 76 - }, - "regions": [ - { - "x": 716, - "y": 126, - "w": 39, - "h": 74, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 77 - }, - "regions": [ - { - "x": 715, - "y": 125, - "w": 42, - "h": 74, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 78 - }, - "regions": [ - { - "x": 713, - "y": 112, - "w": 53, - "h": 91, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 79 - }, - "regions": [ - { - "x": 729, - "y": 116, - "w": 37, - "h": 77, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 167 - }, - "regions": [ - { - "x": 91, - "y": 9, - "w": 677, - "h": 417, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 172 - }, - "regions": [ - { - "x": 93, - "y": 363, - "w": 173, - "h": 69, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 173 - }, - "regions": [ - { - "x": 93, - "y": 350, - "w": 178, - "h": 82, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 174 - }, - "regions": [ - { - "x": 92, - "y": 339, - "w": 182, - "h": 92, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 175 - }, - "regions": [ - { - "x": 87, - "y": 330, - "w": 189, - "h": 100, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 176 - }, - "regions": [ - { - "x": 88, - "y": 315, - "w": 196, - "h": 117, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 177 - }, - "regions": [ - { - "x": 77, - "y": 304, - "w": 205, - "h": 127, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 178 - }, - "regions": [ - { - "x": 82, - "y": 293, - "w": 207, - "h": 139, - "label": "vehicle" - }, - { - "x": 93, - "y": 13, - "w": 675, - "h": 414, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 179 - }, - "regions": [ - { - "x": 82, - "y": 281, - "w": 209, - "h": 151, - "label": "vehicle" - }, - { - "x": 95, - "y": 16, - "w": 673, - "h": 397, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 180 - }, - "regions": [ - { - "x": 81, - "y": 273, - "w": 210, - "h": 159, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 181 - }, - "regions": [ - { - "x": 92, - "y": 263, - "w": 199, - "h": 168, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 182 - }, - "regions": [ - { - "x": 90, - "y": 253, - "w": 198, - "h": 178, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 183 - }, - "regions": [ - { - "x": 91, - "y": 243, - "w": 199, - "h": 188, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 184 - }, - "regions": [ - { - "x": 85, - "y": 233, - "w": 202, - "h": 199, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 185 - }, - "regions": [ - { - "x": 101, - "y": 226, - "w": 180, - "h": 206, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 186 - }, - "regions": [ - { - "x": 104, - "y": 218, - "w": 176, - "h": 214, - "label": "vehicle" - }, - { - "x": 110, - "y": 20, - "w": 628, - "h": 326, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 187 - }, - "regions": [ - { - "x": 109, - "y": 214, - "w": 164, - "h": 214, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 188 - }, - "regions": [ - { - "x": 114, - "y": 205, - "w": 159, - "h": 226, - "label": "vehicle" - }, - { - "x": 286, - "y": 17, - "w": 441, - "h": 368, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 189 - }, - "regions": [ - { - "x": 118, - "y": 195, - "w": 155, - "h": 230, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 190 - }, - "regions": [ - { - "x": 123, - "y": 187, - "w": 146, - "h": 223, - "label": "vehicle" - }, - { - "x": 273, - "y": 29, - "w": 467, - "h": 294, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 191 - }, - "regions": [ - { - "x": 125, - "y": 182, - "w": 140, - "h": 222, - "label": "vehicle" - }, - { - "x": 262, - "y": 21, - "w": 492, - "h": 377, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 192 - }, - "regions": [ - { - "x": 127, - "y": 174, - "w": 133, - "h": 218, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 193 - }, - "regions": [ - { - "x": 127, - "y": 168, - "w": 131, - "h": 213, - "label": "vehicle" - }, - { - "x": 242, - "y": 31, - "w": 495, - "h": 339, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 194 - }, - "regions": [ - { - "x": 125, - "y": 161, - "w": 130, - "h": 210, - "label": "vehicle" - }, - { - "x": 258, - "y": 23, - "w": 490, - "h": 371, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 195 - }, - "regions": [ - { - "x": 124, - "y": 153, - "w": 129, - "h": 206, - "label": "vehicle" - }, - { - "x": 250, - "y": 29, - "w": 487, - "h": 341, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 196 - }, - "regions": [ - { - "x": 121, - "y": 149, - "w": 132, - "h": 200, - "label": "vehicle" - }, - { - "x": 249, - "y": 22, - "w": 491, - "h": 336, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 197 - }, - "regions": [ - { - "x": 117, - "y": 141, - "w": 135, - "h": 197, - "label": "vehicle" - }, - { - "x": 263, - "y": 17, - "w": 476, - "h": 360, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 198 - }, - "regions": [ - { - "x": 110, - "y": 138, - "w": 139, - "h": 196, - "label": "vehicle" - }, - { - "x": 228, - "y": 11, - "w": 520, - "h": 368, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 199 - }, - "regions": [ - { - "x": 105, - "y": 134, - "w": 141, - "h": 193, - "label": "vehicle" - }, - { - "x": 220, - "y": 17, - "w": 523, - "h": 344, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 200 - }, - "regions": [ - { - "x": 100, - "y": 129, - "w": 143, - "h": 189, - "label": "vehicle" - }, - { - "x": 255, - "y": 14, - "w": 475, - "h": 354, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 201 - }, - "regions": [ - { - "x": 91, - "y": 124, - "w": 151, - "h": 188, - "label": "vehicle" - }, - { - "x": 247, - "y": 17, - "w": 491, - "h": 360, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 202 - }, - "regions": [ - { - "x": 81, - "y": 123, - "w": 158, - "h": 184, - "label": "vehicle" - }, - { - "x": 247, - "y": 17, - "w": 493, - "h": 359, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 203 - }, - "regions": [ - { - "x": 68, - "y": 120, - "w": 168, - "h": 180, - "label": "vehicle" - }, - { - "x": 261, - "y": 21, - "w": 472, - "h": 341, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 204 - }, - "regions": [ - { - "x": 63, - "y": 120, - "w": 169, - "h": 171, - "label": "vehicle" - }, - { - "x": 261, - "y": 29, - "w": 481, - "h": 339, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 205 - }, - "regions": [ - { - "x": 57, - "y": 118, - "w": 169, - "h": 166, - "label": "vehicle" - }, - { - "x": 234, - "y": 22, - "w": 528, - "h": 345, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 206 - }, - "regions": [ - { - "x": 51, - "y": 115, - "w": 169, - "h": 163, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 207 - }, - "regions": [ - { - "x": 42, - "y": 113, - "w": 175, - "h": 162, - "label": "vehicle" - }, - { - "x": 273, - "y": 27, - "w": 463, - "h": 276, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 208 - }, - "regions": [ - { - "x": 34, - "y": 113, - "w": 180, - "h": 159, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 209 - }, - "regions": [ - { - "x": 24, - "y": 111, - "w": 184, - "h": 153, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 210 - }, - "regions": [ - { - "x": 15, - "y": 109, - "w": 186, - "h": 150, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 211 - }, - "regions": [ - { - "x": 5, - "y": 109, - "w": 188, - "h": 148, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 212 - }, - "regions": [ - { - "x": 3, - "y": 109, - "w": 186, - "h": 144, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 213 - }, - "regions": [ - { - "x": 1, - "y": 107, - "w": 178, - "h": 142, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 214 - }, - "regions": [ - { - "x": 0, - "y": 106, - "w": 172, - "h": 138, - "label": "vehicle" - }, - { - "x": 305, - "y": 30, - "w": 442, - "h": 303, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 215 - }, - "regions": [ - { - "x": 0, - "y": 105, - "w": 165, - "h": 136, - "label": "vehicle" - }, - { - "x": 297, - "y": 21, - "w": 453, - "h": 332, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 216 - }, - "regions": [ - { - "x": 0, - "y": 103, - "w": 159, - "h": 135, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 217 - }, - "regions": [ - { - "x": 0, - "y": 103, - "w": 152, - "h": 132, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 218 - }, - "regions": [ - { - "x": 0, - "y": 99, - "w": 143, - "h": 135, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 219 - }, - "regions": [ - { - "x": 2, - "y": 97, - "w": 133, - "h": 132, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 220 - }, - "regions": [ - { - "x": 0, - "y": 96, - "w": 128, - "h": 133, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 221 - }, - "regions": [ - { - "x": 0, - "y": 97, - "w": 122, - "h": 131, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 222 - }, - "regions": [ - { - "x": 0, - "y": 97, - "w": 110, - "h": 130, - "label": "vehicle" - }, - { - "x": 89, - "y": 16, - "w": 679, - "h": 386, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 223 - }, - "regions": [ - { - "x": 1, - "y": 100, - "w": 100, - "h": 126, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 224 - }, - "regions": [ - { - "x": 0, - "y": 105, - "w": 96, - "h": 118, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 225 - }, - "regions": [ - { - "x": 1, - "y": 104, - "w": 85, - "h": 119, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 226 - }, - "regions": [ - { - "x": 1, - "y": 103, - "w": 75, - "h": 122, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 227 - }, - "regions": [ - { - "x": 0, - "y": 103, - "w": 68, - "h": 121, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 228 - }, - "regions": [ - { - "x": 0, - "y": 104, - "w": 60, - "h": 117, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 229 - }, - "regions": [ - { - "x": 0, - "y": 104, - "w": 51, - "h": 115, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 230 - }, - "regions": [ - { - "x": 1, - "y": 108, - "w": 44, - "h": 108, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 231 - }, - "regions": [ - { - "x": 2, - "y": 118, - "w": 34, - "h": 95, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 232 - }, - "regions": [ - { - "x": 0, - "y": 118, - "w": 30, - "h": 93, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 320 - }, - "regions": [ - { - "x": 36, - "y": 2, - "w": 681, - "h": 426, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 321 - }, - "regions": [ - { - "x": 43, - "y": 0, - "w": 674, - "h": 432, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 322 - }, - "regions": [ - { - "x": 40, - "y": 0, - "w": 685, - "h": 427, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 323 - }, - "regions": [ - { - "x": 38, - "y": 0, - "w": 680, - "h": 411, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 328 - }, - "regions": [ - { - "x": 172, - "y": 35, - "w": 571, - "h": 309, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 338 - }, - "regions": [ - { - "x": 85, - "y": 11, - "w": 683, - "h": 388, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 347 - }, - "regions": [ - { - "x": 31, - "y": 8, - "w": 712, - "h": 424, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 487 - }, - "regions": [ - { - "x": 3, - "y": 41, - "w": 42, - "h": 75, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 488 - }, - "regions": [ - { - "x": 6, - "y": 44, - "w": 43, - "h": 74, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 489 - }, - "regions": [ - { - "x": 12, - "y": 39, - "w": 45, - "h": 76, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 490 - }, - "regions": [ - { - "x": 17, - "y": 40, - "w": 35, - "h": 74, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 491 - }, - "regions": [ - { - "x": 22, - "y": 38, - "w": 26, - "h": 76, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 492 - }, - "regions": [ - { - "x": 30, - "y": 38, - "w": 24, - "h": 79, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 493 - }, - "regions": [ - { - "x": 35, - "y": 38, - "w": 34, - "h": 74, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 494 - }, - "regions": [ - { - "x": 39, - "y": 39, - "w": 40, - "h": 75, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 495 - }, - "regions": [ - { - "x": 43, - "y": 38, - "w": 44, - "h": 77, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 496 - }, - "regions": [ - { - "x": 46, - "y": 38, - "w": 42, - "h": 75, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 497 - }, - "regions": [ - { - "x": 53, - "y": 38, - "w": 30, - "h": 73, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 499 - }, - "regions": [ - { - "x": 65, - "y": 36, - "w": 24, - "h": 76, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 500 - }, - "regions": [ - { - "x": 69, - "y": 36, - "w": 41, - "h": 76, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 501 - }, - "regions": [ - { - "x": 75, - "y": 36, - "w": 43, - "h": 75, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 502 - }, - "regions": [ - { - "x": 75, - "y": 35, - "w": 46, - "h": 75, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 503 - }, - "regions": [ - { - "x": 83, - "y": 34, - "w": 39, - "h": 76, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 504 - }, - "regions": [ - { - "x": 90, - "y": 32, - "w": 24, - "h": 80, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 505 - }, - "regions": [ - { - "x": 101, - "y": 36, - "w": 20, - "h": 73, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 506 - }, - "regions": [ - { - "x": 102, - "y": 31, - "w": 30, - "h": 79, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 507 - }, - "regions": [ - { - "x": 107, - "y": 30, - "w": 38, - "h": 77, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 508 - }, - "regions": [ - { - "x": 109, - "y": 30, - "w": 43, - "h": 75, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 509 - }, - "regions": [ - { - "x": 112, - "y": 29, - "w": 41, - "h": 75, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 510 - }, - "regions": [ - { - "x": 122, - "y": 30, - "w": 29, - "h": 77, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 511 - }, - "regions": [ - { - "x": 128, - "y": 26, - "w": 23, - "h": 81, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 512 - }, - "regions": [ - { - "x": 136, - "y": 28, - "w": 23, - "h": 76, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 513 - }, - "regions": [ - { - "x": 136, - "y": 28, - "w": 39, - "h": 73, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 514 - }, - "regions": [ - { - "x": 143, - "y": 29, - "w": 40, - "h": 72, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 515 - }, - "regions": [ - { - "x": 145, - "y": 27, - "w": 43, - "h": 71, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 516 - }, - "regions": [ - { - "x": 153, - "y": 28, - "w": 34, - "h": 69, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 517 - }, - "regions": [ - { - "x": 160, - "y": 22, - "w": 23, - "h": 78, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 518 - }, - "regions": [ - { - "x": 165, - "y": 20, - "w": 24, - "h": 77, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 519 - }, - "regions": [ - { - "x": 170, - "y": 18, - "w": 29, - "h": 77, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 520 - }, - "regions": [ - { - "x": 171, - "y": 16, - "w": 35, - "h": 80, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 521 - }, - "regions": [ - { - "x": 173, - "y": 19, - "w": 41, - "h": 76, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 522 - }, - "regions": [ - { - "x": 176, - "y": 17, - "w": 37, - "h": 75, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 523 - }, - "regions": [ - { - "x": 184, - "y": 12, - "w": 30, - "h": 80, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 524 - }, - "regions": [ - { - "x": 195, - "y": 11, - "w": 23, - "h": 82, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 525 - }, - "regions": [ - { - "x": 200, - "y": 10, - "w": 24, - "h": 80, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 526 - }, - "regions": [ - { - "x": 204, - "y": 10, - "w": 32, - "h": 74, - "label": "person" - } - ] - }, - { - "message": { - "sequence_number": 527 - }, - "regions": [ - { - "x": 206, - "y": 10, - "w": 33, - "h": 75, - "label": "person" - }, - { - "x": 79, - "y": 368, - "w": 148, - "h": 64, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 528 - }, - "regions": [ - { - "x": 211, - "y": 8, - "w": 32, - "h": 71, - "label": "person" - }, - { - "x": 67, - "y": 357, - "w": 165, - "h": 75, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 529 - }, - "regions": [ - { - "x": 215, - "y": 4, - "w": 28, - "h": 75, - "label": "person" - }, - { - "x": 69, - "y": 345, - "w": 167, - "h": 87, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 530 - }, - "regions": [ - { - "x": 218, - "y": 1, - "w": 28, - "h": 75, - "label": "person" - }, - { - "x": 72, - "y": 334, - "w": 172, - "h": 96, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 531 - }, - "regions": [ - { - "x": 224, - "y": 0, - "w": 25, - "h": 78, - "label": "person" - }, - { - "x": 72, - "y": 327, - "w": 175, - "h": 105, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 532 - }, - "regions": [ - { - "x": 228, - "y": 0, - "w": 31, - "h": 73, - "label": "person" - }, - { - "x": 72, - "y": 315, - "w": 178, - "h": 117, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 533 - }, - "regions": [ - { - "x": 230, - "y": 0, - "w": 32, - "h": 69, - "label": "person" - }, - { - "x": 72, - "y": 305, - "w": 183, - "h": 126, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 534 - }, - "regions": [ - { - "x": 233, - "y": 0, - "w": 34, - "h": 67, - "label": "person" - }, - { - "x": 69, - "y": 293, - "w": 192, - "h": 139, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 535 - }, - "regions": [ - { - "x": 237, - "y": 0, - "w": 28, - "h": 65, - "label": "person" - }, - { - "x": 72, - "y": 282, - "w": 190, - "h": 150, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 536 - }, - "regions": [ - { - "x": 243, - "y": 0, - "w": 25, - "h": 63, - "label": "person" - }, - { - "x": 77, - "y": 275, - "w": 188, - "h": 157, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 537 - }, - "regions": [ - { - "x": 246, - "y": 0, - "w": 25, - "h": 64, - "label": "person" - }, - { - "x": 82, - "y": 267, - "w": 186, - "h": 165, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 538 - }, - "regions": [ - { - "x": 249, - "y": 0, - "w": 26, - "h": 63, - "label": "person" - }, - { - "x": 91, - "y": 257, - "w": 184, - "h": 174, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 539 - }, - "regions": [ - { - "x": 253, - "y": 0, - "w": 25, - "h": 61, - "label": "person" - }, - { - "x": 91, - "y": 247, - "w": 184, - "h": 183, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 540 - }, - "regions": [ - { - "x": 255, - "y": 0, - "w": 25, - "h": 62, - "label": "person" - }, - { - "x": 84, - "y": 238, - "w": 193, - "h": 194, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 541 - }, - "regions": [ - { - "x": 257, - "y": 0, - "w": 26, - "h": 57, - "label": "person" - }, - { - "x": 90, - "y": 231, - "w": 188, - "h": 201, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 542 - }, - "regions": [ - { - "x": 90, - "y": 224, - "w": 191, - "h": 208, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 543 - }, - "regions": [ - { - "x": 91, - "y": 219, - "w": 186, - "h": 213, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 544 - }, - "regions": [ - { - "x": 97, - "y": 211, - "w": 179, - "h": 221, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 545 - }, - "regions": [ - { - "x": 102, - "y": 204, - "w": 181, - "h": 228, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 546 - }, - "regions": [ - { - "x": 105, - "y": 196, - "w": 180, - "h": 228, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 547 - }, - "regions": [ - { - "x": 112, - "y": 191, - "w": 165, - "h": 216, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 548 - }, - "regions": [ - { - "x": 122, - "y": 180, - "w": 160, - "h": 225, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 549 - }, - "regions": [ - { - "x": 125, - "y": 172, - "w": 156, - "h": 218, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 550 - }, - "regions": [ - { - "x": 133, - "y": 166, - "w": 147, - "h": 214, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 551 - }, - "regions": [ - { - "x": 137, - "y": 157, - "w": 140, - "h": 213, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 552 - }, - "regions": [ - { - "x": 140, - "y": 148, - "w": 138, - "h": 207, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 553 - }, - "regions": [ - { - "x": 145, - "y": 139, - "w": 131, - "h": 200, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 554 - }, - "regions": [ - { - "x": 146, - "y": 135, - "w": 129, - "h": 196, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 555 - }, - "regions": [ - { - "x": 150, - "y": 126, - "w": 123, - "h": 194, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 556 - }, - "regions": [ - { - "x": 149, - "y": 120, - "w": 119, - "h": 191, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 557 - }, - "regions": [ - { - "x": 154, - "y": 115, - "w": 112, - "h": 183, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 558 - }, - "regions": [ - { - "x": 153, - "y": 110, - "w": 111, - "h": 172, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 559 - }, - "regions": [ - { - "x": 150, - "y": 103, - "w": 113, - "h": 172, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 560 - }, - "regions": [ - { - "x": 146, - "y": 96, - "w": 114, - "h": 176, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 561 - }, - "regions": [ - { - "x": 144, - "y": 89, - "w": 115, - "h": 170, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 562 - }, - "regions": [ - { - "x": 137, - "y": 82, - "w": 118, - "h": 168, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 563 - }, - "regions": [ - { - "x": 129, - "y": 76, - "w": 126, - "h": 169, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 564 - }, - "regions": [ - { - "x": 122, - "y": 70, - "w": 132, - "h": 162, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 565 - }, - "regions": [ - { - "x": 113, - "y": 68, - "w": 137, - "h": 155, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 566 - }, - "regions": [ - { - "x": 105, - "y": 68, - "w": 144, - "h": 149, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 567 - }, - "regions": [ - { - "x": 96, - "y": 64, - "w": 148, - "h": 145, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 568 - }, - "regions": [ - { - "x": 80, - "y": 62, - "w": 159, - "h": 139, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 569 - }, - "regions": [ - { - "x": 69, - "y": 59, - "w": 166, - "h": 138, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 570 - }, - "regions": [ - { - "x": 57, - "y": 59, - "w": 169, - "h": 132, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 571 - }, - "regions": [ - { - "x": 49, - "y": 58, - "w": 172, - "h": 126, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 572 - }, - "regions": [ - { - "x": 36, - "y": 57, - "w": 180, - "h": 121, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 573 - }, - "regions": [ - { - "x": 25, - "y": 57, - "w": 183, - "h": 118, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 574 - }, - "regions": [ - { - "x": 14, - "y": 55, - "w": 184, - "h": 117, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 575 - }, - "regions": [ - { - "x": 3, - "y": 53, - "w": 187, - "h": 117, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 576 - }, - "regions": [ - { - "x": 4, - "y": 53, - "w": 176, - "h": 116, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 577 - }, - "regions": [ - { - "x": 1, - "y": 54, - "w": 171, - "h": 113, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 578 - }, - "regions": [ - { - "x": 1, - "y": 54, - "w": 163, - "h": 110, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 579 - }, - "regions": [ - { - "x": 1, - "y": 53, - "w": 155, - "h": 108, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 580 - }, - "regions": [ - { - "x": 0, - "y": 53, - "w": 142, - "h": 106, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 581 - }, - "regions": [ - { - "x": 0, - "y": 51, - "w": 133, - "h": 106, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 582 - }, - "regions": [ - { - "x": 0, - "y": 52, - "w": 123, - "h": 103, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 583 - }, - "regions": [ - { - "x": 0, - "y": 52, - "w": 114, - "h": 102, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 584 - }, - "regions": [ - { - "x": 0, - "y": 53, - "w": 104, - "h": 101, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 586 - }, - "regions": [ - { - "x": 1, - "y": 54, - "w": 85, - "h": 99, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 587 - }, - "regions": [ - { - "x": 3, - "y": 55, - "w": 73, - "h": 100, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 588 - }, - "regions": [ - { - "x": 1, - "y": 56, - "w": 66, - "h": 101, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 589 - }, - "regions": [ - { - "x": 3, - "y": 62, - "w": 53, - "h": 90, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 590 - }, - "regions": [ - { - "x": 0, - "y": 62, - "w": 48, - "h": 89, - "label": "vehicle" - } - ] - }, - { - "message": { - "sequence_number": 591 - }, - "regions": [ - { - "x": 0, - "y": 62, - "w": 38, - "h": 86, - "label": "vehicle" - } - ] - } - ] -} \ No newline at end of file diff --git a/tests/test_cases/pipeline_execution/cpu/object_detection_bad_dict_param_gstreamer.json b/tests/test_cases/pipeline_execution/cpu/object_detection_bad_dict_param_gstreamer.json deleted file mode 100644 index 5560763..0000000 --- a/tests/test_cases/pipeline_execution/cpu/object_detection_bad_dict_param_gstreamer.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "options": {}, - "pipeline": { - "name": "object_detection", - "version": "person_vehicle_bike" - }, - "request": { - "source": { - "type": "uri", - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4" - }, - "destination": { - "type": "file", - "path": "/tmp/results.json", - "format": "json" - }, - "parameters": { - "detection-properties": { - "device": "BPU" - } - } - }, - "golden_results": false, - "expect_error": true, - "regex": "Error on Pipeline [0-9a-z]+: 'BPU'", - "result": [] -} \ No newline at end of file diff --git a/tests/test_cases/pipeline_execution/cpu/object_detection_cpu_gstreamer.json b/tests/test_cases/pipeline_execution/cpu/object_detection_cpu_gstreamer.json deleted file mode 100644 index bdcd8c5..0000000 --- a/tests/test_cases/pipeline_execution/cpu/object_detection_cpu_gstreamer.json +++ /dev/null @@ -1,7496 +0,0 @@ -{ - "options": {}, - "pipeline": { - "name": "object_detection", - "version": "person_vehicle_bike" - }, - "request": { - "source": { - "type": "uri", - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4" - }, - "destination": { - "type": "file", - "path": "/tmp/object_detection_cpu_results.json", - "format": "json-lines" - }, - "parameters": { - "detection-device": "CPU" - } - }, - "numerical_tolerance": 0.3, - "result": [ - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7448995113372803, - "x_min": 0.6734092235565186, - "y_max": 0.9991496205329895, - "y_min": 0.8781012892723083 - }, - "confidence": 0.5402482748031616, - "label": "person", - "label_id": 1 - }, - "h": 52, - "region_id": 10711, - "roi_type": "person", - "w": 55, - "x": 517, - "y": 379 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7442192435264587, - "x_min": 0.6763269305229187, - "y_max": 1.0, - "y_min": 0.8277981281280518 - }, - "confidence": 0.5505853295326233, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 10714, - "roi_type": "person", - "w": 52, - "x": 519, - "y": 358 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7465136051177979, - "x_min": 0.6821862459182739, - "y_max": 1.0, - "y_min": 0.8104690909385681 - }, - "confidence": 0.6447358131408691, - "label": "person", - "label_id": 1 - }, - "h": 82, - "region_id": 10716, - "roi_type": "person", - "w": 49, - "x": 524, - "y": 350 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7481286525726318, - "x_min": 0.68366539478302, - "y_max": 0.9999657869338989, - "y_min": 0.7867170572280884 - }, - "confidence": 0.882526695728302, - "label": "person", - "label_id": 1 - }, - "h": 92, - "region_id": 10715, - "roi_type": "person", - "w": 50, - "x": 525, - "y": 340 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7502986788749695, - "x_min": 0.6836960911750793, - "y_max": 0.9965759515762329, - "y_min": 0.7709740400314331 - }, - "confidence": 0.9252126812934875, - "label": "person", - "label_id": 1 - }, - "h": 97, - "region_id": 10717, - "roi_type": "person", - "w": 51, - "x": 525, - "y": 333 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7533046007156372, - "x_min": 0.6833932399749756, - "y_max": 0.9992514848709106, - "y_min": 0.7517307996749878 - }, - "confidence": 0.9160429835319519, - "label": "person", - "label_id": 1 - }, - "h": 107, - "region_id": 10718, - "roi_type": "person", - "w": 54, - "x": 525, - "y": 325 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7569091320037842, - "x_min": 0.6831721067428589, - "y_max": 0.9893119931221008, - "y_min": 0.7454761862754822 - }, - "confidence": 0.9452281594276428, - "label": "person", - "label_id": 1 - }, - "h": 105, - "region_id": 10720, - "roi_type": "person", - "w": 57, - "x": 525, - "y": 322 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.758220374584198, - "x_min": 0.6869714856147766, - "y_max": 0.9744250774383545, - "y_min": 0.7232376337051392 - }, - "confidence": 0.9522698521614075, - "label": "person", - "label_id": 1 - }, - "h": 109, - "region_id": 10721, - "roi_type": "person", - "w": 55, - "x": 528, - "y": 312 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.757515549659729, - "x_min": 0.6908836364746094, - "y_max": 0.9485968351364136, - "y_min": 0.7128696441650391 - }, - "confidence": 0.8796297907829285, - "label": "person", - "label_id": 1 - }, - "h": 102, - "region_id": 10722, - "roi_type": "person", - "w": 51, - "x": 531, - "y": 308 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7562522292137146, - "x_min": 0.6947104334831238, - "y_max": 0.8969831466674805, - "y_min": 0.7029379606246948 - }, - "confidence": 0.8928061127662659, - "label": "person", - "label_id": 1 - }, - "h": 84, - "region_id": 10723, - "roi_type": "person", - "w": 47, - "x": 534, - "y": 304 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7574296593666077, - "x_min": 0.6979045271873474, - "y_max": 0.8754802346229553, - "y_min": 0.6884984374046326 - }, - "confidence": 0.8720522522926331, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 10724, - "roi_type": "person", - "w": 46, - "x": 536, - "y": 297 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7628753781318665, - "x_min": 0.6962668299674988, - "y_max": 0.9012861251831055, - "y_min": 0.6672508716583252 - }, - "confidence": 0.6989018321037292, - "label": "person", - "label_id": 1 - }, - "h": 101, - "region_id": 10725, - "roi_type": "person", - "w": 51, - "x": 535, - "y": 288 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7642366886138916, - "x_min": 0.6945128440856934, - "y_max": 0.8976410031318665, - "y_min": 0.6511140465736389 - }, - "confidence": 0.6954102516174316, - "label": "person", - "label_id": 1 - }, - "h": 106, - "region_id": 10726, - "roi_type": "person", - "w": 54, - "x": 533, - "y": 281 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7641031742095947, - "x_min": 0.7028636932373047, - "y_max": 0.8516806960105896, - "y_min": 0.6483859419822693 - }, - "confidence": 0.6670747995376587, - "label": "person", - "label_id": 1 - }, - "h": 88, - "region_id": 10727, - "roi_type": "person", - "w": 47, - "x": 540, - "y": 280 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7670164108276367, - "x_min": 0.7064443826675415, - "y_max": 0.829826295375824, - "y_min": 0.6299616694450378 - }, - "confidence": 0.929532527923584, - "label": "person", - "label_id": 1 - }, - "h": 86, - "region_id": 10728, - "roi_type": "person", - "w": 47, - "x": 543, - "y": 272 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7725509405136108, - "x_min": 0.7098292112350464, - "y_max": 0.8254445195198059, - "y_min": 0.6173177361488342 - }, - "confidence": 0.6896131634712219, - "label": "person", - "label_id": 1 - }, - "h": 90, - "region_id": 10730, - "roi_type": "person", - "w": 48, - "x": 545, - "y": 267 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.77418452501297, - "x_min": 0.7090356945991516, - "y_max": 0.8218122124671936, - "y_min": 0.6104786992073059 - }, - "confidence": 0.7604833841323853, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 10729, - "roi_type": "person", - "w": 50, - "x": 545, - "y": 264 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7783714532852173, - "x_min": 0.7181830406188965, - "y_max": 0.7849859595298767, - "y_min": 0.5744112133979797 - }, - "confidence": 0.502738356590271, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 10731, - "roi_type": "person", - "w": 46, - "x": 552, - "y": 248 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7834279537200928, - "x_min": 0.7257949113845825, - "y_max": 0.7589362263679504, - "y_min": 0.5519590973854065 - }, - "confidence": 0.7043135166168213, - "label": "person", - "label_id": 1 - }, - "h": 89, - "region_id": 10732, - "roi_type": "person", - "w": 44, - "x": 557, - "y": 238 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.78952956199646, - "x_min": 0.7326743602752686, - "y_max": 0.7261121273040771, - "y_min": 0.5483003854751587 - }, - "confidence": 0.9756479263305664, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 10733, - "roi_type": "person", - "w": 44, - "x": 563, - "y": 237 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7890371084213257, - "x_min": 0.737720251083374, - "y_max": 0.7031307816505432, - "y_min": 0.5400574803352356 - }, - "confidence": 0.8415098786354065, - "label": "person", - "label_id": 1 - }, - "h": 70, - "region_id": 10734, - "roi_type": "person", - "w": 39, - "x": 567, - "y": 233 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7952908873558044, - "x_min": 0.7402903437614441, - "y_max": 0.6921250820159912, - "y_min": 0.5216915607452393 - }, - "confidence": 0.7716295719146729, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 10735, - "roi_type": "person", - "w": 42, - "x": 569, - "y": 225 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8006463646888733, - "x_min": 0.746234118938446, - "y_max": 0.6880520582199097, - "y_min": 0.5218417644500732 - }, - "confidence": 0.8759844303131104, - "label": "person", - "label_id": 1 - }, - "h": 72, - "region_id": 10736, - "roi_type": "person", - "w": 42, - "x": 573, - "y": 225 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8098055720329285, - "x_min": 0.7457361817359924, - "y_max": 0.7030310034751892, - "y_min": 0.5026633143424988 - }, - "confidence": 0.9101058840751648, - "label": "person", - "label_id": 1 - }, - "h": 87, - "region_id": 10737, - "roi_type": "person", - "w": 49, - "x": 573, - "y": 217 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8131635785102844, - "x_min": 0.7560372948646545, - "y_max": 0.68419349193573, - "y_min": 0.4961233139038086 - }, - "confidence": 0.9086412787437439, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 10738, - "roi_type": "person", - "w": 44, - "x": 581, - "y": 214 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.823058545589447, - "x_min": 0.7637491822242737, - "y_max": 0.6855756640434265, - "y_min": 0.4885023236274719 - }, - "confidence": 0.8248202800750732, - "label": "person", - "label_id": 1 - }, - "h": 85, - "region_id": 10741, - "roi_type": "person", - "w": 46, - "x": 587, - "y": 211 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8232852220535278, - "x_min": 0.760567307472229, - "y_max": 0.6924915909767151, - "y_min": 0.47507840394973755 - }, - "confidence": 0.6950181126594543, - "label": "person", - "label_id": 1 - }, - "h": 94, - "region_id": 10744, - "roi_type": "person", - "w": 48, - "x": 584, - "y": 205 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8322221040725708, - "x_min": 0.7602424621582031, - "y_max": 0.6941542625427246, - "y_min": 0.46584224700927734 - }, - "confidence": 0.5867351293563843, - "label": "person", - "label_id": 1 - }, - "h": 99, - "region_id": 10745, - "roi_type": "person", - "w": 55, - "x": 584, - "y": 201 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8429373502731323, - "x_min": 0.793522834777832, - "y_max": 0.6419346928596497, - "y_min": 0.43809905648231506 - }, - "confidence": 0.96792072057724, - "label": "person", - "label_id": 1 - }, - "h": 88, - "region_id": 10746, - "roi_type": "person", - "w": 38, - "x": 609, - "y": 189 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.849794328212738, - "x_min": 0.796667754650116, - "y_max": 0.615337610244751, - "y_min": 0.44303929805755615 - }, - "confidence": 0.8853123188018799, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 10747, - "roi_type": "person", - "w": 41, - "x": 612, - "y": 191 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8533491492271423, - "x_min": 0.8009874224662781, - "y_max": 0.6051764488220215, - "y_min": 0.4295734465122223 - }, - "confidence": 0.90330970287323, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 10750, - "roi_type": "person", - "w": 40, - "x": 615, - "y": 186 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8604123592376709, - "x_min": 0.8060647249221802, - "y_max": 0.5924712419509888, - "y_min": 0.42701780796051025 - }, - "confidence": 0.8053339719772339, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 10752, - "roi_type": "person", - "w": 42, - "x": 619, - "y": 184 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8663100600242615, - "x_min": 0.810594379901886, - "y_max": 0.5942341089248657, - "y_min": 0.42083391547203064 - }, - "confidence": 0.7699306607246399, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 10754, - "roi_type": "person", - "w": 43, - "x": 623, - "y": 182 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8744010329246521, - "x_min": 0.817695677280426, - "y_max": 0.5900759696960449, - "y_min": 0.41369643807411194 - }, - "confidence": 0.9554973244667053, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 10755, - "roi_type": "person", - "w": 44, - "x": 628, - "y": 179 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8855565190315247, - "x_min": 0.8264035582542419, - "y_max": 0.5860601663589478, - "y_min": 0.4029603898525238 - }, - "confidence": 0.8228950500488281, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 10757, - "roi_type": "person", - "w": 45, - "x": 635, - "y": 174 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8908534049987793, - "x_min": 0.8350781202316284, - "y_max": 0.5897727012634277, - "y_min": 0.3878403902053833 - }, - "confidence": 0.8011389970779419, - "label": "person", - "label_id": 1 - }, - "h": 87, - "region_id": 10758, - "roi_type": "person", - "w": 43, - "x": 641, - "y": 168 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9007775187492371, - "x_min": 0.8356189131736755, - "y_max": 0.5877959132194519, - "y_min": 0.39412611722946167 - }, - "confidence": 0.6489140391349792, - "label": "person", - "label_id": 1 - }, - "h": 84, - "region_id": 10759, - "roi_type": "person", - "w": 50, - "x": 642, - "y": 170 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9088490605354309, - "x_min": 0.8531065583229065, - "y_max": 0.5604838728904724, - "y_min": 0.376047819852829 - }, - "confidence": 0.6436927914619446, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 10760, - "roi_type": "person", - "w": 43, - "x": 655, - "y": 162 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.91246098279953, - "x_min": 0.8664992451667786, - "y_max": 0.5441793203353882, - "y_min": 0.36725080013275146 - }, - "confidence": 0.8806077837944031, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 10761, - "roi_type": "person", - "w": 35, - "x": 665, - "y": 159 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9204215407371521, - "x_min": 0.8713714480400085, - "y_max": 0.5294153690338135, - "y_min": 0.3520965278148651 - }, - "confidence": 0.9779548048973083, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 10762, - "roi_type": "person", - "w": 38, - "x": 669, - "y": 152 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9224029779434204, - "x_min": 0.8775302171707153, - "y_max": 0.5218915343284607, - "y_min": 0.35059165954589844 - }, - "confidence": 0.9283971786499023, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 10763, - "roi_type": "person", - "w": 34, - "x": 674, - "y": 151 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9281563758850098, - "x_min": 0.87200927734375, - "y_max": 0.5194041728973389, - "y_min": 0.3446289598941803 - }, - "confidence": 0.7565144896507263, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 10764, - "roi_type": "person", - "w": 43, - "x": 670, - "y": 149 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.937407910823822, - "x_min": 0.8853235840797424, - "y_max": 0.5107858777046204, - "y_min": 0.34274011850357056 - }, - "confidence": 0.950576663017273, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 10765, - "roi_type": "person", - "w": 40, - "x": 680, - "y": 148 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9449759125709534, - "x_min": 0.8897075057029724, - "y_max": 0.5037586688995361, - "y_min": 0.33645257353782654 - }, - "confidence": 0.909963846206665, - "label": "person", - "label_id": 1 - }, - "h": 72, - "region_id": 10766, - "roi_type": "person", - "w": 42, - "x": 683, - "y": 145 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9549130201339722, - "x_min": 0.8982007503509521, - "y_max": 0.5104894638061523, - "y_min": 0.3242742419242859 - }, - "confidence": 0.7820349931716919, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 10767, - "roi_type": "person", - "w": 44, - "x": 690, - "y": 140 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9616369009017944, - "x_min": 0.9061300754547119, - "y_max": 0.5176384449005127, - "y_min": 0.32654041051864624 - }, - "confidence": 0.7777004837989807, - "label": "person", - "label_id": 1 - }, - "h": 83, - "region_id": 10768, - "roi_type": "person", - "w": 43, - "x": 696, - "y": 141 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9738940000534058, - "x_min": 0.9141021966934204, - "y_max": 0.4915769100189209, - "y_min": 0.3181222677230835 - }, - "confidence": 0.7904218435287476, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 10769, - "roi_type": "person", - "w": 46, - "x": 702, - "y": 137 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.975996196269989, - "x_min": 0.9256718754768372, - "y_max": 0.4855739176273346, - "y_min": 0.30408164858818054 - }, - "confidence": 0.7352949976921082, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 10770, - "roi_type": "person", - "w": 39, - "x": 711, - "y": 131 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9818256497383118, - "x_min": 0.928584635257721, - "y_max": 0.47780394554138184, - "y_min": 0.2946469187736511 - }, - "confidence": 0.8346178531646729, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 10771, - "roi_type": "person", - "w": 41, - "x": 713, - "y": 127 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9829865097999573, - "x_min": 0.9321264624595642, - "y_max": 0.46189287304878235, - "y_min": 0.2909712493419647 - }, - "confidence": 0.9709599018096924, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 10772, - "roi_type": "person", - "w": 39, - "x": 716, - "y": 126 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9856051206588745, - "x_min": 0.9314626455307007, - "y_max": 0.4595508873462677, - "y_min": 0.2890259921550751 - }, - "confidence": 0.6953359246253967, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 10773, - "roi_type": "person", - "w": 42, - "x": 715, - "y": 125 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9974535703659058, - "x_min": 0.9289860725402832, - "y_max": 0.46979770064353943, - "y_min": 0.25890347361564636 - }, - "confidence": 0.5784777998924255, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 10774, - "roi_type": "person", - "w": 53, - "x": 713, - "y": 112 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9965777397155762, - "x_min": 0.948677659034729, - "y_max": 0.4469355344772339, - "y_min": 0.2675803303718567 - }, - "confidence": 0.5522598028182983, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 10775, - "roi_type": "person", - "w": 37, - "x": 729, - "y": 116 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.11904987692832947, - "y_max": 0.9856871068477631, - "y_min": 0.019983261823654175 - }, - "confidence": 0.5811690092086792, - "label": "vehicle", - "label_id": 2 - }, - "h": 417, - "region_id": 10776, - "roi_type": "vehicle", - "w": 677, - "x": 91, - "y": 9 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 13916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3472718670964241, - "x_min": 0.12164772301912308, - "y_max": 1.0, - "y_min": 0.8393084406852722 - }, - "confidence": 0.6197941899299622, - "label": "vehicle", - "label_id": 2 - }, - "h": 69, - "region_id": 10777, - "roi_type": "vehicle", - "w": 173, - "x": 93, - "y": 363 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35296928882598877, - "x_min": 0.12145508825778961, - "y_max": 1.0, - "y_min": 0.809481143951416 - }, - "confidence": 0.7172138094902039, - "label": "vehicle", - "label_id": 2 - }, - "h": 82, - "region_id": 10778, - "roi_type": "vehicle", - "w": 178, - "x": 93, - "y": 350 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35698965191841125, - "x_min": 0.12027296423912048, - "y_max": 0.9967044591903687, - "y_min": 0.783829927444458 - }, - "confidence": 0.8247243762016296, - "label": "vehicle", - "label_id": 2 - }, - "h": 92, - "region_id": 10779, - "roi_type": "vehicle", - "w": 182, - "x": 92, - "y": 339 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35937564820051193, - "x_min": 0.1130119189620018, - "y_max": 0.9963881969451904, - "y_min": 0.7641627788543701 - }, - "confidence": 0.8237555027008057, - "label": "vehicle", - "label_id": 2 - }, - "h": 100, - "region_id": 10780, - "roi_type": "vehicle", - "w": 189, - "x": 87, - "y": 330 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3695478141307831, - "x_min": 0.11453911662101746, - "y_max": 1.0, - "y_min": 0.7280340790748596 - }, - "confidence": 0.7173946499824524, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 10781, - "roi_type": "vehicle", - "w": 196, - "x": 88, - "y": 315 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36808082461357117, - "x_min": 0.10083702206611633, - "y_max": 0.9959658980369568, - "y_min": 0.7031351923942566 - }, - "confidence": 0.8457762002944946, - "label": "vehicle", - "label_id": 2 - }, - "h": 127, - "region_id": 10782, - "roi_type": "vehicle", - "w": 205, - "x": 77, - "y": 304 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37700890004634857, - "x_min": 0.10729126632213593, - "y_max": 0.9994959831237793, - "y_min": 0.6779965162277222 - }, - "confidence": 0.9278457760810852, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "region_id": 10783, - "roi_type": "vehicle", - "w": 207, - "x": 82, - "y": 293 - }, - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.12105026841163635, - "y_max": 0.9884764552116394, - "y_min": 0.031229078769683838 - }, - "confidence": 0.6490932106971741, - "label": "vehicle", - "label_id": 2 - }, - "h": 414, - "region_id": 10784, - "roi_type": "vehicle", - "w": 675, - "x": 93, - "y": 13 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37933249771595, - "x_min": 0.10664261877536774, - "y_max": 1.0, - "y_min": 0.6494535207748413 - }, - "confidence": 0.9569631814956665, - "label": "vehicle", - "label_id": 2 - }, - "h": 151, - "region_id": 10785, - "roi_type": "vehicle", - "w": 209, - "x": 82, - "y": 281 - }, - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.12350031733512878, - "y_max": 0.9561575353145599, - "y_min": 0.036140888929367065 - }, - "confidence": 0.6475626826286316, - "label": "vehicle", - "label_id": 2 - }, - "h": 397, - "region_id": 10786, - "roi_type": "vehicle", - "w": 673, - "x": 95, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37901879847049713, - "x_min": 0.10554523766040802, - "y_max": 1.0, - "y_min": 0.6312699913978577 - }, - "confidence": 0.9906972646713257, - "label": "vehicle", - "label_id": 2 - }, - "h": 159, - "region_id": 10787, - "roi_type": "vehicle", - "w": 210, - "x": 81, - "y": 273 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3792016804218292, - "x_min": 0.11973920464515686, - "y_max": 0.9997225999832153, - "y_min": 0.6097801923751831 - }, - "confidence": 0.9947446584701538, - "label": "vehicle", - "label_id": 2 - }, - "h": 168, - "region_id": 10788, - "roi_type": "vehicle", - "w": 199, - "x": 92, - "y": 263 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3760889172554016, - "x_min": 0.11782974004745483, - "y_max": 0.9969019889831543, - "y_min": 0.5848079919815063 - }, - "confidence": 0.9949920773506165, - "label": "vehicle", - "label_id": 2 - }, - "h": 178, - "region_id": 10789, - "roi_type": "vehicle", - "w": 198, - "x": 90, - "y": 253 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3769965320825577, - "x_min": 0.11793924868106842, - "y_max": 0.9975459575653076, - "y_min": 0.5624508857727051 - }, - "confidence": 0.9885396361351013, - "label": "vehicle", - "label_id": 2 - }, - "h": 188, - "region_id": 10790, - "roi_type": "vehicle", - "w": 199, - "x": 91, - "y": 243 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37293992936611176, - "x_min": 0.11036746203899384, - "y_max": 1.0, - "y_min": 0.5396616458892822 - }, - "confidence": 0.9783477783203125, - "label": "vehicle", - "label_id": 2 - }, - "h": 199, - "region_id": 10791, - "roi_type": "vehicle", - "w": 202, - "x": 85, - "y": 233 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36592480540275574, - "x_min": 0.13214635848999023, - "y_max": 1.0, - "y_min": 0.5241050720214844 - }, - "confidence": 0.9772934317588806, - "label": "vehicle", - "label_id": 2 - }, - "h": 206, - "region_id": 10792, - "roi_type": "vehicle", - "w": 180, - "x": 101, - "y": 226 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3634260296821594, - "x_min": 0.13490857183933258, - "y_max": 1.0, - "y_min": 0.5041921138763428 - }, - "confidence": 0.9919345378875732, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "region_id": 10793, - "roi_type": "vehicle", - "w": 176, - "x": 104, - "y": 218 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.960456371307373, - "x_min": 0.14331555366516113, - "y_max": 0.8030669689178467, - "y_min": 0.04740440845489502 - }, - "confidence": 0.6498066186904907, - "label": "vehicle", - "label_id": 2 - }, - "h": 326, - "region_id": 10794, - "roi_type": "vehicle", - "w": 628, - "x": 110, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3554348349571228, - "x_min": 0.14201128482818604, - "y_max": 0.9914812445640564, - "y_min": 0.49649685621261597 - }, - "confidence": 0.9959776997566223, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "region_id": 10797, - "roi_type": "vehicle", - "w": 164, - "x": 109, - "y": 214 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35458171367645264, - "x_min": 0.14792513847351074, - "y_max": 0.9985901713371277, - "y_min": 0.47491592168807983 - }, - "confidence": 0.9977288842201233, - "label": "vehicle", - "label_id": 2 - }, - "h": 226, - "region_id": 10795, - "roi_type": "vehicle", - "w": 159, - "x": 114, - "y": 205 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9464908838272095, - "x_min": 0.37183070182800293, - "y_max": 0.8923693895339966, - "y_min": 0.04037749767303467 - }, - "confidence": 0.5506706833839417, - "label": "vehicle", - "label_id": 2 - }, - "h": 368, - "region_id": 10796, - "roi_type": "vehicle", - "w": 441, - "x": 286, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35628217458724976, - "x_min": 0.1539267748594284, - "y_max": 0.9833188056945801, - "y_min": 0.4503910541534424 - }, - "confidence": 0.994249701499939, - "label": "vehicle", - "label_id": 2 - }, - "h": 230, - "region_id": 10798, - "roi_type": "vehicle", - "w": 155, - "x": 118, - "y": 195 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3493105173110962, - "x_min": 0.15961898863315582, - "y_max": 0.9475720822811127, - "y_min": 0.4319262206554413 - }, - "confidence": 0.9976761937141418, - "label": "vehicle", - "label_id": 2 - }, - "h": 223, - "region_id": 10799, - "roi_type": "vehicle", - "w": 146, - "x": 123, - "y": 187 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9634890258312225, - "x_min": 0.3556390702724457, - "y_max": 0.7470780611038208, - "y_min": 0.06608313322067261 - }, - "confidence": 0.7034559845924377, - "label": "vehicle", - "label_id": 2 - }, - "h": 294, - "region_id": 10800, - "roi_type": "vehicle", - "w": 467, - "x": 273, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3447081446647644, - "x_min": 0.16244013607501984, - "y_max": 0.9356728792190552, - "y_min": 0.42220282554626465 - }, - "confidence": 0.997654139995575, - "label": "vehicle", - "label_id": 2 - }, - "h": 222, - "region_id": 10802, - "roi_type": "vehicle", - "w": 140, - "x": 125, - "y": 182 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9825330972671509, - "x_min": 0.34150373935699463, - "y_max": 0.9223797023296356, - "y_min": 0.048903077840805054 - }, - "confidence": 0.5919698476791382, - "label": "vehicle", - "label_id": 2 - }, - "h": 377, - "region_id": 10803, - "roi_type": "vehicle", - "w": 492, - "x": 262, - "y": 21 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3389114439487457, - "x_min": 0.16517701745033264, - "y_max": 0.9076908528804779, - "y_min": 0.4019246995449066 - }, - "confidence": 0.9994926452636719, - "label": "vehicle", - "label_id": 2 - }, - "h": 218, - "region_id": 10801, - "roi_type": "vehicle", - "w": 133, - "x": 127, - "y": 174 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3360127806663513, - "x_min": 0.1654418557882309, - "y_max": 0.8818584084510803, - "y_min": 0.3884504437446594 - }, - "confidence": 0.9987764954566956, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "region_id": 10804, - "roi_type": "vehicle", - "w": 131, - "x": 127, - "y": 168 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9590835273265839, - "x_min": 0.31477364897727966, - "y_max": 0.8576100170612335, - "y_min": 0.07268145680427551 - }, - "confidence": 0.5272276401519775, - "label": "vehicle", - "label_id": 2 - }, - "h": 339, - "region_id": 10805, - "roi_type": "vehicle", - "w": 495, - "x": 242, - "y": 31 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33232998847961426, - "x_min": 0.16263365745544434, - "y_max": 0.8597554564476013, - "y_min": 0.3726103901863098 - }, - "confidence": 0.9985213875770569, - "label": "vehicle", - "label_id": 2 - }, - "h": 210, - "region_id": 10806, - "roi_type": "vehicle", - "w": 130, - "x": 125, - "y": 161 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9746560454368591, - "x_min": 0.3364577889442444, - "y_max": 0.9104736745357513, - "y_min": 0.05242249369621277 - }, - "confidence": 0.5714530348777771, - "label": "vehicle", - "label_id": 2 - }, - "h": 371, - "region_id": 10807, - "roi_type": "vehicle", - "w": 490, - "x": 258, - "y": 23 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33004996180534363, - "x_min": 0.16184934973716736, - "y_max": 0.831344723701477, - "y_min": 0.35449519753456116 - }, - "confidence": 0.9997923970222473, - "label": "vehicle", - "label_id": 2 - }, - "h": 206, - "region_id": 10808, - "roi_type": "vehicle", - "w": 129, - "x": 124, - "y": 153 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9590028822422028, - "x_min": 0.3254684507846832, - "y_max": 0.8569502830505371, - "y_min": 0.06740456819534302 - }, - "confidence": 0.7004438042640686, - "label": "vehicle", - "label_id": 2 - }, - "h": 341, - "region_id": 10809, - "roi_type": "vehicle", - "w": 487, - "x": 250, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3289366066455841, - "x_min": 0.1574317216873169, - "y_max": 0.8062315583229065, - "y_min": 0.34386783838272095 - }, - "confidence": 0.9998531341552734, - "label": "vehicle", - "label_id": 2 - }, - "h": 200, - "region_id": 10810, - "roi_type": "vehicle", - "w": 132, - "x": 121, - "y": 149 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.964382529258728, - "x_min": 0.32466232776641846, - "y_max": 0.8281485438346863, - "y_min": 0.05045187473297119 - }, - "confidence": 0.7299045920372009, - "label": "vehicle", - "label_id": 2 - }, - "h": 336, - "region_id": 10811, - "roi_type": "vehicle", - "w": 491, - "x": 249, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.32749849557876587, - "x_min": 0.15210948884487152, - "y_max": 0.7838110327720642, - "y_min": 0.3270363211631775 - }, - "confidence": 0.9998413324356079, - "label": "vehicle", - "label_id": 2 - }, - "h": 197, - "region_id": 10812, - "roi_type": "vehicle", - "w": 135, - "x": 117, - "y": 141 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9622262120246887, - "x_min": 0.3427131772041321, - "y_max": 0.87251016497612, - "y_min": 0.04009708762168884 - }, - "confidence": 0.5857366919517517, - "label": "vehicle", - "label_id": 2 - }, - "h": 360, - "region_id": 10813, - "roi_type": "vehicle", - "w": 476, - "x": 263, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3233610689640045, - "x_min": 0.14286422729492188, - "y_max": 0.7728333473205566, - "y_min": 0.3200983703136444 - }, - "confidence": 0.9999895095825195, - "label": "vehicle", - "label_id": 2 - }, - "h": 196, - "region_id": 10814, - "roi_type": "vehicle", - "w": 139, - "x": 110, - "y": 138 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9750470519065857, - "x_min": 0.29748600721359253, - "y_max": 0.878402590751648, - "y_min": 0.02611905336380005 - }, - "confidence": 0.6027935147285461, - "label": "vehicle", - "label_id": 2 - }, - "h": 368, - "region_id": 10815, - "roi_type": "vehicle", - "w": 520, - "x": 228, - "y": 11 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3201468884944916, - "x_min": 0.13641870021820068, - "y_max": 0.7574479579925537, - "y_min": 0.309865802526474 - }, - "confidence": 0.9999890327453613, - "label": "vehicle", - "label_id": 2 - }, - "h": 193, - "region_id": 10816, - "roi_type": "vehicle", - "w": 141, - "x": 105, - "y": 134 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.967246949672699, - "x_min": 0.2861178517341614, - "y_max": 0.8358006775379181, - "y_min": 0.03851500153541565 - }, - "confidence": 0.7227263450622559, - "label": "vehicle", - "label_id": 2 - }, - "h": 344, - "region_id": 10817, - "roi_type": "vehicle", - "w": 523, - "x": 220, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31699711084365845, - "x_min": 0.13015078008174896, - "y_max": 0.7375568151473999, - "y_min": 0.29937541484832764 - }, - "confidence": 0.9999899864196777, - "label": "vehicle", - "label_id": 2 - }, - "h": 189, - "region_id": 10818, - "roi_type": "vehicle", - "w": 143, - "x": 100, - "y": 129 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9515461325645447, - "x_min": 0.33267635107040405, - "y_max": 0.8539553582668304, - "y_min": 0.03352043032646179 - }, - "confidence": 0.8081793785095215, - "label": "vehicle", - "label_id": 2 - }, - "h": 354, - "region_id": 10819, - "roi_type": "vehicle", - "w": 475, - "x": 255, - "y": 14 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.313996784389019, - "x_min": 0.1178915724158287, - "y_max": 0.721222996711731, - "y_min": 0.2869602143764496 - }, - "confidence": 0.9999879598617554, - "label": "vehicle", - "label_id": 2 - }, - "h": 188, - "region_id": 10820, - "roi_type": "vehicle", - "w": 151, - "x": 91, - "y": 124 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9608641266822815, - "x_min": 0.32193297147750854, - "y_max": 0.872944712638855, - "y_min": 0.03886592388153076 - }, - "confidence": 0.6384647488594055, - "label": "vehicle", - "label_id": 2 - }, - "h": 360, - "region_id": 10821, - "roi_type": "vehicle", - "w": 491, - "x": 247, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31122130155563354, - "x_min": 0.10584880411624908, - "y_max": 0.7095153331756592, - "y_min": 0.28365960717201233 - }, - "confidence": 0.9999860525131226, - "label": "vehicle", - "label_id": 2 - }, - "h": 184, - "region_id": 10822, - "roi_type": "vehicle", - "w": 158, - "x": 81, - "y": 123 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9637041389942169, - "x_min": 0.32208338379859924, - "y_max": 0.8715708255767822, - "y_min": 0.04041773080825806 - }, - "confidence": 0.649631142616272, - "label": "vehicle", - "label_id": 2 - }, - "h": 359, - "region_id": 10823, - "roi_type": "vehicle", - "w": 493, - "x": 247, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.30708828568458557, - "x_min": 0.08848142623901367, - "y_max": 0.6941937208175659, - "y_min": 0.27684852480888367 - }, - "confidence": 0.9999517202377319, - "label": "vehicle", - "label_id": 2 - }, - "h": 180, - "region_id": 10824, - "roi_type": "vehicle", - "w": 168, - "x": 68, - "y": 120 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9554692804813385, - "x_min": 0.3402766287326813, - "y_max": 0.8379943072795868, - "y_min": 0.04827651381492615 - }, - "confidence": 0.7163934707641602, - "label": "vehicle", - "label_id": 2 - }, - "h": 341, - "region_id": 10825, - "roi_type": "vehicle", - "w": 472, - "x": 261, - "y": 21 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3021143078804016, - "x_min": 0.08180795609951019, - "y_max": 0.6738347411155701, - "y_min": 0.2771807909011841 - }, - "confidence": 0.9999845027923584, - "label": "vehicle", - "label_id": 2 - }, - "h": 171, - "region_id": 10826, - "roi_type": "vehicle", - "w": 169, - "x": 63, - "y": 120 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9660838842391968, - "x_min": 0.33971118927001953, - "y_max": 0.8525603115558624, - "y_min": 0.0668802559375763 - }, - "confidence": 0.5413897633552551, - "label": "vehicle", - "label_id": 2 - }, - "h": 339, - "region_id": 10827, - "roi_type": "vehicle", - "w": 481, - "x": 261, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2942667081952095, - "x_min": 0.07385558634996414, - "y_max": 0.656566858291626, - "y_min": 0.27267447113990784 - }, - "confidence": 0.9999916553497314, - "label": "vehicle", - "label_id": 2 - }, - "h": 166, - "region_id": 10828, - "roi_type": "vehicle", - "w": 169, - "x": 57, - "y": 118 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9926852583885193, - "x_min": 0.3049655556678772, - "y_max": 0.8486753702163696, - "y_min": 0.05000650882720947 - }, - "confidence": 0.5591980814933777, - "label": "vehicle", - "label_id": 2 - }, - "h": 345, - "region_id": 10829, - "roi_type": "vehicle", - "w": 528, - "x": 234, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.28687456995248795, - "x_min": 0.06621802598237991, - "y_max": 0.6433695554733276, - "y_min": 0.2654878795146942 - }, - "confidence": 0.9999983310699463, - "label": "vehicle", - "label_id": 2 - }, - "h": 163, - "region_id": 10830, - "roi_type": "vehicle", - "w": 169, - "x": 51, - "y": 115 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.28295157104730606, - "x_min": 0.055335767567157745, - "y_max": 0.6373208165168762, - "y_min": 0.2616565227508545 - }, - "confidence": 0.9999963045120239, - "label": "vehicle", - "label_id": 2 - }, - "h": 162, - "region_id": 10831, - "roi_type": "vehicle", - "w": 175, - "x": 42, - "y": 113 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.95826455950737, - "x_min": 0.3554447591304779, - "y_max": 0.7013552486896515, - "y_min": 0.061350494623184204 - }, - "confidence": 0.6528945565223694, - "label": "vehicle", - "label_id": 2 - }, - "h": 276, - "region_id": 10832, - "roi_type": "vehicle", - "w": 463, - "x": 273, - "y": 27 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27854787558317184, - "x_min": 0.04411589354276657, - "y_max": 0.62773197889328, - "y_min": 0.2605406641960144 - }, - "confidence": 0.999983549118042, - "label": "vehicle", - "label_id": 2 - }, - "h": 159, - "region_id": 10833, - "roi_type": "vehicle", - "w": 180, - "x": 34, - "y": 113 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27031123638153076, - "x_min": 0.03065599501132965, - "y_max": 0.6122254133224487, - "y_min": 0.2575317919254303 - }, - "confidence": 0.9999444484710693, - "label": "vehicle", - "label_id": 2 - }, - "h": 153, - "region_id": 10834, - "roi_type": "vehicle", - "w": 184, - "x": 24, - "y": 111 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2618173286318779, - "x_min": 0.01927035301923752, - "y_max": 0.6008049249649048, - "y_min": 0.2527608275413513 - }, - "confidence": 0.9999783039093018, - "label": "vehicle", - "label_id": 2 - }, - "h": 150, - "region_id": 10835, - "roi_type": "vehicle", - "w": 186, - "x": 15, - "y": 109 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2521120309829712, - "x_min": 0.006787553429603577, - "y_max": 0.5942617058753967, - "y_min": 0.25123631954193115 - }, - "confidence": 0.999976396560669, - "label": "vehicle", - "label_id": 2 - }, - "h": 148, - "region_id": 10836, - "roi_type": "vehicle", - "w": 188, - "x": 5, - "y": 109 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2455773949623108, - "x_min": 0.0038528144359588623, - "y_max": 0.5852652192115784, - "y_min": 0.25117599964141846 - }, - "confidence": 0.999962568283081, - "label": "vehicle", - "label_id": 2 - }, - "h": 144, - "region_id": 10837, - "roi_type": "vehicle", - "w": 186, - "x": 3, - "y": 109 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23418442159891129, - "x_min": 0.00190020352602005, - "y_max": 0.5771202892065048, - "y_min": 0.24817226827144623 - }, - "confidence": 0.9999908208847046, - "label": "vehicle", - "label_id": 2 - }, - "h": 142, - "region_id": 10838, - "roi_type": "vehicle", - "w": 178, - "x": 1, - "y": 107 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.22408055514097214, - "x_min": 0.000627569854259491, - "y_max": 0.5654963403940201, - "y_min": 0.2458530217409134 - }, - "confidence": 0.9999959468841553, - "label": "vehicle", - "label_id": 2 - }, - "h": 138, - "region_id": 10839, - "roi_type": "vehicle", - "w": 172, - "x": 0, - "y": 106 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9729532599449158, - "x_min": 0.3975161910057068, - "y_max": 0.7704417705535889, - "y_min": 0.06877964735031128 - }, - "confidence": 0.5025386214256287, - "label": "vehicle", - "label_id": 2 - }, - "h": 303, - "region_id": 10840, - "roi_type": "vehicle", - "w": 442, - "x": 305, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.21542106568813324, - "x_min": 0.0, - "y_max": 0.5575774908065796, - "y_min": 0.24282824993133545 - }, - "confidence": 0.9999918937683105, - "label": "vehicle", - "label_id": 2 - }, - "h": 136, - "region_id": 10841, - "roi_type": "vehicle", - "w": 165, - "x": 0, - "y": 105 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9764736294746399, - "x_min": 0.3866834044456482, - "y_max": 0.8177641928195953, - "y_min": 0.04835072159767151 - }, - "confidence": 0.5299532413482666, - "label": "vehicle", - "label_id": 2 - }, - "h": 332, - "region_id": 10842, - "roi_type": "vehicle", - "w": 453, - "x": 297, - "y": 21 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.20652518421411514, - "x_min": 0.0, - "y_max": 0.5523459762334824, - "y_min": 0.2393653839826584 - }, - "confidence": 0.9999760389328003, - "label": "vehicle", - "label_id": 2 - }, - "h": 135, - "region_id": 10844, - "roi_type": "vehicle", - "w": 159, - "x": 0, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19814243912696838, - "x_min": 9.648501873016357e-05, - "y_max": 0.5438299030065536, - "y_min": 0.23729972541332245 - }, - "confidence": 0.99991774559021, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 10843, - "roi_type": "vehicle", - "w": 152, - "x": 0, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.18656962364912033, - "x_min": 0.00026082247495651245, - "y_max": 0.540632963180542, - "y_min": 0.22892174124717712 - }, - "confidence": 0.999891996383667, - "label": "vehicle", - "label_id": 2 - }, - "h": 135, - "region_id": 10845, - "roi_type": "vehicle", - "w": 143, - "x": 0, - "y": 99 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.17477919906377792, - "x_min": 0.001994602382183075, - "y_max": 0.5303716063499451, - "y_min": 0.22543710470199585 - }, - "confidence": 0.9990342855453491, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 10846, - "roi_type": "vehicle", - "w": 133, - "x": 2, - "y": 97 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.16638848185539246, - "x_min": 0.0, - "y_max": 0.5288660079240799, - "y_min": 0.22173668444156647 - }, - "confidence": 0.9978117346763611, - "label": "vehicle", - "label_id": 2 - }, - "h": 133, - "region_id": 10847, - "roi_type": "vehicle", - "w": 128, - "x": 0, - "y": 96 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15866544842720032, - "x_min": 0.0, - "y_max": 0.5260069519281387, - "y_min": 0.22341085970401764 - }, - "confidence": 0.9969075322151184, - "label": "vehicle", - "label_id": 2 - }, - "h": 131, - "region_id": 10848, - "roi_type": "vehicle", - "w": 122, - "x": 0, - "y": 97 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.14424734562635422, - "x_min": 0.0004708394408226013, - "y_max": 0.5235311985015869, - "y_min": 0.22360435128211975 - }, - "confidence": 0.9907389879226685, - "label": "vehicle", - "label_id": 2 - }, - "h": 130, - "region_id": 10849, - "roi_type": "vehicle", - "w": 110, - "x": 0, - "y": 97 - }, - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.11542871594429016, - "y_max": 0.9303610026836395, - "y_min": 0.03652903437614441 - }, - "confidence": 0.5644902586936951, - "label": "vehicle", - "label_id": 2 - }, - "h": 386, - "region_id": 10850, - "roi_type": "vehicle", - "w": 679, - "x": 89, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1311522275209427, - "x_min": 0.0012656599283218384, - "y_max": 0.5229739546775818, - "y_min": 0.2319927215576172 - }, - "confidence": 0.8800601363182068, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 10851, - "roi_type": "vehicle", - "w": 100, - "x": 1, - "y": 100 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.12498541176319122, - "x_min": 0.0, - "y_max": 0.5163314342498779, - "y_min": 0.24239161610603333 - }, - "confidence": 0.7448732256889343, - "label": "vehicle", - "label_id": 2 - }, - "h": 118, - "region_id": 10852, - "roi_type": "vehicle", - "w": 96, - "x": 0, - "y": 105 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1116863377392292, - "x_min": 0.0006904192268848419, - "y_max": 0.5155525207519531, - "y_min": 0.24023357033729553 - }, - "confidence": 0.8874056935310364, - "label": "vehicle", - "label_id": 2 - }, - "h": 119, - "region_id": 10853, - "roi_type": "vehicle", - "w": 85, - "x": 1, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.09923026710748672, - "x_min": 0.001333586871623993, - "y_max": 0.5189979076385498, - "y_min": 0.23733755946159363 - }, - "confidence": 0.6848376989364624, - "label": "vehicle", - "label_id": 2 - }, - "h": 122, - "region_id": 10854, - "roi_type": "vehicle", - "w": 75, - "x": 1, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.08814660087227821, - "x_min": 0.0, - "y_max": 0.5184166878461838, - "y_min": 0.23750726878643036 - }, - "confidence": 0.547851026058197, - "label": "vehicle", - "label_id": 2 - }, - "h": 121, - "region_id": 10855, - "roi_type": "vehicle", - "w": 68, - "x": 0, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07822689414024353, - "x_min": 0.0, - "y_max": 0.5102934390306473, - "y_min": 0.23988105356693268 - }, - "confidence": 0.7760471105575562, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 10856, - "roi_type": "vehicle", - "w": 60, - "x": 0, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06671496108174324, - "x_min": 0.0004887916147708893, - "y_max": 0.5063621997833252, - "y_min": 0.24073129892349243 - }, - "confidence": 0.721200168132782, - "label": "vehicle", - "label_id": 2 - }, - "h": 115, - "region_id": 10857, - "roi_type": "vehicle", - "w": 51, - "x": 0, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.058564310893416405, - "x_min": 0.0012591909617185593, - "y_max": 0.49973881244659424, - "y_min": 0.2501286268234253 - }, - "confidence": 0.7428306341171265, - "label": "vehicle", - "label_id": 2 - }, - "h": 108, - "region_id": 10858, - "roi_type": "vehicle", - "w": 44, - "x": 1, - "y": 108 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.04703952744603157, - "x_min": 0.0021373629570007324, - "y_max": 0.491912305355072, - "y_min": 0.27300935983657837 - }, - "confidence": 0.5740195512771606, - "label": "vehicle", - "label_id": 2 - }, - "h": 95, - "region_id": 10859, - "roi_type": "vehicle", - "w": 34, - "x": 2, - "y": 118 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.03855092264711857, - "x_min": 0.0, - "y_max": 0.48962903022766113, - "y_min": 0.2736285924911499 - }, - "confidence": 0.5253973007202148, - "label": "vehicle", - "label_id": 2 - }, - "h": 93, - "region_id": 10860, - "roi_type": "vehicle", - "w": 30, - "x": 0, - "y": 118 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.934235006570816, - "x_min": 0.04731431603431702, - "y_max": 0.9905672669410706, - "y_min": 0.005245864391326904 - }, - "confidence": 0.5478575229644775, - "label": "vehicle", - "label_id": 2 - }, - "h": 426, - "region_id": 10867, - "roi_type": "vehicle", - "w": 681, - "x": 36, - "y": 2 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9340743124485016, - "x_min": 0.05626228451728821, - "y_max": 0.9993162155151367, - "y_min": 0.0 - }, - "confidence": 0.5252728462219238, - "label": "vehicle", - "label_id": 2 - }, - "h": 432, - "region_id": 10868, - "roi_type": "vehicle", - "w": 674, - "x": 43, - "y": 0 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9431887567043304, - "x_min": 0.05145725607872009, - "y_max": 0.9891375601291656, - "y_min": 0.0 - }, - "confidence": 0.5604560375213623, - "label": "vehicle", - "label_id": 2 - }, - "h": 427, - "region_id": 10869, - "roi_type": "vehicle", - "w": 685, - "x": 40, - "y": 0 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9341979622840881, - "x_min": 0.04894071817398071, - "y_max": 0.9517980813980103, - "y_min": 0.0 - }, - "confidence": 0.5412791967391968, - "label": "vehicle", - "label_id": 2 - }, - "h": 411, - "region_id": 10870, - "roi_type": "vehicle", - "w": 680, - "x": 38, - "y": 0 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9681801199913025, - "x_min": 0.22439366579055786, - "y_max": 0.795999139547348, - "y_min": 0.07999715209007263 - }, - "confidence": 0.6512441039085388, - "label": "vehicle", - "label_id": 2 - }, - "h": 309, - "region_id": 10871, - "roi_type": "vehicle", - "w": 571, - "x": 172, - "y": 35 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 27333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.1108655333518982, - "y_max": 0.9221687614917755, - "y_min": 0.024473220109939575 - }, - "confidence": 0.5428245663642883, - "label": "vehicle", - "label_id": 2 - }, - "h": 388, - "region_id": 10872, - "roi_type": "vehicle", - "w": 683, - "x": 85, - "y": 11 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 28166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9668244123458862, - "x_min": 0.04019737243652344, - "y_max": 1.0, - "y_min": 0.018689513206481934 - }, - "confidence": 0.5183915495872498, - "label": "vehicle", - "label_id": 2 - }, - "h": 424, - "region_id": 10875, - "roi_type": "vehicle", - "w": 712, - "x": 31, - "y": 8 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 28916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.05809926800429821, - "x_min": 0.0035657789558172226, - "y_max": 0.2681969776749611, - "y_min": 0.09560371190309525 - }, - "confidence": 0.7589443922042847, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 10883, - "roi_type": "person", - "w": 42, - "x": 3, - "y": 41 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06384254433214664, - "x_min": 0.007957043126225471, - "y_max": 0.274237722158432, - "y_min": 0.1018730103969574 - }, - "confidence": 0.7985617518424988, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 10885, - "roi_type": "person", - "w": 43, - "x": 6, - "y": 44 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07437356747686863, - "x_min": 0.015382559970021248, - "y_max": 0.2672903835773468, - "y_min": 0.09030735492706299 - }, - "confidence": 0.893984317779541, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 10884, - "roi_type": "person", - "w": 45, - "x": 12, - "y": 39 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06839273869991302, - "x_min": 0.022368106991052628, - "y_max": 0.26446548104286194, - "y_min": 0.0925963819026947 - }, - "confidence": 0.946168839931488, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 10886, - "roi_type": "person", - "w": 35, - "x": 17, - "y": 40 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06265867501497269, - "x_min": 0.02845694124698639, - "y_max": 0.2631925344467163, - "y_min": 0.0876958817243576 - }, - "confidence": 0.7030326128005981, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 10887, - "roi_type": "person", - "w": 26, - "x": 22, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07015539705753326, - "x_min": 0.038974471390247345, - "y_max": 0.2708924114704132, - "y_min": 0.08729448914527893 - }, - "confidence": 0.8550823330879211, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 10888, - "roi_type": "person", - "w": 24, - "x": 30, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.08978046476840973, - "x_min": 0.04507404938340187, - "y_max": 0.26029662042856216, - "y_min": 0.08790374547243118 - }, - "confidence": 0.977257251739502, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 10889, - "roi_type": "person", - "w": 34, - "x": 35, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.10240232944488525, - "x_min": 0.050258174538612366, - "y_max": 0.26179608702659607, - "y_min": 0.08916294574737549 - }, - "confidence": 0.9634844064712524, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 10890, - "roi_type": "person", - "w": 40, - "x": 39, - "y": 39 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11237834393978119, - "x_min": 0.0557108074426651, - "y_max": 0.265661358833313, - "y_min": 0.08681026101112366 - }, - "confidence": 0.9638311266899109, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 10891, - "roi_type": "person", - "w": 44, - "x": 43, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11509420722723007, - "x_min": 0.0598953440785408, - "y_max": 0.26093965768814087, - "y_min": 0.08726376295089722 - }, - "confidence": 0.9589016437530518, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 10892, - "roi_type": "person", - "w": 42, - "x": 46, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.10801342129707336, - "x_min": 0.0689283162355423, - "y_max": 0.2573170065879822, - "y_min": 0.0888819694519043 - }, - "confidence": 0.7473644018173218, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 10893, - "roi_type": "person", - "w": 30, - "x": 53, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11594520509243011, - "x_min": 0.08451759815216064, - "y_max": 0.2598234713077545, - "y_min": 0.08372160792350769 - }, - "confidence": 0.9428697824478149, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 10894, - "roi_type": "person", - "w": 24, - "x": 65, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.14308200776576996, - "x_min": 0.08935531973838806, - "y_max": 0.25856076925992966, - "y_min": 0.08275481313467026 - }, - "confidence": 0.9797755479812622, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 10895, - "roi_type": "person", - "w": 41, - "x": 69, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15327730774879456, - "x_min": 0.09761051088571548, - "y_max": 0.25556155294179916, - "y_min": 0.08270096033811569 - }, - "confidence": 0.9193074703216553, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 10896, - "roi_type": "person", - "w": 43, - "x": 75, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15708927810192108, - "x_min": 0.09718881547451019, - "y_max": 0.2538745477795601, - "y_min": 0.08122579008340836 - }, - "confidence": 0.9810740351676941, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 10897, - "roi_type": "person", - "w": 46, - "x": 75, - "y": 35 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15849240124225616, - "x_min": 0.10766856372356415, - "y_max": 0.2546975910663605, - "y_min": 0.07851284742355347 - }, - "confidence": 0.9863011837005615, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 10898, - "roi_type": "person", - "w": 39, - "x": 83, - "y": 34 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.14903458952903748, - "x_min": 0.11753658205270767, - "y_max": 0.2580205202102661, - "y_min": 0.07362668216228485 - }, - "confidence": 0.9098013639450073, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 10899, - "roi_type": "person", - "w": 24, - "x": 90, - "y": 32 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15783970057964325, - "x_min": 0.13124407827854156, - "y_max": 0.25078579038381577, - "y_min": 0.08267303556203842 - }, - "confidence": 0.5655198097229004, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 10900, - "roi_type": "person", - "w": 20, - "x": 101, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1712721735239029, - "x_min": 0.13269366323947906, - "y_max": 0.25339871644973755, - "y_min": 0.0712251216173172 - }, - "confidence": 0.9201220273971558, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 10901, - "roi_type": "person", - "w": 30, - "x": 102, - "y": 31 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.188812255859375, - "x_min": 0.1387019157409668, - "y_max": 0.2481667771935463, - "y_min": 0.06929013878107071 - }, - "confidence": 0.972706139087677, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 10902, - "roi_type": "person", - "w": 38, - "x": 107, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19876964390277863, - "x_min": 0.14241482317447662, - "y_max": 0.24410223960876465, - "y_min": 0.06995522975921631 - }, - "confidence": 0.935201108455658, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 10903, - "roi_type": "person", - "w": 43, - "x": 109, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19850021600723267, - "x_min": 0.14565402269363403, - "y_max": 0.24200070649385452, - "y_min": 0.06734246760606766 - }, - "confidence": 0.9604580402374268, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 10904, - "roi_type": "person", - "w": 41, - "x": 112, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19670461118221283, - "x_min": 0.15936703979969025, - "y_max": 0.24713708460330963, - "y_min": 0.06951303780078888 - }, - "confidence": 0.9338945746421814, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 10905, - "roi_type": "person", - "w": 29, - "x": 122, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19646276533603668, - "x_min": 0.1669870764017105, - "y_max": 0.246548093855381, - "y_min": 0.05969572812318802 - }, - "confidence": 0.8135930299758911, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 10906, - "roi_type": "person", - "w": 23, - "x": 128, - "y": 26 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.20714330673217773, - "x_min": 0.17688614130020142, - "y_max": 0.24033692479133606, - "y_min": 0.06553769111633301 - }, - "confidence": 0.8666308522224426, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 10907, - "roi_type": "person", - "w": 23, - "x": 136, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.22876504063606262, - "x_min": 0.17733925580978394, - "y_max": 0.23425975441932678, - "y_min": 0.0654514729976654 - }, - "confidence": 0.9463271498680115, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 10908, - "roi_type": "person", - "w": 39, - "x": 136, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23787567019462585, - "x_min": 0.18617352843284607, - "y_max": 0.2328994944691658, - "y_min": 0.06733778864145279 - }, - "confidence": 0.8578006029129028, - "label": "person", - "label_id": 1 - }, - "h": 72, - "region_id": 10909, - "roi_type": "person", - "w": 40, - "x": 143, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24495282769203186, - "x_min": 0.18914848566055298, - "y_max": 0.2286892682313919, - "y_min": 0.06330259144306183 - }, - "confidence": 0.9402493834495544, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 10910, - "roi_type": "person", - "w": 43, - "x": 145, - "y": 27 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24374517798423767, - "x_min": 0.19896605610847473, - "y_max": 0.22477789968252182, - "y_min": 0.06456565111875534 - }, - "confidence": 0.9167733192443848, - "label": "person", - "label_id": 1 - }, - "h": 69, - "region_id": 10911, - "roi_type": "person", - "w": 34, - "x": 153, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23920002579689026, - "x_min": 0.2088455855846405, - "y_max": 0.2315978854894638, - "y_min": 0.050867900252342224 - }, - "confidence": 0.7405911087989807, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 10913, - "roi_type": "person", - "w": 23, - "x": 160, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24580711126327515, - "x_min": 0.21504563093185425, - "y_max": 0.22459035366773605, - "y_min": 0.04561009258031845 - }, - "confidence": 0.8077870607376099, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 10912, - "roi_type": "person", - "w": 24, - "x": 165, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.258386492729187, - "x_min": 0.22124245762825012, - "y_max": 0.22196873277425766, - "y_min": 0.04270251840353012 - }, - "confidence": 0.9389499425888062, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 10914, - "roi_type": "person", - "w": 29, - "x": 170, - "y": 18 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2686212658882141, - "x_min": 0.22306442260742188, - "y_max": 0.22240334749221802, - "y_min": 0.03721362352371216 - }, - "confidence": 0.8532395958900452, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 10915, - "roi_type": "person", - "w": 35, - "x": 171, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27878496050834656, - "x_min": 0.2256826013326645, - "y_max": 0.21868880838155746, - "y_min": 0.04378651827573776 - }, - "confidence": 0.940152108669281, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 10916, - "roi_type": "person", - "w": 41, - "x": 173, - "y": 19 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2782133221626282, - "x_min": 0.22981303930282593, - "y_max": 0.21300845593214035, - "y_min": 0.04048468917608261 - }, - "confidence": 0.8954000473022461, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 10917, - "roi_type": "person", - "w": 37, - "x": 176, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27863314747810364, - "x_min": 0.2395808845758438, - "y_max": 0.21157341450452805, - "y_min": 0.026669137179851532 - }, - "confidence": 0.5580120086669922, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 10918, - "roi_type": "person", - "w": 30, - "x": 184, - "y": 12 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2845720052719116, - "x_min": 0.25448018312454224, - "y_max": 0.21495232731103897, - "y_min": 0.026290185749530792 - }, - "confidence": 0.80083167552948, - "label": "person", - "label_id": 1 - }, - "h": 82, - "region_id": 10919, - "roi_type": "person", - "w": 23, - "x": 195, - "y": 11 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.29074627161026, - "x_min": 0.2599877119064331, - "y_max": 0.20789270102977753, - "y_min": 0.022824198007583618 - }, - "confidence": 0.8385727405548096, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 10920, - "roi_type": "person", - "w": 24, - "x": 200, - "y": 10 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.30755072832107544, - "x_min": 0.2656424045562744, - "y_max": 0.19290897250175476, - "y_min": 0.022242024540901184 - }, - "confidence": 0.977880597114563, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 10921, - "roi_type": "person", - "w": 32, - "x": 204, - "y": 10 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31079021096229553, - "x_min": 0.2677251994609833, - "y_max": 0.19722382724285126, - "y_min": 0.023035749793052673 - }, - "confidence": 0.9654287099838257, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 10922, - "roi_type": "person", - "w": 33, - "x": 206, - "y": 10 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.29563216120004654, - "x_min": 0.10331843048334122, - "y_max": 1.0, - "y_min": 0.8515570759773254 - }, - "confidence": 0.761517345905304, - "label": "vehicle", - "label_id": 2 - }, - "h": 64, - "region_id": 10923, - "roi_type": "vehicle", - "w": 148, - "x": 79, - "y": 368 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31590598821640015, - "x_min": 0.27411168813705444, - "y_max": 0.18277175724506378, - "y_min": 0.019142642617225647 - }, - "confidence": 0.9806784987449646, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 10924, - "roi_type": "person", - "w": 32, - "x": 211, - "y": 8 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.302535243332386, - "x_min": 0.08773649483919144, - "y_max": 1.0, - "y_min": 0.8262227177619934 - }, - "confidence": 0.908391535282135, - "label": "vehicle", - "label_id": 2 - }, - "h": 75, - "region_id": 10925, - "roi_type": "vehicle", - "w": 165, - "x": 67, - "y": 357 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3163120448589325, - "x_min": 0.27949169278144836, - "y_max": 0.18241430073976517, - "y_min": 0.00963614135980606 - }, - "confidence": 0.8560529351234436, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 10926, - "roi_type": "person", - "w": 28, - "x": 215, - "y": 4 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3071591779589653, - "x_min": 0.08984949439764023, - "y_max": 1.0, - "y_min": 0.7983192205429077 - }, - "confidence": 0.9688770174980164, - "label": "vehicle", - "label_id": 2 - }, - "h": 87, - "region_id": 10927, - "roi_type": "vehicle", - "w": 167, - "x": 69, - "y": 345 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31996291875839233, - "x_min": 0.28390347957611084, - "y_max": 0.17544172704219818, - "y_min": 0.002514094114303589 - }, - "confidence": 0.9317660927772522, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 10928, - "roi_type": "person", - "w": 28, - "x": 218, - "y": 1 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.31785333156585693, - "x_min": 0.09327417612075806, - "y_max": 0.9961552023887634, - "y_min": 0.7738481163978577 - }, - "confidence": 0.9980048537254333, - "label": "vehicle", - "label_id": 2 - }, - "h": 96, - "region_id": 10929, - "roi_type": "vehicle", - "w": 172, - "x": 72, - "y": 334 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3244977593421936, - "x_min": 0.29137319326400757, - "y_max": 0.18117792904376984, - "y_min": 0.0 - }, - "confidence": 0.9299455285072327, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 10930, - "roi_type": "person", - "w": 25, - "x": 224, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3211563229560852, - "x_min": 0.09341153502464294, - "y_max": 0.9977253675460815, - "y_min": 0.7558172941207886 - }, - "confidence": 0.995922327041626, - "label": "vehicle", - "label_id": 2 - }, - "h": 105, - "region_id": 10931, - "roi_type": "vehicle", - "w": 175, - "x": 72, - "y": 327 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33760935068130493, - "x_min": 0.2969669699668884, - "y_max": 0.1680586189031601, - "y_min": 0.0 - }, - "confidence": 0.97437584400177, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 10932, - "roi_type": "person", - "w": 31, - "x": 228, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.32524099946022034, - "x_min": 0.09379306435585022, - "y_max": 0.9987419843673706, - "y_min": 0.728178858757019 - }, - "confidence": 0.9982354640960693, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 10933, - "roi_type": "vehicle", - "w": 178, - "x": 72, - "y": 315 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34123092889785767, - "x_min": 0.2997239828109741, - "y_max": 0.1591828241944313, - "y_min": 0.0 - }, - "confidence": 0.9657360315322876, - "label": "person", - "label_id": 1 - }, - "h": 69, - "region_id": 10934, - "roi_type": "person", - "w": 32, - "x": 230, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3318566754460335, - "x_min": 0.09386516362428665, - "y_max": 0.9967382550239563, - "y_min": 0.7049055695533752 - }, - "confidence": 0.996229350566864, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 10935, - "roi_type": "vehicle", - "w": 183, - "x": 72, - "y": 305 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3466411232948303, - "x_min": 0.3028194308280945, - "y_max": 0.1562092900276184, - "y_min": 0.0 - }, - "confidence": 0.9846485257148743, - "label": "person", - "label_id": 1 - }, - "h": 67, - "region_id": 10936, - "roi_type": "person", - "w": 34, - "x": 233, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3395664617419243, - "x_min": 0.08993595093488693, - "y_max": 0.9996479153633118, - "y_min": 0.6784219145774841 - }, - "confidence": 0.9955138564109802, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "region_id": 10937, - "roi_type": "vehicle", - "w": 192, - "x": 69, - "y": 293 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34522509574890137, - "x_min": 0.30906105041503906, - "y_max": 0.15079188346862793, - "y_min": 0.0 - }, - "confidence": 0.9445015788078308, - "label": "person", - "label_id": 1 - }, - "h": 65, - "region_id": 10938, - "roi_type": "person", - "w": 28, - "x": 237, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3419874384999275, - "x_min": 0.0941135361790657, - "y_max": 1.0, - "y_min": 0.6525993943214417 - }, - "confidence": 0.9987126588821411, - "label": "vehicle", - "label_id": 2 - }, - "h": 150, - "region_id": 10939, - "roi_type": "vehicle", - "w": 190, - "x": 72, - "y": 282 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3481338918209076, - "x_min": 0.3160833418369293, - "y_max": 0.14550430327653885, - "y_min": 0.0 - }, - "confidence": 0.963749885559082, - "label": "person", - "label_id": 1 - }, - "h": 63, - "region_id": 10940, - "roi_type": "person", - "w": 25, - "x": 243, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.34435374289751053, - "x_min": 0.09984970837831497, - "y_max": 0.9990871548652649, - "y_min": 0.6355069279670715 - }, - "confidence": 0.9971874356269836, - "label": "vehicle", - "label_id": 2 - }, - "h": 157, - "region_id": 10941, - "roi_type": "vehicle", - "w": 188, - "x": 77, - "y": 275 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3530542850494385, - "x_min": 0.3201481103897095, - "y_max": 0.14842259883880615, - "y_min": 0.0 - }, - "confidence": 0.8752254843711853, - "label": "person", - "label_id": 1 - }, - "h": 64, - "region_id": 10942, - "roi_type": "person", - "w": 25, - "x": 246, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.34952497482299805, - "x_min": 0.10708582401275635, - "y_max": 1.0, - "y_min": 0.6191877722740173 - }, - "confidence": 0.998619794845581, - "label": "vehicle", - "label_id": 2 - }, - "h": 165, - "region_id": 10943, - "roi_type": "vehicle", - "w": 186, - "x": 82, - "y": 267 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35819557309150696, - "x_min": 0.3240784704685211, - "y_max": 0.14493504911661148, - "y_min": 0.0 - }, - "confidence": 0.7914350032806396, - "label": "person", - "label_id": 1 - }, - "h": 63, - "region_id": 10944, - "roi_type": "person", - "w": 26, - "x": 249, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3578673005104065, - "x_min": 0.11816421151161194, - "y_max": 0.9963030219078064, - "y_min": 0.5943846106529236 - }, - "confidence": 0.9954742789268494, - "label": "vehicle", - "label_id": 2 - }, - "h": 174, - "region_id": 10945, - "roi_type": "vehicle", - "w": 184, - "x": 91, - "y": 257 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36160674691200256, - "x_min": 0.3288991153240204, - "y_max": 0.14174089580774307, - "y_min": 0.0 - }, - "confidence": 0.6194042563438416, - "label": "person", - "label_id": 1 - }, - "h": 61, - "region_id": 10946, - "roi_type": "person", - "w": 25, - "x": 253, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.35685088485479355, - "x_min": 0.11790122836828232, - "y_max": 0.9961073994636536, - "y_min": 0.5718068480491638 - }, - "confidence": 0.9947429895401001, - "label": "vehicle", - "label_id": 2 - }, - "h": 183, - "region_id": 10947, - "roi_type": "vehicle", - "w": 184, - "x": 91, - "y": 247 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36447739601135254, - "x_min": 0.33208173513412476, - "y_max": 0.14312608540058136, - "y_min": 0.0 - }, - "confidence": 0.8804531693458557, - "label": "person", - "label_id": 1 - }, - "h": 62, - "region_id": 10948, - "roi_type": "person", - "w": 25, - "x": 255, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.36100974678993225, - "x_min": 0.10920840501785278, - "y_max": 1.0, - "y_min": 0.5514669418334961 - }, - "confidence": 0.9975082874298096, - "label": "vehicle", - "label_id": 2 - }, - "h": 194, - "region_id": 10949, - "roi_type": "vehicle", - "w": 193, - "x": 84, - "y": 238 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3689320683479309, - "x_min": 0.33504199981689453, - "y_max": 0.1309487745165825, - "y_min": 0.0 - }, - "confidence": 0.5245084166526794, - "label": "person", - "label_id": 1 - }, - "h": 57, - "region_id": 10950, - "roi_type": "person", - "w": 26, - "x": 257, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.36274436861276627, - "x_min": 0.11731896549463272, - "y_max": 1.0, - "y_min": 0.5336947441101074 - }, - "confidence": 0.9914770722389221, - "label": "vehicle", - "label_id": 2 - }, - "h": 201, - "region_id": 10951, - "roi_type": "vehicle", - "w": 188, - "x": 90, - "y": 231 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3659408688545227, - "x_min": 0.11780126392841339, - "y_max": 1.0, - "y_min": 0.518149733543396 - }, - "confidence": 0.9818969964981079, - "label": "vehicle", - "label_id": 2 - }, - "h": 208, - "region_id": 10952, - "roi_type": "vehicle", - "w": 191, - "x": 90, - "y": 224 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3604143261909485, - "x_min": 0.11885426938533783, - "y_max": 1.0, - "y_min": 0.5062888264656067 - }, - "confidence": 0.9770739674568176, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "region_id": 10953, - "roi_type": "vehicle", - "w": 186, - "x": 91, - "y": 219 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35873663425445557, - "x_min": 0.12577953934669495, - "y_max": 1.0, - "y_min": 0.487548291683197 - }, - "confidence": 0.9604198932647705, - "label": "vehicle", - "label_id": 2 - }, - "h": 221, - "region_id": 10954, - "roi_type": "vehicle", - "w": 179, - "x": 97, - "y": 211 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36819857358932495, - "x_min": 0.13242483139038086, - "y_max": 1.0, - "y_min": 0.4729745090007782 - }, - "confidence": 0.9679286479949951, - "label": "vehicle", - "label_id": 2 - }, - "h": 228, - "region_id": 10955, - "roi_type": "vehicle", - "w": 181, - "x": 102, - "y": 204 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37145912647247314, - "x_min": 0.13698597252368927, - "y_max": 0.9822669923305511, - "y_min": 0.45337817072868347 - }, - "confidence": 0.9909036755561829, - "label": "vehicle", - "label_id": 2 - }, - "h": 228, - "region_id": 10956, - "roi_type": "vehicle", - "w": 180, - "x": 105, - "y": 196 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.360751211643219, - "x_min": 0.14602144062519073, - "y_max": 0.9427908360958099, - "y_min": 0.4422529637813568 - }, - "confidence": 0.9961796998977661, - "label": "vehicle", - "label_id": 2 - }, - "h": 216, - "region_id": 10957, - "roi_type": "vehicle", - "w": 165, - "x": 112, - "y": 191 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3665272891521454, - "x_min": 0.15879389643669128, - "y_max": 0.9357600212097168, - "y_min": 0.41560184955596924 - }, - "confidence": 0.9988160133361816, - "label": "vehicle", - "label_id": 2 - }, - "h": 225, - "region_id": 10958, - "roi_type": "vehicle", - "w": 160, - "x": 122, - "y": 180 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36519184708595276, - "x_min": 0.1624055802822113, - "y_max": 0.9030640423297882, - "y_min": 0.3991294205188751 - }, - "confidence": 0.99962317943573, - "label": "vehicle", - "label_id": 2 - }, - "h": 218, - "region_id": 10959, - "roi_type": "vehicle", - "w": 156, - "x": 125, - "y": 172 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36517783999443054, - "x_min": 0.17351636290550232, - "y_max": 0.8792468309402466, - "y_min": 0.3837735652923584 - }, - "confidence": 0.9997884631156921, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "region_id": 10961, - "roi_type": "vehicle", - "w": 147, - "x": 133, - "y": 166 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36106088757514954, - "x_min": 0.1790127456188202, - "y_max": 0.8557636737823486, - "y_min": 0.36366569995880127 - }, - "confidence": 0.9998449087142944, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "region_id": 10960, - "roi_type": "vehicle", - "w": 140, - "x": 137, - "y": 157 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36285877227783203, - "x_min": 0.18275152146816254, - "y_max": 0.8229827284812927, - "y_min": 0.34286290407180786 - }, - "confidence": 0.9999336004257202, - "label": "vehicle", - "label_id": 2 - }, - "h": 207, - "region_id": 10962, - "roi_type": "vehicle", - "w": 138, - "x": 140, - "y": 148 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3602021038532257, - "x_min": 0.18906906247138977, - "y_max": 0.7855886220932007, - "y_min": 0.32251763343811035 - }, - "confidence": 0.9999699592590332, - "label": "vehicle", - "label_id": 2 - }, - "h": 200, - "region_id": 10963, - "roi_type": "vehicle", - "w": 131, - "x": 145, - "y": 139 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3588583469390869, - "x_min": 0.1904894858598709, - "y_max": 0.766708493232727, - "y_min": 0.31205347180366516 - }, - "confidence": 0.9999749660491943, - "label": "vehicle", - "label_id": 2 - }, - "h": 196, - "region_id": 10964, - "roi_type": "vehicle", - "w": 129, - "x": 146, - "y": 135 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.354780912399292, - "x_min": 0.19472239911556244, - "y_max": 0.7405029535293579, - "y_min": 0.29147496819496155 - }, - "confidence": 0.9999440908432007, - "label": "vehicle", - "label_id": 2 - }, - "h": 194, - "region_id": 10965, - "roi_type": "vehicle", - "w": 123, - "x": 150, - "y": 126 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34999334812164307, - "x_min": 0.194540336728096, - "y_max": 0.7187595367431641, - "y_min": 0.2768002152442932 - }, - "confidence": 0.9998922348022461, - "label": "vehicle", - "label_id": 2 - }, - "h": 191, - "region_id": 10966, - "roi_type": "vehicle", - "w": 119, - "x": 149, - "y": 120 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3457085192203522, - "x_min": 0.20007964968681335, - "y_max": 0.6881219744682312, - "y_min": 0.2653038501739502 - }, - "confidence": 0.9998040795326233, - "label": "vehicle", - "label_id": 2 - }, - "h": 183, - "region_id": 10967, - "roi_type": "vehicle", - "w": 112, - "x": 154, - "y": 115 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34467506408691406, - "x_min": 0.19982749223709106, - "y_max": 0.6525393724441528, - "y_min": 0.2548128664493561 - }, - "confidence": 0.9998615980148315, - "label": "vehicle", - "label_id": 2 - }, - "h": 172, - "region_id": 10968, - "roi_type": "vehicle", - "w": 111, - "x": 153, - "y": 110 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34181272983551025, - "x_min": 0.1947338730096817, - "y_max": 0.6376242786645889, - "y_min": 0.23916591703891754 - }, - "confidence": 0.9997871518135071, - "label": "vehicle", - "label_id": 2 - }, - "h": 172, - "region_id": 10969, - "roi_type": "vehicle", - "w": 113, - "x": 150, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3388643264770508, - "x_min": 0.19013750553131104, - "y_max": 0.6308777332305908, - "y_min": 0.2227199673652649 - }, - "confidence": 0.9997004270553589, - "label": "vehicle", - "label_id": 2 - }, - "h": 176, - "region_id": 10970, - "roi_type": "vehicle", - "w": 114, - "x": 146, - "y": 96 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3375055193901062, - "x_min": 0.18740473687648773, - "y_max": 0.5995768308639526, - "y_min": 0.20673570036888123 - }, - "confidence": 0.9998914003372192, - "label": "vehicle", - "label_id": 2 - }, - "h": 170, - "region_id": 10971, - "roi_type": "vehicle", - "w": 115, - "x": 144, - "y": 89 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3318176567554474, - "x_min": 0.17809423804283142, - "y_max": 0.5778812617063522, - "y_min": 0.19000546634197235 - }, - "confidence": 0.9998241066932678, - "label": "vehicle", - "label_id": 2 - }, - "h": 168, - "region_id": 10972, - "roi_type": "vehicle", - "w": 118, - "x": 137, - "y": 82 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3320659399032593, - "x_min": 0.1678294688463211, - "y_max": 0.5662893801927567, - "y_min": 0.17552174627780914 - }, - "confidence": 0.9969955682754517, - "label": "vehicle", - "label_id": 2 - }, - "h": 169, - "region_id": 10973, - "roi_type": "vehicle", - "w": 126, - "x": 129, - "y": 76 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33100444078445435, - "x_min": 0.15877386927604675, - "y_max": 0.5364057421684265, - "y_min": 0.16238099336624146 - }, - "confidence": 0.99989914894104, - "label": "vehicle", - "label_id": 2 - }, - "h": 162, - "region_id": 10974, - "roi_type": "vehicle", - "w": 132, - "x": 122, - "y": 70 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.32596272230148315, - "x_min": 0.1472930908203125, - "y_max": 0.5152767300605774, - "y_min": 0.15732121467590332 - }, - "confidence": 0.9999929666519165, - "label": "vehicle", - "label_id": 2 - }, - "h": 155, - "region_id": 10975, - "roi_type": "vehicle", - "w": 137, - "x": 113, - "y": 68 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3235021233558655, - "x_min": 0.13618597388267517, - "y_max": 0.5010689496994019, - "y_min": 0.15680626034736633 - }, - "confidence": 0.999995231628418, - "label": "vehicle", - "label_id": 2 - }, - "h": 149, - "region_id": 10976, - "roi_type": "vehicle", - "w": 144, - "x": 105, - "y": 68 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31811434030532837, - "x_min": 0.12496490776538849, - "y_max": 0.48322823643684387, - "y_min": 0.1473962366580963 - }, - "confidence": 0.9999911785125732, - "label": "vehicle", - "label_id": 2 - }, - "h": 145, - "region_id": 10977, - "roi_type": "vehicle", - "w": 148, - "x": 96, - "y": 64 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31093723326921463, - "x_min": 0.10377121716737747, - "y_max": 0.46475063264369965, - "y_min": 0.14403758943080902 - }, - "confidence": 0.9999978542327881, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "region_id": 10978, - "roi_type": "vehicle", - "w": 159, - "x": 80, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3060434088110924, - "x_min": 0.08956294506788254, - "y_max": 0.4555552154779434, - "y_min": 0.13558460772037506 - }, - "confidence": 0.9999889135360718, - "label": "vehicle", - "label_id": 2 - }, - "h": 138, - "region_id": 10979, - "roi_type": "vehicle", - "w": 166, - "x": 69, - "y": 59 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.29430411010980606, - "x_min": 0.07462427765130997, - "y_max": 0.4425668269395828, - "y_min": 0.13647617399692535 - }, - "confidence": 0.9999735355377197, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 10980, - "roi_type": "vehicle", - "w": 169, - "x": 57, - "y": 59 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.28833314031362534, - "x_min": 0.06440760940313339, - "y_max": 0.42713563144207, - "y_min": 0.1353260725736618 - }, - "confidence": 0.9999496936798096, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 10981, - "roi_type": "vehicle", - "w": 172, - "x": 49, - "y": 58 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2806038334965706, - "x_min": 0.046518273651599884, - "y_max": 0.4131326228380203, - "y_min": 0.13239772617816925 - }, - "confidence": 0.9999241828918457, - "label": "vehicle", - "label_id": 2 - }, - "h": 121, - "region_id": 10982, - "roi_type": "vehicle", - "w": 180, - "x": 36, - "y": 57 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27025366574525833, - "x_min": 0.031960584223270416, - "y_max": 0.40551871061325073, - "y_min": 0.1313827633857727 - }, - "confidence": 0.9999902248382568, - "label": "vehicle", - "label_id": 2 - }, - "h": 118, - "region_id": 10983, - "roi_type": "vehicle", - "w": 183, - "x": 25, - "y": 57 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2574407830834389, - "x_min": 0.018124915659427643, - "y_max": 0.39813748002052307, - "y_min": 0.12768623232841492 - }, - "confidence": 0.9999737739562988, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 10984, - "roi_type": "vehicle", - "w": 184, - "x": 14, - "y": 55 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24728650599718094, - "x_min": 0.004216648638248444, - "y_max": 0.39358004927635193, - "y_min": 0.12342569231987 - }, - "confidence": 0.9995150566101074, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 10985, - "roi_type": "vehicle", - "w": 187, - "x": 3, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23507950454950333, - "x_min": 0.0055961087346076965, - "y_max": 0.3909708857536316, - "y_min": 0.12340492010116577 - }, - "confidence": 0.9983311295509338, - "label": "vehicle", - "label_id": 2 - }, - "h": 116, - "region_id": 10986, - "roi_type": "vehicle", - "w": 176, - "x": 4, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.22479692846536636, - "x_min": 0.0017654374241828918, - "y_max": 0.3854464143514633, - "y_min": 0.12457780539989471 - }, - "confidence": 0.9997487664222717, - "label": "vehicle", - "label_id": 2 - }, - "h": 113, - "region_id": 10987, - "roi_type": "vehicle", - "w": 171, - "x": 1, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.21433766931295395, - "x_min": 0.0017601177096366882, - "y_max": 0.37883228063583374, - "y_min": 0.1250355839729309 - }, - "confidence": 0.99918133020401, - "label": "vehicle", - "label_id": 2 - }, - "h": 110, - "region_id": 10988, - "roi_type": "vehicle", - "w": 163, - "x": 1, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2030910775065422, - "x_min": 0.0008123144507408142, - "y_max": 0.37199288606643677, - "y_min": 0.12212663888931274 - }, - "confidence": 0.9997194409370422, - "label": "vehicle", - "label_id": 2 - }, - "h": 108, - "region_id": 10989, - "roi_type": "vehicle", - "w": 155, - "x": 1, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.18479623645544052, - "x_min": 0.0, - "y_max": 0.36851049214601517, - "y_min": 0.1222873404622078 - }, - "confidence": 0.9995477795600891, - "label": "vehicle", - "label_id": 2 - }, - "h": 106, - "region_id": 10990, - "roi_type": "vehicle", - "w": 142, - "x": 0, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1737116277217865, - "x_min": 0.0, - "y_max": 0.36372971534729004, - "y_min": 0.11915415525436401 - }, - "confidence": 0.9950657486915588, - "label": "vehicle", - "label_id": 2 - }, - "h": 106, - "region_id": 10991, - "roi_type": "vehicle", - "w": 133, - "x": 0, - "y": 51 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.16038884222507477, - "x_min": 0.0, - "y_max": 0.3588944375514984, - "y_min": 0.1205725371837616 - }, - "confidence": 0.9822043776512146, - "label": "vehicle", - "label_id": 2 - }, - "h": 103, - "region_id": 10992, - "roi_type": "vehicle", - "w": 123, - "x": 0, - "y": 52 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.14810673147439957, - "x_min": 0.0, - "y_max": 0.35652363300323486, - "y_min": 0.12085320055484772 - }, - "confidence": 0.9530179500579834, - "label": "vehicle", - "label_id": 2 - }, - "h": 102, - "region_id": 10994, - "roi_type": "vehicle", - "w": 114, - "x": 0, - "y": 52 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.13574014604091644, - "x_min": 0.0, - "y_max": 0.3567160964012146, - "y_min": 0.12330564856529236 - }, - "confidence": 0.7856730818748474, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "region_id": 10993, - "roi_type": "vehicle", - "w": 104, - "x": 0, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11242122203111649, - "x_min": 0.0019209012389183044, - "y_max": 0.35550349950790405, - "y_min": 0.1260470598936081 - }, - "confidence": 0.6798886060714722, - "label": "vehicle", - "label_id": 2 - }, - "h": 99, - "region_id": 10995, - "roi_type": "vehicle", - "w": 85, - "x": 1, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.09885160624980927, - "x_min": 0.003643341362476349, - "y_max": 0.358278751373291, - "y_min": 0.1264287382364273 - }, - "confidence": 0.7773323655128479, - "label": "vehicle", - "label_id": 2 - }, - "h": 100, - "region_id": 10996, - "roi_type": "vehicle", - "w": 73, - "x": 3, - "y": 55 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.0878419578075409, - "x_min": 0.0017804354429244995, - "y_max": 0.3632156252861023, - "y_min": 0.12948653101921082 - }, - "confidence": 0.6258467435836792, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "region_id": 10997, - "roi_type": "vehicle", - "w": 66, - "x": 1, - "y": 56 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07318701222538948, - "x_min": 0.004130352288484573, - "y_max": 0.3511764109134674, - "y_min": 0.14347276091575623 - }, - "confidence": 0.6314224004745483, - "label": "vehicle", - "label_id": 2 - }, - "h": 90, - "region_id": 10998, - "roi_type": "vehicle", - "w": 53, - "x": 3, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06266952119767666, - "x_min": 0.0, - "y_max": 0.34957605600357056, - "y_min": 0.14383465051651 - }, - "confidence": 0.6896519064903259, - "label": "vehicle", - "label_id": 2 - }, - "h": 89, - "region_id": 10999, - "roi_type": "vehicle", - "w": 48, - "x": 0, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.04970441199839115, - "x_min": 0.0, - "y_max": 0.34233343601226807, - "y_min": 0.14351695775985718 - }, - "confidence": 0.6430801749229431, - "label": "vehicle", - "label_id": 2 - }, - "h": 86, - "region_id": 11000, - "roi_type": "vehicle", - "w": 38, - "x": 0, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49250000000 - } - ] -} \ No newline at end of file diff --git a/tests/test_cases/pipeline_execution/cpu/object_detection_ffmpeg.desc b/tests/test_cases/pipeline_execution/cpu/object_detection_ffmpeg.desc deleted file mode 100644 index a895832..0000000 --- a/tests/test_cases/pipeline_execution/cpu/object_detection_ffmpeg.desc +++ /dev/null @@ -1,46 +0,0 @@ -{ - "type": "FFmpeg", - "template":["-i \"{source[uri]}\" -y ", - "-c copy -f segment -segment_time {parameters[segment_length]} {parameters[recording_prefix]} -an ", - "-vf \"detect=model=\"{models[object_detection][1][network]}\"", - ":model_proc=\"{models[object_detection][1][proc]}\"", - ":interval={parameters[inference-interval]}:device=\"{parameters[detect-device]}\"", - ":nireq=\"{parameters[nireq]}\",", - "metaconvert=converter=json\"", - " -y -f metapublish" - ], - "description": "Object Detection", - "parameters": { - "type" : "object", - "properties" : { - "inference-interval": { - "element":"detection", - "type": "integer", - "minimum": 0, - "maximum": 4294967295, - "default": 1 - }, - "nireq": { - "element":"detection", - "type": "integer", - "minimum": 1, - "maximum": 128, - "default": 1 - }, - "detect-device": { - "type":"string", - "default": "CPU" - }, - "segment_length": { - "type":"number", - "minimum":10, - "maximum":300, - "default":60.5 - }, - "recording_prefix":{ - "type":"string", - "default":"recording" - } - } - } -} diff --git a/tests/test_cases/pipeline_execution/cpu/object_detection_ffmpeg.json b/tests/test_cases/pipeline_execution/cpu/object_detection_ffmpeg.json deleted file mode 100644 index 2f638e6..0000000 --- a/tests/test_cases/pipeline_execution/cpu/object_detection_ffmpeg.json +++ /dev/null @@ -1,9057 +0,0 @@ -{ - "options": {}, - "pipeline": { - "name": "object_detection", - "version": 1 - }, - "request": { - "source": { - "type": "uri", - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4" - }, - "destination": { - "type": "file", - "path": "/tmp/object_detection_results.json", - "format": "json" - } - }, - "numerical_tolerance": 0.3, - "result": [ - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1499976000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6734127998352051, - "y_min": 0.8779282569885254, - "x_max": 0.7446080446243286, - "y_max": 0.999404788017273 - }, - "confidence": 0.5588181018829346, - "label_id": 1 - }, - "h": 53, - "w": 55, - "x": 517, - "y": 379 - } - ], - "tensors": [ - { - "confidence": 0.5588181018829346, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1666640000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6762180924415588, - "y_min": 0.8294872045516968, - "x_max": 0.7442803978919983, - "y_max": 1.00227689743042 - }, - "confidence": 0.5395121574401855, - "label_id": 1 - }, - "h": 74, - "w": 53, - "x": 519, - "y": 358 - } - ], - "tensors": [ - { - "confidence": 0.5395121574401855, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1749972000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6827850937843323, - "y_min": 0.8284579515457153, - "x_max": 0.7486807703971863, - "y_max": 0.9993635416030884 - }, - "confidence": 0.6294834017753601, - "label_id": 1 - }, - "h": 74, - "w": 51, - "x": 524, - "y": 358 - } - ], - "tensors": [ - { - "confidence": 0.6294834017753601, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1833304000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.683455228805542, - "y_min": 0.787131667137146, - "x_max": 0.7478116750717163, - "y_max": 0.9984563589096069 - }, - "confidence": 0.8601303100585938, - "label_id": 1 - }, - "h": 91, - "w": 49, - "x": 525, - "y": 340 - } - ], - "tensors": [ - { - "confidence": 0.8601303100585938, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1916636000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.683600902557373, - "y_min": 0.7701365947723389, - "x_max": 0.750867486000061, - "y_max": 0.9979418516159058 - }, - "confidence": 0.9280875325202942, - "label_id": 1 - }, - "h": 98, - "w": 52, - "x": 525, - "y": 333 - } - ], - "tensors": [ - { - "confidence": 0.9280875325202942, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1999968000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6832555532455444, - "y_min": 0.7529524564743042, - "x_max": 0.7522001266479492, - "y_max": 0.9987977743148804 - }, - "confidence": 0.927311897277832, - "label_id": 1 - }, - "h": 106, - "w": 53, - "x": 525, - "y": 325 - } - ], - "tensors": [ - { - "confidence": 0.927311897277832, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2083300000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6832446455955505, - "y_min": 0.7441677451133728, - "x_max": 0.7576422095298767, - "y_max": 0.9894292950630188 - }, - "confidence": 0.951309084892273, - "label_id": 1 - }, - "h": 106, - "w": 57, - "x": 525, - "y": 321 - } - ], - "tensors": [ - { - "confidence": 0.951309084892273, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2166632000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.68604975938797, - "y_min": 0.7247669100761414, - "x_max": 0.757122814655304, - "y_max": 0.9735121130943298 - }, - "confidence": 0.9686020612716675, - "label_id": 1 - }, - "h": 108, - "w": 54, - "x": 527, - "y": 313 - } - ], - "tensors": [ - { - "confidence": 0.9686020612716675, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2249964000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6904279589653015, - "y_min": 0.7114542126655579, - "x_max": 0.7573937773704529, - "y_max": 0.9489458203315735 - }, - "confidence": 0.9016656875610352, - "label_id": 1 - }, - "h": 103, - "w": 52, - "x": 530, - "y": 307 - } - ], - "tensors": [ - { - "confidence": 0.9016656875610352, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2333296000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6942427754402161, - "y_min": 0.7033036351203918, - "x_max": 0.7553828358650208, - "y_max": 0.8973957896232605 - }, - "confidence": 0.8900401592254639, - "label_id": 1 - }, - "h": 84, - "w": 47, - "x": 533, - "y": 304 - } - ], - "tensors": [ - { - "confidence": 0.8900401592254639, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2416628000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6978124380111694, - "y_min": 0.6883007287979126, - "x_max": 0.7573485374450684, - "y_max": 0.875929594039917 - }, - "confidence": 0.8667184710502625, - "label_id": 1 - }, - "h": 81, - "w": 46, - "x": 536, - "y": 297 - } - ], - "tensors": [ - { - "confidence": 0.8667184710502625, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2499960000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6973814964294434, - "y_min": 0.6681960225105286, - "x_max": 0.7628993988037109, - "y_max": 0.9051385521888733 - }, - "confidence": 0.6548436880111694, - "label_id": 1 - }, - "h": 102, - "w": 50, - "x": 536, - "y": 289 - } - ], - "tensors": [ - { - "confidence": 0.6548436880111694, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2583292000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6956170201301575, - "y_min": 0.6510389447212219, - "x_max": 0.7642548680305481, - "y_max": 0.8986994624137878 - }, - "confidence": 0.6839810609817505, - "label_id": 1 - }, - "h": 107, - "w": 53, - "x": 534, - "y": 281 - } - ], - "tensors": [ - { - "confidence": 0.6839810609817505, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2666624000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7024138569831848, - "y_min": 0.6492985486984253, - "x_max": 0.7640038132667542, - "y_max": 0.8508652448654175 - }, - "confidence": 0.6671476364135742, - "label_id": 1 - }, - "h": 88, - "w": 48, - "x": 539, - "y": 280 - } - ], - "tensors": [ - { - "confidence": 0.6671476364135742, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2749956000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7056794166564941, - "y_min": 0.6312656402587891, - "x_max": 0.7669720649719238, - "y_max": 0.8299833536148071 - }, - "confidence": 0.9200981259346008, - "label_id": 1 - }, - "h": 86, - "w": 47, - "x": 542, - "y": 273 - } - ], - "tensors": [ - { - "confidence": 0.9200981259346008, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2833288000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7094249725341797, - "y_min": 0.6171458959579468, - "x_max": 0.7727304697036743, - "y_max": 0.8253974914550781 - }, - "confidence": 0.634685754776001, - "label_id": 1 - }, - "h": 90, - "w": 48, - "x": 545, - "y": 267 - } - ], - "tensors": [ - { - "confidence": 0.634685754776001, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2916620000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7092350721359253, - "y_min": 0.6104710102081299, - "x_max": 0.7733482122421265, - "y_max": 0.8216234445571899 - }, - "confidence": 0.7693196535110474, - "label_id": 1 - }, - "h": 91, - "w": 49, - "x": 545, - "y": 264 - } - ], - "tensors": [ - { - "confidence": 0.7693196535110474, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2999952000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7098239064216614, - "y_min": 0.6015931367874146, - "x_max": 0.7740373015403748, - "y_max": 0.8192803859710693 - }, - "confidence": 0.58549565076828, - "label_id": 1 - }, - "h": 94, - "w": 49, - "x": 545, - "y": 260 - } - ], - "tensors": [ - { - "confidence": 0.58549565076828, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3166616000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7187693119049072, - "y_min": 0.5737252235412598, - "x_max": 0.7778397798538208, - "y_max": 0.7852489948272705 - }, - "confidence": 0.5143183469772339, - "label_id": 1 - }, - "h": 91, - "w": 45, - "x": 552, - "y": 248 - } - ], - "tensors": [ - { - "confidence": 0.5143183469772339, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3249948000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7253412008285522, - "y_min": 0.5522810220718384, - "x_max": 0.783305287361145, - "y_max": 0.7603617906570435 - }, - "confidence": 0.7224569320678711, - "label_id": 1 - }, - "h": 89, - "w": 45, - "x": 557, - "y": 239 - } - ], - "tensors": [ - { - "confidence": 0.7224569320678711, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3333280000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7317022085189819, - "y_min": 0.5484567880630493, - "x_max": 0.7883855104446411, - "y_max": 0.7271184921264648 - }, - "confidence": 0.9818903207778931, - "label_id": 1 - }, - "h": 77, - "w": 43, - "x": 562, - "y": 237 - } - ], - "tensors": [ - { - "confidence": 0.9818903207778931, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3416612000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7372883558273315, - "y_min": 0.5409470796585083, - "x_max": 0.7887823581695557, - "y_max": 0.7027069330215454 - }, - "confidence": 0.8577883839607239, - "label_id": 1 - }, - "h": 70, - "w": 40, - "x": 566, - "y": 234 - } - ], - "tensors": [ - { - "confidence": 0.8577883839607239, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3499944000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7410135865211487, - "y_min": 0.5215580463409424, - "x_max": 0.7954019904136658, - "y_max": 0.691115140914917 - }, - "confidence": 0.8129976987838745, - "label_id": 1 - }, - "h": 74, - "w": 42, - "x": 569, - "y": 225 - } - ], - "tensors": [ - { - "confidence": 0.8129976987838745, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3583276000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.746177077293396, - "y_min": 0.5225647687911987, - "x_max": 0.7999571561813354, - "y_max": 0.6882461309432983 - }, - "confidence": 0.8982786536216736, - "label_id": 1 - }, - "h": 71, - "w": 41, - "x": 573, - "y": 226 - } - ], - "tensors": [ - { - "confidence": 0.8982786536216736, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3666608000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7465308904647827, - "y_min": 0.5088982582092285, - "x_max": 0.8079860210418701, - "y_max": 0.6892118453979492 - }, - "confidence": 0.9006739854812622, - "label_id": 1 - }, - "h": 78, - "w": 48, - "x": 573, - "y": 220 - } - ], - "tensors": [ - { - "confidence": 0.9006739854812622, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3749940000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7560437917709351, - "y_min": 0.4955936074256897, - "x_max": 0.8128681182861328, - "y_max": 0.6849269270896912 - }, - "confidence": 0.8902298212051392, - "label_id": 1 - }, - "h": 82, - "w": 43, - "x": 581, - "y": 214 - } - ], - "tensors": [ - { - "confidence": 0.8902298212051392, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3833272000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7638221383094788, - "y_min": 0.4877367913722992, - "x_max": 0.8224636912345886, - "y_max": 0.6864262223243713 - }, - "confidence": 0.8473277688026428, - "label_id": 1 - }, - "h": 86, - "w": 45, - "x": 587, - "y": 211 - } - ], - "tensors": [ - { - "confidence": 0.8473277688026428, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3916604000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7612079977989197, - "y_min": 0.4765152931213379, - "x_max": 0.8228948712348938, - "y_max": 0.6930429935455322 - }, - "confidence": 0.6922434568405151, - "label_id": 1 - }, - "h": 93, - "w": 47, - "x": 585, - "y": 206 - } - ], - "tensors": [ - { - "confidence": 0.6922434568405151, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3999936000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7600260376930237, - "y_min": 0.4642871618270874, - "x_max": 0.8323193192481995, - "y_max": 0.6960529088973999 - }, - "confidence": 0.6348036527633667, - "label_id": 1 - }, - "h": 100, - "w": 55, - "x": 584, - "y": 201 - } - ], - "tensors": [ - { - "confidence": 0.6348036527633667, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4249932000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.793422281742096, - "y_min": 0.4378095269203186, - "x_max": 0.8423773646354675, - "y_max": 0.6405870318412781 - }, - "confidence": 0.9644074440002441, - "label_id": 1 - }, - "h": 88, - "w": 38, - "x": 609, - "y": 189 - } - ], - "tensors": [ - { - "confidence": 0.9644074440002441, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4333264000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7964030504226685, - "y_min": 0.44299182295799255, - "x_max": 0.848788857460022, - "y_max": 0.6162917613983154 - }, - "confidence": 0.9073424935340881, - "label_id": 1 - }, - "h": 75, - "w": 40, - "x": 612, - "y": 191 - } - ], - "tensors": [ - { - "confidence": 0.9073424935340881, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4416596000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7999505996704102, - "y_min": 0.4296761751174927, - "x_max": 0.8537043333053589, - "y_max": 0.6069327592849731 - }, - "confidence": 0.9073823690414429, - "label_id": 1 - }, - "h": 76, - "w": 42, - "x": 614, - "y": 186 - } - ], - "tensors": [ - { - "confidence": 0.9073823690414429, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4499928000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.8048784136772156, - "y_min": 0.4277309477329254, - "x_max": 0.8599335551261902, - "y_max": 0.5919975638389587 - }, - "confidence": 0.7847642302513123, - "label_id": 1 - }, - "h": 71, - "w": 42, - "x": 618, - "y": 185 - } - ], - "tensors": [ - { - "confidence": 0.7847642302513123, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4583260000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.8112742900848389, - "y_min": 0.42043614387512207, - "x_max": 0.8658212423324585, - "y_max": 0.5937005281448364 - }, - "confidence": 0.8251606225967407, - "label_id": 1 - }, - "h": 74, - "w": 42, - "x": 623, - "y": 182 - } - ], - "tensors": [ - { - "confidence": 0.8251606225967407, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4666592000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.8178002238273621, - "y_min": 0.41338473558425903, - "x_max": 0.8735348582267761, - "y_max": 0.5900363326072693 - }, - "confidence": 0.9657706022262573, - "label_id": 1 - }, - "h": 76, - "w": 43, - "x": 628, - "y": 179 - } - ], - "tensors": [ - { - "confidence": 0.9657706022262573, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4749924000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.8261576294898987, - "y_min": 0.40377795696258545, - "x_max": 0.8855487704277039, - "y_max": 0.5847491025924683 - }, - "confidence": 0.8051931262016296, - "label_id": 1 - }, - "h": 79, - "w": 46, - "x": 634, - "y": 174 - } - ], - "tensors": [ - { - "confidence": 0.8051931262016296, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4833256000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.8350329399108887, - "y_min": 0.3869829475879669, - "x_max": 0.8909602165222168, - "y_max": 0.5895990133285522 - }, - "confidence": 0.8279067277908325, - "label_id": 1 - }, - "h": 88, - "w": 43, - "x": 641, - "y": 167 - } - ], - "tensors": [ - { - "confidence": 0.8279067277908325, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4916588000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.8355488777160645, - "y_min": 0.3944133520126343, - "x_max": 0.9007455110549927, - "y_max": 0.5855798125267029 - }, - "confidence": 0.6674150824546814, - "label_id": 1 - }, - "h": 83, - "w": 50, - "x": 642, - "y": 170 - } - ], - "tensors": [ - { - "confidence": 0.6674150824546814, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5166584000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.8540040850639343, - "y_min": 0.37564727663993835, - "x_max": 0.910390317440033, - "y_max": 0.5681222081184387 - }, - "confidence": 0.6667394042015076, - "label_id": 1 - }, - "h": 83, - "w": 43, - "x": 656, - "y": 162 - } - ], - "tensors": [ - { - "confidence": 0.6667394042015076, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5249916000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.8664734363555908, - "y_min": 0.36737266182899475, - "x_max": 0.9125837087631226, - "y_max": 0.5437213182449341 - }, - "confidence": 0.8699319362640381, - "label_id": 1 - }, - "h": 76, - "w": 36, - "x": 665, - "y": 159 - } - ], - "tensors": [ - { - "confidence": 0.8699319362640381, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5333248000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.8701801896095276, - "y_min": 0.3528415262699127, - "x_max": 0.9201374650001526, - "y_max": 0.5304938554763794 - }, - "confidence": 0.9759781360626221, - "label_id": 1 - }, - "h": 77, - "w": 39, - "x": 668, - "y": 152 - } - ], - "tensors": [ - { - "confidence": 0.9759781360626221, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5416580000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.8758715987205505, - "y_min": 0.3517833948135376, - "x_max": 0.9223876595497131, - "y_max": 0.5213840007781982 - }, - "confidence": 0.928128719329834, - "label_id": 1 - }, - "h": 73, - "w": 35, - "x": 673, - "y": 152 - } - ], - "tensors": [ - { - "confidence": 0.928128719329834, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5499912000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.8702958822250366, - "y_min": 0.34546732902526855, - "x_max": 0.9282131195068359, - "y_max": 0.52052903175354 - }, - "confidence": 0.7125293612480164, - "label_id": 1 - }, - "h": 76, - "w": 45, - "x": 668, - "y": 149 - } - ], - "tensors": [ - { - "confidence": 0.7125293612480164, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5583244000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.8830148577690125, - "y_min": 0.342130184173584, - "x_max": 0.9376000761985779, - "y_max": 0.5108840465545654 - }, - "confidence": 0.9326930046081543, - "label_id": 1 - }, - "h": 73, - "w": 42, - "x": 678, - "y": 148 - } - ], - "tensors": [ - { - "confidence": 0.9326930046081543, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5666576000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.8888958096504211, - "y_min": 0.3362312614917755, - "x_max": 0.9449993968009949, - "y_max": 0.5033485889434814 - }, - "confidence": 0.9043325781822205, - "label_id": 1 - }, - "h": 72, - "w": 43, - "x": 683, - "y": 145 - } - ], - "tensors": [ - { - "confidence": 0.9043325781822205, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5749908000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.8988162279129028, - "y_min": 0.3228757381439209, - "x_max": 0.9546077251434326, - "y_max": 0.5100194811820984 - }, - "confidence": 0.7630113363265991, - "label_id": 1 - }, - "h": 81, - "w": 43, - "x": 690, - "y": 139 - } - ], - "tensors": [ - { - "confidence": 0.7630113363265991, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5833240000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.9052613973617554, - "y_min": 0.3268545866012573, - "x_max": 0.9607596397399902, - "y_max": 0.5165212154388428 - }, - "confidence": 0.8265350461006165, - "label_id": 1 - }, - "h": 82, - "w": 43, - "x": 695, - "y": 141 - } - ], - "tensors": [ - { - "confidence": 0.8265350461006165, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6083236000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.9133073091506958, - "y_min": 0.3186033368110657, - "x_max": 0.9737205505371094, - "y_max": 0.4934609532356262 - }, - "confidence": 0.7388848066329956, - "label_id": 1 - }, - "h": 75, - "w": 47, - "x": 701, - "y": 138 - } - ], - "tensors": [ - { - "confidence": 0.7388848066329956, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6166568000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.9246581196784973, - "y_min": 0.3043941855430603, - "x_max": 0.9762004017829895, - "y_max": 0.4826813340187073 - }, - "confidence": 0.7867417931556702, - "label_id": 1 - }, - "h": 78, - "w": 40, - "x": 710, - "y": 131 - } - ], - "tensors": [ - { - "confidence": 0.7867417931556702, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6249900000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.9278860688209534, - "y_min": 0.29626408219337463, - "x_max": 0.9816299080848694, - "y_max": 0.4776894152164459 - }, - "confidence": 0.7828896641731262, - "label_id": 1 - }, - "h": 78, - "w": 41, - "x": 713, - "y": 128 - } - ], - "tensors": [ - { - "confidence": 0.7828896641731262, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6333232000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.9321361780166626, - "y_min": 0.29067856073379517, - "x_max": 0.982731819152832, - "y_max": 0.4621286392211914 - }, - "confidence": 0.9645175933837891, - "label_id": 1 - }, - "h": 74, - "w": 39, - "x": 716, - "y": 126 - } - ], - "tensors": [ - { - "confidence": 0.9645175933837891, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6416564000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.9319441318511963, - "y_min": 0.28902244567871094, - "x_max": 0.9850153923034668, - "y_max": 0.4589899182319641 - }, - "confidence": 0.7262570261955261, - "label_id": 1 - }, - "h": 73, - "w": 40, - "x": 716, - "y": 125 - } - ], - "tensors": [ - { - "confidence": 0.7262570261955261, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6499896000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.9300705194473267, - "y_min": 0.261774480342865, - "x_max": 0.9973998069763184, - "y_max": 0.46789276599884033 - }, - "confidence": 0.5797560214996338, - "label_id": 1 - }, - "h": 89, - "w": 52, - "x": 714, - "y": 113 - } - ], - "tensors": [ - { - "confidence": 0.5797560214996338, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6583228000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.9475647211074829, - "y_min": 0.26791656017303467, - "x_max": 0.9966084957122803, - "y_max": 0.44728755950927734 - }, - "confidence": 0.5424327254295349, - "label_id": 1 - }, - "h": 77, - "w": 37, - "x": 728, - "y": 116 - } - ], - "tensors": [ - { - "confidence": 0.5424327254295349, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 13916444000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.11596640944480896, - "y_min": 0.019203782081604004, - "x_max": 1.00587797164917, - "y_max": 0.9972268342971802 - }, - "confidence": 0.5399076342582703, - "label_id": 2 - }, - "h": 423, - "w": 679, - "x": 89, - "y": 8 - } - ], - "tensors": [ - { - "confidence": 0.5399076342582703, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14333104000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.12354929745197296, - "y_min": 0.8424254655838013, - "x_max": 0.34599506855010986, - "y_max": 1.0025250911712646 - }, - "confidence": 0.6707731485366821, - "label_id": 2 - }, - "h": 68, - "w": 171, - "x": 95, - "y": 364 - } - ], - "tensors": [ - { - "confidence": 0.6707731485366821, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14416436000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1249007135629654, - "y_min": 0.814952552318573, - "x_max": 0.35160624980926514, - "y_max": 1.0036942958831787 - }, - "confidence": 0.7518407106399536, - "label_id": 2 - }, - "h": 80, - "w": 174, - "x": 96, - "y": 352 - } - ], - "tensors": [ - { - "confidence": 0.7518407106399536, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14499768000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.12201898545026779, - "y_min": 0.784342348575592, - "x_max": 0.3558673560619354, - "y_max": 0.9973203539848328 - }, - "confidence": 0.8715056777000427, - "label_id": 2 - }, - "h": 92, - "w": 179, - "x": 94, - "y": 339 - } - ], - "tensors": [ - { - "confidence": 0.8715056777000427, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14583100000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.11370580643415451, - "y_min": 0.7612596750259399, - "x_max": 0.3590538799762726, - "y_max": 0.9961638450622559 - }, - "confidence": 0.8592389822006226, - "label_id": 2 - }, - "h": 101, - "w": 189, - "x": 87, - "y": 329 - } - ], - "tensors": [ - { - "confidence": 0.8592389822006226, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14666432000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.11230173707008362, - "y_min": 0.7259582877159119, - "x_max": 0.3670547902584076, - "y_max": 1.0007786750793457 - }, - "confidence": 0.6108102202415466, - "label_id": 2 - }, - "h": 118, - "w": 196, - "x": 86, - "y": 314 - } - ], - "tensors": [ - { - "confidence": 0.6108102202415466, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14749764000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.10201224684715271, - "y_min": 0.7005279064178467, - "x_max": 0.3687931001186371, - "y_max": 0.9958691596984863 - }, - "confidence": 0.8610527515411377, - "label_id": 2 - }, - "h": 127, - "w": 205, - "x": 78, - "y": 303 - } - ], - "tensors": [ - { - "confidence": 0.8610527515411377, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14833096000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.10744209587574005, - "y_min": 0.6789625287055969, - "x_max": 0.3779268264770508, - "y_max": 1.0000035762786865 - }, - "confidence": 0.9127089381217957, - "label_id": 2 - }, - "h": 139, - "w": 207, - "x": 83, - "y": 293 - } - ], - "tensors": [ - { - "confidence": 0.9127089381217957, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14916428000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.10694557428359985, - "y_min": 0.648249089717865, - "x_max": 0.3799184560775757, - "y_max": 1.0021778345108032 - }, - "confidence": 0.9617993235588074, - "label_id": 2 - }, - "h": 152, - "w": 210, - "x": 82, - "y": 280 - } - ], - "tensors": [ - { - "confidence": 0.9617993235588074, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14999760000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.11665080487728119, - "y_min": 0.6377010345458984, - "x_max": 0.3768237829208374, - "y_max": 1.000298023223877 - }, - "confidence": 0.9927833080291748, - "label_id": 2 - }, - "h": 157, - "w": 199, - "x": 90, - "y": 275 - } - ], - "tensors": [ - { - "confidence": 0.9927833080291748, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15083092000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.11942803859710693, - "y_min": 0.6142627596855164, - "x_max": 0.37959182262420654, - "y_max": 1.0005748271942139 - }, - "confidence": 0.9954034090042114, - "label_id": 2 - }, - "h": 167, - "w": 200, - "x": 92, - "y": 265 - } - ], - "tensors": [ - { - "confidence": 0.9954034090042114, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15166424000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.11778374016284943, - "y_min": 0.5890892148017883, - "x_max": 0.37694019079208374, - "y_max": 0.9978364109992981 - }, - "confidence": 0.9948791265487671, - "label_id": 2 - }, - "h": 177, - "w": 199, - "x": 90, - "y": 254 - } - ], - "tensors": [ - { - "confidence": 0.9948791265487671, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15249756000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.11633364856243134, - "y_min": 0.5611193180084229, - "x_max": 0.37818074226379395, - "y_max": 0.9985551834106445 - }, - "confidence": 0.9884049892425537, - "label_id": 2 - }, - "h": 189, - "w": 201, - "x": 89, - "y": 242 - } - ], - "tensors": [ - { - "confidence": 0.9884049892425537, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15333088000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.11545005440711975, - "y_min": 0.5469850301742554, - "x_max": 0.37325653433799744, - "y_max": 1.0026047229766846 - }, - "confidence": 0.9741663932800293, - "label_id": 2 - }, - "h": 196, - "w": 198, - "x": 89, - "y": 236 - } - ], - "tensors": [ - { - "confidence": 0.9741663932800293, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15416420000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1327839493751526, - "y_min": 0.5260467529296875, - "x_max": 0.3650442361831665, - "y_max": 1.0008655786514282 - }, - "confidence": 0.9840590953826904, - "label_id": 2 - }, - "h": 205, - "w": 178, - "x": 102, - "y": 227 - } - ], - "tensors": [ - { - "confidence": 0.9840590953826904, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15499752000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1357005536556244, - "y_min": 0.5031139850616455, - "x_max": 0.3617941737174988, - "y_max": 0.9994630813598633 - }, - "confidence": 0.9928669929504395, - "label_id": 2 - }, - "h": 215, - "w": 174, - "x": 104, - "y": 217 - } - ], - "tensors": [ - { - "confidence": 0.9928669929504395, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15583084000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.14232614636421204, - "y_min": 0.4963996410369873, - "x_max": 0.3560277223587036, - "y_max": 0.9926905632019043 - }, - "confidence": 0.996005117893219, - "label_id": 2 - }, - "h": 215, - "w": 164, - "x": 109, - "y": 214 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.36816641688346863, - "y_min": 0.053846269845962524, - "x_max": 0.9435077905654907, - "y_max": 0.7589074373245239 - }, - "confidence": 0.7171570062637329, - "label_id": 2 - }, - "h": 305, - "w": 442, - "x": 283, - "y": 23 - } - ], - "tensors": [ - { - "confidence": 0.996005117893219, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.7171570062637329, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15666416000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.14830967783927917, - "y_min": 0.4742969870567322, - "x_max": 0.3563614785671234, - "y_max": 0.9999963641166687 - }, - "confidence": 0.9980700612068176, - "label_id": 2 - }, - "h": 227, - "w": 160, - "x": 114, - "y": 205 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.37656158208847046, - "y_min": 0.03842857480049133, - "x_max": 0.9512718319892883, - "y_max": 0.886086106300354 - }, - "confidence": 0.6958434581756592, - "label_id": 2 - }, - "h": 366, - "w": 442, - "x": 289, - "y": 17 - } - ], - "tensors": [ - { - "confidence": 0.9980700612068176, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.6958434581756592, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15749748000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.15359345078468323, - "y_min": 0.454115092754364, - "x_max": 0.35834595561027527, - "y_max": 0.9817675948143005 - }, - "confidence": 0.9975983500480652, - "label_id": 2 - }, - "h": 228, - "w": 157, - "x": 118, - "y": 196 - } - ], - "tensors": [ - { - "confidence": 0.9975983500480652, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15833080000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.15890049934387207, - "y_min": 0.43430987000465393, - "x_max": 0.3497201204299927, - "y_max": 0.9478054046630859 - }, - "confidence": 0.9978967905044556, - "label_id": 2 - }, - "h": 221, - "w": 147, - "x": 122, - "y": 188 - } - ], - "tensors": [ - { - "confidence": 0.9978967905044556, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15916412000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.16112689673900604, - "y_min": 0.423270583152771, - "x_max": 0.3455852270126343, - "y_max": 0.9355126619338989 - }, - "confidence": 0.9974404573440552, - "label_id": 2 - }, - "h": 221, - "w": 141, - "x": 124, - "y": 183 - } - ], - "tensors": [ - { - "confidence": 0.9974404573440552, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15999744000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.16597715020179749, - "y_min": 0.40152478218078613, - "x_max": 0.3381536304950714, - "y_max": 0.907120943069458 - }, - "confidence": 0.9992467164993286, - "label_id": 2 - }, - "h": 219, - "w": 133, - "x": 127, - "y": 173 - } - ], - "tensors": [ - { - "confidence": 0.9992467164993286, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16083076000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.16594967246055603, - "y_min": 0.3892979621887207, - "x_max": 0.335437148809433, - "y_max": 0.8842259645462036 - }, - "confidence": 0.9986107349395752, - "label_id": 2 - }, - "h": 214, - "w": 131, - "x": 127, - "y": 168 - } - ], - "tensors": [ - { - "confidence": 0.9986107349395752, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16166408000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1622767448425293, - "y_min": 0.37051695585250854, - "x_max": 0.3325601816177368, - "y_max": 0.863061249256134 - }, - "confidence": 0.9981282353401184, - "label_id": 2 - }, - "h": 213, - "w": 130, - "x": 125, - "y": 160 - } - ], - "tensors": [ - { - "confidence": 0.9981282353401184, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16249740000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1600649058818817, - "y_min": 0.3571774363517761, - "x_max": 0.3303433060646057, - "y_max": 0.8324565291404724 - }, - "confidence": 0.9998267292976379, - "label_id": 2 - }, - "h": 206, - "w": 131, - "x": 123, - "y": 154 - } - ], - "tensors": [ - { - "confidence": 0.9998267292976379, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16333072000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.15725673735141754, - "y_min": 0.3468477725982666, - "x_max": 0.3290403485298157, - "y_max": 0.8079231977462769 - }, - "confidence": 0.9999066591262817, - "label_id": 2 - }, - "h": 199, - "w": 132, - "x": 121, - "y": 150 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.2916393578052521, - "y_min": 0.07992970943450928, - "x_max": 0.9590095281600952, - "y_max": 0.836105465888977 - }, - "confidence": 0.6244098544120789, - "label_id": 2 - }, - "h": 326, - "w": 513, - "x": 224, - "y": 35 - } - ], - "tensors": [ - { - "confidence": 0.9999066591262817, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.6244098544120789, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16416404000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.15063917636871338, - "y_min": 0.3292410373687744, - "x_max": 0.32763391733169556, - "y_max": 0.7840467691421509 - }, - "confidence": 0.999896764755249, - "label_id": 2 - }, - "h": 197, - "w": 136, - "x": 116, - "y": 142 - } - ], - "tensors": [ - { - "confidence": 0.999896764755249, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16499736000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1435127705335617, - "y_min": 0.3213016986846924, - "x_max": 0.32459068298339844, - "y_max": 0.7735633850097656 - }, - "confidence": 0.9999921321868896, - "label_id": 2 - }, - "h": 195, - "w": 139, - "x": 110, - "y": 139 - } - ], - "tensors": [ - { - "confidence": 0.9999921321868896, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16583068000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.13695907592773438, - "y_min": 0.3108031153678894, - "x_max": 0.32061851024627686, - "y_max": 0.7566444277763367 - }, - "confidence": 0.9999939203262329, - "label_id": 2 - }, - "h": 193, - "w": 141, - "x": 105, - "y": 134 - } - ], - "tensors": [ - { - "confidence": 0.9999939203262329, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16666400000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.12993483245372772, - "y_min": 0.30137327313423157, - "x_max": 0.31766730546951294, - "y_max": 0.737349271774292 - }, - "confidence": 0.9999949932098389, - "label_id": 2 - }, - "h": 189, - "w": 144, - "x": 100, - "y": 130 - } - ], - "tensors": [ - { - "confidence": 0.9999949932098389, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16749732000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.11788306385278702, - "y_min": 0.2895679771900177, - "x_max": 0.31424927711486816, - "y_max": 0.7207177877426147 - }, - "confidence": 0.9999935626983643, - "label_id": 2 - }, - "h": 186, - "w": 150, - "x": 91, - "y": 125 - } - ], - "tensors": [ - { - "confidence": 0.9999935626983643, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16833064000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1054857075214386, - "y_min": 0.28520679473876953, - "x_max": 0.31248632073402405, - "y_max": 0.7089840769767761 - }, - "confidence": 0.9999861717224121, - "label_id": 2 - }, - "h": 183, - "w": 159, - "x": 81, - "y": 123 - } - ], - "tensors": [ - { - "confidence": 0.9999861717224121, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16916396000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.08972586691379547, - "y_min": 0.27886930108070374, - "x_max": 0.3075578212738037, - "y_max": 0.6949174404144287 - }, - "confidence": 0.999972939491272, - "label_id": 2 - }, - "h": 180, - "w": 167, - "x": 69, - "y": 120 - } - ], - "tensors": [ - { - "confidence": 0.999972939491272, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16999728000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.07992282509803772, - "y_min": 0.2789849638938904, - "x_max": 0.3025186061859131, - "y_max": 0.6752256751060486 - }, - "confidence": 0.999988317489624, - "label_id": 2 - }, - "h": 171, - "w": 171, - "x": 61, - "y": 121 - } - ], - "tensors": [ - { - "confidence": 0.999988317489624, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17083060000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.07284160703420639, - "y_min": 0.2735762596130371, - "x_max": 0.29544904828071594, - "y_max": 0.6568424105644226 - }, - "confidence": 0.999994158744812, - "label_id": 2 - }, - "h": 166, - "w": 171, - "x": 56, - "y": 118 - } - ], - "tensors": [ - { - "confidence": 0.999994158744812, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17166392000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.06546320021152496, - "y_min": 0.26595205068588257, - "x_max": 0.2877064347267151, - "y_max": 0.6416342854499817 - }, - "confidence": 0.9999986886978149, - "label_id": 2 - }, - "h": 162, - "w": 171, - "x": 50, - "y": 115 - } - ], - "tensors": [ - { - "confidence": 0.9999986886978149, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17249724000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.055775485932826996, - "y_min": 0.26049840450286865, - "x_max": 0.2822268307209015, - "y_max": 0.6367597579956055 - }, - "confidence": 0.9999972581863403, - "label_id": 2 - }, - "h": 162, - "w": 174, - "x": 43, - "y": 113 - } - ], - "tensors": [ - { - "confidence": 0.9999972581863403, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17333056000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.043870508670806885, - "y_min": 0.2601318061351776, - "x_max": 0.27794164419174194, - "y_max": 0.6270712614059448 - }, - "confidence": 0.9999901056289673, - "label_id": 2 - }, - "h": 159, - "w": 179, - "x": 34, - "y": 112 - } - ], - "tensors": [ - { - "confidence": 0.9999901056289673, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17416388000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.030381090939044952, - "y_min": 0.2578715980052948, - "x_max": 0.2703300714492798, - "y_max": 0.6141258478164673 - }, - "confidence": 0.999955415725708, - "label_id": 2 - }, - "h": 154, - "w": 185, - "x": 23, - "y": 111 - } - ], - "tensors": [ - { - "confidence": 0.999955415725708, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17499720000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.01892031729221344, - "y_min": 0.2529815137386322, - "x_max": 0.2617058753967285, - "y_max": 0.6005010604858398 - }, - "confidence": 0.999988317489624, - "label_id": 2 - }, - "h": 150, - "w": 186, - "x": 15, - "y": 109 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.3566780984401703, - "y_min": 0.04786303639411926, - "x_max": 0.966240406036377, - "y_max": 0.8461965322494507 - }, - "confidence": 0.53726726770401, - "label_id": 2 - }, - "h": 345, - "w": 468, - "x": 274, - "y": 21 - } - ], - "tensors": [ - { - "confidence": 0.999988317489624, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.53726726770401, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17583052000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.006406545639038086, - "y_min": 0.25011375546455383, - "x_max": 0.25181493163108826, - "y_max": 0.594420313835144 - }, - "confidence": 0.9999843835830688, - "label_id": 2 - }, - "h": 149, - "w": 188, - "x": 5, - "y": 108 - } - ], - "tensors": [ - { - "confidence": 0.9999843835830688, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17666384000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0034183859825134277, - "y_min": 0.24995212256908417, - "x_max": 0.24484217166900635, - "y_max": 0.5859204530715942 - }, - "confidence": 0.9999728202819824, - "label_id": 2 - }, - "h": 145, - "w": 185, - "x": 3, - "y": 108 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.6444863677024841, - "y_min": 0.06924453377723694, - "x_max": 1.0005388259887695, - "y_max": 0.7056286334991455 - }, - "confidence": 0.6336398720741272, - "label_id": 2 - }, - "h": 275, - "w": 273, - "x": 495, - "y": 30 - } - ], - "tensors": [ - { - "confidence": 0.9999728202819824, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.6336398720741272, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17749716000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0014565661549568176, - "y_min": 0.247770756483078, - "x_max": 0.23315390944480896, - "y_max": 0.5775051116943359 - }, - "confidence": 0.999992847442627, - "label_id": 2 - }, - "h": 142, - "w": 178, - "x": 1, - "y": 107 - } - ], - "tensors": [ - { - "confidence": 0.999992847442627, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17833048000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -4.07099723815918e-05, - "y_min": 0.2451421618461609, - "x_max": 0.22364945709705353, - "y_max": 0.5643712878227234 - }, - "confidence": 0.9999935626983643, - "label_id": 2 - }, - "h": 138, - "w": 172, - "x": 0, - "y": 106 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.39657267928123474, - "y_min": 0.06359893083572388, - "x_max": 0.9582223892211914, - "y_max": 0.7276898622512817 - }, - "confidence": 0.7043145895004272, - "label_id": 2 - }, - "h": 287, - "w": 431, - "x": 305, - "y": 27 - } - ], - "tensors": [ - { - "confidence": 0.9999935626983643, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.7043145895004272, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17916380000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -0.0005242079496383667, - "y_min": 0.24142062664031982, - "x_max": 0.21571695804595947, - "y_max": 0.5588368773460388 - }, - "confidence": 0.9999877214431763, - "label_id": 2 - }, - "h": 137, - "w": 166, - "x": 0, - "y": 104 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.3979666829109192, - "y_min": 0.04126647114753723, - "x_max": 0.9645771384239197, - "y_max": 0.7529500722885132 - }, - "confidence": 0.8434672355651855, - "label_id": 2 - }, - "h": 307, - "w": 435, - "x": 306, - "y": 18 - } - ], - "tensors": [ - { - "confidence": 0.9999877214431763, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.8434672355651855, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17999712000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -0.00018643587827682495, - "y_min": 0.2359994500875473, - "x_max": 0.20601454377174377, - "y_max": 0.5536378026008606 - }, - "confidence": 0.999954342842102, - "label_id": 2 - }, - "h": 137, - "w": 158, - "x": 0, - "y": 102 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.36403825879096985, - "y_min": 0.03846672177314758, - "x_max": 0.9718368053436279, - "y_max": 0.7574758529663086 - }, - "confidence": 0.9011961221694946, - "label_id": 2 - }, - "h": 310, - "w": 466, - "x": 280, - "y": 17 - } - ], - "tensors": [ - { - "confidence": 0.999954342842102, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.9011961221694946, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18083044000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0004027560353279114, - "y_min": 0.23479411005973816, - "x_max": 0.1985584795475006, - "y_max": 0.546837329864502 - }, - "confidence": 0.9998503923416138, - "label_id": 2 - }, - "h": 135, - "w": 152, - "x": 0, - "y": 101 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.36456364393234253, - "y_min": 0.054398298263549805, - "x_max": 0.9702922701835632, - "y_max": 0.778744101524353 - }, - "confidence": 0.657283365726471, - "label_id": 2 - }, - "h": 312, - "w": 465, - "x": 280, - "y": 24 - } - ], - "tensors": [ - { - "confidence": 0.9998503923416138, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.657283365726471, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18166376000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0004487261176109314, - "y_min": 0.22636054456233978, - "x_max": 0.18768197298049927, - "y_max": 0.5432202816009521 - }, - "confidence": 0.9998462200164795, - "label_id": 2 - }, - "h": 137, - "w": 144, - "x": 0, - "y": 98 - } - ], - "tensors": [ - { - "confidence": 0.9998462200164795, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18249708000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0021575093269348145, - "y_min": 0.22176212072372437, - "x_max": 0.17442119121551514, - "y_max": 0.5293576121330261 - }, - "confidence": 0.9989789724349976, - "label_id": 2 - }, - "h": 133, - "w": 132, - "x": 2, - "y": 96 - } - ], - "tensors": [ - { - "confidence": 0.9989789724349976, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18333040000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -0.0031266361474990845, - "y_min": 0.22026404738426208, - "x_max": 0.16523411870002747, - "y_max": 0.5301101207733154 - }, - "confidence": 0.9972135424613953, - "label_id": 2 - }, - "h": 134, - "w": 127, - "x": 0, - "y": 95 - } - ], - "tensors": [ - { - "confidence": 0.9972135424613953, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18416372000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -0.002452939748764038, - "y_min": 0.22297357022762299, - "x_max": 0.15728577971458435, - "y_max": 0.5269065499305725 - }, - "confidence": 0.9975874423980713, - "label_id": 2 - }, - "h": 132, - "w": 121, - "x": 0, - "y": 96 - } - ], - "tensors": [ - { - "confidence": 0.9975874423980713, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18499704000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.00047751516103744507, - "y_min": 0.22313344478607178, - "x_max": 0.14348477125167847, - "y_max": 0.5240911841392517 - }, - "confidence": 0.9912697076797485, - "label_id": 2 - }, - "h": 130, - "w": 110, - "x": 0, - "y": 96 - } - ], - "tensors": [ - { - "confidence": 0.9912697076797485, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18583036000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0009466856718063354, - "y_min": 0.23165319859981537, - "x_max": 0.13174189627170563, - "y_max": 0.5227310061454773 - }, - "confidence": 0.8885208964347839, - "label_id": 2 - }, - "h": 126, - "w": 100, - "x": 1, - "y": 100 - } - ], - "tensors": [ - { - "confidence": 0.8885208964347839, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18666368000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -0.0006035938858985901, - "y_min": 0.24140207469463348, - "x_max": 0.1251387596130371, - "y_max": 0.51657634973526 - }, - "confidence": 0.7441190481185913, - "label_id": 2 - }, - "h": 119, - "w": 96, - "x": 0, - "y": 104 - } - ], - "tensors": [ - { - "confidence": 0.7441190481185913, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18749700000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0006059370934963226, - "y_min": 0.239722341299057, - "x_max": 0.11157597601413727, - "y_max": 0.515325665473938 - }, - "confidence": 0.8880211710929871, - "label_id": 2 - }, - "h": 119, - "w": 86, - "x": 0, - "y": 104 - } - ], - "tensors": [ - { - "confidence": 0.8880211710929871, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18833032000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.001440584659576416, - "y_min": 0.23769088089466095, - "x_max": 0.09910853207111359, - "y_max": 0.5193971395492554 - }, - "confidence": 0.6941346526145935, - "label_id": 2 - }, - "h": 121, - "w": 75, - "x": 1, - "y": 103 - } - ], - "tensors": [ - { - "confidence": 0.6941346526145935, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18916364000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -0.0005200617015361786, - "y_min": 0.23709367215633392, - "x_max": 0.08774614334106445, - "y_max": 0.5180805325508118 - }, - "confidence": 0.5993965864181519, - "label_id": 2 - }, - "h": 122, - "w": 67, - "x": 0, - "y": 102 - } - ], - "tensors": [ - { - "confidence": 0.5993965864181519, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18999696000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -0.000714913010597229, - "y_min": 0.2377401441335678, - "x_max": 0.07843541353940964, - "y_max": 0.5105568170547485 - }, - "confidence": 0.809007465839386, - "label_id": 2 - }, - "h": 118, - "w": 60, - "x": 0, - "y": 103 - } - ], - "tensors": [ - { - "confidence": 0.809007465839386, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19083028000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0008385665714740753, - "y_min": 0.24205249547958374, - "x_max": 0.06598681211471558, - "y_max": 0.5057999491691589 - }, - "confidence": 0.599037230014801, - "label_id": 2 - }, - "h": 114, - "w": 50, - "x": 1, - "y": 105 - } - ], - "tensors": [ - { - "confidence": 0.599037230014801, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19166360000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0013178102672100067, - "y_min": 0.2496914565563202, - "x_max": 0.05882628262042999, - "y_max": 0.4988504946231842 - }, - "confidence": 0.7784414887428284, - "label_id": 2 - }, - "h": 108, - "w": 44, - "x": 1, - "y": 108 - } - ], - "tensors": [ - { - "confidence": 0.7784414887428284, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19249692000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.002132358029484749, - "y_min": 0.27205389738082886, - "x_max": 0.04692695289850235, - "y_max": 0.49076080322265625 - }, - "confidence": 0.5858582854270935, - "label_id": 2 - }, - "h": 94, - "w": 34, - "x": 2, - "y": 118 - } - ], - "tensors": [ - { - "confidence": 0.5858582854270935, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19333024000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -0.0004920084029436111, - "y_min": 0.275369256734848, - "x_max": 0.038340166211128235, - "y_max": 0.4887489378452301 - }, - "confidence": 0.545562744140625, - "label_id": 2 - }, - "h": 92, - "w": 29, - "x": 0, - "y": 119 - } - ], - "tensors": [ - { - "confidence": 0.545562744140625, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 22332976000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.827362060546875, - "y_min": 0.29114580154418945, - "x_max": 0.9260216951370239, - "y_max": 0.4126254916191101 - }, - "confidence": 0.5569565296173096, - "label_id": 2 - }, - "h": 52, - "w": 76, - "x": 635, - "y": 126 - } - ], - "tensors": [ - { - "confidence": 0.5569565296173096, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40582684000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.003520183265209198, - "y_min": 0.09614640474319458, - "x_max": 0.05852079391479492, - "y_max": 0.2684183716773987 - }, - "confidence": 0.7313483953475952, - "label_id": 1 - }, - "h": 74, - "w": 42, - "x": 3, - "y": 42 - } - ], - "tensors": [ - { - "confidence": 0.7313483953475952, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40666016000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.007050374522805214, - "y_min": 0.10089847445487976, - "x_max": 0.06405963748693466, - "y_max": 0.2735617160797119 - }, - "confidence": 0.800372838973999, - "label_id": 1 - }, - "h": 74, - "w": 44, - "x": 5, - "y": 44 - } - ], - "tensors": [ - { - "confidence": 0.800372838973999, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40749348000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.015278883278369904, - "y_min": 0.0923706516623497, - "x_max": 0.073765330016613, - "y_max": 0.26726222038269043 - }, - "confidence": 0.9022138118743896, - "label_id": 1 - }, - "h": 75, - "w": 45, - "x": 12, - "y": 40 - } - ], - "tensors": [ - { - "confidence": 0.9022138118743896, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40832680000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.022376151755452156, - "y_min": 0.09247265756130219, - "x_max": 0.06860356032848358, - "y_max": 0.2647438049316406 - }, - "confidence": 0.9541775584220886, - "label_id": 1 - }, - "h": 74, - "w": 36, - "x": 17, - "y": 40 - } - ], - "tensors": [ - { - "confidence": 0.9541775584220886, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40916012000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.028638632968068123, - "y_min": 0.08783772587776184, - "x_max": 0.06252329051494598, - "y_max": 0.2630442678928375 - }, - "confidence": 0.7064143419265747, - "label_id": 1 - }, - "h": 76, - "w": 26, - "x": 22, - "y": 38 - } - ], - "tensors": [ - { - "confidence": 0.7064143419265747, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40999344000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.03887544572353363, - "y_min": 0.08765244483947754, - "x_max": 0.0701574981212616, - "y_max": 0.27115845680236816 - }, - "confidence": 0.8522809147834778, - "label_id": 1 - }, - "h": 79, - "w": 24, - "x": 30, - "y": 38 - } - ], - "tensors": [ - { - "confidence": 0.8522809147834778, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41082676000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.04498003423213959, - "y_min": 0.08891790360212326, - "x_max": 0.08996370434761047, - "y_max": 0.2605549693107605 - }, - "confidence": 0.9793604612350464, - "label_id": 1 - }, - "h": 75, - "w": 34, - "x": 35, - "y": 38 - } - ], - "tensors": [ - { - "confidence": 0.9793604612350464, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41166008000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.05017882212996483, - "y_min": 0.0889800563454628, - "x_max": 0.1023634672164917, - "y_max": 0.261782169342041 - }, - "confidence": 0.9697669148445129, - "label_id": 1 - }, - "h": 75, - "w": 40, - "x": 39, - "y": 38 - } - ], - "tensors": [ - { - "confidence": 0.9697669148445129, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41249340000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.05578610301017761, - "y_min": 0.08782751113176346, - "x_max": 0.11190468072891235, - "y_max": 0.2647019624710083 - }, - "confidence": 0.9666902422904968, - "label_id": 1 - }, - "h": 76, - "w": 43, - "x": 43, - "y": 38 - } - ], - "tensors": [ - { - "confidence": 0.9666902422904968, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41332672000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.06013341248035431, - "y_min": 0.08757153153419495, - "x_max": 0.11493924260139465, - "y_max": 0.2610611021518707 - }, - "confidence": 0.9735053777694702, - "label_id": 1 - }, - "h": 75, - "w": 42, - "x": 46, - "y": 38 - } - ], - "tensors": [ - { - "confidence": 0.9735053777694702, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41416004000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.06902659684419632, - "y_min": 0.08824954926967621, - "x_max": 0.10748405009508133, - "y_max": 0.2566310167312622 - }, - "confidence": 0.743285596370697, - "label_id": 1 - }, - "h": 73, - "w": 30, - "x": 53, - "y": 38 - } - ], - "tensors": [ - { - "confidence": 0.743285596370697, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41499336000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.07710953801870346, - "y_min": 0.08698607981204987, - "x_max": 0.10798504203557968, - "y_max": 0.26228195428848267 - }, - "confidence": 0.5720993280410767, - "label_id": 1 - }, - "h": 75, - "w": 24, - "x": 59, - "y": 38 - } - ], - "tensors": [ - { - "confidence": 0.5720993280410767, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41582668000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.08448268473148346, - "y_min": 0.08256705105304718, - "x_max": 0.11586420238018036, - "y_max": 0.2598867416381836 - }, - "confidence": 0.94560706615448, - "label_id": 1 - }, - "h": 76, - "w": 24, - "x": 65, - "y": 36 - } - ], - "tensors": [ - { - "confidence": 0.94560706615448, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41666000000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0896417647600174, - "y_min": 0.0827476903796196, - "x_max": 0.14263710379600525, - "y_max": 0.2597101926803589 - }, - "confidence": 0.9793663620948792, - "label_id": 1 - }, - "h": 76, - "w": 41, - "x": 69, - "y": 36 - } - ], - "tensors": [ - { - "confidence": 0.9793663620948792, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41749332000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.09771757572889328, - "y_min": 0.08314508199691772, - "x_max": 0.15318679809570312, - "y_max": 0.2552943825721741 - }, - "confidence": 0.9093460440635681, - "label_id": 1 - }, - "h": 74, - "w": 43, - "x": 75, - "y": 36 - } - ], - "tensors": [ - { - "confidence": 0.9093460440635681, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41832664000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.097109355032444, - "y_min": 0.08081871271133423, - "x_max": 0.15628035366535187, - "y_max": 0.25459712743759155 - }, - "confidence": 0.9800829291343689, - "label_id": 1 - }, - "h": 75, - "w": 45, - "x": 75, - "y": 35 - } - ], - "tensors": [ - { - "confidence": 0.9800829291343689, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41915996000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.10745184123516083, - "y_min": 0.07760567963123322, - "x_max": 0.15793658792972565, - "y_max": 0.2539300322532654 - }, - "confidence": 0.9863324761390686, - "label_id": 1 - }, - "h": 76, - "w": 38, - "x": 83, - "y": 34 - } - ], - "tensors": [ - { - "confidence": 0.9863324761390686, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41999328000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.11774111539125443, - "y_min": 0.0729341059923172, - "x_max": 0.14843998849391937, - "y_max": 0.25854355096817017 - }, - "confidence": 0.9116137027740479, - "label_id": 1 - }, - "h": 80, - "w": 24, - "x": 90, - "y": 32 - } - ], - "tensors": [ - { - "confidence": 0.9116137027740479, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42082660000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.13104873895645142, - "y_min": 0.08312395215034485, - "x_max": 0.15758538246154785, - "y_max": 0.251211017370224 - }, - "confidence": 0.5447486042976379, - "label_id": 1 - }, - "h": 73, - "w": 20, - "x": 101, - "y": 36 - } - ], - "tensors": [ - { - "confidence": 0.5447486042976379, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42165992000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.13294978439807892, - "y_min": 0.0708828791975975, - "x_max": 0.1706470102071762, - "y_max": 0.25432801246643066 - }, - "confidence": 0.9172146916389465, - "label_id": 1 - }, - "h": 79, - "w": 29, - "x": 102, - "y": 31 - } - ], - "tensors": [ - { - "confidence": 0.9172146916389465, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42249324000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1384216845035553, - "y_min": 0.06915633380413055, - "x_max": 0.1878308355808258, - "y_max": 0.24908126890659332 - }, - "confidence": 0.9754457473754883, - "label_id": 1 - }, - "h": 78, - "w": 38, - "x": 106, - "y": 30 - } - ], - "tensors": [ - { - "confidence": 0.9754457473754883, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42332656000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1423514038324356, - "y_min": 0.06932604312896729, - "x_max": 0.1978525072336197, - "y_max": 0.24401411414146423 - }, - "confidence": 0.94728022813797, - "label_id": 1 - }, - "h": 75, - "w": 43, - "x": 109, - "y": 30 - } - ], - "tensors": [ - { - "confidence": 0.94728022813797, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42415988000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.14545604586601257, - "y_min": 0.06837218999862671, - "x_max": 0.19828087091445923, - "y_max": 0.24140188097953796 - }, - "confidence": 0.9623384475708008, - "label_id": 1 - }, - "h": 74, - "w": 40, - "x": 112, - "y": 30 - } - ], - "tensors": [ - { - "confidence": 0.9623384475708008, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42499320000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.15949654579162598, - "y_min": 0.06967361271381378, - "x_max": 0.1966705620288849, - "y_max": 0.24714766442775726 - }, - "confidence": 0.9421710968017578, - "label_id": 1 - }, - "h": 77, - "w": 29, - "x": 122, - "y": 30 - } - ], - "tensors": [ - { - "confidence": 0.9421710968017578, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42582652000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.16708043217658997, - "y_min": 0.059558719396591187, - "x_max": 0.19617226719856262, - "y_max": 0.24868381023406982 - }, - "confidence": 0.813447892665863, - "label_id": 1 - }, - "h": 81, - "w": 23, - "x": 128, - "y": 26 - } - ], - "tensors": [ - { - "confidence": 0.813447892665863, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42665984000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1770205795764923, - "y_min": 0.06683304905891418, - "x_max": 0.20688790082931519, - "y_max": 0.24025678634643555 - }, - "confidence": 0.8465343117713928, - "label_id": 1 - }, - "h": 75, - "w": 23, - "x": 136, - "y": 29 - } - ], - "tensors": [ - { - "confidence": 0.8465343117713928, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42749316000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.17684851586818695, - "y_min": 0.06626953929662704, - "x_max": 0.22825394570827484, - "y_max": 0.23396548628807068 - }, - "confidence": 0.9355576038360596, - "label_id": 1 - }, - "h": 72, - "w": 39, - "x": 136, - "y": 29 - } - ], - "tensors": [ - { - "confidence": 0.9355576038360596, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42832648000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.185580313205719, - "y_min": 0.06710120290517807, - "x_max": 0.23801594972610474, - "y_max": 0.23169371485710144 - }, - "confidence": 0.8719622492790222, - "label_id": 1 - }, - "h": 71, - "w": 40, - "x": 143, - "y": 29 - } - ], - "tensors": [ - { - "confidence": 0.8719622492790222, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42915980000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.18934984505176544, - "y_min": 0.06351666152477264, - "x_max": 0.24492235481739044, - "y_max": 0.22783349454402924 - }, - "confidence": 0.9465517997741699, - "label_id": 1 - }, - "h": 71, - "w": 43, - "x": 145, - "y": 27 - } - ], - "tensors": [ - { - "confidence": 0.9465517997741699, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42999312000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.19826054573059082, - "y_min": 0.0634077787399292, - "x_max": 0.2433423399925232, - "y_max": 0.22424951195716858 - }, - "confidence": 0.9223278760910034, - "label_id": 1 - }, - "h": 70, - "w": 35, - "x": 152, - "y": 27 - } - ], - "tensors": [ - { - "confidence": 0.9223278760910034, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43082644000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.20872804522514343, - "y_min": 0.05233736336231232, - "x_max": 0.2391643524169922, - "y_max": 0.2301691621541977 - }, - "confidence": 0.8002424836158752, - "label_id": 1 - }, - "h": 76, - "w": 24, - "x": 160, - "y": 23 - } - ], - "tensors": [ - { - "confidence": 0.8002424836158752, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43165976000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.21424375474452972, - "y_min": 0.04551645368337631, - "x_max": 0.24572424590587616, - "y_max": 0.22501105070114136 - }, - "confidence": 0.8372902274131775, - "label_id": 1 - }, - "h": 77, - "w": 24, - "x": 165, - "y": 20 - } - ], - "tensors": [ - { - "confidence": 0.8372902274131775, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43249308000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.2207432985305786, - "y_min": 0.04236235469579697, - "x_max": 0.2584760785102844, - "y_max": 0.2220311164855957 - }, - "confidence": 0.9497457146644592, - "label_id": 1 - }, - "h": 78, - "w": 29, - "x": 170, - "y": 18 - } - ], - "tensors": [ - { - "confidence": 0.9497457146644592, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43332640000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.22296249866485596, - "y_min": 0.038034990429878235, - "x_max": 0.2679644823074341, - "y_max": 0.22160767018795013 - }, - "confidence": 0.8677589297294617, - "label_id": 1 - }, - "h": 80, - "w": 35, - "x": 171, - "y": 16 - } - ], - "tensors": [ - { - "confidence": 0.8677589297294617, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43415972000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.2253321409225464, - "y_min": 0.04360928386449814, - "x_max": 0.27870678901672363, - "y_max": 0.2192666232585907 - }, - "confidence": 0.9470476508140564, - "label_id": 1 - }, - "h": 76, - "w": 41, - "x": 173, - "y": 19 - } - ], - "tensors": [ - { - "confidence": 0.9470476508140564, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43499304000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.22942356765270233, - "y_min": 0.04060845077037811, - "x_max": 0.2780565619468689, - "y_max": 0.2132491022348404 - }, - "confidence": 0.8956233859062195, - "label_id": 1 - }, - "h": 74, - "w": 38, - "x": 176, - "y": 18 - } - ], - "tensors": [ - { - "confidence": 0.8956233859062195, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43582636000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.23967245221138, - "y_min": 0.02633826434612274, - "x_max": 0.27834299206733704, - "y_max": 0.2121078073978424 - }, - "confidence": 0.5786580443382263, - "label_id": 1 - }, - "h": 81, - "w": 30, - "x": 184, - "y": 11 - } - ], - "tensors": [ - { - "confidence": 0.5786580443382263, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43665968000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.25442785024642944, - "y_min": 0.026687629520893097, - "x_max": 0.284124493598938, - "y_max": 0.21455299854278564 - }, - "confidence": 0.7779613137245178, - "label_id": 1 - }, - "h": 81, - "w": 23, - "x": 195, - "y": 12 - } - ], - "tensors": [ - { - "confidence": 0.7779613137245178, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43749300000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.2591593861579895, - "y_min": 0.021057195961475372, - "x_max": 0.29092317819595337, - "y_max": 0.20710113644599915 - }, - "confidence": 0.8207446336746216, - "label_id": 1 - }, - "h": 80, - "w": 24, - "x": 199, - "y": 9 - } - ], - "tensors": [ - { - "confidence": 0.8207446336746216, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43832632000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.265623539686203, - "y_min": 0.022368110716342926, - "x_max": 0.30720213055610657, - "y_max": 0.19281572103500366 - }, - "confidence": 0.9772182106971741, - "label_id": 1 - }, - "h": 73, - "w": 32, - "x": 204, - "y": 10 - } - ], - "tensors": [ - { - "confidence": 0.9772182106971741, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43915964000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.2676101326942444, - "y_min": 0.022761516273021698, - "x_max": 0.31084901094436646, - "y_max": 0.19687843322753906 - }, - "confidence": 0.9722139239311218, - "label_id": 1 - }, - "h": 75, - "w": 33, - "x": 206, - "y": 10 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.10303474962711334, - "y_min": 0.8516966700553894, - "x_max": 0.2944148778915405, - "y_max": 1.0023001432418823 - }, - "confidence": 0.7828809022903442, - "label_id": 2 - }, - "h": 64, - "w": 147, - "x": 79, - "y": 368 - } - ], - "tensors": [ - { - "confidence": 0.9722139239311218, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.7828809022903442, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43999296000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.27379584312438965, - "y_min": 0.01969006657600403, - "x_max": 0.31614619493484497, - "y_max": 0.1831187754869461 - }, - "confidence": 0.9839940071105957, - "label_id": 1 - }, - "h": 70, - "w": 33, - "x": 210, - "y": 9 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.08434255421161652, - "y_min": 0.8253540396690369, - "x_max": 0.3013109564781189, - "y_max": 1.0052653551101685 - }, - "confidence": 0.8690185546875, - "label_id": 2 - }, - "h": 75, - "w": 166, - "x": 65, - "y": 357 - } - ], - "tensors": [ - { - "confidence": 0.9839940071105957, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.8690185546875, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44082628000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.2792358100414276, - "y_min": 0.009584739804267883, - "x_max": 0.31608036160469055, - "y_max": 0.18175002932548523 - }, - "confidence": 0.8530219197273254, - "label_id": 1 - }, - "h": 75, - "w": 29, - "x": 214, - "y": 4 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.08915093541145325, - "y_min": 0.7983525395393372, - "x_max": 0.30604496598243713, - "y_max": 1.0010695457458496 - }, - "confidence": 0.9764792323112488, - "label_id": 2 - }, - "h": 87, - "w": 167, - "x": 68, - "y": 345 - } - ], - "tensors": [ - { - "confidence": 0.8530219197273254, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.9764792323112488, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44165960000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.28407979011535645, - "y_min": 0.002706773579120636, - "x_max": 0.31977325677871704, - "y_max": 0.1762460470199585 - }, - "confidence": 0.9413458108901978, - "label_id": 1 - }, - "h": 75, - "w": 28, - "x": 218, - "y": 1 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.09309807419776917, - "y_min": 0.7758338451385498, - "x_max": 0.3174420893192291, - "y_max": 0.9965120553970337 - }, - "confidence": 0.9990536570549011, - "label_id": 2 - }, - "h": 95, - "w": 173, - "x": 71, - "y": 335 - } - ], - "tensors": [ - { - "confidence": 0.9413458108901978, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.9990536570549011, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44249292000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.29081493616104126, - "y_min": -0.0069022104144096375, - "x_max": 0.324205219745636, - "y_max": 0.18154531717300415 - }, - "confidence": 0.9403790831565857, - "label_id": 1 - }, - "h": 78, - "w": 26, - "x": 223, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.09307057410478592, - "y_min": 0.7559618353843689, - "x_max": 0.32171231508255005, - "y_max": 0.9982390999794006 - }, - "confidence": 0.9966351389884949, - "label_id": 2 - }, - "h": 104, - "w": 176, - "x": 71, - "y": 327 - } - ], - "tensors": [ - { - "confidence": 0.9403790831565857, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.9966351389884949, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44332624000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.2964043915271759, - "y_min": -0.0003037452697753906, - "x_max": 0.3379308879375458, - "y_max": 0.1687522530555725 - }, - "confidence": 0.9741271138191223, - "label_id": 1 - }, - "h": 73, - "w": 32, - "x": 228, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.09235934168100357, - "y_min": 0.7268028259277344, - "x_max": 0.32596927881240845, - "y_max": 0.9985591173171997 - }, - "confidence": 0.9987518787384033, - "label_id": 2 - }, - "h": 117, - "w": 179, - "x": 71, - "y": 314 - } - ], - "tensors": [ - { - "confidence": 0.9741271138191223, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.9987518787384033, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44415956000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.2996630072593689, - "y_min": -0.0004722177982330322, - "x_max": 0.3412056565284729, - "y_max": 0.15967386960983276 - }, - "confidence": 0.9673275947570801, - "label_id": 1 - }, - "h": 69, - "w": 32, - "x": 230, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.09393153339624405, - "y_min": 0.7049237489700317, - "x_max": 0.3319951891899109, - "y_max": 0.9963676929473877 - }, - "confidence": 0.9973854422569275, - "label_id": 2 - }, - "h": 125, - "w": 183, - "x": 72, - "y": 305 - } - ], - "tensors": [ - { - "confidence": 0.9673275947570801, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.9973854422569275, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44499288000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.3023771643638611, - "y_min": -0.001138843595981598, - "x_max": 0.3466936945915222, - "y_max": 0.15592274069786072 - }, - "confidence": 0.9862332344055176, - "label_id": 1 - }, - "h": 67, - "w": 34, - "x": 232, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.09151753038167953, - "y_min": 0.6774777173995972, - "x_max": 0.33974748849868774, - "y_max": 0.9992778301239014 - }, - "confidence": 0.9967327117919922, - "label_id": 2 - }, - "h": 139, - "w": 191, - "x": 70, - "y": 293 - } - ], - "tensors": [ - { - "confidence": 0.9862332344055176, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.9967327117919922, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44582620000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.30892443656921387, - "y_min": -0.004717707633972168, - "x_max": 0.3456929326057434, - "y_max": 0.15049003064632416 - }, - "confidence": 0.9558308124542236, - "label_id": 1 - }, - "h": 65, - "w": 28, - "x": 237, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.09714695811271667, - "y_min": 0.6524867415428162, - "x_max": 0.34563007950782776, - "y_max": 1.0013536214828491 - }, - "confidence": 0.9961705803871155, - "label_id": 2 - }, - "h": 150, - "w": 190, - "x": 75, - "y": 282 - } - ], - "tensors": [ - { - "confidence": 0.9558308124542236, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.9961705803871155, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44665952000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.316145658493042, - "y_min": -0.0028254762291908264, - "x_max": 0.3478916883468628, - "y_max": 0.14547988772392273 - }, - "confidence": 0.9660082459449768, - "label_id": 1 - }, - "h": 63, - "w": 24, - "x": 243, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.11022000014781952, - "y_min": 0.632098376750946, - "x_max": 0.3487919569015503, - "y_max": 0.9972622990608215 - }, - "confidence": 0.9974126219749451, - "label_id": 2 - }, - "h": 158, - "w": 183, - "x": 85, - "y": 273 - } - ], - "tensors": [ - { - "confidence": 0.9660082459449768, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.9974126219749451, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44749284000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.32010510563850403, - "y_min": -0.005685113370418549, - "x_max": 0.35274139046669006, - "y_max": 0.14770928025245667 - }, - "confidence": 0.8981993794441223, - "label_id": 1 - }, - "h": 64, - "w": 25, - "x": 246, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.11684470623731613, - "y_min": 0.6131628751754761, - "x_max": 0.3530047833919525, - "y_max": 0.9939368963241577 - }, - "confidence": 0.9990528225898743, - "label_id": 2 - }, - "h": 164, - "w": 181, - "x": 90, - "y": 265 - } - ], - "tensors": [ - { - "confidence": 0.8981993794441223, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.9990528225898743, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44832616000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.32345181703567505, - "y_min": -0.0029996484518051147, - "x_max": 0.35825276374816895, - "y_max": 0.14560502767562866 - }, - "confidence": 0.8194749355316162, - "label_id": 1 - }, - "h": 63, - "w": 27, - "x": 248, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.11367812752723694, - "y_min": 0.5902449488639832, - "x_max": 0.3572065234184265, - "y_max": 0.9966704249382019 - }, - "confidence": 0.9964820146560669, - "label_id": 2 - }, - "h": 176, - "w": 187, - "x": 87, - "y": 255 - } - ], - "tensors": [ - { - "confidence": 0.8194749355316162, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.9964820146560669, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44915948000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.3286791741847992, - "y_min": -0.007402099668979645, - "x_max": 0.3615064322948456, - "y_max": 0.14312848448753357 - }, - "confidence": 0.6257444024085999, - "label_id": 1 - }, - "h": 62, - "w": 26, - "x": 252, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.11418077349662781, - "y_min": 0.570789098739624, - "x_max": 0.3560735881328583, - "y_max": 0.9964854717254639 - }, - "confidence": 0.9956169128417969, - "label_id": 2 - }, - "h": 183, - "w": 185, - "x": 88, - "y": 247 - } - ], - "tensors": [ - { - "confidence": 0.6257444024085999, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.9956169128417969, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44999280000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.3317735493183136, - "y_min": -0.0060748085379600525, - "x_max": 0.36417290568351746, - "y_max": 0.14243194460868835 - }, - "confidence": 0.8801973462104797, - "label_id": 1 - }, - "h": 62, - "w": 25, - "x": 255, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.10707895457744598, - "y_min": 0.550262451171875, - "x_max": 0.3620380759239197, - "y_max": 1.0060276985168457 - }, - "confidence": 0.9984036087989807, - "label_id": 2 - }, - "h": 194, - "w": 196, - "x": 82, - "y": 238 - } - ], - "tensors": [ - { - "confidence": 0.8801973462104797, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.9984036087989807, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45082612000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.3347332775592804, - "y_min": -0.006817735731601715, - "x_max": 0.36854955554008484, - "y_max": 0.13049811124801636 - }, - "confidence": 0.5752376317977905, - "label_id": 1 - }, - "h": 56, - "w": 26, - "x": 257, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1173052042722702, - "y_min": 0.5320181250572205, - "x_max": 0.36141467094421387, - "y_max": 1.003308892250061 - }, - "confidence": 0.9931515455245972, - "label_id": 2 - }, - "h": 202, - "w": 188, - "x": 90, - "y": 230 - } - ], - "tensors": [ - { - "confidence": 0.5752376317977905, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.9931515455245972, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45165944000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.11752931028604507, - "y_min": 0.5167419910430908, - "x_max": 0.36498358845710754, - "y_max": 1.0026801824569702 - }, - "confidence": 0.9842708706855774, - "label_id": 2 - }, - "h": 209, - "w": 190, - "x": 90, - "y": 223 - } - ], - "tensors": [ - { - "confidence": 0.9842708706855774, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45249276000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.11881844699382782, - "y_min": 0.5080917477607727, - "x_max": 0.359694242477417, - "y_max": 1.0054547786712646 - }, - "confidence": 0.9808247089385986, - "label_id": 2 - }, - "h": 213, - "w": 185, - "x": 91, - "y": 219 - } - ], - "tensors": [ - { - "confidence": 0.9808247089385986, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45332608000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1258331835269928, - "y_min": 0.4862575829029083, - "x_max": 0.35839664936065674, - "y_max": 1.0033698081970215 - }, - "confidence": 0.9583507776260376, - "label_id": 2 - }, - "h": 222, - "w": 178, - "x": 97, - "y": 210 - } - ], - "tensors": [ - { - "confidence": 0.9583507776260376, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45415940000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.13210563361644745, - "y_min": 0.47293728590011597, - "x_max": 0.36725956201553345, - "y_max": 1.0035967826843262 - }, - "confidence": 0.9631510376930237, - "label_id": 2 - }, - "h": 228, - "w": 181, - "x": 101, - "y": 204 - } - ], - "tensors": [ - { - "confidence": 0.9631510376930237, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45499272000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1388271152973175, - "y_min": 0.4516679644584656, - "x_max": 0.37078699469566345, - "y_max": 0.9844309687614441 - }, - "confidence": 0.9913437366485596, - "label_id": 2 - }, - "h": 230, - "w": 178, - "x": 107, - "y": 195 - } - ], - "tensors": [ - { - "confidence": 0.9913437366485596, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45582604000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1446165144443512, - "y_min": 0.43912655115127563, - "x_max": 0.36464759707450867, - "y_max": 0.9535489678382874 - }, - "confidence": 0.9956739544868469, - "label_id": 2 - }, - "h": 222, - "w": 169, - "x": 111, - "y": 190 - } - ], - "tensors": [ - { - "confidence": 0.9956739544868469, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45665936000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.15900349617004395, - "y_min": 0.41592368483543396, - "x_max": 0.3655781149864197, - "y_max": 0.9343960285186768 - }, - "confidence": 0.9988051652908325, - "label_id": 2 - }, - "h": 224, - "w": 159, - "x": 122, - "y": 180 - } - ], - "tensors": [ - { - "confidence": 0.9988051652908325, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45749268000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.16125471889972687, - "y_min": 0.39938512444496155, - "x_max": 0.36593347787857056, - "y_max": 0.9014413356781006 - }, - "confidence": 0.9996262788772583, - "label_id": 2 - }, - "h": 216, - "w": 157, - "x": 124, - "y": 173 - } - ], - "tensors": [ - { - "confidence": 0.9996262788772583, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45832600000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.17407645285129547, - "y_min": 0.38433194160461426, - "x_max": 0.36556488275527954, - "y_max": 0.8782362937927246 - }, - "confidence": 0.9997637867927551, - "label_id": 2 - }, - "h": 213, - "w": 147, - "x": 134, - "y": 166 - } - ], - "tensors": [ - { - "confidence": 0.9997637867927551, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45915932000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.17808517813682556, - "y_min": 0.3662709593772888, - "x_max": 0.36139264702796936, - "y_max": 0.8555702567100525 - }, - "confidence": 0.9998427629470825, - "label_id": 2 - }, - "h": 212, - "w": 141, - "x": 137, - "y": 158 - } - ], - "tensors": [ - { - "confidence": 0.9998427629470825, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45999264000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1823108047246933, - "y_min": 0.34388411045074463, - "x_max": 0.36295002698898315, - "y_max": 0.8230388164520264 - }, - "confidence": 0.9999207258224487, - "label_id": 2 - }, - "h": 207, - "w": 139, - "x": 140, - "y": 149 - } - ], - "tensors": [ - { - "confidence": 0.9999207258224487, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46082596000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.18824753165245056, - "y_min": 0.32287484407424927, - "x_max": 0.36030909419059753, - "y_max": 0.7853133082389832 - }, - "confidence": 0.9999746084213257, - "label_id": 2 - }, - "h": 200, - "w": 132, - "x": 145, - "y": 139 - } - ], - "tensors": [ - { - "confidence": 0.9999746084213257, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46165928000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.19106805324554443, - "y_min": 0.3120577931404114, - "x_max": 0.3585693836212158, - "y_max": 0.7668245434761047 - }, - "confidence": 0.9999792575836182, - "label_id": 2 - }, - "h": 196, - "w": 128, - "x": 147, - "y": 135 - } - ], - "tensors": [ - { - "confidence": 0.9999792575836182, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46249260000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.19487696886062622, - "y_min": 0.2928714156150818, - "x_max": 0.35463863611221313, - "y_max": 0.7392868399620056 - }, - "confidence": 0.9999550580978394, - "label_id": 2 - }, - "h": 192, - "w": 122, - "x": 150, - "y": 127 - } - ], - "tensors": [ - { - "confidence": 0.9999550580978394, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46332592000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.19407981634140015, - "y_min": 0.2778220772743225, - "x_max": 0.349772572517395, - "y_max": 0.7182074189186096 - }, - "confidence": 0.9999231100082397, - "label_id": 2 - }, - "h": 190, - "w": 120, - "x": 149, - "y": 120 - } - ], - "tensors": [ - { - "confidence": 0.9999231100082397, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46415924000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1996471881866455, - "y_min": 0.2661404609680176, - "x_max": 0.34550178050994873, - "y_max": 0.6879050731658936 - }, - "confidence": 0.9998117089271545, - "label_id": 2 - }, - "h": 182, - "w": 112, - "x": 153, - "y": 115 - } - ], - "tensors": [ - { - "confidence": 0.9998117089271545, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46499256000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.19898878037929535, - "y_min": 0.25560426712036133, - "x_max": 0.344973623752594, - "y_max": 0.6529581546783447 - }, - "confidence": 0.999887228012085, - "label_id": 2 - }, - "h": 172, - "w": 112, - "x": 153, - "y": 110 - } - ], - "tensors": [ - { - "confidence": 0.999887228012085, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46582588000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.19431041181087494, - "y_min": 0.24010860919952393, - "x_max": 0.3426505923271179, - "y_max": 0.6370713114738464 - }, - "confidence": 0.999858021736145, - "label_id": 2 - }, - "h": 171, - "w": 114, - "x": 149, - "y": 104 - } - ], - "tensors": [ - { - "confidence": 0.999858021736145, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46665920000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.19016331434249878, - "y_min": 0.22348810732364655, - "x_max": 0.33844250440597534, - "y_max": 0.6314473152160645 - }, - "confidence": 0.9998179078102112, - "label_id": 2 - }, - "h": 176, - "w": 114, - "x": 146, - "y": 97 - } - ], - "tensors": [ - { - "confidence": 0.9998179078102112, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46749252000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1869482398033142, - "y_min": 0.2082124948501587, - "x_max": 0.33711379766464233, - "y_max": 0.6009442806243896 - }, - "confidence": 0.9999079704284668, - "label_id": 2 - }, - "h": 170, - "w": 115, - "x": 144, - "y": 90 - } - ], - "tensors": [ - { - "confidence": 0.9999079704284668, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46832584000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.17860300838947296, - "y_min": 0.19198086857795715, - "x_max": 0.33069324493408203, - "y_max": 0.5795577764511108 - }, - "confidence": 0.999840259552002, - "label_id": 2 - }, - "h": 167, - "w": 117, - "x": 137, - "y": 83 - } - ], - "tensors": [ - { - "confidence": 0.999840259552002, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46915916000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.16847428679466248, - "y_min": 0.17181475460529327, - "x_max": 0.33144065737724304, - "y_max": 0.5658245086669922 - }, - "confidence": 0.9966880679130554, - "label_id": 2 - }, - "h": 170, - "w": 126, - "x": 129, - "y": 74 - } - ], - "tensors": [ - { - "confidence": 0.9966880679130554, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46999248000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.15815109014511108, - "y_min": 0.1630575954914093, - "x_max": 0.33030930161476135, - "y_max": 0.5347641706466675 - }, - "confidence": 0.9999334812164307, - "label_id": 2 - }, - "h": 161, - "w": 133, - "x": 121, - "y": 70 - } - ], - "tensors": [ - { - "confidence": 0.9999334812164307, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47082580000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.14546090364456177, - "y_min": 0.1592211127281189, - "x_max": 0.32633206248283386, - "y_max": 0.516521155834198 - }, - "confidence": 0.9999961853027344, - "label_id": 2 - }, - "h": 154, - "w": 139, - "x": 112, - "y": 69 - } - ], - "tensors": [ - { - "confidence": 0.9999961853027344, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47165912000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.13375265896320343, - "y_min": 0.15671759843826294, - "x_max": 0.3240237832069397, - "y_max": 0.5026559829711914 - }, - "confidence": 0.999997615814209, - "label_id": 2 - }, - "h": 149, - "w": 146, - "x": 103, - "y": 68 - } - ], - "tensors": [ - { - "confidence": 0.999997615814209, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47249244000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.12439753860235214, - "y_min": 0.14749115705490112, - "x_max": 0.3173246681690216, - "y_max": 0.48482757806777954 - }, - "confidence": 0.9999957084655762, - "label_id": 2 - }, - "h": 145, - "w": 148, - "x": 96, - "y": 64 - } - ], - "tensors": [ - { - "confidence": 0.9999957084655762, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47332576000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.10337574779987335, - "y_min": 0.1447085589170456, - "x_max": 0.31053102016448975, - "y_max": 0.46590709686279297 - }, - "confidence": 0.9999985694885254, - "label_id": 2 - }, - "h": 138, - "w": 159, - "x": 79, - "y": 63 - } - ], - "tensors": [ - { - "confidence": 0.9999985694885254, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47415908000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0877276137471199, - "y_min": 0.13578101992607117, - "x_max": 0.3061259686946869, - "y_max": 0.4583093822002411 - }, - "confidence": 0.9999905824661255, - "label_id": 2 - }, - "h": 139, - "w": 168, - "x": 67, - "y": 59 - } - ], - "tensors": [ - { - "confidence": 0.9999905824661255, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47499240000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.07414165139198303, - "y_min": 0.13613608479499817, - "x_max": 0.29499655961990356, - "y_max": 0.44501665234565735 - }, - "confidence": 0.9999843835830688, - "label_id": 2 - }, - "h": 133, - "w": 170, - "x": 57, - "y": 59 - } - ], - "tensors": [ - { - "confidence": 0.9999843835830688, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47582572000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.06372351199388504, - "y_min": 0.13430394232273102, - "x_max": 0.28886139392852783, - "y_max": 0.4283466935157776 - }, - "confidence": 0.9999667406082153, - "label_id": 2 - }, - "h": 127, - "w": 173, - "x": 49, - "y": 58 - } - ], - "tensors": [ - { - "confidence": 0.9999667406082153, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47665904000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.04476805776357651, - "y_min": 0.1310632973909378, - "x_max": 0.2812711000442505, - "y_max": 0.41454845666885376 - }, - "confidence": 0.9999289512634277, - "label_id": 2 - }, - "h": 122, - "w": 182, - "x": 34, - "y": 57 - } - ], - "tensors": [ - { - "confidence": 0.9999289512634277, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47749236000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.031214669346809387, - "y_min": 0.13065342605113983, - "x_max": 0.2697560787200928, - "y_max": 0.40537846088409424 - }, - "confidence": 0.999994158744812, - "label_id": 2 - }, - "h": 119, - "w": 183, - "x": 24, - "y": 56 - } - ], - "tensors": [ - { - "confidence": 0.999994158744812, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47832568000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.01740241050720215, - "y_min": 0.12662234902381897, - "x_max": 0.2577144205570221, - "y_max": 0.3994019329547882 - }, - "confidence": 0.9999731779098511, - "label_id": 2 - }, - "h": 118, - "w": 185, - "x": 13, - "y": 55 - } - ], - "tensors": [ - { - "confidence": 0.9999731779098511, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47915900000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.004041805863380432, - "y_min": 0.12184710800647736, - "x_max": 0.2474878579378128, - "y_max": 0.39345186948776245 - }, - "confidence": 0.9996523857116699, - "label_id": 2 - }, - "h": 117, - "w": 187, - "x": 3, - "y": 53 - } - ], - "tensors": [ - { - "confidence": 0.9996523857116699, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47999232000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.005348794162273407, - "y_min": 0.12305355072021484, - "x_max": 0.23488926887512207, - "y_max": 0.3915954828262329 - }, - "confidence": 0.9985697269439697, - "label_id": 2 - }, - "h": 116, - "w": 176, - "x": 4, - "y": 53 - } - ], - "tensors": [ - { - "confidence": 0.9985697269439697, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48082564000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0017888173460960388, - "y_min": 0.1247859001159668, - "x_max": 0.2245253622531891, - "y_max": 0.38678228855133057 - }, - "confidence": 0.9998401403427124, - "label_id": 2 - }, - "h": 113, - "w": 171, - "x": 1, - "y": 54 - } - ], - "tensors": [ - { - "confidence": 0.9998401403427124, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48165896000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0016414672136306763, - "y_min": 0.12514449656009674, - "x_max": 0.21423731744289398, - "y_max": 0.3789997100830078 - }, - "confidence": 0.9995100498199463, - "label_id": 2 - }, - "h": 110, - "w": 164, - "x": 1, - "y": 54 - } - ], - "tensors": [ - { - "confidence": 0.9995100498199463, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48249228000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0010463446378707886, - "y_min": 0.12255397439002991, - "x_max": 0.20339226722717285, - "y_max": 0.37172725796699524 - }, - "confidence": 0.9997997879981995, - "label_id": 2 - }, - "h": 108, - "w": 155, - "x": 1, - "y": 53 - } - ], - "tensors": [ - { - "confidence": 0.9997997879981995, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48332560000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -0.0009600818157196045, - "y_min": 0.12224481254816055, - "x_max": 0.18527519702911377, - "y_max": 0.3683636486530304 - }, - "confidence": 0.9996997117996216, - "label_id": 2 - }, - "h": 106, - "w": 142, - "x": 0, - "y": 53 - } - ], - "tensors": [ - { - "confidence": 0.9996997117996216, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48415892000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -0.0024446696043014526, - "y_min": 0.11800922453403473, - "x_max": 0.1734609305858612, - "y_max": 0.36477744579315186 - }, - "confidence": 0.994732141494751, - "label_id": 2 - }, - "h": 107, - "w": 133, - "x": 0, - "y": 51 - } - ], - "tensors": [ - { - "confidence": 0.994732141494751, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48499224000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -0.0008171945810317993, - "y_min": 0.122039295732975, - "x_max": 0.16088078916072845, - "y_max": 0.36065050959587097 - }, - "confidence": 0.9844126105308533, - "label_id": 2 - }, - "h": 103, - "w": 124, - "x": 0, - "y": 53 - } - ], - "tensors": [ - { - "confidence": 0.9844126105308533, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48582556000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.00014059245586395264, - "y_min": 0.1215287297964096, - "x_max": 0.1478501558303833, - "y_max": 0.3573453426361084 - }, - "confidence": 0.944599986076355, - "label_id": 2 - }, - "h": 101, - "w": 114, - "x": 0, - "y": 53 - } - ], - "tensors": [ - { - "confidence": 0.944599986076355, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48665888000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -0.00025963038206100464, - "y_min": 0.12402772158384323, - "x_max": 0.13530778884887695, - "y_max": 0.3572295308113098 - }, - "confidence": 0.8222958445549011, - "label_id": 2 - }, - "h": 100, - "w": 104, - "x": 0, - "y": 54 - } - ], - "tensors": [ - { - "confidence": 0.8222958445549011, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48749220000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.004977211356163025, - "y_min": 0.12455517798662186, - "x_max": 0.12559984624385834, - "y_max": 0.35147324204444885 - }, - "confidence": 0.5192632675170898, - "label_id": 2 - }, - "h": 98, - "w": 92, - "x": 4, - "y": 54 - } - ], - "tensors": [ - { - "confidence": 0.5192632675170898, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48832552000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0021711327135562897, - "y_min": 0.12542003393173218, - "x_max": 0.11167280375957489, - "y_max": 0.35693034529685974 - }, - "confidence": 0.6774740219116211, - "label_id": 2 - }, - "h": 100, - "w": 84, - "x": 2, - "y": 54 - } - ], - "tensors": [ - { - "confidence": 0.6774740219116211, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48915884000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.003963496536016464, - "y_min": 0.1262444257736206, - "x_max": 0.09858241677284241, - "y_max": 0.3592531383037567 - }, - "confidence": 0.7434250712394714, - "label_id": 2 - }, - "h": 100, - "w": 73, - "x": 3, - "y": 55 - } - ], - "tensors": [ - { - "confidence": 0.7434250712394714, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48999216000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0023461058735847473, - "y_min": 0.13048796355724335, - "x_max": 0.08722066134214401, - "y_max": 0.3632868528366089 - }, - "confidence": 0.5979925394058228, - "label_id": 2 - }, - "h": 101, - "w": 65, - "x": 2, - "y": 56 - } - ], - "tensors": [ - { - "confidence": 0.5979925394058228, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49082548000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.004991490393877029, - "y_min": 0.1470525711774826, - "x_max": 0.0746246874332428, - "y_max": 0.36092686653137207 - }, - "confidence": 0.6191385388374329, - "label_id": 2 - }, - "h": 92, - "w": 53, - "x": 4, - "y": 64 - } - ], - "tensors": [ - { - "confidence": 0.6191385388374329, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49165880000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -0.006160043179988861, - "y_min": 0.1430838704109192, - "x_max": 0.06290969997644424, - "y_max": 0.34735849499702454 - }, - "confidence": 0.680001974105835, - "label_id": 2 - }, - "h": 88, - "w": 48, - "x": 0, - "y": 62 - } - ], - "tensors": [ - { - "confidence": 0.680001974105835, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49249212000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -0.0008208621293306351, - "y_min": 0.14316228032112122, - "x_max": 0.049667298793792725, - "y_max": 0.3419255316257477 - }, - "confidence": 0.6459780335426331, - "label_id": 2 - }, - "h": 86, - "w": 38, - "x": 0, - "y": 62 - } - ], - "tensors": [ - { - "confidence": 0.6459780335426331, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - } - ] -} \ No newline at end of file diff --git a/tests/test_cases/pipeline_execution/cpu/object_detection_fifo_ffmpeg.json b/tests/test_cases/pipeline_execution/cpu/object_detection_fifo_ffmpeg.json deleted file mode 100644 index cd00515..0000000 --- a/tests/test_cases/pipeline_execution/cpu/object_detection_fifo_ffmpeg.json +++ /dev/null @@ -1,9057 +0,0 @@ -{ - "options": {}, - "pipeline": { - "name": "object_detection", - "version": 1 - }, - "request": { - "source": { - "type": "uri", - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4" - }, - "destination": { - "type": "file", - "path": "/tmp/object_detection_results_fifo", - "format": "json-lines" - } - }, - "numerical_tolerance": 0.3, - "result": [ - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1499976000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6734127998352051, - "y_min": 0.8779282569885254, - "x_max": 0.7446080446243286, - "y_max": 0.999404788017273 - }, - "confidence": 0.5588181018829346, - "label_id": 1 - }, - "h": 53, - "w": 55, - "x": 517, - "y": 379 - } - ], - "tensors": [ - { - "confidence": 0.5588181018829346, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1666640000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6762180924415588, - "y_min": 0.8294872045516968, - "x_max": 0.7442803978919983, - "y_max": 1.00227689743042 - }, - "confidence": 0.5395121574401855, - "label_id": 1 - }, - "h": 74, - "w": 53, - "x": 519, - "y": 358 - } - ], - "tensors": [ - { - "confidence": 0.5395121574401855, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1749972000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6827850937843323, - "y_min": 0.8284579515457153, - "x_max": 0.7486807703971863, - "y_max": 0.9993635416030884 - }, - "confidence": 0.6294834017753601, - "label_id": 1 - }, - "h": 74, - "w": 51, - "x": 524, - "y": 358 - } - ], - "tensors": [ - { - "confidence": 0.6294834017753601, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1833304000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.683455228805542, - "y_min": 0.787131667137146, - "x_max": 0.7478116750717163, - "y_max": 0.9984563589096069 - }, - "confidence": 0.8601303100585938, - "label_id": 1 - }, - "h": 91, - "w": 49, - "x": 525, - "y": 340 - } - ], - "tensors": [ - { - "confidence": 0.8601303100585938, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1916636000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.683600902557373, - "y_min": 0.7701365947723389, - "x_max": 0.750867486000061, - "y_max": 0.9979418516159058 - }, - "confidence": 0.9280875325202942, - "label_id": 1 - }, - "h": 98, - "w": 52, - "x": 525, - "y": 333 - } - ], - "tensors": [ - { - "confidence": 0.9280875325202942, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1999968000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6832555532455444, - "y_min": 0.7529524564743042, - "x_max": 0.7522001266479492, - "y_max": 0.9987977743148804 - }, - "confidence": 0.927311897277832, - "label_id": 1 - }, - "h": 106, - "w": 53, - "x": 525, - "y": 325 - } - ], - "tensors": [ - { - "confidence": 0.927311897277832, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2083300000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6832446455955505, - "y_min": 0.7441677451133728, - "x_max": 0.7576422095298767, - "y_max": 0.9894292950630188 - }, - "confidence": 0.951309084892273, - "label_id": 1 - }, - "h": 106, - "w": 57, - "x": 525, - "y": 321 - } - ], - "tensors": [ - { - "confidence": 0.951309084892273, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2166632000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.68604975938797, - "y_min": 0.7247669100761414, - "x_max": 0.757122814655304, - "y_max": 0.9735121130943298 - }, - "confidence": 0.9686020612716675, - "label_id": 1 - }, - "h": 108, - "w": 54, - "x": 527, - "y": 313 - } - ], - "tensors": [ - { - "confidence": 0.9686020612716675, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2249964000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6904279589653015, - "y_min": 0.7114542126655579, - "x_max": 0.7573937773704529, - "y_max": 0.9489458203315735 - }, - "confidence": 0.9016656875610352, - "label_id": 1 - }, - "h": 103, - "w": 52, - "x": 530, - "y": 307 - } - ], - "tensors": [ - { - "confidence": 0.9016656875610352, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2333296000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6942427754402161, - "y_min": 0.7033036351203918, - "x_max": 0.7553828358650208, - "y_max": 0.8973957896232605 - }, - "confidence": 0.8900401592254639, - "label_id": 1 - }, - "h": 84, - "w": 47, - "x": 533, - "y": 304 - } - ], - "tensors": [ - { - "confidence": 0.8900401592254639, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2416628000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6978124380111694, - "y_min": 0.6883007287979126, - "x_max": 0.7573485374450684, - "y_max": 0.875929594039917 - }, - "confidence": 0.8667184710502625, - "label_id": 1 - }, - "h": 81, - "w": 46, - "x": 536, - "y": 297 - } - ], - "tensors": [ - { - "confidence": 0.8667184710502625, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2499960000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6973814964294434, - "y_min": 0.6681960225105286, - "x_max": 0.7628993988037109, - "y_max": 0.9051385521888733 - }, - "confidence": 0.6548436880111694, - "label_id": 1 - }, - "h": 102, - "w": 50, - "x": 536, - "y": 289 - } - ], - "tensors": [ - { - "confidence": 0.6548436880111694, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2583292000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6956170201301575, - "y_min": 0.6510389447212219, - "x_max": 0.7642548680305481, - "y_max": 0.8986994624137878 - }, - "confidence": 0.6839810609817505, - "label_id": 1 - }, - "h": 107, - "w": 53, - "x": 534, - "y": 281 - } - ], - "tensors": [ - { - "confidence": 0.6839810609817505, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2666624000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7024138569831848, - "y_min": 0.6492985486984253, - "x_max": 0.7640038132667542, - "y_max": 0.8508652448654175 - }, - "confidence": 0.6671476364135742, - "label_id": 1 - }, - "h": 88, - "w": 48, - "x": 539, - "y": 280 - } - ], - "tensors": [ - { - "confidence": 0.6671476364135742, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2749956000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7056794166564941, - "y_min": 0.6312656402587891, - "x_max": 0.7669720649719238, - "y_max": 0.8299833536148071 - }, - "confidence": 0.9200981259346008, - "label_id": 1 - }, - "h": 86, - "w": 47, - "x": 542, - "y": 273 - } - ], - "tensors": [ - { - "confidence": 0.9200981259346008, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2833288000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7094249725341797, - "y_min": 0.6171458959579468, - "x_max": 0.7727304697036743, - "y_max": 0.8253974914550781 - }, - "confidence": 0.634685754776001, - "label_id": 1 - }, - "h": 90, - "w": 48, - "x": 545, - "y": 267 - } - ], - "tensors": [ - { - "confidence": 0.634685754776001, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2916620000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7092350721359253, - "y_min": 0.6104710102081299, - "x_max": 0.7733482122421265, - "y_max": 0.8216234445571899 - }, - "confidence": 0.7693196535110474, - "label_id": 1 - }, - "h": 91, - "w": 49, - "x": 545, - "y": 264 - } - ], - "tensors": [ - { - "confidence": 0.7693196535110474, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2999952000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7098239064216614, - "y_min": 0.6015931367874146, - "x_max": 0.7740373015403748, - "y_max": 0.8192803859710693 - }, - "confidence": 0.58549565076828, - "label_id": 1 - }, - "h": 94, - "w": 49, - "x": 545, - "y": 260 - } - ], - "tensors": [ - { - "confidence": 0.58549565076828, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3166616000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7187693119049072, - "y_min": 0.5737252235412598, - "x_max": 0.7778397798538208, - "y_max": 0.7852489948272705 - }, - "confidence": 0.5143183469772339, - "label_id": 1 - }, - "h": 91, - "w": 45, - "x": 552, - "y": 248 - } - ], - "tensors": [ - { - "confidence": 0.5143183469772339, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3249948000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7253412008285522, - "y_min": 0.5522810220718384, - "x_max": 0.783305287361145, - "y_max": 0.7603617906570435 - }, - "confidence": 0.7224569320678711, - "label_id": 1 - }, - "h": 89, - "w": 45, - "x": 557, - "y": 239 - } - ], - "tensors": [ - { - "confidence": 0.7224569320678711, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3333280000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7317022085189819, - "y_min": 0.5484567880630493, - "x_max": 0.7883855104446411, - "y_max": 0.7271184921264648 - }, - "confidence": 0.9818903207778931, - "label_id": 1 - }, - "h": 77, - "w": 43, - "x": 562, - "y": 237 - } - ], - "tensors": [ - { - "confidence": 0.9818903207778931, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3416612000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7372883558273315, - "y_min": 0.5409470796585083, - "x_max": 0.7887823581695557, - "y_max": 0.7027069330215454 - }, - "confidence": 0.8577883839607239, - "label_id": 1 - }, - "h": 70, - "w": 40, - "x": 566, - "y": 234 - } - ], - "tensors": [ - { - "confidence": 0.8577883839607239, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3499944000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7410135865211487, - "y_min": 0.5215580463409424, - "x_max": 0.7954019904136658, - "y_max": 0.691115140914917 - }, - "confidence": 0.8129976987838745, - "label_id": 1 - }, - "h": 74, - "w": 42, - "x": 569, - "y": 225 - } - ], - "tensors": [ - { - "confidence": 0.8129976987838745, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3583276000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.746177077293396, - "y_min": 0.5225647687911987, - "x_max": 0.7999571561813354, - "y_max": 0.6882461309432983 - }, - "confidence": 0.8982786536216736, - "label_id": 1 - }, - "h": 71, - "w": 41, - "x": 573, - "y": 226 - } - ], - "tensors": [ - { - "confidence": 0.8982786536216736, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3666608000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7465308904647827, - "y_min": 0.5088982582092285, - "x_max": 0.8079860210418701, - "y_max": 0.6892118453979492 - }, - "confidence": 0.9006739854812622, - "label_id": 1 - }, - "h": 78, - "w": 48, - "x": 573, - "y": 220 - } - ], - "tensors": [ - { - "confidence": 0.9006739854812622, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3749940000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7560437917709351, - "y_min": 0.4955936074256897, - "x_max": 0.8128681182861328, - "y_max": 0.6849269270896912 - }, - "confidence": 0.8902298212051392, - "label_id": 1 - }, - "h": 82, - "w": 43, - "x": 581, - "y": 214 - } - ], - "tensors": [ - { - "confidence": 0.8902298212051392, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3833272000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7638221383094788, - "y_min": 0.4877367913722992, - "x_max": 0.8224636912345886, - "y_max": 0.6864262223243713 - }, - "confidence": 0.8473277688026428, - "label_id": 1 - }, - "h": 86, - "w": 45, - "x": 587, - "y": 211 - } - ], - "tensors": [ - { - "confidence": 0.8473277688026428, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3916604000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7612079977989197, - "y_min": 0.4765152931213379, - "x_max": 0.8228948712348938, - "y_max": 0.6930429935455322 - }, - "confidence": 0.6922434568405151, - "label_id": 1 - }, - "h": 93, - "w": 47, - "x": 585, - "y": 206 - } - ], - "tensors": [ - { - "confidence": 0.6922434568405151, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3999936000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7600260376930237, - "y_min": 0.4642871618270874, - "x_max": 0.8323193192481995, - "y_max": 0.6960529088973999 - }, - "confidence": 0.6348036527633667, - "label_id": 1 - }, - "h": 100, - "w": 55, - "x": 584, - "y": 201 - } - ], - "tensors": [ - { - "confidence": 0.6348036527633667, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4249932000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.793422281742096, - "y_min": 0.4378095269203186, - "x_max": 0.8423773646354675, - "y_max": 0.6405870318412781 - }, - "confidence": 0.9644074440002441, - "label_id": 1 - }, - "h": 88, - "w": 38, - "x": 609, - "y": 189 - } - ], - "tensors": [ - { - "confidence": 0.9644074440002441, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4333264000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7964030504226685, - "y_min": 0.44299182295799255, - "x_max": 0.848788857460022, - "y_max": 0.6162917613983154 - }, - "confidence": 0.9073424935340881, - "label_id": 1 - }, - "h": 75, - "w": 40, - "x": 612, - "y": 191 - } - ], - "tensors": [ - { - "confidence": 0.9073424935340881, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4416596000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7999505996704102, - "y_min": 0.4296761751174927, - "x_max": 0.8537043333053589, - "y_max": 0.6069327592849731 - }, - "confidence": 0.9073823690414429, - "label_id": 1 - }, - "h": 76, - "w": 42, - "x": 614, - "y": 186 - } - ], - "tensors": [ - { - "confidence": 0.9073823690414429, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4499928000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.8048784136772156, - "y_min": 0.4277309477329254, - "x_max": 0.8599335551261902, - "y_max": 0.5919975638389587 - }, - "confidence": 0.7847642302513123, - "label_id": 1 - }, - "h": 71, - "w": 42, - "x": 618, - "y": 185 - } - ], - "tensors": [ - { - "confidence": 0.7847642302513123, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4583260000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.8112742900848389, - "y_min": 0.42043614387512207, - "x_max": 0.8658212423324585, - "y_max": 0.5937005281448364 - }, - "confidence": 0.8251606225967407, - "label_id": 1 - }, - "h": 74, - "w": 42, - "x": 623, - "y": 182 - } - ], - "tensors": [ - { - "confidence": 0.8251606225967407, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4666592000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.8178002238273621, - "y_min": 0.41338473558425903, - "x_max": 0.8735348582267761, - "y_max": 0.5900363326072693 - }, - "confidence": 0.9657706022262573, - "label_id": 1 - }, - "h": 76, - "w": 43, - "x": 628, - "y": 179 - } - ], - "tensors": [ - { - "confidence": 0.9657706022262573, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4749924000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.8261576294898987, - "y_min": 0.40377795696258545, - "x_max": 0.8855487704277039, - "y_max": 0.5847491025924683 - }, - "confidence": 0.8051931262016296, - "label_id": 1 - }, - "h": 79, - "w": 46, - "x": 634, - "y": 174 - } - ], - "tensors": [ - { - "confidence": 0.8051931262016296, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4833256000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.8350329399108887, - "y_min": 0.3869829475879669, - "x_max": 0.8909602165222168, - "y_max": 0.5895990133285522 - }, - "confidence": 0.8279067277908325, - "label_id": 1 - }, - "h": 88, - "w": 43, - "x": 641, - "y": 167 - } - ], - "tensors": [ - { - "confidence": 0.8279067277908325, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4916588000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.8355488777160645, - "y_min": 0.3944133520126343, - "x_max": 0.9007455110549927, - "y_max": 0.5855798125267029 - }, - "confidence": 0.6674150824546814, - "label_id": 1 - }, - "h": 83, - "w": 50, - "x": 642, - "y": 170 - } - ], - "tensors": [ - { - "confidence": 0.6674150824546814, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5166584000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.8540040850639343, - "y_min": 0.37564727663993835, - "x_max": 0.910390317440033, - "y_max": 0.5681222081184387 - }, - "confidence": 0.6667394042015076, - "label_id": 1 - }, - "h": 83, - "w": 43, - "x": 656, - "y": 162 - } - ], - "tensors": [ - { - "confidence": 0.6667394042015076, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5249916000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.8664734363555908, - "y_min": 0.36737266182899475, - "x_max": 0.9125837087631226, - "y_max": 0.5437213182449341 - }, - "confidence": 0.8699319362640381, - "label_id": 1 - }, - "h": 76, - "w": 36, - "x": 665, - "y": 159 - } - ], - "tensors": [ - { - "confidence": 0.8699319362640381, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5333248000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.8701801896095276, - "y_min": 0.3528415262699127, - "x_max": 0.9201374650001526, - "y_max": 0.5304938554763794 - }, - "confidence": 0.9759781360626221, - "label_id": 1 - }, - "h": 77, - "w": 39, - "x": 668, - "y": 152 - } - ], - "tensors": [ - { - "confidence": 0.9759781360626221, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5416580000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.8758715987205505, - "y_min": 0.3517833948135376, - "x_max": 0.9223876595497131, - "y_max": 0.5213840007781982 - }, - "confidence": 0.928128719329834, - "label_id": 1 - }, - "h": 73, - "w": 35, - "x": 673, - "y": 152 - } - ], - "tensors": [ - { - "confidence": 0.928128719329834, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5499912000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.8702958822250366, - "y_min": 0.34546732902526855, - "x_max": 0.9282131195068359, - "y_max": 0.52052903175354 - }, - "confidence": 0.7125293612480164, - "label_id": 1 - }, - "h": 76, - "w": 45, - "x": 668, - "y": 149 - } - ], - "tensors": [ - { - "confidence": 0.7125293612480164, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5583244000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.8830148577690125, - "y_min": 0.342130184173584, - "x_max": 0.9376000761985779, - "y_max": 0.5108840465545654 - }, - "confidence": 0.9326930046081543, - "label_id": 1 - }, - "h": 73, - "w": 42, - "x": 678, - "y": 148 - } - ], - "tensors": [ - { - "confidence": 0.9326930046081543, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5666576000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.8888958096504211, - "y_min": 0.3362312614917755, - "x_max": 0.9449993968009949, - "y_max": 0.5033485889434814 - }, - "confidence": 0.9043325781822205, - "label_id": 1 - }, - "h": 72, - "w": 43, - "x": 683, - "y": 145 - } - ], - "tensors": [ - { - "confidence": 0.9043325781822205, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5749908000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.8988162279129028, - "y_min": 0.3228757381439209, - "x_max": 0.9546077251434326, - "y_max": 0.5100194811820984 - }, - "confidence": 0.7630113363265991, - "label_id": 1 - }, - "h": 81, - "w": 43, - "x": 690, - "y": 139 - } - ], - "tensors": [ - { - "confidence": 0.7630113363265991, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5833240000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.9052613973617554, - "y_min": 0.3268545866012573, - "x_max": 0.9607596397399902, - "y_max": 0.5165212154388428 - }, - "confidence": 0.8265350461006165, - "label_id": 1 - }, - "h": 82, - "w": 43, - "x": 695, - "y": 141 - } - ], - "tensors": [ - { - "confidence": 0.8265350461006165, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6083236000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.9133073091506958, - "y_min": 0.3186033368110657, - "x_max": 0.9737205505371094, - "y_max": 0.4934609532356262 - }, - "confidence": 0.7388848066329956, - "label_id": 1 - }, - "h": 75, - "w": 47, - "x": 701, - "y": 138 - } - ], - "tensors": [ - { - "confidence": 0.7388848066329956, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6166568000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.9246581196784973, - "y_min": 0.3043941855430603, - "x_max": 0.9762004017829895, - "y_max": 0.4826813340187073 - }, - "confidence": 0.7867417931556702, - "label_id": 1 - }, - "h": 78, - "w": 40, - "x": 710, - "y": 131 - } - ], - "tensors": [ - { - "confidence": 0.7867417931556702, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6249900000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.9278860688209534, - "y_min": 0.29626408219337463, - "x_max": 0.9816299080848694, - "y_max": 0.4776894152164459 - }, - "confidence": 0.7828896641731262, - "label_id": 1 - }, - "h": 78, - "w": 41, - "x": 713, - "y": 128 - } - ], - "tensors": [ - { - "confidence": 0.7828896641731262, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6333232000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.9321361780166626, - "y_min": 0.29067856073379517, - "x_max": 0.982731819152832, - "y_max": 0.4621286392211914 - }, - "confidence": 0.9645175933837891, - "label_id": 1 - }, - "h": 74, - "w": 39, - "x": 716, - "y": 126 - } - ], - "tensors": [ - { - "confidence": 0.9645175933837891, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6416564000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.9319441318511963, - "y_min": 0.28902244567871094, - "x_max": 0.9850153923034668, - "y_max": 0.4589899182319641 - }, - "confidence": 0.7262570261955261, - "label_id": 1 - }, - "h": 73, - "w": 40, - "x": 716, - "y": 125 - } - ], - "tensors": [ - { - "confidence": 0.7262570261955261, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6499896000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.9300705194473267, - "y_min": 0.261774480342865, - "x_max": 0.9973998069763184, - "y_max": 0.46789276599884033 - }, - "confidence": 0.5797560214996338, - "label_id": 1 - }, - "h": 89, - "w": 52, - "x": 714, - "y": 113 - } - ], - "tensors": [ - { - "confidence": 0.5797560214996338, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6583228000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.9475647211074829, - "y_min": 0.26791656017303467, - "x_max": 0.9966084957122803, - "y_max": 0.44728755950927734 - }, - "confidence": 0.5424327254295349, - "label_id": 1 - }, - "h": 77, - "w": 37, - "x": 728, - "y": 116 - } - ], - "tensors": [ - { - "confidence": 0.5424327254295349, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 13916444000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.11596640944480896, - "y_min": 0.019203782081604004, - "x_max": 1.00587797164917, - "y_max": 0.9972268342971802 - }, - "confidence": 0.5399076342582703, - "label_id": 2 - }, - "h": 423, - "w": 679, - "x": 89, - "y": 8 - } - ], - "tensors": [ - { - "confidence": 0.5399076342582703, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14333104000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.12354929745197296, - "y_min": 0.8424254655838013, - "x_max": 0.34599506855010986, - "y_max": 1.0025250911712646 - }, - "confidence": 0.6707731485366821, - "label_id": 2 - }, - "h": 68, - "w": 171, - "x": 95, - "y": 364 - } - ], - "tensors": [ - { - "confidence": 0.6707731485366821, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14416436000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1249007135629654, - "y_min": 0.814952552318573, - "x_max": 0.35160624980926514, - "y_max": 1.0036942958831787 - }, - "confidence": 0.7518407106399536, - "label_id": 2 - }, - "h": 80, - "w": 174, - "x": 96, - "y": 352 - } - ], - "tensors": [ - { - "confidence": 0.7518407106399536, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14499768000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.12201898545026779, - "y_min": 0.784342348575592, - "x_max": 0.3558673560619354, - "y_max": 0.9973203539848328 - }, - "confidence": 0.8715056777000427, - "label_id": 2 - }, - "h": 92, - "w": 179, - "x": 94, - "y": 339 - } - ], - "tensors": [ - { - "confidence": 0.8715056777000427, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14583100000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.11370580643415451, - "y_min": 0.7612596750259399, - "x_max": 0.3590538799762726, - "y_max": 0.9961638450622559 - }, - "confidence": 0.8592389822006226, - "label_id": 2 - }, - "h": 101, - "w": 189, - "x": 87, - "y": 329 - } - ], - "tensors": [ - { - "confidence": 0.8592389822006226, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14666432000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.11230173707008362, - "y_min": 0.7259582877159119, - "x_max": 0.3670547902584076, - "y_max": 1.0007786750793457 - }, - "confidence": 0.6108102202415466, - "label_id": 2 - }, - "h": 118, - "w": 196, - "x": 86, - "y": 314 - } - ], - "tensors": [ - { - "confidence": 0.6108102202415466, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14749764000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.10201224684715271, - "y_min": 0.7005279064178467, - "x_max": 0.3687931001186371, - "y_max": 0.9958691596984863 - }, - "confidence": 0.8610527515411377, - "label_id": 2 - }, - "h": 127, - "w": 205, - "x": 78, - "y": 303 - } - ], - "tensors": [ - { - "confidence": 0.8610527515411377, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14833096000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.10744209587574005, - "y_min": 0.6789625287055969, - "x_max": 0.3779268264770508, - "y_max": 1.0000035762786865 - }, - "confidence": 0.9127089381217957, - "label_id": 2 - }, - "h": 139, - "w": 207, - "x": 83, - "y": 293 - } - ], - "tensors": [ - { - "confidence": 0.9127089381217957, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14916428000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.10694557428359985, - "y_min": 0.648249089717865, - "x_max": 0.3799184560775757, - "y_max": 1.0021778345108032 - }, - "confidence": 0.9617993235588074, - "label_id": 2 - }, - "h": 152, - "w": 210, - "x": 82, - "y": 280 - } - ], - "tensors": [ - { - "confidence": 0.9617993235588074, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14999760000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.11665080487728119, - "y_min": 0.6377010345458984, - "x_max": 0.3768237829208374, - "y_max": 1.000298023223877 - }, - "confidence": 0.9927833080291748, - "label_id": 2 - }, - "h": 157, - "w": 199, - "x": 90, - "y": 275 - } - ], - "tensors": [ - { - "confidence": 0.9927833080291748, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15083092000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.11942803859710693, - "y_min": 0.6142627596855164, - "x_max": 0.37959182262420654, - "y_max": 1.0005748271942139 - }, - "confidence": 0.9954034090042114, - "label_id": 2 - }, - "h": 167, - "w": 200, - "x": 92, - "y": 265 - } - ], - "tensors": [ - { - "confidence": 0.9954034090042114, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15166424000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.11778374016284943, - "y_min": 0.5890892148017883, - "x_max": 0.37694019079208374, - "y_max": 0.9978364109992981 - }, - "confidence": 0.9948791265487671, - "label_id": 2 - }, - "h": 177, - "w": 199, - "x": 90, - "y": 254 - } - ], - "tensors": [ - { - "confidence": 0.9948791265487671, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15249756000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.11633364856243134, - "y_min": 0.5611193180084229, - "x_max": 0.37818074226379395, - "y_max": 0.9985551834106445 - }, - "confidence": 0.9884049892425537, - "label_id": 2 - }, - "h": 189, - "w": 201, - "x": 89, - "y": 242 - } - ], - "tensors": [ - { - "confidence": 0.9884049892425537, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15333088000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.11545005440711975, - "y_min": 0.5469850301742554, - "x_max": 0.37325653433799744, - "y_max": 1.0026047229766846 - }, - "confidence": 0.9741663932800293, - "label_id": 2 - }, - "h": 196, - "w": 198, - "x": 89, - "y": 236 - } - ], - "tensors": [ - { - "confidence": 0.9741663932800293, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15416420000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1327839493751526, - "y_min": 0.5260467529296875, - "x_max": 0.3650442361831665, - "y_max": 1.0008655786514282 - }, - "confidence": 0.9840590953826904, - "label_id": 2 - }, - "h": 205, - "w": 178, - "x": 102, - "y": 227 - } - ], - "tensors": [ - { - "confidence": 0.9840590953826904, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15499752000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1357005536556244, - "y_min": 0.5031139850616455, - "x_max": 0.3617941737174988, - "y_max": 0.9994630813598633 - }, - "confidence": 0.9928669929504395, - "label_id": 2 - }, - "h": 215, - "w": 174, - "x": 104, - "y": 217 - } - ], - "tensors": [ - { - "confidence": 0.9928669929504395, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15583084000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.14232614636421204, - "y_min": 0.4963996410369873, - "x_max": 0.3560277223587036, - "y_max": 0.9926905632019043 - }, - "confidence": 0.996005117893219, - "label_id": 2 - }, - "h": 215, - "w": 164, - "x": 109, - "y": 214 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.36816641688346863, - "y_min": 0.053846269845962524, - "x_max": 0.9435077905654907, - "y_max": 0.7589074373245239 - }, - "confidence": 0.7171570062637329, - "label_id": 2 - }, - "h": 305, - "w": 442, - "x": 283, - "y": 23 - } - ], - "tensors": [ - { - "confidence": 0.996005117893219, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.7171570062637329, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15666416000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.14830967783927917, - "y_min": 0.4742969870567322, - "x_max": 0.3563614785671234, - "y_max": 0.9999963641166687 - }, - "confidence": 0.9980700612068176, - "label_id": 2 - }, - "h": 227, - "w": 160, - "x": 114, - "y": 205 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.37656158208847046, - "y_min": 0.03842857480049133, - "x_max": 0.9512718319892883, - "y_max": 0.886086106300354 - }, - "confidence": 0.6958434581756592, - "label_id": 2 - }, - "h": 366, - "w": 442, - "x": 289, - "y": 17 - } - ], - "tensors": [ - { - "confidence": 0.9980700612068176, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.6958434581756592, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15749748000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.15359345078468323, - "y_min": 0.454115092754364, - "x_max": 0.35834595561027527, - "y_max": 0.9817675948143005 - }, - "confidence": 0.9975983500480652, - "label_id": 2 - }, - "h": 228, - "w": 157, - "x": 118, - "y": 196 - } - ], - "tensors": [ - { - "confidence": 0.9975983500480652, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15833080000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.15890049934387207, - "y_min": 0.43430987000465393, - "x_max": 0.3497201204299927, - "y_max": 0.9478054046630859 - }, - "confidence": 0.9978967905044556, - "label_id": 2 - }, - "h": 221, - "w": 147, - "x": 122, - "y": 188 - } - ], - "tensors": [ - { - "confidence": 0.9978967905044556, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15916412000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.16112689673900604, - "y_min": 0.423270583152771, - "x_max": 0.3455852270126343, - "y_max": 0.9355126619338989 - }, - "confidence": 0.9974404573440552, - "label_id": 2 - }, - "h": 221, - "w": 141, - "x": 124, - "y": 183 - } - ], - "tensors": [ - { - "confidence": 0.9974404573440552, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15999744000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.16597715020179749, - "y_min": 0.40152478218078613, - "x_max": 0.3381536304950714, - "y_max": 0.907120943069458 - }, - "confidence": 0.9992467164993286, - "label_id": 2 - }, - "h": 219, - "w": 133, - "x": 127, - "y": 173 - } - ], - "tensors": [ - { - "confidence": 0.9992467164993286, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16083076000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.16594967246055603, - "y_min": 0.3892979621887207, - "x_max": 0.335437148809433, - "y_max": 0.8842259645462036 - }, - "confidence": 0.9986107349395752, - "label_id": 2 - }, - "h": 214, - "w": 131, - "x": 127, - "y": 168 - } - ], - "tensors": [ - { - "confidence": 0.9986107349395752, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16166408000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1622767448425293, - "y_min": 0.37051695585250854, - "x_max": 0.3325601816177368, - "y_max": 0.863061249256134 - }, - "confidence": 0.9981282353401184, - "label_id": 2 - }, - "h": 213, - "w": 130, - "x": 125, - "y": 160 - } - ], - "tensors": [ - { - "confidence": 0.9981282353401184, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16249740000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1600649058818817, - "y_min": 0.3571774363517761, - "x_max": 0.3303433060646057, - "y_max": 0.8324565291404724 - }, - "confidence": 0.9998267292976379, - "label_id": 2 - }, - "h": 206, - "w": 131, - "x": 123, - "y": 154 - } - ], - "tensors": [ - { - "confidence": 0.9998267292976379, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16333072000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.15725673735141754, - "y_min": 0.3468477725982666, - "x_max": 0.3290403485298157, - "y_max": 0.8079231977462769 - }, - "confidence": 0.9999066591262817, - "label_id": 2 - }, - "h": 199, - "w": 132, - "x": 121, - "y": 150 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.2916393578052521, - "y_min": 0.07992970943450928, - "x_max": 0.9590095281600952, - "y_max": 0.836105465888977 - }, - "confidence": 0.6244098544120789, - "label_id": 2 - }, - "h": 326, - "w": 513, - "x": 224, - "y": 35 - } - ], - "tensors": [ - { - "confidence": 0.9999066591262817, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.6244098544120789, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16416404000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.15063917636871338, - "y_min": 0.3292410373687744, - "x_max": 0.32763391733169556, - "y_max": 0.7840467691421509 - }, - "confidence": 0.999896764755249, - "label_id": 2 - }, - "h": 197, - "w": 136, - "x": 116, - "y": 142 - } - ], - "tensors": [ - { - "confidence": 0.999896764755249, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16499736000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1435127705335617, - "y_min": 0.3213016986846924, - "x_max": 0.32459068298339844, - "y_max": 0.7735633850097656 - }, - "confidence": 0.9999921321868896, - "label_id": 2 - }, - "h": 195, - "w": 139, - "x": 110, - "y": 139 - } - ], - "tensors": [ - { - "confidence": 0.9999921321868896, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16583068000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.13695907592773438, - "y_min": 0.3108031153678894, - "x_max": 0.32061851024627686, - "y_max": 0.7566444277763367 - }, - "confidence": 0.9999939203262329, - "label_id": 2 - }, - "h": 193, - "w": 141, - "x": 105, - "y": 134 - } - ], - "tensors": [ - { - "confidence": 0.9999939203262329, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16666400000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.12993483245372772, - "y_min": 0.30137327313423157, - "x_max": 0.31766730546951294, - "y_max": 0.737349271774292 - }, - "confidence": 0.9999949932098389, - "label_id": 2 - }, - "h": 189, - "w": 144, - "x": 100, - "y": 130 - } - ], - "tensors": [ - { - "confidence": 0.9999949932098389, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16749732000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.11788306385278702, - "y_min": 0.2895679771900177, - "x_max": 0.31424927711486816, - "y_max": 0.7207177877426147 - }, - "confidence": 0.9999935626983643, - "label_id": 2 - }, - "h": 186, - "w": 150, - "x": 91, - "y": 125 - } - ], - "tensors": [ - { - "confidence": 0.9999935626983643, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16833064000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1054857075214386, - "y_min": 0.28520679473876953, - "x_max": 0.31248632073402405, - "y_max": 0.7089840769767761 - }, - "confidence": 0.9999861717224121, - "label_id": 2 - }, - "h": 183, - "w": 159, - "x": 81, - "y": 123 - } - ], - "tensors": [ - { - "confidence": 0.9999861717224121, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16916396000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.08972586691379547, - "y_min": 0.27886930108070374, - "x_max": 0.3075578212738037, - "y_max": 0.6949174404144287 - }, - "confidence": 0.999972939491272, - "label_id": 2 - }, - "h": 180, - "w": 167, - "x": 69, - "y": 120 - } - ], - "tensors": [ - { - "confidence": 0.999972939491272, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16999728000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.07992282509803772, - "y_min": 0.2789849638938904, - "x_max": 0.3025186061859131, - "y_max": 0.6752256751060486 - }, - "confidence": 0.999988317489624, - "label_id": 2 - }, - "h": 171, - "w": 171, - "x": 61, - "y": 121 - } - ], - "tensors": [ - { - "confidence": 0.999988317489624, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17083060000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.07284160703420639, - "y_min": 0.2735762596130371, - "x_max": 0.29544904828071594, - "y_max": 0.6568424105644226 - }, - "confidence": 0.999994158744812, - "label_id": 2 - }, - "h": 166, - "w": 171, - "x": 56, - "y": 118 - } - ], - "tensors": [ - { - "confidence": 0.999994158744812, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17166392000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.06546320021152496, - "y_min": 0.26595205068588257, - "x_max": 0.2877064347267151, - "y_max": 0.6416342854499817 - }, - "confidence": 0.9999986886978149, - "label_id": 2 - }, - "h": 162, - "w": 171, - "x": 50, - "y": 115 - } - ], - "tensors": [ - { - "confidence": 0.9999986886978149, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17249724000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.055775485932826996, - "y_min": 0.26049840450286865, - "x_max": 0.2822268307209015, - "y_max": 0.6367597579956055 - }, - "confidence": 0.9999972581863403, - "label_id": 2 - }, - "h": 162, - "w": 174, - "x": 43, - "y": 113 - } - ], - "tensors": [ - { - "confidence": 0.9999972581863403, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17333056000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.043870508670806885, - "y_min": 0.2601318061351776, - "x_max": 0.27794164419174194, - "y_max": 0.6270712614059448 - }, - "confidence": 0.9999901056289673, - "label_id": 2 - }, - "h": 159, - "w": 179, - "x": 34, - "y": 112 - } - ], - "tensors": [ - { - "confidence": 0.9999901056289673, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17416388000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.030381090939044952, - "y_min": 0.2578715980052948, - "x_max": 0.2703300714492798, - "y_max": 0.6141258478164673 - }, - "confidence": 0.999955415725708, - "label_id": 2 - }, - "h": 154, - "w": 185, - "x": 23, - "y": 111 - } - ], - "tensors": [ - { - "confidence": 0.999955415725708, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17499720000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.01892031729221344, - "y_min": 0.2529815137386322, - "x_max": 0.2617058753967285, - "y_max": 0.6005010604858398 - }, - "confidence": 0.999988317489624, - "label_id": 2 - }, - "h": 150, - "w": 186, - "x": 15, - "y": 109 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.3566780984401703, - "y_min": 0.04786303639411926, - "x_max": 0.966240406036377, - "y_max": 0.8461965322494507 - }, - "confidence": 0.53726726770401, - "label_id": 2 - }, - "h": 345, - "w": 468, - "x": 274, - "y": 21 - } - ], - "tensors": [ - { - "confidence": 0.999988317489624, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.53726726770401, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17583052000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.006406545639038086, - "y_min": 0.25011375546455383, - "x_max": 0.25181493163108826, - "y_max": 0.594420313835144 - }, - "confidence": 0.9999843835830688, - "label_id": 2 - }, - "h": 149, - "w": 188, - "x": 5, - "y": 108 - } - ], - "tensors": [ - { - "confidence": 0.9999843835830688, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17666384000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0034183859825134277, - "y_min": 0.24995212256908417, - "x_max": 0.24484217166900635, - "y_max": 0.5859204530715942 - }, - "confidence": 0.9999728202819824, - "label_id": 2 - }, - "h": 145, - "w": 185, - "x": 3, - "y": 108 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.6444863677024841, - "y_min": 0.06924453377723694, - "x_max": 1.0005388259887695, - "y_max": 0.7056286334991455 - }, - "confidence": 0.6336398720741272, - "label_id": 2 - }, - "h": 275, - "w": 273, - "x": 495, - "y": 30 - } - ], - "tensors": [ - { - "confidence": 0.9999728202819824, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.6336398720741272, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17749716000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0014565661549568176, - "y_min": 0.247770756483078, - "x_max": 0.23315390944480896, - "y_max": 0.5775051116943359 - }, - "confidence": 0.999992847442627, - "label_id": 2 - }, - "h": 142, - "w": 178, - "x": 1, - "y": 107 - } - ], - "tensors": [ - { - "confidence": 0.999992847442627, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17833048000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -4.07099723815918e-05, - "y_min": 0.2451421618461609, - "x_max": 0.22364945709705353, - "y_max": 0.5643712878227234 - }, - "confidence": 0.9999935626983643, - "label_id": 2 - }, - "h": 138, - "w": 172, - "x": 0, - "y": 106 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.39657267928123474, - "y_min": 0.06359893083572388, - "x_max": 0.9582223892211914, - "y_max": 0.7276898622512817 - }, - "confidence": 0.7043145895004272, - "label_id": 2 - }, - "h": 287, - "w": 431, - "x": 305, - "y": 27 - } - ], - "tensors": [ - { - "confidence": 0.9999935626983643, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.7043145895004272, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17916380000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -0.0005242079496383667, - "y_min": 0.24142062664031982, - "x_max": 0.21571695804595947, - "y_max": 0.5588368773460388 - }, - "confidence": 0.9999877214431763, - "label_id": 2 - }, - "h": 137, - "w": 166, - "x": 0, - "y": 104 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.3979666829109192, - "y_min": 0.04126647114753723, - "x_max": 0.9645771384239197, - "y_max": 0.7529500722885132 - }, - "confidence": 0.8434672355651855, - "label_id": 2 - }, - "h": 307, - "w": 435, - "x": 306, - "y": 18 - } - ], - "tensors": [ - { - "confidence": 0.9999877214431763, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.8434672355651855, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17999712000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -0.00018643587827682495, - "y_min": 0.2359994500875473, - "x_max": 0.20601454377174377, - "y_max": 0.5536378026008606 - }, - "confidence": 0.999954342842102, - "label_id": 2 - }, - "h": 137, - "w": 158, - "x": 0, - "y": 102 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.36403825879096985, - "y_min": 0.03846672177314758, - "x_max": 0.9718368053436279, - "y_max": 0.7574758529663086 - }, - "confidence": 0.9011961221694946, - "label_id": 2 - }, - "h": 310, - "w": 466, - "x": 280, - "y": 17 - } - ], - "tensors": [ - { - "confidence": 0.999954342842102, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.9011961221694946, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18083044000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0004027560353279114, - "y_min": 0.23479411005973816, - "x_max": 0.1985584795475006, - "y_max": 0.546837329864502 - }, - "confidence": 0.9998503923416138, - "label_id": 2 - }, - "h": 135, - "w": 152, - "x": 0, - "y": 101 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.36456364393234253, - "y_min": 0.054398298263549805, - "x_max": 0.9702922701835632, - "y_max": 0.778744101524353 - }, - "confidence": 0.657283365726471, - "label_id": 2 - }, - "h": 312, - "w": 465, - "x": 280, - "y": 24 - } - ], - "tensors": [ - { - "confidence": 0.9998503923416138, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.657283365726471, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18166376000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0004487261176109314, - "y_min": 0.22636054456233978, - "x_max": 0.18768197298049927, - "y_max": 0.5432202816009521 - }, - "confidence": 0.9998462200164795, - "label_id": 2 - }, - "h": 137, - "w": 144, - "x": 0, - "y": 98 - } - ], - "tensors": [ - { - "confidence": 0.9998462200164795, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18249708000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0021575093269348145, - "y_min": 0.22176212072372437, - "x_max": 0.17442119121551514, - "y_max": 0.5293576121330261 - }, - "confidence": 0.9989789724349976, - "label_id": 2 - }, - "h": 133, - "w": 132, - "x": 2, - "y": 96 - } - ], - "tensors": [ - { - "confidence": 0.9989789724349976, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18333040000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -0.0031266361474990845, - "y_min": 0.22026404738426208, - "x_max": 0.16523411870002747, - "y_max": 0.5301101207733154 - }, - "confidence": 0.9972135424613953, - "label_id": 2 - }, - "h": 134, - "w": 127, - "x": 0, - "y": 95 - } - ], - "tensors": [ - { - "confidence": 0.9972135424613953, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18416372000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -0.002452939748764038, - "y_min": 0.22297357022762299, - "x_max": 0.15728577971458435, - "y_max": 0.5269065499305725 - }, - "confidence": 0.9975874423980713, - "label_id": 2 - }, - "h": 132, - "w": 121, - "x": 0, - "y": 96 - } - ], - "tensors": [ - { - "confidence": 0.9975874423980713, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18499704000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.00047751516103744507, - "y_min": 0.22313344478607178, - "x_max": 0.14348477125167847, - "y_max": 0.5240911841392517 - }, - "confidence": 0.9912697076797485, - "label_id": 2 - }, - "h": 130, - "w": 110, - "x": 0, - "y": 96 - } - ], - "tensors": [ - { - "confidence": 0.9912697076797485, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18583036000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0009466856718063354, - "y_min": 0.23165319859981537, - "x_max": 0.13174189627170563, - "y_max": 0.5227310061454773 - }, - "confidence": 0.8885208964347839, - "label_id": 2 - }, - "h": 126, - "w": 100, - "x": 1, - "y": 100 - } - ], - "tensors": [ - { - "confidence": 0.8885208964347839, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18666368000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -0.0006035938858985901, - "y_min": 0.24140207469463348, - "x_max": 0.1251387596130371, - "y_max": 0.51657634973526 - }, - "confidence": 0.7441190481185913, - "label_id": 2 - }, - "h": 119, - "w": 96, - "x": 0, - "y": 104 - } - ], - "tensors": [ - { - "confidence": 0.7441190481185913, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18749700000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0006059370934963226, - "y_min": 0.239722341299057, - "x_max": 0.11157597601413727, - "y_max": 0.515325665473938 - }, - "confidence": 0.8880211710929871, - "label_id": 2 - }, - "h": 119, - "w": 86, - "x": 0, - "y": 104 - } - ], - "tensors": [ - { - "confidence": 0.8880211710929871, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18833032000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.001440584659576416, - "y_min": 0.23769088089466095, - "x_max": 0.09910853207111359, - "y_max": 0.5193971395492554 - }, - "confidence": 0.6941346526145935, - "label_id": 2 - }, - "h": 121, - "w": 75, - "x": 1, - "y": 103 - } - ], - "tensors": [ - { - "confidence": 0.6941346526145935, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18916364000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -0.0005200617015361786, - "y_min": 0.23709367215633392, - "x_max": 0.08774614334106445, - "y_max": 0.5180805325508118 - }, - "confidence": 0.5993965864181519, - "label_id": 2 - }, - "h": 122, - "w": 67, - "x": 0, - "y": 102 - } - ], - "tensors": [ - { - "confidence": 0.5993965864181519, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18999696000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -0.000714913010597229, - "y_min": 0.2377401441335678, - "x_max": 0.07843541353940964, - "y_max": 0.5105568170547485 - }, - "confidence": 0.809007465839386, - "label_id": 2 - }, - "h": 118, - "w": 60, - "x": 0, - "y": 103 - } - ], - "tensors": [ - { - "confidence": 0.809007465839386, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19083028000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0008385665714740753, - "y_min": 0.24205249547958374, - "x_max": 0.06598681211471558, - "y_max": 0.5057999491691589 - }, - "confidence": 0.599037230014801, - "label_id": 2 - }, - "h": 114, - "w": 50, - "x": 1, - "y": 105 - } - ], - "tensors": [ - { - "confidence": 0.599037230014801, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19166360000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0013178102672100067, - "y_min": 0.2496914565563202, - "x_max": 0.05882628262042999, - "y_max": 0.4988504946231842 - }, - "confidence": 0.7784414887428284, - "label_id": 2 - }, - "h": 108, - "w": 44, - "x": 1, - "y": 108 - } - ], - "tensors": [ - { - "confidence": 0.7784414887428284, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19249692000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.002132358029484749, - "y_min": 0.27205389738082886, - "x_max": 0.04692695289850235, - "y_max": 0.49076080322265625 - }, - "confidence": 0.5858582854270935, - "label_id": 2 - }, - "h": 94, - "w": 34, - "x": 2, - "y": 118 - } - ], - "tensors": [ - { - "confidence": 0.5858582854270935, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19333024000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -0.0004920084029436111, - "y_min": 0.275369256734848, - "x_max": 0.038340166211128235, - "y_max": 0.4887489378452301 - }, - "confidence": 0.545562744140625, - "label_id": 2 - }, - "h": 92, - "w": 29, - "x": 0, - "y": 119 - } - ], - "tensors": [ - { - "confidence": 0.545562744140625, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 22332976000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.827362060546875, - "y_min": 0.29114580154418945, - "x_max": 0.9260216951370239, - "y_max": 0.4126254916191101 - }, - "confidence": 0.5569565296173096, - "label_id": 2 - }, - "h": 52, - "w": 76, - "x": 635, - "y": 126 - } - ], - "tensors": [ - { - "confidence": 0.5569565296173096, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40582684000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.003520183265209198, - "y_min": 0.09614640474319458, - "x_max": 0.05852079391479492, - "y_max": 0.2684183716773987 - }, - "confidence": 0.7313483953475952, - "label_id": 1 - }, - "h": 74, - "w": 42, - "x": 3, - "y": 42 - } - ], - "tensors": [ - { - "confidence": 0.7313483953475952, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40666016000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.007050374522805214, - "y_min": 0.10089847445487976, - "x_max": 0.06405963748693466, - "y_max": 0.2735617160797119 - }, - "confidence": 0.800372838973999, - "label_id": 1 - }, - "h": 74, - "w": 44, - "x": 5, - "y": 44 - } - ], - "tensors": [ - { - "confidence": 0.800372838973999, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40749348000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.015278883278369904, - "y_min": 0.0923706516623497, - "x_max": 0.073765330016613, - "y_max": 0.26726222038269043 - }, - "confidence": 0.9022138118743896, - "label_id": 1 - }, - "h": 75, - "w": 45, - "x": 12, - "y": 40 - } - ], - "tensors": [ - { - "confidence": 0.9022138118743896, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40832680000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.022376151755452156, - "y_min": 0.09247265756130219, - "x_max": 0.06860356032848358, - "y_max": 0.2647438049316406 - }, - "confidence": 0.9541775584220886, - "label_id": 1 - }, - "h": 74, - "w": 36, - "x": 17, - "y": 40 - } - ], - "tensors": [ - { - "confidence": 0.9541775584220886, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40916012000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.028638632968068123, - "y_min": 0.08783772587776184, - "x_max": 0.06252329051494598, - "y_max": 0.2630442678928375 - }, - "confidence": 0.7064143419265747, - "label_id": 1 - }, - "h": 76, - "w": 26, - "x": 22, - "y": 38 - } - ], - "tensors": [ - { - "confidence": 0.7064143419265747, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40999344000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.03887544572353363, - "y_min": 0.08765244483947754, - "x_max": 0.0701574981212616, - "y_max": 0.27115845680236816 - }, - "confidence": 0.8522809147834778, - "label_id": 1 - }, - "h": 79, - "w": 24, - "x": 30, - "y": 38 - } - ], - "tensors": [ - { - "confidence": 0.8522809147834778, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41082676000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.04498003423213959, - "y_min": 0.08891790360212326, - "x_max": 0.08996370434761047, - "y_max": 0.2605549693107605 - }, - "confidence": 0.9793604612350464, - "label_id": 1 - }, - "h": 75, - "w": 34, - "x": 35, - "y": 38 - } - ], - "tensors": [ - { - "confidence": 0.9793604612350464, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41166008000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.05017882212996483, - "y_min": 0.0889800563454628, - "x_max": 0.1023634672164917, - "y_max": 0.261782169342041 - }, - "confidence": 0.9697669148445129, - "label_id": 1 - }, - "h": 75, - "w": 40, - "x": 39, - "y": 38 - } - ], - "tensors": [ - { - "confidence": 0.9697669148445129, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41249340000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.05578610301017761, - "y_min": 0.08782751113176346, - "x_max": 0.11190468072891235, - "y_max": 0.2647019624710083 - }, - "confidence": 0.9666902422904968, - "label_id": 1 - }, - "h": 76, - "w": 43, - "x": 43, - "y": 38 - } - ], - "tensors": [ - { - "confidence": 0.9666902422904968, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41332672000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.06013341248035431, - "y_min": 0.08757153153419495, - "x_max": 0.11493924260139465, - "y_max": 0.2610611021518707 - }, - "confidence": 0.9735053777694702, - "label_id": 1 - }, - "h": 75, - "w": 42, - "x": 46, - "y": 38 - } - ], - "tensors": [ - { - "confidence": 0.9735053777694702, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41416004000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.06902659684419632, - "y_min": 0.08824954926967621, - "x_max": 0.10748405009508133, - "y_max": 0.2566310167312622 - }, - "confidence": 0.743285596370697, - "label_id": 1 - }, - "h": 73, - "w": 30, - "x": 53, - "y": 38 - } - ], - "tensors": [ - { - "confidence": 0.743285596370697, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41499336000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.07710953801870346, - "y_min": 0.08698607981204987, - "x_max": 0.10798504203557968, - "y_max": 0.26228195428848267 - }, - "confidence": 0.5720993280410767, - "label_id": 1 - }, - "h": 75, - "w": 24, - "x": 59, - "y": 38 - } - ], - "tensors": [ - { - "confidence": 0.5720993280410767, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41582668000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.08448268473148346, - "y_min": 0.08256705105304718, - "x_max": 0.11586420238018036, - "y_max": 0.2598867416381836 - }, - "confidence": 0.94560706615448, - "label_id": 1 - }, - "h": 76, - "w": 24, - "x": 65, - "y": 36 - } - ], - "tensors": [ - { - "confidence": 0.94560706615448, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41666000000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0896417647600174, - "y_min": 0.0827476903796196, - "x_max": 0.14263710379600525, - "y_max": 0.2597101926803589 - }, - "confidence": 0.9793663620948792, - "label_id": 1 - }, - "h": 76, - "w": 41, - "x": 69, - "y": 36 - } - ], - "tensors": [ - { - "confidence": 0.9793663620948792, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41749332000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.09771757572889328, - "y_min": 0.08314508199691772, - "x_max": 0.15318679809570312, - "y_max": 0.2552943825721741 - }, - "confidence": 0.9093460440635681, - "label_id": 1 - }, - "h": 74, - "w": 43, - "x": 75, - "y": 36 - } - ], - "tensors": [ - { - "confidence": 0.9093460440635681, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41832664000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.097109355032444, - "y_min": 0.08081871271133423, - "x_max": 0.15628035366535187, - "y_max": 0.25459712743759155 - }, - "confidence": 0.9800829291343689, - "label_id": 1 - }, - "h": 75, - "w": 45, - "x": 75, - "y": 35 - } - ], - "tensors": [ - { - "confidence": 0.9800829291343689, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41915996000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.10745184123516083, - "y_min": 0.07760567963123322, - "x_max": 0.15793658792972565, - "y_max": 0.2539300322532654 - }, - "confidence": 0.9863324761390686, - "label_id": 1 - }, - "h": 76, - "w": 38, - "x": 83, - "y": 34 - } - ], - "tensors": [ - { - "confidence": 0.9863324761390686, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41999328000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.11774111539125443, - "y_min": 0.0729341059923172, - "x_max": 0.14843998849391937, - "y_max": 0.25854355096817017 - }, - "confidence": 0.9116137027740479, - "label_id": 1 - }, - "h": 80, - "w": 24, - "x": 90, - "y": 32 - } - ], - "tensors": [ - { - "confidence": 0.9116137027740479, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42082660000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.13104873895645142, - "y_min": 0.08312395215034485, - "x_max": 0.15758538246154785, - "y_max": 0.251211017370224 - }, - "confidence": 0.5447486042976379, - "label_id": 1 - }, - "h": 73, - "w": 20, - "x": 101, - "y": 36 - } - ], - "tensors": [ - { - "confidence": 0.5447486042976379, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42165992000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.13294978439807892, - "y_min": 0.0708828791975975, - "x_max": 0.1706470102071762, - "y_max": 0.25432801246643066 - }, - "confidence": 0.9172146916389465, - "label_id": 1 - }, - "h": 79, - "w": 29, - "x": 102, - "y": 31 - } - ], - "tensors": [ - { - "confidence": 0.9172146916389465, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42249324000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1384216845035553, - "y_min": 0.06915633380413055, - "x_max": 0.1878308355808258, - "y_max": 0.24908126890659332 - }, - "confidence": 0.9754457473754883, - "label_id": 1 - }, - "h": 78, - "w": 38, - "x": 106, - "y": 30 - } - ], - "tensors": [ - { - "confidence": 0.9754457473754883, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42332656000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1423514038324356, - "y_min": 0.06932604312896729, - "x_max": 0.1978525072336197, - "y_max": 0.24401411414146423 - }, - "confidence": 0.94728022813797, - "label_id": 1 - }, - "h": 75, - "w": 43, - "x": 109, - "y": 30 - } - ], - "tensors": [ - { - "confidence": 0.94728022813797, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42415988000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.14545604586601257, - "y_min": 0.06837218999862671, - "x_max": 0.19828087091445923, - "y_max": 0.24140188097953796 - }, - "confidence": 0.9623384475708008, - "label_id": 1 - }, - "h": 74, - "w": 40, - "x": 112, - "y": 30 - } - ], - "tensors": [ - { - "confidence": 0.9623384475708008, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42499320000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.15949654579162598, - "y_min": 0.06967361271381378, - "x_max": 0.1966705620288849, - "y_max": 0.24714766442775726 - }, - "confidence": 0.9421710968017578, - "label_id": 1 - }, - "h": 77, - "w": 29, - "x": 122, - "y": 30 - } - ], - "tensors": [ - { - "confidence": 0.9421710968017578, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42582652000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.16708043217658997, - "y_min": 0.059558719396591187, - "x_max": 0.19617226719856262, - "y_max": 0.24868381023406982 - }, - "confidence": 0.813447892665863, - "label_id": 1 - }, - "h": 81, - "w": 23, - "x": 128, - "y": 26 - } - ], - "tensors": [ - { - "confidence": 0.813447892665863, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42665984000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1770205795764923, - "y_min": 0.06683304905891418, - "x_max": 0.20688790082931519, - "y_max": 0.24025678634643555 - }, - "confidence": 0.8465343117713928, - "label_id": 1 - }, - "h": 75, - "w": 23, - "x": 136, - "y": 29 - } - ], - "tensors": [ - { - "confidence": 0.8465343117713928, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42749316000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.17684851586818695, - "y_min": 0.06626953929662704, - "x_max": 0.22825394570827484, - "y_max": 0.23396548628807068 - }, - "confidence": 0.9355576038360596, - "label_id": 1 - }, - "h": 72, - "w": 39, - "x": 136, - "y": 29 - } - ], - "tensors": [ - { - "confidence": 0.9355576038360596, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42832648000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.185580313205719, - "y_min": 0.06710120290517807, - "x_max": 0.23801594972610474, - "y_max": 0.23169371485710144 - }, - "confidence": 0.8719622492790222, - "label_id": 1 - }, - "h": 71, - "w": 40, - "x": 143, - "y": 29 - } - ], - "tensors": [ - { - "confidence": 0.8719622492790222, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42915980000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.18934984505176544, - "y_min": 0.06351666152477264, - "x_max": 0.24492235481739044, - "y_max": 0.22783349454402924 - }, - "confidence": 0.9465517997741699, - "label_id": 1 - }, - "h": 71, - "w": 43, - "x": 145, - "y": 27 - } - ], - "tensors": [ - { - "confidence": 0.9465517997741699, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42999312000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.19826054573059082, - "y_min": 0.0634077787399292, - "x_max": 0.2433423399925232, - "y_max": 0.22424951195716858 - }, - "confidence": 0.9223278760910034, - "label_id": 1 - }, - "h": 70, - "w": 35, - "x": 152, - "y": 27 - } - ], - "tensors": [ - { - "confidence": 0.9223278760910034, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43082644000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.20872804522514343, - "y_min": 0.05233736336231232, - "x_max": 0.2391643524169922, - "y_max": 0.2301691621541977 - }, - "confidence": 0.8002424836158752, - "label_id": 1 - }, - "h": 76, - "w": 24, - "x": 160, - "y": 23 - } - ], - "tensors": [ - { - "confidence": 0.8002424836158752, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43165976000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.21424375474452972, - "y_min": 0.04551645368337631, - "x_max": 0.24572424590587616, - "y_max": 0.22501105070114136 - }, - "confidence": 0.8372902274131775, - "label_id": 1 - }, - "h": 77, - "w": 24, - "x": 165, - "y": 20 - } - ], - "tensors": [ - { - "confidence": 0.8372902274131775, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43249308000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.2207432985305786, - "y_min": 0.04236235469579697, - "x_max": 0.2584760785102844, - "y_max": 0.2220311164855957 - }, - "confidence": 0.9497457146644592, - "label_id": 1 - }, - "h": 78, - "w": 29, - "x": 170, - "y": 18 - } - ], - "tensors": [ - { - "confidence": 0.9497457146644592, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43332640000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.22296249866485596, - "y_min": 0.038034990429878235, - "x_max": 0.2679644823074341, - "y_max": 0.22160767018795013 - }, - "confidence": 0.8677589297294617, - "label_id": 1 - }, - "h": 80, - "w": 35, - "x": 171, - "y": 16 - } - ], - "tensors": [ - { - "confidence": 0.8677589297294617, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43415972000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.2253321409225464, - "y_min": 0.04360928386449814, - "x_max": 0.27870678901672363, - "y_max": 0.2192666232585907 - }, - "confidence": 0.9470476508140564, - "label_id": 1 - }, - "h": 76, - "w": 41, - "x": 173, - "y": 19 - } - ], - "tensors": [ - { - "confidence": 0.9470476508140564, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43499304000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.22942356765270233, - "y_min": 0.04060845077037811, - "x_max": 0.2780565619468689, - "y_max": 0.2132491022348404 - }, - "confidence": 0.8956233859062195, - "label_id": 1 - }, - "h": 74, - "w": 38, - "x": 176, - "y": 18 - } - ], - "tensors": [ - { - "confidence": 0.8956233859062195, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43582636000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.23967245221138, - "y_min": 0.02633826434612274, - "x_max": 0.27834299206733704, - "y_max": 0.2121078073978424 - }, - "confidence": 0.5786580443382263, - "label_id": 1 - }, - "h": 81, - "w": 30, - "x": 184, - "y": 11 - } - ], - "tensors": [ - { - "confidence": 0.5786580443382263, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43665968000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.25442785024642944, - "y_min": 0.026687629520893097, - "x_max": 0.284124493598938, - "y_max": 0.21455299854278564 - }, - "confidence": 0.7779613137245178, - "label_id": 1 - }, - "h": 81, - "w": 23, - "x": 195, - "y": 12 - } - ], - "tensors": [ - { - "confidence": 0.7779613137245178, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43749300000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.2591593861579895, - "y_min": 0.021057195961475372, - "x_max": 0.29092317819595337, - "y_max": 0.20710113644599915 - }, - "confidence": 0.8207446336746216, - "label_id": 1 - }, - "h": 80, - "w": 24, - "x": 199, - "y": 9 - } - ], - "tensors": [ - { - "confidence": 0.8207446336746216, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43832632000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.265623539686203, - "y_min": 0.022368110716342926, - "x_max": 0.30720213055610657, - "y_max": 0.19281572103500366 - }, - "confidence": 0.9772182106971741, - "label_id": 1 - }, - "h": 73, - "w": 32, - "x": 204, - "y": 10 - } - ], - "tensors": [ - { - "confidence": 0.9772182106971741, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43915964000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.2676101326942444, - "y_min": 0.022761516273021698, - "x_max": 0.31084901094436646, - "y_max": 0.19687843322753906 - }, - "confidence": 0.9722139239311218, - "label_id": 1 - }, - "h": 75, - "w": 33, - "x": 206, - "y": 10 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.10303474962711334, - "y_min": 0.8516966700553894, - "x_max": 0.2944148778915405, - "y_max": 1.0023001432418823 - }, - "confidence": 0.7828809022903442, - "label_id": 2 - }, - "h": 64, - "w": 147, - "x": 79, - "y": 368 - } - ], - "tensors": [ - { - "confidence": 0.9722139239311218, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.7828809022903442, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43999296000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.27379584312438965, - "y_min": 0.01969006657600403, - "x_max": 0.31614619493484497, - "y_max": 0.1831187754869461 - }, - "confidence": 0.9839940071105957, - "label_id": 1 - }, - "h": 70, - "w": 33, - "x": 210, - "y": 9 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.08434255421161652, - "y_min": 0.8253540396690369, - "x_max": 0.3013109564781189, - "y_max": 1.0052653551101685 - }, - "confidence": 0.8690185546875, - "label_id": 2 - }, - "h": 75, - "w": 166, - "x": 65, - "y": 357 - } - ], - "tensors": [ - { - "confidence": 0.9839940071105957, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.8690185546875, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44082628000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.2792358100414276, - "y_min": 0.009584739804267883, - "x_max": 0.31608036160469055, - "y_max": 0.18175002932548523 - }, - "confidence": 0.8530219197273254, - "label_id": 1 - }, - "h": 75, - "w": 29, - "x": 214, - "y": 4 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.08915093541145325, - "y_min": 0.7983525395393372, - "x_max": 0.30604496598243713, - "y_max": 1.0010695457458496 - }, - "confidence": 0.9764792323112488, - "label_id": 2 - }, - "h": 87, - "w": 167, - "x": 68, - "y": 345 - } - ], - "tensors": [ - { - "confidence": 0.8530219197273254, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.9764792323112488, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44165960000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.28407979011535645, - "y_min": 0.002706773579120636, - "x_max": 0.31977325677871704, - "y_max": 0.1762460470199585 - }, - "confidence": 0.9413458108901978, - "label_id": 1 - }, - "h": 75, - "w": 28, - "x": 218, - "y": 1 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.09309807419776917, - "y_min": 0.7758338451385498, - "x_max": 0.3174420893192291, - "y_max": 0.9965120553970337 - }, - "confidence": 0.9990536570549011, - "label_id": 2 - }, - "h": 95, - "w": 173, - "x": 71, - "y": 335 - } - ], - "tensors": [ - { - "confidence": 0.9413458108901978, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.9990536570549011, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44249292000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.29081493616104126, - "y_min": -0.0069022104144096375, - "x_max": 0.324205219745636, - "y_max": 0.18154531717300415 - }, - "confidence": 0.9403790831565857, - "label_id": 1 - }, - "h": 78, - "w": 26, - "x": 223, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.09307057410478592, - "y_min": 0.7559618353843689, - "x_max": 0.32171231508255005, - "y_max": 0.9982390999794006 - }, - "confidence": 0.9966351389884949, - "label_id": 2 - }, - "h": 104, - "w": 176, - "x": 71, - "y": 327 - } - ], - "tensors": [ - { - "confidence": 0.9403790831565857, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.9966351389884949, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44332624000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.2964043915271759, - "y_min": -0.0003037452697753906, - "x_max": 0.3379308879375458, - "y_max": 0.1687522530555725 - }, - "confidence": 0.9741271138191223, - "label_id": 1 - }, - "h": 73, - "w": 32, - "x": 228, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.09235934168100357, - "y_min": 0.7268028259277344, - "x_max": 0.32596927881240845, - "y_max": 0.9985591173171997 - }, - "confidence": 0.9987518787384033, - "label_id": 2 - }, - "h": 117, - "w": 179, - "x": 71, - "y": 314 - } - ], - "tensors": [ - { - "confidence": 0.9741271138191223, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.9987518787384033, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44415956000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.2996630072593689, - "y_min": -0.0004722177982330322, - "x_max": 0.3412056565284729, - "y_max": 0.15967386960983276 - }, - "confidence": 0.9673275947570801, - "label_id": 1 - }, - "h": 69, - "w": 32, - "x": 230, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.09393153339624405, - "y_min": 0.7049237489700317, - "x_max": 0.3319951891899109, - "y_max": 0.9963676929473877 - }, - "confidence": 0.9973854422569275, - "label_id": 2 - }, - "h": 125, - "w": 183, - "x": 72, - "y": 305 - } - ], - "tensors": [ - { - "confidence": 0.9673275947570801, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.9973854422569275, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44499288000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.3023771643638611, - "y_min": -0.001138843595981598, - "x_max": 0.3466936945915222, - "y_max": 0.15592274069786072 - }, - "confidence": 0.9862332344055176, - "label_id": 1 - }, - "h": 67, - "w": 34, - "x": 232, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.09151753038167953, - "y_min": 0.6774777173995972, - "x_max": 0.33974748849868774, - "y_max": 0.9992778301239014 - }, - "confidence": 0.9967327117919922, - "label_id": 2 - }, - "h": 139, - "w": 191, - "x": 70, - "y": 293 - } - ], - "tensors": [ - { - "confidence": 0.9862332344055176, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.9967327117919922, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44582620000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.30892443656921387, - "y_min": -0.004717707633972168, - "x_max": 0.3456929326057434, - "y_max": 0.15049003064632416 - }, - "confidence": 0.9558308124542236, - "label_id": 1 - }, - "h": 65, - "w": 28, - "x": 237, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.09714695811271667, - "y_min": 0.6524867415428162, - "x_max": 0.34563007950782776, - "y_max": 1.0013536214828491 - }, - "confidence": 0.9961705803871155, - "label_id": 2 - }, - "h": 150, - "w": 190, - "x": 75, - "y": 282 - } - ], - "tensors": [ - { - "confidence": 0.9558308124542236, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.9961705803871155, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44665952000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.316145658493042, - "y_min": -0.0028254762291908264, - "x_max": 0.3478916883468628, - "y_max": 0.14547988772392273 - }, - "confidence": 0.9660082459449768, - "label_id": 1 - }, - "h": 63, - "w": 24, - "x": 243, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.11022000014781952, - "y_min": 0.632098376750946, - "x_max": 0.3487919569015503, - "y_max": 0.9972622990608215 - }, - "confidence": 0.9974126219749451, - "label_id": 2 - }, - "h": 158, - "w": 183, - "x": 85, - "y": 273 - } - ], - "tensors": [ - { - "confidence": 0.9660082459449768, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.9974126219749451, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44749284000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.32010510563850403, - "y_min": -0.005685113370418549, - "x_max": 0.35274139046669006, - "y_max": 0.14770928025245667 - }, - "confidence": 0.8981993794441223, - "label_id": 1 - }, - "h": 64, - "w": 25, - "x": 246, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.11684470623731613, - "y_min": 0.6131628751754761, - "x_max": 0.3530047833919525, - "y_max": 0.9939368963241577 - }, - "confidence": 0.9990528225898743, - "label_id": 2 - }, - "h": 164, - "w": 181, - "x": 90, - "y": 265 - } - ], - "tensors": [ - { - "confidence": 0.8981993794441223, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.9990528225898743, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44832616000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.32345181703567505, - "y_min": -0.0029996484518051147, - "x_max": 0.35825276374816895, - "y_max": 0.14560502767562866 - }, - "confidence": 0.8194749355316162, - "label_id": 1 - }, - "h": 63, - "w": 27, - "x": 248, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.11367812752723694, - "y_min": 0.5902449488639832, - "x_max": 0.3572065234184265, - "y_max": 0.9966704249382019 - }, - "confidence": 0.9964820146560669, - "label_id": 2 - }, - "h": 176, - "w": 187, - "x": 87, - "y": 255 - } - ], - "tensors": [ - { - "confidence": 0.8194749355316162, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.9964820146560669, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44915948000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.3286791741847992, - "y_min": -0.007402099668979645, - "x_max": 0.3615064322948456, - "y_max": 0.14312848448753357 - }, - "confidence": 0.6257444024085999, - "label_id": 1 - }, - "h": 62, - "w": 26, - "x": 252, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.11418077349662781, - "y_min": 0.570789098739624, - "x_max": 0.3560735881328583, - "y_max": 0.9964854717254639 - }, - "confidence": 0.9956169128417969, - "label_id": 2 - }, - "h": 183, - "w": 185, - "x": 88, - "y": 247 - } - ], - "tensors": [ - { - "confidence": 0.6257444024085999, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.9956169128417969, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44999280000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.3317735493183136, - "y_min": -0.0060748085379600525, - "x_max": 0.36417290568351746, - "y_max": 0.14243194460868835 - }, - "confidence": 0.8801973462104797, - "label_id": 1 - }, - "h": 62, - "w": 25, - "x": 255, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.10707895457744598, - "y_min": 0.550262451171875, - "x_max": 0.3620380759239197, - "y_max": 1.0060276985168457 - }, - "confidence": 0.9984036087989807, - "label_id": 2 - }, - "h": 194, - "w": 196, - "x": 82, - "y": 238 - } - ], - "tensors": [ - { - "confidence": 0.8801973462104797, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.9984036087989807, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45082612000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.3347332775592804, - "y_min": -0.006817735731601715, - "x_max": 0.36854955554008484, - "y_max": 0.13049811124801636 - }, - "confidence": 0.5752376317977905, - "label_id": 1 - }, - "h": 56, - "w": 26, - "x": 257, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1173052042722702, - "y_min": 0.5320181250572205, - "x_max": 0.36141467094421387, - "y_max": 1.003308892250061 - }, - "confidence": 0.9931515455245972, - "label_id": 2 - }, - "h": 202, - "w": 188, - "x": 90, - "y": 230 - } - ], - "tensors": [ - { - "confidence": 0.5752376317977905, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.9931515455245972, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45165944000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.11752931028604507, - "y_min": 0.5167419910430908, - "x_max": 0.36498358845710754, - "y_max": 1.0026801824569702 - }, - "confidence": 0.9842708706855774, - "label_id": 2 - }, - "h": 209, - "w": 190, - "x": 90, - "y": 223 - } - ], - "tensors": [ - { - "confidence": 0.9842708706855774, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45249276000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.11881844699382782, - "y_min": 0.5080917477607727, - "x_max": 0.359694242477417, - "y_max": 1.0054547786712646 - }, - "confidence": 0.9808247089385986, - "label_id": 2 - }, - "h": 213, - "w": 185, - "x": 91, - "y": 219 - } - ], - "tensors": [ - { - "confidence": 0.9808247089385986, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45332608000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1258331835269928, - "y_min": 0.4862575829029083, - "x_max": 0.35839664936065674, - "y_max": 1.0033698081970215 - }, - "confidence": 0.9583507776260376, - "label_id": 2 - }, - "h": 222, - "w": 178, - "x": 97, - "y": 210 - } - ], - "tensors": [ - { - "confidence": 0.9583507776260376, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45415940000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.13210563361644745, - "y_min": 0.47293728590011597, - "x_max": 0.36725956201553345, - "y_max": 1.0035967826843262 - }, - "confidence": 0.9631510376930237, - "label_id": 2 - }, - "h": 228, - "w": 181, - "x": 101, - "y": 204 - } - ], - "tensors": [ - { - "confidence": 0.9631510376930237, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45499272000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1388271152973175, - "y_min": 0.4516679644584656, - "x_max": 0.37078699469566345, - "y_max": 0.9844309687614441 - }, - "confidence": 0.9913437366485596, - "label_id": 2 - }, - "h": 230, - "w": 178, - "x": 107, - "y": 195 - } - ], - "tensors": [ - { - "confidence": 0.9913437366485596, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45582604000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1446165144443512, - "y_min": 0.43912655115127563, - "x_max": 0.36464759707450867, - "y_max": 0.9535489678382874 - }, - "confidence": 0.9956739544868469, - "label_id": 2 - }, - "h": 222, - "w": 169, - "x": 111, - "y": 190 - } - ], - "tensors": [ - { - "confidence": 0.9956739544868469, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45665936000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.15900349617004395, - "y_min": 0.41592368483543396, - "x_max": 0.3655781149864197, - "y_max": 0.9343960285186768 - }, - "confidence": 0.9988051652908325, - "label_id": 2 - }, - "h": 224, - "w": 159, - "x": 122, - "y": 180 - } - ], - "tensors": [ - { - "confidence": 0.9988051652908325, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45749268000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.16125471889972687, - "y_min": 0.39938512444496155, - "x_max": 0.36593347787857056, - "y_max": 0.9014413356781006 - }, - "confidence": 0.9996262788772583, - "label_id": 2 - }, - "h": 216, - "w": 157, - "x": 124, - "y": 173 - } - ], - "tensors": [ - { - "confidence": 0.9996262788772583, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45832600000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.17407645285129547, - "y_min": 0.38433194160461426, - "x_max": 0.36556488275527954, - "y_max": 0.8782362937927246 - }, - "confidence": 0.9997637867927551, - "label_id": 2 - }, - "h": 213, - "w": 147, - "x": 134, - "y": 166 - } - ], - "tensors": [ - { - "confidence": 0.9997637867927551, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45915932000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.17808517813682556, - "y_min": 0.3662709593772888, - "x_max": 0.36139264702796936, - "y_max": 0.8555702567100525 - }, - "confidence": 0.9998427629470825, - "label_id": 2 - }, - "h": 212, - "w": 141, - "x": 137, - "y": 158 - } - ], - "tensors": [ - { - "confidence": 0.9998427629470825, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45999264000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1823108047246933, - "y_min": 0.34388411045074463, - "x_max": 0.36295002698898315, - "y_max": 0.8230388164520264 - }, - "confidence": 0.9999207258224487, - "label_id": 2 - }, - "h": 207, - "w": 139, - "x": 140, - "y": 149 - } - ], - "tensors": [ - { - "confidence": 0.9999207258224487, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46082596000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.18824753165245056, - "y_min": 0.32287484407424927, - "x_max": 0.36030909419059753, - "y_max": 0.7853133082389832 - }, - "confidence": 0.9999746084213257, - "label_id": 2 - }, - "h": 200, - "w": 132, - "x": 145, - "y": 139 - } - ], - "tensors": [ - { - "confidence": 0.9999746084213257, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46165928000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.19106805324554443, - "y_min": 0.3120577931404114, - "x_max": 0.3585693836212158, - "y_max": 0.7668245434761047 - }, - "confidence": 0.9999792575836182, - "label_id": 2 - }, - "h": 196, - "w": 128, - "x": 147, - "y": 135 - } - ], - "tensors": [ - { - "confidence": 0.9999792575836182, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46249260000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.19487696886062622, - "y_min": 0.2928714156150818, - "x_max": 0.35463863611221313, - "y_max": 0.7392868399620056 - }, - "confidence": 0.9999550580978394, - "label_id": 2 - }, - "h": 192, - "w": 122, - "x": 150, - "y": 127 - } - ], - "tensors": [ - { - "confidence": 0.9999550580978394, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46332592000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.19407981634140015, - "y_min": 0.2778220772743225, - "x_max": 0.349772572517395, - "y_max": 0.7182074189186096 - }, - "confidence": 0.9999231100082397, - "label_id": 2 - }, - "h": 190, - "w": 120, - "x": 149, - "y": 120 - } - ], - "tensors": [ - { - "confidence": 0.9999231100082397, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46415924000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1996471881866455, - "y_min": 0.2661404609680176, - "x_max": 0.34550178050994873, - "y_max": 0.6879050731658936 - }, - "confidence": 0.9998117089271545, - "label_id": 2 - }, - "h": 182, - "w": 112, - "x": 153, - "y": 115 - } - ], - "tensors": [ - { - "confidence": 0.9998117089271545, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46499256000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.19898878037929535, - "y_min": 0.25560426712036133, - "x_max": 0.344973623752594, - "y_max": 0.6529581546783447 - }, - "confidence": 0.999887228012085, - "label_id": 2 - }, - "h": 172, - "w": 112, - "x": 153, - "y": 110 - } - ], - "tensors": [ - { - "confidence": 0.999887228012085, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46582588000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.19431041181087494, - "y_min": 0.24010860919952393, - "x_max": 0.3426505923271179, - "y_max": 0.6370713114738464 - }, - "confidence": 0.999858021736145, - "label_id": 2 - }, - "h": 171, - "w": 114, - "x": 149, - "y": 104 - } - ], - "tensors": [ - { - "confidence": 0.999858021736145, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46665920000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.19016331434249878, - "y_min": 0.22348810732364655, - "x_max": 0.33844250440597534, - "y_max": 0.6314473152160645 - }, - "confidence": 0.9998179078102112, - "label_id": 2 - }, - "h": 176, - "w": 114, - "x": 146, - "y": 97 - } - ], - "tensors": [ - { - "confidence": 0.9998179078102112, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46749252000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1869482398033142, - "y_min": 0.2082124948501587, - "x_max": 0.33711379766464233, - "y_max": 0.6009442806243896 - }, - "confidence": 0.9999079704284668, - "label_id": 2 - }, - "h": 170, - "w": 115, - "x": 144, - "y": 90 - } - ], - "tensors": [ - { - "confidence": 0.9999079704284668, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46832584000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.17860300838947296, - "y_min": 0.19198086857795715, - "x_max": 0.33069324493408203, - "y_max": 0.5795577764511108 - }, - "confidence": 0.999840259552002, - "label_id": 2 - }, - "h": 167, - "w": 117, - "x": 137, - "y": 83 - } - ], - "tensors": [ - { - "confidence": 0.999840259552002, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46915916000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.16847428679466248, - "y_min": 0.17181475460529327, - "x_max": 0.33144065737724304, - "y_max": 0.5658245086669922 - }, - "confidence": 0.9966880679130554, - "label_id": 2 - }, - "h": 170, - "w": 126, - "x": 129, - "y": 74 - } - ], - "tensors": [ - { - "confidence": 0.9966880679130554, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46999248000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.15815109014511108, - "y_min": 0.1630575954914093, - "x_max": 0.33030930161476135, - "y_max": 0.5347641706466675 - }, - "confidence": 0.9999334812164307, - "label_id": 2 - }, - "h": 161, - "w": 133, - "x": 121, - "y": 70 - } - ], - "tensors": [ - { - "confidence": 0.9999334812164307, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47082580000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.14546090364456177, - "y_min": 0.1592211127281189, - "x_max": 0.32633206248283386, - "y_max": 0.516521155834198 - }, - "confidence": 0.9999961853027344, - "label_id": 2 - }, - "h": 154, - "w": 139, - "x": 112, - "y": 69 - } - ], - "tensors": [ - { - "confidence": 0.9999961853027344, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47165912000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.13375265896320343, - "y_min": 0.15671759843826294, - "x_max": 0.3240237832069397, - "y_max": 0.5026559829711914 - }, - "confidence": 0.999997615814209, - "label_id": 2 - }, - "h": 149, - "w": 146, - "x": 103, - "y": 68 - } - ], - "tensors": [ - { - "confidence": 0.999997615814209, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47249244000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.12439753860235214, - "y_min": 0.14749115705490112, - "x_max": 0.3173246681690216, - "y_max": 0.48482757806777954 - }, - "confidence": 0.9999957084655762, - "label_id": 2 - }, - "h": 145, - "w": 148, - "x": 96, - "y": 64 - } - ], - "tensors": [ - { - "confidence": 0.9999957084655762, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47332576000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.10337574779987335, - "y_min": 0.1447085589170456, - "x_max": 0.31053102016448975, - "y_max": 0.46590709686279297 - }, - "confidence": 0.9999985694885254, - "label_id": 2 - }, - "h": 138, - "w": 159, - "x": 79, - "y": 63 - } - ], - "tensors": [ - { - "confidence": 0.9999985694885254, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47415908000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0877276137471199, - "y_min": 0.13578101992607117, - "x_max": 0.3061259686946869, - "y_max": 0.4583093822002411 - }, - "confidence": 0.9999905824661255, - "label_id": 2 - }, - "h": 139, - "w": 168, - "x": 67, - "y": 59 - } - ], - "tensors": [ - { - "confidence": 0.9999905824661255, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47499240000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.07414165139198303, - "y_min": 0.13613608479499817, - "x_max": 0.29499655961990356, - "y_max": 0.44501665234565735 - }, - "confidence": 0.9999843835830688, - "label_id": 2 - }, - "h": 133, - "w": 170, - "x": 57, - "y": 59 - } - ], - "tensors": [ - { - "confidence": 0.9999843835830688, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47582572000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.06372351199388504, - "y_min": 0.13430394232273102, - "x_max": 0.28886139392852783, - "y_max": 0.4283466935157776 - }, - "confidence": 0.9999667406082153, - "label_id": 2 - }, - "h": 127, - "w": 173, - "x": 49, - "y": 58 - } - ], - "tensors": [ - { - "confidence": 0.9999667406082153, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47665904000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.04476805776357651, - "y_min": 0.1310632973909378, - "x_max": 0.2812711000442505, - "y_max": 0.41454845666885376 - }, - "confidence": 0.9999289512634277, - "label_id": 2 - }, - "h": 122, - "w": 182, - "x": 34, - "y": 57 - } - ], - "tensors": [ - { - "confidence": 0.9999289512634277, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47749236000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.031214669346809387, - "y_min": 0.13065342605113983, - "x_max": 0.2697560787200928, - "y_max": 0.40537846088409424 - }, - "confidence": 0.999994158744812, - "label_id": 2 - }, - "h": 119, - "w": 183, - "x": 24, - "y": 56 - } - ], - "tensors": [ - { - "confidence": 0.999994158744812, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47832568000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.01740241050720215, - "y_min": 0.12662234902381897, - "x_max": 0.2577144205570221, - "y_max": 0.3994019329547882 - }, - "confidence": 0.9999731779098511, - "label_id": 2 - }, - "h": 118, - "w": 185, - "x": 13, - "y": 55 - } - ], - "tensors": [ - { - "confidence": 0.9999731779098511, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47915900000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.004041805863380432, - "y_min": 0.12184710800647736, - "x_max": 0.2474878579378128, - "y_max": 0.39345186948776245 - }, - "confidence": 0.9996523857116699, - "label_id": 2 - }, - "h": 117, - "w": 187, - "x": 3, - "y": 53 - } - ], - "tensors": [ - { - "confidence": 0.9996523857116699, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47999232000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.005348794162273407, - "y_min": 0.12305355072021484, - "x_max": 0.23488926887512207, - "y_max": 0.3915954828262329 - }, - "confidence": 0.9985697269439697, - "label_id": 2 - }, - "h": 116, - "w": 176, - "x": 4, - "y": 53 - } - ], - "tensors": [ - { - "confidence": 0.9985697269439697, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48082564000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0017888173460960388, - "y_min": 0.1247859001159668, - "x_max": 0.2245253622531891, - "y_max": 0.38678228855133057 - }, - "confidence": 0.9998401403427124, - "label_id": 2 - }, - "h": 113, - "w": 171, - "x": 1, - "y": 54 - } - ], - "tensors": [ - { - "confidence": 0.9998401403427124, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48165896000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0016414672136306763, - "y_min": 0.12514449656009674, - "x_max": 0.21423731744289398, - "y_max": 0.3789997100830078 - }, - "confidence": 0.9995100498199463, - "label_id": 2 - }, - "h": 110, - "w": 164, - "x": 1, - "y": 54 - } - ], - "tensors": [ - { - "confidence": 0.9995100498199463, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48249228000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0010463446378707886, - "y_min": 0.12255397439002991, - "x_max": 0.20339226722717285, - "y_max": 0.37172725796699524 - }, - "confidence": 0.9997997879981995, - "label_id": 2 - }, - "h": 108, - "w": 155, - "x": 1, - "y": 53 - } - ], - "tensors": [ - { - "confidence": 0.9997997879981995, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48332560000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -0.0009600818157196045, - "y_min": 0.12224481254816055, - "x_max": 0.18527519702911377, - "y_max": 0.3683636486530304 - }, - "confidence": 0.9996997117996216, - "label_id": 2 - }, - "h": 106, - "w": 142, - "x": 0, - "y": 53 - } - ], - "tensors": [ - { - "confidence": 0.9996997117996216, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48415892000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -0.0024446696043014526, - "y_min": 0.11800922453403473, - "x_max": 0.1734609305858612, - "y_max": 0.36477744579315186 - }, - "confidence": 0.994732141494751, - "label_id": 2 - }, - "h": 107, - "w": 133, - "x": 0, - "y": 51 - } - ], - "tensors": [ - { - "confidence": 0.994732141494751, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48499224000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -0.0008171945810317993, - "y_min": 0.122039295732975, - "x_max": 0.16088078916072845, - "y_max": 0.36065050959587097 - }, - "confidence": 0.9844126105308533, - "label_id": 2 - }, - "h": 103, - "w": 124, - "x": 0, - "y": 53 - } - ], - "tensors": [ - { - "confidence": 0.9844126105308533, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48582556000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.00014059245586395264, - "y_min": 0.1215287297964096, - "x_max": 0.1478501558303833, - "y_max": 0.3573453426361084 - }, - "confidence": 0.944599986076355, - "label_id": 2 - }, - "h": 101, - "w": 114, - "x": 0, - "y": 53 - } - ], - "tensors": [ - { - "confidence": 0.944599986076355, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48665888000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -0.00025963038206100464, - "y_min": 0.12402772158384323, - "x_max": 0.13530778884887695, - "y_max": 0.3572295308113098 - }, - "confidence": 0.8222958445549011, - "label_id": 2 - }, - "h": 100, - "w": 104, - "x": 0, - "y": 54 - } - ], - "tensors": [ - { - "confidence": 0.8222958445549011, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48749220000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.004977211356163025, - "y_min": 0.12455517798662186, - "x_max": 0.12559984624385834, - "y_max": 0.35147324204444885 - }, - "confidence": 0.5192632675170898, - "label_id": 2 - }, - "h": 98, - "w": 92, - "x": 4, - "y": 54 - } - ], - "tensors": [ - { - "confidence": 0.5192632675170898, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48832552000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0021711327135562897, - "y_min": 0.12542003393173218, - "x_max": 0.11167280375957489, - "y_max": 0.35693034529685974 - }, - "confidence": 0.6774740219116211, - "label_id": 2 - }, - "h": 100, - "w": 84, - "x": 2, - "y": 54 - } - ], - "tensors": [ - { - "confidence": 0.6774740219116211, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48915884000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.003963496536016464, - "y_min": 0.1262444257736206, - "x_max": 0.09858241677284241, - "y_max": 0.3592531383037567 - }, - "confidence": 0.7434250712394714, - "label_id": 2 - }, - "h": 100, - "w": 73, - "x": 3, - "y": 55 - } - ], - "tensors": [ - { - "confidence": 0.7434250712394714, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48999216000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0023461058735847473, - "y_min": 0.13048796355724335, - "x_max": 0.08722066134214401, - "y_max": 0.3632868528366089 - }, - "confidence": 0.5979925394058228, - "label_id": 2 - }, - "h": 101, - "w": 65, - "x": 2, - "y": 56 - } - ], - "tensors": [ - { - "confidence": 0.5979925394058228, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49082548000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.004991490393877029, - "y_min": 0.1470525711774826, - "x_max": 0.0746246874332428, - "y_max": 0.36092686653137207 - }, - "confidence": 0.6191385388374329, - "label_id": 2 - }, - "h": 92, - "w": 53, - "x": 4, - "y": 64 - } - ], - "tensors": [ - { - "confidence": 0.6191385388374329, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49165880000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -0.006160043179988861, - "y_min": 0.1430838704109192, - "x_max": 0.06290969997644424, - "y_max": 0.34735849499702454 - }, - "confidence": 0.680001974105835, - "label_id": 2 - }, - "h": 88, - "w": 48, - "x": 0, - "y": 62 - } - ], - "tensors": [ - { - "confidence": 0.680001974105835, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49249212000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -0.0008208621293306351, - "y_min": 0.14316228032112122, - "x_max": 0.049667298793792725, - "y_max": 0.3419255316257477 - }, - "confidence": 0.6459780335426331, - "label_id": 2 - }, - "h": 86, - "w": 38, - "x": 0, - "y": 62 - } - ], - "tensors": [ - { - "confidence": 0.6459780335426331, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - } - ] -} \ No newline at end of file diff --git a/tests/test_cases/pipeline_execution/cpu/object_detection_fifo_gstreamer.json b/tests/test_cases/pipeline_execution/cpu/object_detection_fifo_gstreamer.json deleted file mode 100644 index 8faae44..0000000 --- a/tests/test_cases/pipeline_execution/cpu/object_detection_fifo_gstreamer.json +++ /dev/null @@ -1,7496 +0,0 @@ -{ - "options": {}, - "pipeline": { - "name": "object_detection", - "version": "person_vehicle_bike" - }, - "request": { - "source": { - "type": "uri", - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4" - }, - "destination": { - "type": "file", - "path": "/tmp/object_detection_results_fifo", - "format": "json-lines" - }, - "parameters": { - "detection-device": "CPU" - } - }, - "numerical_tolerance": 0.001, - "result": [ - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7448995113372803, - "x_min": 0.6734092235565186, - "y_max": 0.9991496205329895, - "y_min": 0.8781012892723083 - }, - "confidence": 0.5402482748031616, - "label": "person", - "label_id": 1 - }, - "h": 52, - "region_id": 9725, - "roi_type": "person", - "w": 55, - "x": 517, - "y": 379 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7442192435264587, - "x_min": 0.6763269305229187, - "y_max": 1.0, - "y_min": 0.8277981281280518 - }, - "confidence": 0.5505853295326233, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 9726, - "roi_type": "person", - "w": 52, - "x": 519, - "y": 358 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7465136051177979, - "x_min": 0.6821862459182739, - "y_max": 1.0, - "y_min": 0.8104690909385681 - }, - "confidence": 0.6447358131408691, - "label": "person", - "label_id": 1 - }, - "h": 82, - "region_id": 9727, - "roi_type": "person", - "w": 49, - "x": 524, - "y": 350 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7481286525726318, - "x_min": 0.68366539478302, - "y_max": 0.9999657869338989, - "y_min": 0.7867170572280884 - }, - "confidence": 0.882526695728302, - "label": "person", - "label_id": 1 - }, - "h": 92, - "region_id": 9728, - "roi_type": "person", - "w": 50, - "x": 525, - "y": 340 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7502986788749695, - "x_min": 0.6836960911750793, - "y_max": 0.9965759515762329, - "y_min": 0.7709740400314331 - }, - "confidence": 0.9252126812934875, - "label": "person", - "label_id": 1 - }, - "h": 97, - "region_id": 9729, - "roi_type": "person", - "w": 51, - "x": 525, - "y": 333 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7533046007156372, - "x_min": 0.6833932399749756, - "y_max": 0.9992514848709106, - "y_min": 0.7517307996749878 - }, - "confidence": 0.9160429835319519, - "label": "person", - "label_id": 1 - }, - "h": 107, - "region_id": 9730, - "roi_type": "person", - "w": 54, - "x": 525, - "y": 325 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7569091320037842, - "x_min": 0.6831721067428589, - "y_max": 0.9893119931221008, - "y_min": 0.7454761862754822 - }, - "confidence": 0.9452281594276428, - "label": "person", - "label_id": 1 - }, - "h": 105, - "region_id": 9732, - "roi_type": "person", - "w": 57, - "x": 525, - "y": 322 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.758220374584198, - "x_min": 0.6869714856147766, - "y_max": 0.9744250774383545, - "y_min": 0.7232376337051392 - }, - "confidence": 0.9522698521614075, - "label": "person", - "label_id": 1 - }, - "h": 109, - "region_id": 9733, - "roi_type": "person", - "w": 55, - "x": 528, - "y": 312 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.757515549659729, - "x_min": 0.6908836364746094, - "y_max": 0.9485968351364136, - "y_min": 0.7128696441650391 - }, - "confidence": 0.8796297907829285, - "label": "person", - "label_id": 1 - }, - "h": 102, - "region_id": 9734, - "roi_type": "person", - "w": 51, - "x": 531, - "y": 308 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7562522292137146, - "x_min": 0.6947104334831238, - "y_max": 0.8969831466674805, - "y_min": 0.7029379606246948 - }, - "confidence": 0.8928061127662659, - "label": "person", - "label_id": 1 - }, - "h": 84, - "region_id": 9735, - "roi_type": "person", - "w": 47, - "x": 534, - "y": 304 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7574296593666077, - "x_min": 0.6979045271873474, - "y_max": 0.8754802346229553, - "y_min": 0.6884984374046326 - }, - "confidence": 0.8720522522926331, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 9736, - "roi_type": "person", - "w": 46, - "x": 536, - "y": 297 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7628753781318665, - "x_min": 0.6962668299674988, - "y_max": 0.9012861251831055, - "y_min": 0.6672508716583252 - }, - "confidence": 0.6989018321037292, - "label": "person", - "label_id": 1 - }, - "h": 101, - "region_id": 9737, - "roi_type": "person", - "w": 51, - "x": 535, - "y": 288 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7642366886138916, - "x_min": 0.6945128440856934, - "y_max": 0.8976410031318665, - "y_min": 0.6511140465736389 - }, - "confidence": 0.6954102516174316, - "label": "person", - "label_id": 1 - }, - "h": 106, - "region_id": 9738, - "roi_type": "person", - "w": 54, - "x": 533, - "y": 281 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7641031742095947, - "x_min": 0.7028636932373047, - "y_max": 0.8516806960105896, - "y_min": 0.6483859419822693 - }, - "confidence": 0.6670747995376587, - "label": "person", - "label_id": 1 - }, - "h": 88, - "region_id": 9739, - "roi_type": "person", - "w": 47, - "x": 540, - "y": 280 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7670164108276367, - "x_min": 0.7064443826675415, - "y_max": 0.829826295375824, - "y_min": 0.6299616694450378 - }, - "confidence": 0.929532527923584, - "label": "person", - "label_id": 1 - }, - "h": 86, - "region_id": 9740, - "roi_type": "person", - "w": 47, - "x": 543, - "y": 272 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7725509405136108, - "x_min": 0.7098292112350464, - "y_max": 0.8254445195198059, - "y_min": 0.6173177361488342 - }, - "confidence": 0.6896131634712219, - "label": "person", - "label_id": 1 - }, - "h": 90, - "region_id": 9741, - "roi_type": "person", - "w": 48, - "x": 545, - "y": 267 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.77418452501297, - "x_min": 0.7090356945991516, - "y_max": 0.8218122124671936, - "y_min": 0.6104786992073059 - }, - "confidence": 0.7604833841323853, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 9742, - "roi_type": "person", - "w": 50, - "x": 545, - "y": 264 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7783714532852173, - "x_min": 0.7181830406188965, - "y_max": 0.7849859595298767, - "y_min": 0.5744112133979797 - }, - "confidence": 0.502738356590271, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 9743, - "roi_type": "person", - "w": 46, - "x": 552, - "y": 248 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7834279537200928, - "x_min": 0.7257949113845825, - "y_max": 0.7589362263679504, - "y_min": 0.5519590973854065 - }, - "confidence": 0.7043135166168213, - "label": "person", - "label_id": 1 - }, - "h": 89, - "region_id": 9744, - "roi_type": "person", - "w": 44, - "x": 557, - "y": 238 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.78952956199646, - "x_min": 0.7326743602752686, - "y_max": 0.7261121273040771, - "y_min": 0.5483003854751587 - }, - "confidence": 0.9756479263305664, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 9745, - "roi_type": "person", - "w": 44, - "x": 563, - "y": 237 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7890371084213257, - "x_min": 0.737720251083374, - "y_max": 0.7031307816505432, - "y_min": 0.5400574803352356 - }, - "confidence": 0.8415098786354065, - "label": "person", - "label_id": 1 - }, - "h": 70, - "region_id": 9747, - "roi_type": "person", - "w": 39, - "x": 567, - "y": 233 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7952908873558044, - "x_min": 0.7402903437614441, - "y_max": 0.6921250820159912, - "y_min": 0.5216915607452393 - }, - "confidence": 0.7716295719146729, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 9746, - "roi_type": "person", - "w": 42, - "x": 569, - "y": 225 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8006463646888733, - "x_min": 0.746234118938446, - "y_max": 0.6880520582199097, - "y_min": 0.5218417644500732 - }, - "confidence": 0.8759844303131104, - "label": "person", - "label_id": 1 - }, - "h": 72, - "region_id": 9748, - "roi_type": "person", - "w": 42, - "x": 573, - "y": 225 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8098055720329285, - "x_min": 0.7457361817359924, - "y_max": 0.7030310034751892, - "y_min": 0.5026633143424988 - }, - "confidence": 0.9101058840751648, - "label": "person", - "label_id": 1 - }, - "h": 87, - "region_id": 9749, - "roi_type": "person", - "w": 49, - "x": 573, - "y": 217 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8131635785102844, - "x_min": 0.7560372948646545, - "y_max": 0.68419349193573, - "y_min": 0.4961233139038086 - }, - "confidence": 0.9086412787437439, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 9750, - "roi_type": "person", - "w": 44, - "x": 581, - "y": 214 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.823058545589447, - "x_min": 0.7637491822242737, - "y_max": 0.6855756640434265, - "y_min": 0.4885023236274719 - }, - "confidence": 0.8248202800750732, - "label": "person", - "label_id": 1 - }, - "h": 85, - "region_id": 9753, - "roi_type": "person", - "w": 46, - "x": 587, - "y": 211 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8232852220535278, - "x_min": 0.760567307472229, - "y_max": 0.6924915909767151, - "y_min": 0.47507840394973755 - }, - "confidence": 0.6950181126594543, - "label": "person", - "label_id": 1 - }, - "h": 94, - "region_id": 9756, - "roi_type": "person", - "w": 48, - "x": 584, - "y": 205 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8322221040725708, - "x_min": 0.7602424621582031, - "y_max": 0.6941542625427246, - "y_min": 0.46584224700927734 - }, - "confidence": 0.5867351293563843, - "label": "person", - "label_id": 1 - }, - "h": 99, - "region_id": 9757, - "roi_type": "person", - "w": 55, - "x": 584, - "y": 201 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8429373502731323, - "x_min": 0.793522834777832, - "y_max": 0.6419346928596497, - "y_min": 0.43809905648231506 - }, - "confidence": 0.96792072057724, - "label": "person", - "label_id": 1 - }, - "h": 88, - "region_id": 9758, - "roi_type": "person", - "w": 38, - "x": 609, - "y": 189 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.849794328212738, - "x_min": 0.796667754650116, - "y_max": 0.615337610244751, - "y_min": 0.44303929805755615 - }, - "confidence": 0.8853123188018799, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 9759, - "roi_type": "person", - "w": 41, - "x": 612, - "y": 191 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8533491492271423, - "x_min": 0.8009874224662781, - "y_max": 0.6051764488220215, - "y_min": 0.4295734465122223 - }, - "confidence": 0.90330970287323, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 9762, - "roi_type": "person", - "w": 40, - "x": 615, - "y": 186 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8604123592376709, - "x_min": 0.8060647249221802, - "y_max": 0.5924712419509888, - "y_min": 0.42701780796051025 - }, - "confidence": 0.8053339719772339, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 9764, - "roi_type": "person", - "w": 42, - "x": 619, - "y": 184 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8663100600242615, - "x_min": 0.810594379901886, - "y_max": 0.5942341089248657, - "y_min": 0.42083391547203064 - }, - "confidence": 0.7699306607246399, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 9766, - "roi_type": "person", - "w": 43, - "x": 623, - "y": 182 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8744010329246521, - "x_min": 0.817695677280426, - "y_max": 0.5900759696960449, - "y_min": 0.41369643807411194 - }, - "confidence": 0.9554973244667053, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 9767, - "roi_type": "person", - "w": 44, - "x": 628, - "y": 179 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8855565190315247, - "x_min": 0.8264035582542419, - "y_max": 0.5860601663589478, - "y_min": 0.4029603898525238 - }, - "confidence": 0.8228950500488281, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 9769, - "roi_type": "person", - "w": 45, - "x": 635, - "y": 174 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8908534049987793, - "x_min": 0.8350781202316284, - "y_max": 0.5897727012634277, - "y_min": 0.3878403902053833 - }, - "confidence": 0.8011389970779419, - "label": "person", - "label_id": 1 - }, - "h": 87, - "region_id": 9770, - "roi_type": "person", - "w": 43, - "x": 641, - "y": 168 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9007775187492371, - "x_min": 0.8356189131736755, - "y_max": 0.5877959132194519, - "y_min": 0.39412611722946167 - }, - "confidence": 0.6489140391349792, - "label": "person", - "label_id": 1 - }, - "h": 84, - "region_id": 9771, - "roi_type": "person", - "w": 50, - "x": 642, - "y": 170 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9088490605354309, - "x_min": 0.8531065583229065, - "y_max": 0.5604838728904724, - "y_min": 0.376047819852829 - }, - "confidence": 0.6436927914619446, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 9772, - "roi_type": "person", - "w": 43, - "x": 655, - "y": 162 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.91246098279953, - "x_min": 0.8664992451667786, - "y_max": 0.5441793203353882, - "y_min": 0.36725080013275146 - }, - "confidence": 0.8806077837944031, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 9773, - "roi_type": "person", - "w": 35, - "x": 665, - "y": 159 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9204215407371521, - "x_min": 0.8713714480400085, - "y_max": 0.5294153690338135, - "y_min": 0.3520965278148651 - }, - "confidence": 0.9779548048973083, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 9774, - "roi_type": "person", - "w": 38, - "x": 669, - "y": 152 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9224029779434204, - "x_min": 0.8775302171707153, - "y_max": 0.5218915343284607, - "y_min": 0.35059165954589844 - }, - "confidence": 0.9283971786499023, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 9775, - "roi_type": "person", - "w": 34, - "x": 674, - "y": 151 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9281563758850098, - "x_min": 0.87200927734375, - "y_max": 0.5194041728973389, - "y_min": 0.3446289598941803 - }, - "confidence": 0.7565144896507263, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 9776, - "roi_type": "person", - "w": 43, - "x": 670, - "y": 149 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.937407910823822, - "x_min": 0.8853235840797424, - "y_max": 0.5107858777046204, - "y_min": 0.34274011850357056 - }, - "confidence": 0.950576663017273, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 9777, - "roi_type": "person", - "w": 40, - "x": 680, - "y": 148 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9449759125709534, - "x_min": 0.8897075057029724, - "y_max": 0.5037586688995361, - "y_min": 0.33645257353782654 - }, - "confidence": 0.909963846206665, - "label": "person", - "label_id": 1 - }, - "h": 72, - "region_id": 9778, - "roi_type": "person", - "w": 42, - "x": 683, - "y": 145 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9549130201339722, - "x_min": 0.8982007503509521, - "y_max": 0.5104894638061523, - "y_min": 0.3242742419242859 - }, - "confidence": 0.7820349931716919, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 9779, - "roi_type": "person", - "w": 44, - "x": 690, - "y": 140 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9616369009017944, - "x_min": 0.9061300754547119, - "y_max": 0.5176384449005127, - "y_min": 0.32654041051864624 - }, - "confidence": 0.7777004837989807, - "label": "person", - "label_id": 1 - }, - "h": 83, - "region_id": 9780, - "roi_type": "person", - "w": 43, - "x": 696, - "y": 141 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9738940000534058, - "x_min": 0.9141021966934204, - "y_max": 0.4915769100189209, - "y_min": 0.3181222677230835 - }, - "confidence": 0.7904218435287476, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 9781, - "roi_type": "person", - "w": 46, - "x": 702, - "y": 137 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.975996196269989, - "x_min": 0.9256718754768372, - "y_max": 0.4855739176273346, - "y_min": 0.30408164858818054 - }, - "confidence": 0.7352949976921082, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 9782, - "roi_type": "person", - "w": 39, - "x": 711, - "y": 131 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9818256497383118, - "x_min": 0.928584635257721, - "y_max": 0.47780394554138184, - "y_min": 0.2946469187736511 - }, - "confidence": 0.8346178531646729, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 9783, - "roi_type": "person", - "w": 41, - "x": 713, - "y": 127 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9829865097999573, - "x_min": 0.9321264624595642, - "y_max": 0.46189287304878235, - "y_min": 0.2909712493419647 - }, - "confidence": 0.9709599018096924, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 9784, - "roi_type": "person", - "w": 39, - "x": 716, - "y": 126 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9856051206588745, - "x_min": 0.9314626455307007, - "y_max": 0.4595508873462677, - "y_min": 0.2890259921550751 - }, - "confidence": 0.6953359246253967, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 9785, - "roi_type": "person", - "w": 42, - "x": 715, - "y": 125 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9974535703659058, - "x_min": 0.9289860725402832, - "y_max": 0.46979770064353943, - "y_min": 0.25890347361564636 - }, - "confidence": 0.5784777998924255, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 9787, - "roi_type": "person", - "w": 53, - "x": 713, - "y": 112 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9965777397155762, - "x_min": 0.948677659034729, - "y_max": 0.4469355344772339, - "y_min": 0.2675803303718567 - }, - "confidence": 0.5522598028182983, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 9786, - "roi_type": "person", - "w": 37, - "x": 729, - "y": 116 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.11904987692832947, - "y_max": 0.9856871068477631, - "y_min": 0.019983261823654175 - }, - "confidence": 0.5811690092086792, - "label": "vehicle", - "label_id": 2 - }, - "h": 417, - "region_id": 9788, - "roi_type": "vehicle", - "w": 677, - "x": 91, - "y": 9 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 13916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3472718670964241, - "x_min": 0.12164772301912308, - "y_max": 1.0, - "y_min": 0.8393084406852722 - }, - "confidence": 0.6197941899299622, - "label": "vehicle", - "label_id": 2 - }, - "h": 69, - "region_id": 9789, - "roi_type": "vehicle", - "w": 173, - "x": 93, - "y": 363 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35296928882598877, - "x_min": 0.12145508825778961, - "y_max": 1.0, - "y_min": 0.809481143951416 - }, - "confidence": 0.7172138094902039, - "label": "vehicle", - "label_id": 2 - }, - "h": 82, - "region_id": 9790, - "roi_type": "vehicle", - "w": 178, - "x": 93, - "y": 350 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35698965191841125, - "x_min": 0.12027296423912048, - "y_max": 0.9967044591903687, - "y_min": 0.783829927444458 - }, - "confidence": 0.8247243762016296, - "label": "vehicle", - "label_id": 2 - }, - "h": 92, - "region_id": 9791, - "roi_type": "vehicle", - "w": 182, - "x": 92, - "y": 339 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35937564820051193, - "x_min": 0.1130119189620018, - "y_max": 0.9963881969451904, - "y_min": 0.7641627788543701 - }, - "confidence": 0.8237555027008057, - "label": "vehicle", - "label_id": 2 - }, - "h": 100, - "region_id": 9792, - "roi_type": "vehicle", - "w": 189, - "x": 87, - "y": 330 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3695478141307831, - "x_min": 0.11453911662101746, - "y_max": 1.0, - "y_min": 0.7280340790748596 - }, - "confidence": 0.7173946499824524, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 9793, - "roi_type": "vehicle", - "w": 196, - "x": 88, - "y": 315 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36808082461357117, - "x_min": 0.10083702206611633, - "y_max": 0.9959658980369568, - "y_min": 0.7031351923942566 - }, - "confidence": 0.8457762002944946, - "label": "vehicle", - "label_id": 2 - }, - "h": 127, - "region_id": 9794, - "roi_type": "vehicle", - "w": 205, - "x": 77, - "y": 304 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37700890004634857, - "x_min": 0.10729126632213593, - "y_max": 0.9994959831237793, - "y_min": 0.6779965162277222 - }, - "confidence": 0.9278457760810852, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "region_id": 9795, - "roi_type": "vehicle", - "w": 207, - "x": 82, - "y": 293 - }, - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.12105026841163635, - "y_max": 0.9884764552116394, - "y_min": 0.031229078769683838 - }, - "confidence": 0.6490932106971741, - "label": "vehicle", - "label_id": 2 - }, - "h": 414, - "region_id": 9796, - "roi_type": "vehicle", - "w": 675, - "x": 93, - "y": 13 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37933249771595, - "x_min": 0.10664261877536774, - "y_max": 1.0, - "y_min": 0.6494535207748413 - }, - "confidence": 0.9569631814956665, - "label": "vehicle", - "label_id": 2 - }, - "h": 151, - "region_id": 9797, - "roi_type": "vehicle", - "w": 209, - "x": 82, - "y": 281 - }, - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.12350031733512878, - "y_max": 0.9561575353145599, - "y_min": 0.036140888929367065 - }, - "confidence": 0.6475626826286316, - "label": "vehicle", - "label_id": 2 - }, - "h": 397, - "region_id": 9798, - "roi_type": "vehicle", - "w": 673, - "x": 95, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37901879847049713, - "x_min": 0.10554523766040802, - "y_max": 1.0, - "y_min": 0.6312699913978577 - }, - "confidence": 0.9906972646713257, - "label": "vehicle", - "label_id": 2 - }, - "h": 159, - "region_id": 9799, - "roi_type": "vehicle", - "w": 210, - "x": 81, - "y": 273 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3792016804218292, - "x_min": 0.11973920464515686, - "y_max": 0.9997225999832153, - "y_min": 0.6097801923751831 - }, - "confidence": 0.9947446584701538, - "label": "vehicle", - "label_id": 2 - }, - "h": 168, - "region_id": 9800, - "roi_type": "vehicle", - "w": 199, - "x": 92, - "y": 263 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3760889172554016, - "x_min": 0.11782974004745483, - "y_max": 0.9969019889831543, - "y_min": 0.5848079919815063 - }, - "confidence": 0.9949920773506165, - "label": "vehicle", - "label_id": 2 - }, - "h": 178, - "region_id": 9801, - "roi_type": "vehicle", - "w": 198, - "x": 90, - "y": 253 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3769965320825577, - "x_min": 0.11793924868106842, - "y_max": 0.9975459575653076, - "y_min": 0.5624508857727051 - }, - "confidence": 0.9885396361351013, - "label": "vehicle", - "label_id": 2 - }, - "h": 188, - "region_id": 9802, - "roi_type": "vehicle", - "w": 199, - "x": 91, - "y": 243 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37293992936611176, - "x_min": 0.11036746203899384, - "y_max": 1.0, - "y_min": 0.5396616458892822 - }, - "confidence": 0.9783477783203125, - "label": "vehicle", - "label_id": 2 - }, - "h": 199, - "region_id": 9803, - "roi_type": "vehicle", - "w": 202, - "x": 85, - "y": 233 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36592480540275574, - "x_min": 0.13214635848999023, - "y_max": 1.0, - "y_min": 0.5241050720214844 - }, - "confidence": 0.9772934317588806, - "label": "vehicle", - "label_id": 2 - }, - "h": 206, - "region_id": 9804, - "roi_type": "vehicle", - "w": 180, - "x": 101, - "y": 226 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3634260296821594, - "x_min": 0.13490857183933258, - "y_max": 1.0, - "y_min": 0.5041921138763428 - }, - "confidence": 0.9919345378875732, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "region_id": 9805, - "roi_type": "vehicle", - "w": 176, - "x": 104, - "y": 218 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.960456371307373, - "x_min": 0.14331555366516113, - "y_max": 0.8030669689178467, - "y_min": 0.04740440845489502 - }, - "confidence": 0.6498066186904907, - "label": "vehicle", - "label_id": 2 - }, - "h": 326, - "region_id": 9806, - "roi_type": "vehicle", - "w": 628, - "x": 110, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3554348349571228, - "x_min": 0.14201128482818604, - "y_max": 0.9914812445640564, - "y_min": 0.49649685621261597 - }, - "confidence": 0.9959776997566223, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "region_id": 9807, - "roi_type": "vehicle", - "w": 164, - "x": 109, - "y": 214 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35458171367645264, - "x_min": 0.14792513847351074, - "y_max": 0.9985901713371277, - "y_min": 0.47491592168807983 - }, - "confidence": 0.9977288842201233, - "label": "vehicle", - "label_id": 2 - }, - "h": 226, - "region_id": 9808, - "roi_type": "vehicle", - "w": 159, - "x": 114, - "y": 205 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9464908838272095, - "x_min": 0.37183070182800293, - "y_max": 0.8923693895339966, - "y_min": 0.04037749767303467 - }, - "confidence": 0.5506706833839417, - "label": "vehicle", - "label_id": 2 - }, - "h": 368, - "region_id": 9809, - "roi_type": "vehicle", - "w": 441, - "x": 286, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35628217458724976, - "x_min": 0.1539267748594284, - "y_max": 0.9833188056945801, - "y_min": 0.4503910541534424 - }, - "confidence": 0.994249701499939, - "label": "vehicle", - "label_id": 2 - }, - "h": 230, - "region_id": 9810, - "roi_type": "vehicle", - "w": 155, - "x": 118, - "y": 195 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3493105173110962, - "x_min": 0.15961898863315582, - "y_max": 0.9475720822811127, - "y_min": 0.4319262206554413 - }, - "confidence": 0.9976761937141418, - "label": "vehicle", - "label_id": 2 - }, - "h": 223, - "region_id": 9811, - "roi_type": "vehicle", - "w": 146, - "x": 123, - "y": 187 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9634890258312225, - "x_min": 0.3556390702724457, - "y_max": 0.7470780611038208, - "y_min": 0.06608313322067261 - }, - "confidence": 0.7034559845924377, - "label": "vehicle", - "label_id": 2 - }, - "h": 294, - "region_id": 9812, - "roi_type": "vehicle", - "w": 467, - "x": 273, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3447081446647644, - "x_min": 0.16244013607501984, - "y_max": 0.9356728792190552, - "y_min": 0.42220282554626465 - }, - "confidence": 0.997654139995575, - "label": "vehicle", - "label_id": 2 - }, - "h": 222, - "region_id": 9813, - "roi_type": "vehicle", - "w": 140, - "x": 125, - "y": 182 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9825330972671509, - "x_min": 0.34150373935699463, - "y_max": 0.9223797023296356, - "y_min": 0.048903077840805054 - }, - "confidence": 0.5919698476791382, - "label": "vehicle", - "label_id": 2 - }, - "h": 377, - "region_id": 9814, - "roi_type": "vehicle", - "w": 492, - "x": 262, - "y": 21 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3389114439487457, - "x_min": 0.16517701745033264, - "y_max": 0.9076908528804779, - "y_min": 0.4019246995449066 - }, - "confidence": 0.9994926452636719, - "label": "vehicle", - "label_id": 2 - }, - "h": 218, - "region_id": 9815, - "roi_type": "vehicle", - "w": 133, - "x": 127, - "y": 174 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3360127806663513, - "x_min": 0.1654418557882309, - "y_max": 0.8818584084510803, - "y_min": 0.3884504437446594 - }, - "confidence": 0.9987764954566956, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "region_id": 9816, - "roi_type": "vehicle", - "w": 131, - "x": 127, - "y": 168 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9590835273265839, - "x_min": 0.31477364897727966, - "y_max": 0.8576100170612335, - "y_min": 0.07268145680427551 - }, - "confidence": 0.5272276401519775, - "label": "vehicle", - "label_id": 2 - }, - "h": 339, - "region_id": 9817, - "roi_type": "vehicle", - "w": 495, - "x": 242, - "y": 31 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33232998847961426, - "x_min": 0.16263365745544434, - "y_max": 0.8597554564476013, - "y_min": 0.3726103901863098 - }, - "confidence": 0.9985213875770569, - "label": "vehicle", - "label_id": 2 - }, - "h": 210, - "region_id": 9818, - "roi_type": "vehicle", - "w": 130, - "x": 125, - "y": 161 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9746560454368591, - "x_min": 0.3364577889442444, - "y_max": 0.9104736745357513, - "y_min": 0.05242249369621277 - }, - "confidence": 0.5714530348777771, - "label": "vehicle", - "label_id": 2 - }, - "h": 371, - "region_id": 9819, - "roi_type": "vehicle", - "w": 490, - "x": 258, - "y": 23 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33004996180534363, - "x_min": 0.16184934973716736, - "y_max": 0.831344723701477, - "y_min": 0.35449519753456116 - }, - "confidence": 0.9997923970222473, - "label": "vehicle", - "label_id": 2 - }, - "h": 206, - "region_id": 9820, - "roi_type": "vehicle", - "w": 129, - "x": 124, - "y": 153 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9590028822422028, - "x_min": 0.3254684507846832, - "y_max": 0.8569502830505371, - "y_min": 0.06740456819534302 - }, - "confidence": 0.7004438042640686, - "label": "vehicle", - "label_id": 2 - }, - "h": 341, - "region_id": 9821, - "roi_type": "vehicle", - "w": 487, - "x": 250, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3289366066455841, - "x_min": 0.1574317216873169, - "y_max": 0.8062315583229065, - "y_min": 0.34386783838272095 - }, - "confidence": 0.9998531341552734, - "label": "vehicle", - "label_id": 2 - }, - "h": 200, - "region_id": 9822, - "roi_type": "vehicle", - "w": 132, - "x": 121, - "y": 149 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.964382529258728, - "x_min": 0.32466232776641846, - "y_max": 0.8281485438346863, - "y_min": 0.05045187473297119 - }, - "confidence": 0.7299045920372009, - "label": "vehicle", - "label_id": 2 - }, - "h": 336, - "region_id": 9823, - "roi_type": "vehicle", - "w": 491, - "x": 249, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.32749849557876587, - "x_min": 0.15210948884487152, - "y_max": 0.7838110327720642, - "y_min": 0.3270363211631775 - }, - "confidence": 0.9998413324356079, - "label": "vehicle", - "label_id": 2 - }, - "h": 197, - "region_id": 9824, - "roi_type": "vehicle", - "w": 135, - "x": 117, - "y": 141 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9622262120246887, - "x_min": 0.3427131772041321, - "y_max": 0.87251016497612, - "y_min": 0.04009708762168884 - }, - "confidence": 0.5857366919517517, - "label": "vehicle", - "label_id": 2 - }, - "h": 360, - "region_id": 9825, - "roi_type": "vehicle", - "w": 476, - "x": 263, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3233610689640045, - "x_min": 0.14286422729492188, - "y_max": 0.7728333473205566, - "y_min": 0.3200983703136444 - }, - "confidence": 0.9999895095825195, - "label": "vehicle", - "label_id": 2 - }, - "h": 196, - "region_id": 9826, - "roi_type": "vehicle", - "w": 139, - "x": 110, - "y": 138 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9750470519065857, - "x_min": 0.29748600721359253, - "y_max": 0.878402590751648, - "y_min": 0.02611905336380005 - }, - "confidence": 0.6027935147285461, - "label": "vehicle", - "label_id": 2 - }, - "h": 368, - "region_id": 9827, - "roi_type": "vehicle", - "w": 520, - "x": 228, - "y": 11 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3201468884944916, - "x_min": 0.13641870021820068, - "y_max": 0.7574479579925537, - "y_min": 0.309865802526474 - }, - "confidence": 0.9999890327453613, - "label": "vehicle", - "label_id": 2 - }, - "h": 193, - "region_id": 9828, - "roi_type": "vehicle", - "w": 141, - "x": 105, - "y": 134 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.967246949672699, - "x_min": 0.2861178517341614, - "y_max": 0.8358006775379181, - "y_min": 0.03851500153541565 - }, - "confidence": 0.7227263450622559, - "label": "vehicle", - "label_id": 2 - }, - "h": 344, - "region_id": 9829, - "roi_type": "vehicle", - "w": 523, - "x": 220, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31699711084365845, - "x_min": 0.13015078008174896, - "y_max": 0.7375568151473999, - "y_min": 0.29937541484832764 - }, - "confidence": 0.9999899864196777, - "label": "vehicle", - "label_id": 2 - }, - "h": 189, - "region_id": 9830, - "roi_type": "vehicle", - "w": 143, - "x": 100, - "y": 129 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9515461325645447, - "x_min": 0.33267635107040405, - "y_max": 0.8539553582668304, - "y_min": 0.03352043032646179 - }, - "confidence": 0.8081793785095215, - "label": "vehicle", - "label_id": 2 - }, - "h": 354, - "region_id": 9831, - "roi_type": "vehicle", - "w": 475, - "x": 255, - "y": 14 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.313996784389019, - "x_min": 0.1178915724158287, - "y_max": 0.721222996711731, - "y_min": 0.2869602143764496 - }, - "confidence": 0.9999879598617554, - "label": "vehicle", - "label_id": 2 - }, - "h": 188, - "region_id": 9832, - "roi_type": "vehicle", - "w": 151, - "x": 91, - "y": 124 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9608641266822815, - "x_min": 0.32193297147750854, - "y_max": 0.872944712638855, - "y_min": 0.03886592388153076 - }, - "confidence": 0.6384647488594055, - "label": "vehicle", - "label_id": 2 - }, - "h": 360, - "region_id": 9833, - "roi_type": "vehicle", - "w": 491, - "x": 247, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31122130155563354, - "x_min": 0.10584880411624908, - "y_max": 0.7095153331756592, - "y_min": 0.28365960717201233 - }, - "confidence": 0.9999860525131226, - "label": "vehicle", - "label_id": 2 - }, - "h": 184, - "region_id": 9834, - "roi_type": "vehicle", - "w": 158, - "x": 81, - "y": 123 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9637041389942169, - "x_min": 0.32208338379859924, - "y_max": 0.8715708255767822, - "y_min": 0.04041773080825806 - }, - "confidence": 0.649631142616272, - "label": "vehicle", - "label_id": 2 - }, - "h": 359, - "region_id": 9835, - "roi_type": "vehicle", - "w": 493, - "x": 247, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.30708828568458557, - "x_min": 0.08848142623901367, - "y_max": 0.6941937208175659, - "y_min": 0.27684852480888367 - }, - "confidence": 0.9999517202377319, - "label": "vehicle", - "label_id": 2 - }, - "h": 180, - "region_id": 9836, - "roi_type": "vehicle", - "w": 168, - "x": 68, - "y": 120 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9554692804813385, - "x_min": 0.3402766287326813, - "y_max": 0.8379943072795868, - "y_min": 0.04827651381492615 - }, - "confidence": 0.7163934707641602, - "label": "vehicle", - "label_id": 2 - }, - "h": 341, - "region_id": 9837, - "roi_type": "vehicle", - "w": 472, - "x": 261, - "y": 21 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3021143078804016, - "x_min": 0.08180795609951019, - "y_max": 0.6738347411155701, - "y_min": 0.2771807909011841 - }, - "confidence": 0.9999845027923584, - "label": "vehicle", - "label_id": 2 - }, - "h": 171, - "region_id": 9838, - "roi_type": "vehicle", - "w": 169, - "x": 63, - "y": 120 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9660838842391968, - "x_min": 0.33971118927001953, - "y_max": 0.8525603115558624, - "y_min": 0.0668802559375763 - }, - "confidence": 0.5413897633552551, - "label": "vehicle", - "label_id": 2 - }, - "h": 339, - "region_id": 9839, - "roi_type": "vehicle", - "w": 481, - "x": 261, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2942667081952095, - "x_min": 0.07385558634996414, - "y_max": 0.656566858291626, - "y_min": 0.27267447113990784 - }, - "confidence": 0.9999916553497314, - "label": "vehicle", - "label_id": 2 - }, - "h": 166, - "region_id": 9840, - "roi_type": "vehicle", - "w": 169, - "x": 57, - "y": 118 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9926852583885193, - "x_min": 0.3049655556678772, - "y_max": 0.8486753702163696, - "y_min": 0.05000650882720947 - }, - "confidence": 0.5591980814933777, - "label": "vehicle", - "label_id": 2 - }, - "h": 345, - "region_id": 9841, - "roi_type": "vehicle", - "w": 528, - "x": 234, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.28687456995248795, - "x_min": 0.06621802598237991, - "y_max": 0.6433695554733276, - "y_min": 0.2654878795146942 - }, - "confidence": 0.9999983310699463, - "label": "vehicle", - "label_id": 2 - }, - "h": 163, - "region_id": 9842, - "roi_type": "vehicle", - "w": 169, - "x": 51, - "y": 115 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.28295157104730606, - "x_min": 0.055335767567157745, - "y_max": 0.6373208165168762, - "y_min": 0.2616565227508545 - }, - "confidence": 0.9999963045120239, - "label": "vehicle", - "label_id": 2 - }, - "h": 162, - "region_id": 9845, - "roi_type": "vehicle", - "w": 175, - "x": 42, - "y": 113 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.95826455950737, - "x_min": 0.3554447591304779, - "y_max": 0.7013552486896515, - "y_min": 0.061350494623184204 - }, - "confidence": 0.6528945565223694, - "label": "vehicle", - "label_id": 2 - }, - "h": 276, - "region_id": 9846, - "roi_type": "vehicle", - "w": 463, - "x": 273, - "y": 27 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27854787558317184, - "x_min": 0.04411589354276657, - "y_max": 0.62773197889328, - "y_min": 0.2605406641960144 - }, - "confidence": 0.999983549118042, - "label": "vehicle", - "label_id": 2 - }, - "h": 159, - "region_id": 9843, - "roi_type": "vehicle", - "w": 180, - "x": 34, - "y": 113 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27031123638153076, - "x_min": 0.03065599501132965, - "y_max": 0.6122254133224487, - "y_min": 0.2575317919254303 - }, - "confidence": 0.9999444484710693, - "label": "vehicle", - "label_id": 2 - }, - "h": 153, - "region_id": 9844, - "roi_type": "vehicle", - "w": 184, - "x": 24, - "y": 111 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2618173286318779, - "x_min": 0.01927035301923752, - "y_max": 0.6008049249649048, - "y_min": 0.2527608275413513 - }, - "confidence": 0.9999783039093018, - "label": "vehicle", - "label_id": 2 - }, - "h": 150, - "region_id": 9847, - "roi_type": "vehicle", - "w": 186, - "x": 15, - "y": 109 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2521120309829712, - "x_min": 0.006787553429603577, - "y_max": 0.5942617058753967, - "y_min": 0.25123631954193115 - }, - "confidence": 0.999976396560669, - "label": "vehicle", - "label_id": 2 - }, - "h": 148, - "region_id": 9848, - "roi_type": "vehicle", - "w": 188, - "x": 5, - "y": 109 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2455773949623108, - "x_min": 0.0038528144359588623, - "y_max": 0.5852652192115784, - "y_min": 0.25117599964141846 - }, - "confidence": 0.999962568283081, - "label": "vehicle", - "label_id": 2 - }, - "h": 144, - "region_id": 9849, - "roi_type": "vehicle", - "w": 186, - "x": 3, - "y": 109 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23418442159891129, - "x_min": 0.00190020352602005, - "y_max": 0.5771202892065048, - "y_min": 0.24817226827144623 - }, - "confidence": 0.9999908208847046, - "label": "vehicle", - "label_id": 2 - }, - "h": 142, - "region_id": 9850, - "roi_type": "vehicle", - "w": 178, - "x": 1, - "y": 107 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.22408055514097214, - "x_min": 0.000627569854259491, - "y_max": 0.5654963403940201, - "y_min": 0.2458530217409134 - }, - "confidence": 0.9999959468841553, - "label": "vehicle", - "label_id": 2 - }, - "h": 138, - "region_id": 9851, - "roi_type": "vehicle", - "w": 172, - "x": 0, - "y": 106 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9729532599449158, - "x_min": 0.3975161910057068, - "y_max": 0.7704417705535889, - "y_min": 0.06877964735031128 - }, - "confidence": 0.5025386214256287, - "label": "vehicle", - "label_id": 2 - }, - "h": 303, - "region_id": 9852, - "roi_type": "vehicle", - "w": 442, - "x": 305, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.21542106568813324, - "x_min": 0.0, - "y_max": 0.5575774908065796, - "y_min": 0.24282824993133545 - }, - "confidence": 0.9999918937683105, - "label": "vehicle", - "label_id": 2 - }, - "h": 136, - "region_id": 9853, - "roi_type": "vehicle", - "w": 165, - "x": 0, - "y": 105 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9764736294746399, - "x_min": 0.3866834044456482, - "y_max": 0.8177641928195953, - "y_min": 0.04835072159767151 - }, - "confidence": 0.5299532413482666, - "label": "vehicle", - "label_id": 2 - }, - "h": 332, - "region_id": 9854, - "roi_type": "vehicle", - "w": 453, - "x": 297, - "y": 21 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.20652518421411514, - "x_min": 0.0, - "y_max": 0.5523459762334824, - "y_min": 0.2393653839826584 - }, - "confidence": 0.9999760389328003, - "label": "vehicle", - "label_id": 2 - }, - "h": 135, - "region_id": 9855, - "roi_type": "vehicle", - "w": 159, - "x": 0, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19814243912696838, - "x_min": 9.648501873016357e-05, - "y_max": 0.5438299030065536, - "y_min": 0.23729972541332245 - }, - "confidence": 0.99991774559021, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 9856, - "roi_type": "vehicle", - "w": 152, - "x": 0, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.18656962364912033, - "x_min": 0.00026082247495651245, - "y_max": 0.540632963180542, - "y_min": 0.22892174124717712 - }, - "confidence": 0.999891996383667, - "label": "vehicle", - "label_id": 2 - }, - "h": 135, - "region_id": 9857, - "roi_type": "vehicle", - "w": 143, - "x": 0, - "y": 99 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.17477919906377792, - "x_min": 0.001994602382183075, - "y_max": 0.5303716063499451, - "y_min": 0.22543710470199585 - }, - "confidence": 0.9990342855453491, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 9858, - "roi_type": "vehicle", - "w": 133, - "x": 2, - "y": 97 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.16638848185539246, - "x_min": 0.0, - "y_max": 0.5288660079240799, - "y_min": 0.22173668444156647 - }, - "confidence": 0.9978117346763611, - "label": "vehicle", - "label_id": 2 - }, - "h": 133, - "region_id": 9859, - "roi_type": "vehicle", - "w": 128, - "x": 0, - "y": 96 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15866544842720032, - "x_min": 0.0, - "y_max": 0.5260069519281387, - "y_min": 0.22341085970401764 - }, - "confidence": 0.9969075322151184, - "label": "vehicle", - "label_id": 2 - }, - "h": 131, - "region_id": 9860, - "roi_type": "vehicle", - "w": 122, - "x": 0, - "y": 97 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.14424734562635422, - "x_min": 0.0004708394408226013, - "y_max": 0.5235311985015869, - "y_min": 0.22360435128211975 - }, - "confidence": 0.9907389879226685, - "label": "vehicle", - "label_id": 2 - }, - "h": 130, - "region_id": 9861, - "roi_type": "vehicle", - "w": 110, - "x": 0, - "y": 97 - }, - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.11542871594429016, - "y_max": 0.9303610026836395, - "y_min": 0.03652903437614441 - }, - "confidence": 0.5644902586936951, - "label": "vehicle", - "label_id": 2 - }, - "h": 386, - "region_id": 9862, - "roi_type": "vehicle", - "w": 679, - "x": 89, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1311522275209427, - "x_min": 0.0012656599283218384, - "y_max": 0.5229739546775818, - "y_min": 0.2319927215576172 - }, - "confidence": 0.8800601363182068, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 9863, - "roi_type": "vehicle", - "w": 100, - "x": 1, - "y": 100 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.12498541176319122, - "x_min": 0.0, - "y_max": 0.5163314342498779, - "y_min": 0.24239161610603333 - }, - "confidence": 0.7448732256889343, - "label": "vehicle", - "label_id": 2 - }, - "h": 118, - "region_id": 9864, - "roi_type": "vehicle", - "w": 96, - "x": 0, - "y": 105 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1116863377392292, - "x_min": 0.0006904192268848419, - "y_max": 0.5155525207519531, - "y_min": 0.24023357033729553 - }, - "confidence": 0.8874056935310364, - "label": "vehicle", - "label_id": 2 - }, - "h": 119, - "region_id": 9865, - "roi_type": "vehicle", - "w": 85, - "x": 1, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.09923026710748672, - "x_min": 0.001333586871623993, - "y_max": 0.5189979076385498, - "y_min": 0.23733755946159363 - }, - "confidence": 0.6848376989364624, - "label": "vehicle", - "label_id": 2 - }, - "h": 122, - "region_id": 9866, - "roi_type": "vehicle", - "w": 75, - "x": 1, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.08814660087227821, - "x_min": 0.0, - "y_max": 0.5184166878461838, - "y_min": 0.23750726878643036 - }, - "confidence": 0.547851026058197, - "label": "vehicle", - "label_id": 2 - }, - "h": 121, - "region_id": 9867, - "roi_type": "vehicle", - "w": 68, - "x": 0, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07822689414024353, - "x_min": 0.0, - "y_max": 0.5102934390306473, - "y_min": 0.23988105356693268 - }, - "confidence": 0.7760471105575562, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 9868, - "roi_type": "vehicle", - "w": 60, - "x": 0, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06671496108174324, - "x_min": 0.0004887916147708893, - "y_max": 0.5063621997833252, - "y_min": 0.24073129892349243 - }, - "confidence": 0.721200168132782, - "label": "vehicle", - "label_id": 2 - }, - "h": 115, - "region_id": 9869, - "roi_type": "vehicle", - "w": 51, - "x": 0, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.058564310893416405, - "x_min": 0.0012591909617185593, - "y_max": 0.49973881244659424, - "y_min": 0.2501286268234253 - }, - "confidence": 0.7428306341171265, - "label": "vehicle", - "label_id": 2 - }, - "h": 108, - "region_id": 9870, - "roi_type": "vehicle", - "w": 44, - "x": 1, - "y": 108 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.04703952744603157, - "x_min": 0.0021373629570007324, - "y_max": 0.491912305355072, - "y_min": 0.27300935983657837 - }, - "confidence": 0.5740195512771606, - "label": "vehicle", - "label_id": 2 - }, - "h": 95, - "region_id": 9871, - "roi_type": "vehicle", - "w": 34, - "x": 2, - "y": 118 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.03855092264711857, - "x_min": 0.0, - "y_max": 0.48962903022766113, - "y_min": 0.2736285924911499 - }, - "confidence": 0.5253973007202148, - "label": "vehicle", - "label_id": 2 - }, - "h": 93, - "region_id": 9872, - "roi_type": "vehicle", - "w": 30, - "x": 0, - "y": 118 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.934235006570816, - "x_min": 0.04731431603431702, - "y_max": 0.9905672669410706, - "y_min": 0.005245864391326904 - }, - "confidence": 0.5478575229644775, - "label": "vehicle", - "label_id": 2 - }, - "h": 426, - "region_id": 9879, - "roi_type": "vehicle", - "w": 681, - "x": 36, - "y": 2 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9340743124485016, - "x_min": 0.05626228451728821, - "y_max": 0.9993162155151367, - "y_min": 0.0 - }, - "confidence": 0.5252728462219238, - "label": "vehicle", - "label_id": 2 - }, - "h": 432, - "region_id": 9881, - "roi_type": "vehicle", - "w": 674, - "x": 43, - "y": 0 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9431887567043304, - "x_min": 0.05145725607872009, - "y_max": 0.9891375601291656, - "y_min": 0.0 - }, - "confidence": 0.5604560375213623, - "label": "vehicle", - "label_id": 2 - }, - "h": 427, - "region_id": 9880, - "roi_type": "vehicle", - "w": 685, - "x": 40, - "y": 0 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9341979622840881, - "x_min": 0.04894071817398071, - "y_max": 0.9517980813980103, - "y_min": 0.0 - }, - "confidence": 0.5412791967391968, - "label": "vehicle", - "label_id": 2 - }, - "h": 411, - "region_id": 9882, - "roi_type": "vehicle", - "w": 680, - "x": 38, - "y": 0 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9681801199913025, - "x_min": 0.22439366579055786, - "y_max": 0.795999139547348, - "y_min": 0.07999715209007263 - }, - "confidence": 0.6512441039085388, - "label": "vehicle", - "label_id": 2 - }, - "h": 309, - "region_id": 9883, - "roi_type": "vehicle", - "w": 571, - "x": 172, - "y": 35 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 27333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.1108655333518982, - "y_max": 0.9221687614917755, - "y_min": 0.024473220109939575 - }, - "confidence": 0.5428245663642883, - "label": "vehicle", - "label_id": 2 - }, - "h": 388, - "region_id": 9884, - "roi_type": "vehicle", - "w": 683, - "x": 85, - "y": 11 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 28166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9668244123458862, - "x_min": 0.04019737243652344, - "y_max": 1.0, - "y_min": 0.018689513206481934 - }, - "confidence": 0.5183915495872498, - "label": "vehicle", - "label_id": 2 - }, - "h": 424, - "region_id": 9887, - "roi_type": "vehicle", - "w": 712, - "x": 31, - "y": 8 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 28916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.05809926800429821, - "x_min": 0.0035657789558172226, - "y_max": 0.2681969776749611, - "y_min": 0.09560371190309525 - }, - "confidence": 0.7589443922042847, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 9895, - "roi_type": "person", - "w": 42, - "x": 3, - "y": 41 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06384254433214664, - "x_min": 0.007957043126225471, - "y_max": 0.274237722158432, - "y_min": 0.1018730103969574 - }, - "confidence": 0.7985617518424988, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 9896, - "roi_type": "person", - "w": 43, - "x": 6, - "y": 44 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07437356747686863, - "x_min": 0.015382559970021248, - "y_max": 0.2672903835773468, - "y_min": 0.09030735492706299 - }, - "confidence": 0.893984317779541, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 9897, - "roi_type": "person", - "w": 45, - "x": 12, - "y": 39 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06839273869991302, - "x_min": 0.022368106991052628, - "y_max": 0.26446548104286194, - "y_min": 0.0925963819026947 - }, - "confidence": 0.946168839931488, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 9898, - "roi_type": "person", - "w": 35, - "x": 17, - "y": 40 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06265867501497269, - "x_min": 0.02845694124698639, - "y_max": 0.2631925344467163, - "y_min": 0.0876958817243576 - }, - "confidence": 0.7030326128005981, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 9899, - "roi_type": "person", - "w": 26, - "x": 22, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07015539705753326, - "x_min": 0.038974471390247345, - "y_max": 0.2708924114704132, - "y_min": 0.08729448914527893 - }, - "confidence": 0.8550823330879211, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 9900, - "roi_type": "person", - "w": 24, - "x": 30, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.08978046476840973, - "x_min": 0.04507404938340187, - "y_max": 0.26029662042856216, - "y_min": 0.08790374547243118 - }, - "confidence": 0.977257251739502, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 9901, - "roi_type": "person", - "w": 34, - "x": 35, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.10240232944488525, - "x_min": 0.050258174538612366, - "y_max": 0.26179608702659607, - "y_min": 0.08916294574737549 - }, - "confidence": 0.9634844064712524, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 9902, - "roi_type": "person", - "w": 40, - "x": 39, - "y": 39 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11237834393978119, - "x_min": 0.0557108074426651, - "y_max": 0.265661358833313, - "y_min": 0.08681026101112366 - }, - "confidence": 0.9638311266899109, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 9903, - "roi_type": "person", - "w": 44, - "x": 43, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11509420722723007, - "x_min": 0.0598953440785408, - "y_max": 0.26093965768814087, - "y_min": 0.08726376295089722 - }, - "confidence": 0.9589016437530518, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 9904, - "roi_type": "person", - "w": 42, - "x": 46, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.10801342129707336, - "x_min": 0.0689283162355423, - "y_max": 0.2573170065879822, - "y_min": 0.0888819694519043 - }, - "confidence": 0.7473644018173218, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 9905, - "roi_type": "person", - "w": 30, - "x": 53, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11594520509243011, - "x_min": 0.08451759815216064, - "y_max": 0.2598234713077545, - "y_min": 0.08372160792350769 - }, - "confidence": 0.9428697824478149, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 9906, - "roi_type": "person", - "w": 24, - "x": 65, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.14308200776576996, - "x_min": 0.08935531973838806, - "y_max": 0.25856076925992966, - "y_min": 0.08275481313467026 - }, - "confidence": 0.9797755479812622, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 9907, - "roi_type": "person", - "w": 41, - "x": 69, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15327730774879456, - "x_min": 0.09761051088571548, - "y_max": 0.25556155294179916, - "y_min": 0.08270096033811569 - }, - "confidence": 0.9193074703216553, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 9908, - "roi_type": "person", - "w": 43, - "x": 75, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15708927810192108, - "x_min": 0.09718881547451019, - "y_max": 0.2538745477795601, - "y_min": 0.08122579008340836 - }, - "confidence": 0.9810740351676941, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 9909, - "roi_type": "person", - "w": 46, - "x": 75, - "y": 35 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15849240124225616, - "x_min": 0.10766856372356415, - "y_max": 0.2546975910663605, - "y_min": 0.07851284742355347 - }, - "confidence": 0.9863011837005615, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 9910, - "roi_type": "person", - "w": 39, - "x": 83, - "y": 34 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.14903458952903748, - "x_min": 0.11753658205270767, - "y_max": 0.2580205202102661, - "y_min": 0.07362668216228485 - }, - "confidence": 0.9098013639450073, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 9911, - "roi_type": "person", - "w": 24, - "x": 90, - "y": 32 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15783970057964325, - "x_min": 0.13124407827854156, - "y_max": 0.25078579038381577, - "y_min": 0.08267303556203842 - }, - "confidence": 0.5655198097229004, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 9912, - "roi_type": "person", - "w": 20, - "x": 101, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1712721735239029, - "x_min": 0.13269366323947906, - "y_max": 0.25339871644973755, - "y_min": 0.0712251216173172 - }, - "confidence": 0.9201220273971558, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 9913, - "roi_type": "person", - "w": 30, - "x": 102, - "y": 31 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.188812255859375, - "x_min": 0.1387019157409668, - "y_max": 0.2481667771935463, - "y_min": 0.06929013878107071 - }, - "confidence": 0.972706139087677, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 9914, - "roi_type": "person", - "w": 38, - "x": 107, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19876964390277863, - "x_min": 0.14241482317447662, - "y_max": 0.24410223960876465, - "y_min": 0.06995522975921631 - }, - "confidence": 0.935201108455658, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 9915, - "roi_type": "person", - "w": 43, - "x": 109, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19850021600723267, - "x_min": 0.14565402269363403, - "y_max": 0.24200070649385452, - "y_min": 0.06734246760606766 - }, - "confidence": 0.9604580402374268, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 9916, - "roi_type": "person", - "w": 41, - "x": 112, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19670461118221283, - "x_min": 0.15936703979969025, - "y_max": 0.24713708460330963, - "y_min": 0.06951303780078888 - }, - "confidence": 0.9338945746421814, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 9917, - "roi_type": "person", - "w": 29, - "x": 122, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19646276533603668, - "x_min": 0.1669870764017105, - "y_max": 0.246548093855381, - "y_min": 0.05969572812318802 - }, - "confidence": 0.8135930299758911, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 9918, - "roi_type": "person", - "w": 23, - "x": 128, - "y": 26 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.20714330673217773, - "x_min": 0.17688614130020142, - "y_max": 0.24033692479133606, - "y_min": 0.06553769111633301 - }, - "confidence": 0.8666308522224426, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 9919, - "roi_type": "person", - "w": 23, - "x": 136, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.22876504063606262, - "x_min": 0.17733925580978394, - "y_max": 0.23425975441932678, - "y_min": 0.0654514729976654 - }, - "confidence": 0.9463271498680115, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 9920, - "roi_type": "person", - "w": 39, - "x": 136, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23787567019462585, - "x_min": 0.18617352843284607, - "y_max": 0.2328994944691658, - "y_min": 0.06733778864145279 - }, - "confidence": 0.8578006029129028, - "label": "person", - "label_id": 1 - }, - "h": 72, - "region_id": 9922, - "roi_type": "person", - "w": 40, - "x": 143, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24495282769203186, - "x_min": 0.18914848566055298, - "y_max": 0.2286892682313919, - "y_min": 0.06330259144306183 - }, - "confidence": 0.9402493834495544, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 9921, - "roi_type": "person", - "w": 43, - "x": 145, - "y": 27 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24374517798423767, - "x_min": 0.19896605610847473, - "y_max": 0.22477789968252182, - "y_min": 0.06456565111875534 - }, - "confidence": 0.9167733192443848, - "label": "person", - "label_id": 1 - }, - "h": 69, - "region_id": 9923, - "roi_type": "person", - "w": 34, - "x": 153, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23920002579689026, - "x_min": 0.2088455855846405, - "y_max": 0.2315978854894638, - "y_min": 0.050867900252342224 - }, - "confidence": 0.7405911087989807, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 9924, - "roi_type": "person", - "w": 23, - "x": 160, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24580711126327515, - "x_min": 0.21504563093185425, - "y_max": 0.22459035366773605, - "y_min": 0.04561009258031845 - }, - "confidence": 0.8077870607376099, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 9925, - "roi_type": "person", - "w": 24, - "x": 165, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.258386492729187, - "x_min": 0.22124245762825012, - "y_max": 0.22196873277425766, - "y_min": 0.04270251840353012 - }, - "confidence": 0.9389499425888062, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 9926, - "roi_type": "person", - "w": 29, - "x": 170, - "y": 18 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2686212658882141, - "x_min": 0.22306442260742188, - "y_max": 0.22240334749221802, - "y_min": 0.03721362352371216 - }, - "confidence": 0.8532395958900452, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 9928, - "roi_type": "person", - "w": 35, - "x": 171, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27878496050834656, - "x_min": 0.2256826013326645, - "y_max": 0.21868880838155746, - "y_min": 0.04378651827573776 - }, - "confidence": 0.940152108669281, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 9927, - "roi_type": "person", - "w": 41, - "x": 173, - "y": 19 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2782133221626282, - "x_min": 0.22981303930282593, - "y_max": 0.21300845593214035, - "y_min": 0.04048468917608261 - }, - "confidence": 0.8954000473022461, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 9929, - "roi_type": "person", - "w": 37, - "x": 176, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27863314747810364, - "x_min": 0.2395808845758438, - "y_max": 0.21157341450452805, - "y_min": 0.026669137179851532 - }, - "confidence": 0.5580120086669922, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 9930, - "roi_type": "person", - "w": 30, - "x": 184, - "y": 12 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2845720052719116, - "x_min": 0.25448018312454224, - "y_max": 0.21495232731103897, - "y_min": 0.026290185749530792 - }, - "confidence": 0.80083167552948, - "label": "person", - "label_id": 1 - }, - "h": 82, - "region_id": 9931, - "roi_type": "person", - "w": 23, - "x": 195, - "y": 11 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.29074627161026, - "x_min": 0.2599877119064331, - "y_max": 0.20789270102977753, - "y_min": 0.022824198007583618 - }, - "confidence": 0.8385727405548096, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 9932, - "roi_type": "person", - "w": 24, - "x": 200, - "y": 10 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.30755072832107544, - "x_min": 0.2656424045562744, - "y_max": 0.19290897250175476, - "y_min": 0.022242024540901184 - }, - "confidence": 0.977880597114563, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 9933, - "roi_type": "person", - "w": 32, - "x": 204, - "y": 10 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31079021096229553, - "x_min": 0.2677251994609833, - "y_max": 0.19722382724285126, - "y_min": 0.023035749793052673 - }, - "confidence": 0.9654287099838257, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 9934, - "roi_type": "person", - "w": 33, - "x": 206, - "y": 10 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.29563216120004654, - "x_min": 0.10331843048334122, - "y_max": 1.0, - "y_min": 0.8515570759773254 - }, - "confidence": 0.761517345905304, - "label": "vehicle", - "label_id": 2 - }, - "h": 64, - "region_id": 9935, - "roi_type": "vehicle", - "w": 148, - "x": 79, - "y": 368 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31590598821640015, - "x_min": 0.27411168813705444, - "y_max": 0.18277175724506378, - "y_min": 0.019142642617225647 - }, - "confidence": 0.9806784987449646, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 9936, - "roi_type": "person", - "w": 32, - "x": 211, - "y": 8 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.302535243332386, - "x_min": 0.08773649483919144, - "y_max": 1.0, - "y_min": 0.8262227177619934 - }, - "confidence": 0.908391535282135, - "label": "vehicle", - "label_id": 2 - }, - "h": 75, - "region_id": 9937, - "roi_type": "vehicle", - "w": 165, - "x": 67, - "y": 357 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3163120448589325, - "x_min": 0.27949169278144836, - "y_max": 0.18241430073976517, - "y_min": 0.00963614135980606 - }, - "confidence": 0.8560529351234436, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 9938, - "roi_type": "person", - "w": 28, - "x": 215, - "y": 4 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3071591779589653, - "x_min": 0.08984949439764023, - "y_max": 1.0, - "y_min": 0.7983192205429077 - }, - "confidence": 0.9688770174980164, - "label": "vehicle", - "label_id": 2 - }, - "h": 87, - "region_id": 9939, - "roi_type": "vehicle", - "w": 167, - "x": 69, - "y": 345 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31996291875839233, - "x_min": 0.28390347957611084, - "y_max": 0.17544172704219818, - "y_min": 0.002514094114303589 - }, - "confidence": 0.9317660927772522, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 9940, - "roi_type": "person", - "w": 28, - "x": 218, - "y": 1 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.31785333156585693, - "x_min": 0.09327417612075806, - "y_max": 0.9961552023887634, - "y_min": 0.7738481163978577 - }, - "confidence": 0.9980048537254333, - "label": "vehicle", - "label_id": 2 - }, - "h": 96, - "region_id": 9941, - "roi_type": "vehicle", - "w": 172, - "x": 72, - "y": 334 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3244977593421936, - "x_min": 0.29137319326400757, - "y_max": 0.18117792904376984, - "y_min": 0.0 - }, - "confidence": 0.9299455285072327, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 9942, - "roi_type": "person", - "w": 25, - "x": 224, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3211563229560852, - "x_min": 0.09341153502464294, - "y_max": 0.9977253675460815, - "y_min": 0.7558172941207886 - }, - "confidence": 0.995922327041626, - "label": "vehicle", - "label_id": 2 - }, - "h": 105, - "region_id": 9943, - "roi_type": "vehicle", - "w": 175, - "x": 72, - "y": 327 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33760935068130493, - "x_min": 0.2969669699668884, - "y_max": 0.1680586189031601, - "y_min": 0.0 - }, - "confidence": 0.97437584400177, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 9944, - "roi_type": "person", - "w": 31, - "x": 228, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.32524099946022034, - "x_min": 0.09379306435585022, - "y_max": 0.9987419843673706, - "y_min": 0.728178858757019 - }, - "confidence": 0.9982354640960693, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 9945, - "roi_type": "vehicle", - "w": 178, - "x": 72, - "y": 315 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34123092889785767, - "x_min": 0.2997239828109741, - "y_max": 0.1591828241944313, - "y_min": 0.0 - }, - "confidence": 0.9657360315322876, - "label": "person", - "label_id": 1 - }, - "h": 69, - "region_id": 9946, - "roi_type": "person", - "w": 32, - "x": 230, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3318566754460335, - "x_min": 0.09386516362428665, - "y_max": 0.9967382550239563, - "y_min": 0.7049055695533752 - }, - "confidence": 0.996229350566864, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 9947, - "roi_type": "vehicle", - "w": 183, - "x": 72, - "y": 305 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3466411232948303, - "x_min": 0.3028194308280945, - "y_max": 0.1562092900276184, - "y_min": 0.0 - }, - "confidence": 0.9846485257148743, - "label": "person", - "label_id": 1 - }, - "h": 67, - "region_id": 9948, - "roi_type": "person", - "w": 34, - "x": 233, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3395664617419243, - "x_min": 0.08993595093488693, - "y_max": 0.9996479153633118, - "y_min": 0.6784219145774841 - }, - "confidence": 0.9955138564109802, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "region_id": 9949, - "roi_type": "vehicle", - "w": 192, - "x": 69, - "y": 293 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34522509574890137, - "x_min": 0.30906105041503906, - "y_max": 0.15079188346862793, - "y_min": 0.0 - }, - "confidence": 0.9445015788078308, - "label": "person", - "label_id": 1 - }, - "h": 65, - "region_id": 9950, - "roi_type": "person", - "w": 28, - "x": 237, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3419874384999275, - "x_min": 0.0941135361790657, - "y_max": 1.0, - "y_min": 0.6525993943214417 - }, - "confidence": 0.9987126588821411, - "label": "vehicle", - "label_id": 2 - }, - "h": 150, - "region_id": 9951, - "roi_type": "vehicle", - "w": 190, - "x": 72, - "y": 282 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3481338918209076, - "x_min": 0.3160833418369293, - "y_max": 0.14550430327653885, - "y_min": 0.0 - }, - "confidence": 0.963749885559082, - "label": "person", - "label_id": 1 - }, - "h": 63, - "region_id": 9952, - "roi_type": "person", - "w": 25, - "x": 243, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.34435374289751053, - "x_min": 0.09984970837831497, - "y_max": 0.9990871548652649, - "y_min": 0.6355069279670715 - }, - "confidence": 0.9971874356269836, - "label": "vehicle", - "label_id": 2 - }, - "h": 157, - "region_id": 9953, - "roi_type": "vehicle", - "w": 188, - "x": 77, - "y": 275 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3530542850494385, - "x_min": 0.3201481103897095, - "y_max": 0.14842259883880615, - "y_min": 0.0 - }, - "confidence": 0.8752254843711853, - "label": "person", - "label_id": 1 - }, - "h": 64, - "region_id": 9954, - "roi_type": "person", - "w": 25, - "x": 246, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.34952497482299805, - "x_min": 0.10708582401275635, - "y_max": 1.0, - "y_min": 0.6191877722740173 - }, - "confidence": 0.998619794845581, - "label": "vehicle", - "label_id": 2 - }, - "h": 165, - "region_id": 9955, - "roi_type": "vehicle", - "w": 186, - "x": 82, - "y": 267 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35819557309150696, - "x_min": 0.3240784704685211, - "y_max": 0.14493504911661148, - "y_min": 0.0 - }, - "confidence": 0.7914350032806396, - "label": "person", - "label_id": 1 - }, - "h": 63, - "region_id": 9956, - "roi_type": "person", - "w": 26, - "x": 249, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3578673005104065, - "x_min": 0.11816421151161194, - "y_max": 0.9963030219078064, - "y_min": 0.5943846106529236 - }, - "confidence": 0.9954742789268494, - "label": "vehicle", - "label_id": 2 - }, - "h": 174, - "region_id": 9957, - "roi_type": "vehicle", - "w": 184, - "x": 91, - "y": 257 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36160674691200256, - "x_min": 0.3288991153240204, - "y_max": 0.14174089580774307, - "y_min": 0.0 - }, - "confidence": 0.6194042563438416, - "label": "person", - "label_id": 1 - }, - "h": 61, - "region_id": 9958, - "roi_type": "person", - "w": 25, - "x": 253, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.35685088485479355, - "x_min": 0.11790122836828232, - "y_max": 0.9961073994636536, - "y_min": 0.5718068480491638 - }, - "confidence": 0.9947429895401001, - "label": "vehicle", - "label_id": 2 - }, - "h": 183, - "region_id": 9959, - "roi_type": "vehicle", - "w": 184, - "x": 91, - "y": 247 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36447739601135254, - "x_min": 0.33208173513412476, - "y_max": 0.14312608540058136, - "y_min": 0.0 - }, - "confidence": 0.8804531693458557, - "label": "person", - "label_id": 1 - }, - "h": 62, - "region_id": 9960, - "roi_type": "person", - "w": 25, - "x": 255, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.36100974678993225, - "x_min": 0.10920840501785278, - "y_max": 1.0, - "y_min": 0.5514669418334961 - }, - "confidence": 0.9975082874298096, - "label": "vehicle", - "label_id": 2 - }, - "h": 194, - "region_id": 9961, - "roi_type": "vehicle", - "w": 193, - "x": 84, - "y": 238 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3689320683479309, - "x_min": 0.33504199981689453, - "y_max": 0.1309487745165825, - "y_min": 0.0 - }, - "confidence": 0.5245084166526794, - "label": "person", - "label_id": 1 - }, - "h": 57, - "region_id": 9962, - "roi_type": "person", - "w": 26, - "x": 257, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.36274436861276627, - "x_min": 0.11731896549463272, - "y_max": 1.0, - "y_min": 0.5336947441101074 - }, - "confidence": 0.9914770722389221, - "label": "vehicle", - "label_id": 2 - }, - "h": 201, - "region_id": 9963, - "roi_type": "vehicle", - "w": 188, - "x": 90, - "y": 231 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3659408688545227, - "x_min": 0.11780126392841339, - "y_max": 1.0, - "y_min": 0.518149733543396 - }, - "confidence": 0.9818969964981079, - "label": "vehicle", - "label_id": 2 - }, - "h": 208, - "region_id": 9964, - "roi_type": "vehicle", - "w": 191, - "x": 90, - "y": 224 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3604143261909485, - "x_min": 0.11885426938533783, - "y_max": 1.0, - "y_min": 0.5062888264656067 - }, - "confidence": 0.9770739674568176, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "region_id": 9965, - "roi_type": "vehicle", - "w": 186, - "x": 91, - "y": 219 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35873663425445557, - "x_min": 0.12577953934669495, - "y_max": 1.0, - "y_min": 0.487548291683197 - }, - "confidence": 0.9604198932647705, - "label": "vehicle", - "label_id": 2 - }, - "h": 221, - "region_id": 9966, - "roi_type": "vehicle", - "w": 179, - "x": 97, - "y": 211 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36819857358932495, - "x_min": 0.13242483139038086, - "y_max": 1.0, - "y_min": 0.4729745090007782 - }, - "confidence": 0.9679286479949951, - "label": "vehicle", - "label_id": 2 - }, - "h": 228, - "region_id": 9967, - "roi_type": "vehicle", - "w": 181, - "x": 102, - "y": 204 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37145912647247314, - "x_min": 0.13698597252368927, - "y_max": 0.9822669923305511, - "y_min": 0.45337817072868347 - }, - "confidence": 0.9909036755561829, - "label": "vehicle", - "label_id": 2 - }, - "h": 228, - "region_id": 9968, - "roi_type": "vehicle", - "w": 180, - "x": 105, - "y": 196 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.360751211643219, - "x_min": 0.14602144062519073, - "y_max": 0.9427908360958099, - "y_min": 0.4422529637813568 - }, - "confidence": 0.9961796998977661, - "label": "vehicle", - "label_id": 2 - }, - "h": 216, - "region_id": 9969, - "roi_type": "vehicle", - "w": 165, - "x": 112, - "y": 191 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3665272891521454, - "x_min": 0.15879389643669128, - "y_max": 0.9357600212097168, - "y_min": 0.41560184955596924 - }, - "confidence": 0.9988160133361816, - "label": "vehicle", - "label_id": 2 - }, - "h": 225, - "region_id": 9970, - "roi_type": "vehicle", - "w": 160, - "x": 122, - "y": 180 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36519184708595276, - "x_min": 0.1624055802822113, - "y_max": 0.9030640423297882, - "y_min": 0.3991294205188751 - }, - "confidence": 0.99962317943573, - "label": "vehicle", - "label_id": 2 - }, - "h": 218, - "region_id": 9971, - "roi_type": "vehicle", - "w": 156, - "x": 125, - "y": 172 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36517783999443054, - "x_min": 0.17351636290550232, - "y_max": 0.8792468309402466, - "y_min": 0.3837735652923584 - }, - "confidence": 0.9997884631156921, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "region_id": 9972, - "roi_type": "vehicle", - "w": 147, - "x": 133, - "y": 166 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36106088757514954, - "x_min": 0.1790127456188202, - "y_max": 0.8557636737823486, - "y_min": 0.36366569995880127 - }, - "confidence": 0.9998449087142944, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "region_id": 9973, - "roi_type": "vehicle", - "w": 140, - "x": 137, - "y": 157 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36285877227783203, - "x_min": 0.18275152146816254, - "y_max": 0.8229827284812927, - "y_min": 0.34286290407180786 - }, - "confidence": 0.9999336004257202, - "label": "vehicle", - "label_id": 2 - }, - "h": 207, - "region_id": 9974, - "roi_type": "vehicle", - "w": 138, - "x": 140, - "y": 148 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3602021038532257, - "x_min": 0.18906906247138977, - "y_max": 0.7855886220932007, - "y_min": 0.32251763343811035 - }, - "confidence": 0.9999699592590332, - "label": "vehicle", - "label_id": 2 - }, - "h": 200, - "region_id": 9975, - "roi_type": "vehicle", - "w": 131, - "x": 145, - "y": 139 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3588583469390869, - "x_min": 0.1904894858598709, - "y_max": 0.766708493232727, - "y_min": 0.31205347180366516 - }, - "confidence": 0.9999749660491943, - "label": "vehicle", - "label_id": 2 - }, - "h": 196, - "region_id": 9976, - "roi_type": "vehicle", - "w": 129, - "x": 146, - "y": 135 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.354780912399292, - "x_min": 0.19472239911556244, - "y_max": 0.7405029535293579, - "y_min": 0.29147496819496155 - }, - "confidence": 0.9999440908432007, - "label": "vehicle", - "label_id": 2 - }, - "h": 194, - "region_id": 9977, - "roi_type": "vehicle", - "w": 123, - "x": 150, - "y": 126 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34999334812164307, - "x_min": 0.194540336728096, - "y_max": 0.7187595367431641, - "y_min": 0.2768002152442932 - }, - "confidence": 0.9998922348022461, - "label": "vehicle", - "label_id": 2 - }, - "h": 191, - "region_id": 9978, - "roi_type": "vehicle", - "w": 119, - "x": 149, - "y": 120 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3457085192203522, - "x_min": 0.20007964968681335, - "y_max": 0.6881219744682312, - "y_min": 0.2653038501739502 - }, - "confidence": 0.9998040795326233, - "label": "vehicle", - "label_id": 2 - }, - "h": 183, - "region_id": 9979, - "roi_type": "vehicle", - "w": 112, - "x": 154, - "y": 115 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34467506408691406, - "x_min": 0.19982749223709106, - "y_max": 0.6525393724441528, - "y_min": 0.2548128664493561 - }, - "confidence": 0.9998615980148315, - "label": "vehicle", - "label_id": 2 - }, - "h": 172, - "region_id": 9980, - "roi_type": "vehicle", - "w": 111, - "x": 153, - "y": 110 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34181272983551025, - "x_min": 0.1947338730096817, - "y_max": 0.6376242786645889, - "y_min": 0.23916591703891754 - }, - "confidence": 0.9997871518135071, - "label": "vehicle", - "label_id": 2 - }, - "h": 172, - "region_id": 9982, - "roi_type": "vehicle", - "w": 113, - "x": 150, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3388643264770508, - "x_min": 0.19013750553131104, - "y_max": 0.6308777332305908, - "y_min": 0.2227199673652649 - }, - "confidence": 0.9997004270553589, - "label": "vehicle", - "label_id": 2 - }, - "h": 176, - "region_id": 9981, - "roi_type": "vehicle", - "w": 114, - "x": 146, - "y": 96 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3375055193901062, - "x_min": 0.18740473687648773, - "y_max": 0.5995768308639526, - "y_min": 0.20673570036888123 - }, - "confidence": 0.9998914003372192, - "label": "vehicle", - "label_id": 2 - }, - "h": 170, - "region_id": 9983, - "roi_type": "vehicle", - "w": 115, - "x": 144, - "y": 89 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3318176567554474, - "x_min": 0.17809423804283142, - "y_max": 0.5778812617063522, - "y_min": 0.19000546634197235 - }, - "confidence": 0.9998241066932678, - "label": "vehicle", - "label_id": 2 - }, - "h": 168, - "region_id": 9984, - "roi_type": "vehicle", - "w": 118, - "x": 137, - "y": 82 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3320659399032593, - "x_min": 0.1678294688463211, - "y_max": 0.5662893801927567, - "y_min": 0.17552174627780914 - }, - "confidence": 0.9969955682754517, - "label": "vehicle", - "label_id": 2 - }, - "h": 169, - "region_id": 9985, - "roi_type": "vehicle", - "w": 126, - "x": 129, - "y": 76 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33100444078445435, - "x_min": 0.15877386927604675, - "y_max": 0.5364057421684265, - "y_min": 0.16238099336624146 - }, - "confidence": 0.99989914894104, - "label": "vehicle", - "label_id": 2 - }, - "h": 162, - "region_id": 9986, - "roi_type": "vehicle", - "w": 132, - "x": 122, - "y": 70 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.32596272230148315, - "x_min": 0.1472930908203125, - "y_max": 0.5152767300605774, - "y_min": 0.15732121467590332 - }, - "confidence": 0.9999929666519165, - "label": "vehicle", - "label_id": 2 - }, - "h": 155, - "region_id": 9987, - "roi_type": "vehicle", - "w": 137, - "x": 113, - "y": 68 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3235021233558655, - "x_min": 0.13618597388267517, - "y_max": 0.5010689496994019, - "y_min": 0.15680626034736633 - }, - "confidence": 0.999995231628418, - "label": "vehicle", - "label_id": 2 - }, - "h": 149, - "region_id": 9988, - "roi_type": "vehicle", - "w": 144, - "x": 105, - "y": 68 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31811434030532837, - "x_min": 0.12496490776538849, - "y_max": 0.48322823643684387, - "y_min": 0.1473962366580963 - }, - "confidence": 0.9999911785125732, - "label": "vehicle", - "label_id": 2 - }, - "h": 145, - "region_id": 9989, - "roi_type": "vehicle", - "w": 148, - "x": 96, - "y": 64 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31093723326921463, - "x_min": 0.10377121716737747, - "y_max": 0.46475063264369965, - "y_min": 0.14403758943080902 - }, - "confidence": 0.9999978542327881, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "region_id": 9990, - "roi_type": "vehicle", - "w": 159, - "x": 80, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3060434088110924, - "x_min": 0.08956294506788254, - "y_max": 0.4555552154779434, - "y_min": 0.13558460772037506 - }, - "confidence": 0.9999889135360718, - "label": "vehicle", - "label_id": 2 - }, - "h": 138, - "region_id": 9991, - "roi_type": "vehicle", - "w": 166, - "x": 69, - "y": 59 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.29430411010980606, - "x_min": 0.07462427765130997, - "y_max": 0.4425668269395828, - "y_min": 0.13647617399692535 - }, - "confidence": 0.9999735355377197, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 9992, - "roi_type": "vehicle", - "w": 169, - "x": 57, - "y": 59 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.28833314031362534, - "x_min": 0.06440760940313339, - "y_max": 0.42713563144207, - "y_min": 0.1353260725736618 - }, - "confidence": 0.9999496936798096, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 9993, - "roi_type": "vehicle", - "w": 172, - "x": 49, - "y": 58 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2806038334965706, - "x_min": 0.046518273651599884, - "y_max": 0.4131326228380203, - "y_min": 0.13239772617816925 - }, - "confidence": 0.9999241828918457, - "label": "vehicle", - "label_id": 2 - }, - "h": 121, - "region_id": 9994, - "roi_type": "vehicle", - "w": 180, - "x": 36, - "y": 57 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27025366574525833, - "x_min": 0.031960584223270416, - "y_max": 0.40551871061325073, - "y_min": 0.1313827633857727 - }, - "confidence": 0.9999902248382568, - "label": "vehicle", - "label_id": 2 - }, - "h": 118, - "region_id": 9995, - "roi_type": "vehicle", - "w": 183, - "x": 25, - "y": 57 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2574407830834389, - "x_min": 0.018124915659427643, - "y_max": 0.39813748002052307, - "y_min": 0.12768623232841492 - }, - "confidence": 0.9999737739562988, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 9996, - "roi_type": "vehicle", - "w": 184, - "x": 14, - "y": 55 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24728650599718094, - "x_min": 0.004216648638248444, - "y_max": 0.39358004927635193, - "y_min": 0.12342569231987 - }, - "confidence": 0.9995150566101074, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 9997, - "roi_type": "vehicle", - "w": 187, - "x": 3, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23507950454950333, - "x_min": 0.0055961087346076965, - "y_max": 0.3909708857536316, - "y_min": 0.12340492010116577 - }, - "confidence": 0.9983311295509338, - "label": "vehicle", - "label_id": 2 - }, - "h": 116, - "region_id": 9998, - "roi_type": "vehicle", - "w": 176, - "x": 4, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.22479692846536636, - "x_min": 0.0017654374241828918, - "y_max": 0.3854464143514633, - "y_min": 0.12457780539989471 - }, - "confidence": 0.9997487664222717, - "label": "vehicle", - "label_id": 2 - }, - "h": 113, - "region_id": 9999, - "roi_type": "vehicle", - "w": 171, - "x": 1, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.21433766931295395, - "x_min": 0.0017601177096366882, - "y_max": 0.37883228063583374, - "y_min": 0.1250355839729309 - }, - "confidence": 0.99918133020401, - "label": "vehicle", - "label_id": 2 - }, - "h": 110, - "region_id": 10000, - "roi_type": "vehicle", - "w": 163, - "x": 1, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2030910775065422, - "x_min": 0.0008123144507408142, - "y_max": 0.37199288606643677, - "y_min": 0.12212663888931274 - }, - "confidence": 0.9997194409370422, - "label": "vehicle", - "label_id": 2 - }, - "h": 108, - "region_id": 10001, - "roi_type": "vehicle", - "w": 155, - "x": 1, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.18479623645544052, - "x_min": 0.0, - "y_max": 0.36851049214601517, - "y_min": 0.1222873404622078 - }, - "confidence": 0.9995477795600891, - "label": "vehicle", - "label_id": 2 - }, - "h": 106, - "region_id": 10002, - "roi_type": "vehicle", - "w": 142, - "x": 0, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1737116277217865, - "x_min": 0.0, - "y_max": 0.36372971534729004, - "y_min": 0.11915415525436401 - }, - "confidence": 0.9950657486915588, - "label": "vehicle", - "label_id": 2 - }, - "h": 106, - "region_id": 10003, - "roi_type": "vehicle", - "w": 133, - "x": 0, - "y": 51 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.16038884222507477, - "x_min": 0.0, - "y_max": 0.3588944375514984, - "y_min": 0.1205725371837616 - }, - "confidence": 0.9822043776512146, - "label": "vehicle", - "label_id": 2 - }, - "h": 103, - "region_id": 10004, - "roi_type": "vehicle", - "w": 123, - "x": 0, - "y": 52 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.14810673147439957, - "x_min": 0.0, - "y_max": 0.35652363300323486, - "y_min": 0.12085320055484772 - }, - "confidence": 0.9530179500579834, - "label": "vehicle", - "label_id": 2 - }, - "h": 102, - "region_id": 10005, - "roi_type": "vehicle", - "w": 114, - "x": 0, - "y": 52 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.13574014604091644, - "x_min": 0.0, - "y_max": 0.3567160964012146, - "y_min": 0.12330564856529236 - }, - "confidence": 0.7856730818748474, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "region_id": 10006, - "roi_type": "vehicle", - "w": 104, - "x": 0, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11242122203111649, - "x_min": 0.0019209012389183044, - "y_max": 0.35550349950790405, - "y_min": 0.1260470598936081 - }, - "confidence": 0.6798886060714722, - "label": "vehicle", - "label_id": 2 - }, - "h": 99, - "region_id": 10007, - "roi_type": "vehicle", - "w": 85, - "x": 1, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.09885160624980927, - "x_min": 0.003643341362476349, - "y_max": 0.358278751373291, - "y_min": 0.1264287382364273 - }, - "confidence": 0.7773323655128479, - "label": "vehicle", - "label_id": 2 - }, - "h": 100, - "region_id": 10008, - "roi_type": "vehicle", - "w": 73, - "x": 3, - "y": 55 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.0878419578075409, - "x_min": 0.0017804354429244995, - "y_max": 0.3632156252861023, - "y_min": 0.12948653101921082 - }, - "confidence": 0.6258467435836792, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "region_id": 10009, - "roi_type": "vehicle", - "w": 66, - "x": 1, - "y": 56 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07318701222538948, - "x_min": 0.004130352288484573, - "y_max": 0.3511764109134674, - "y_min": 0.14347276091575623 - }, - "confidence": 0.6314224004745483, - "label": "vehicle", - "label_id": 2 - }, - "h": 90, - "region_id": 10010, - "roi_type": "vehicle", - "w": 53, - "x": 3, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06266952119767666, - "x_min": 0.0, - "y_max": 0.34957605600357056, - "y_min": 0.14383465051651 - }, - "confidence": 0.6896519064903259, - "label": "vehicle", - "label_id": 2 - }, - "h": 89, - "region_id": 10011, - "roi_type": "vehicle", - "w": 48, - "x": 0, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.04970441199839115, - "x_min": 0.0, - "y_max": 0.34233343601226807, - "y_min": 0.14351695775985718 - }, - "confidence": 0.6430801749229431, - "label": "vehicle", - "label_id": 2 - }, - "h": 86, - "region_id": 10012, - "roi_type": "vehicle", - "w": 38, - "x": 0, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49250000000 - } - ] -} \ No newline at end of file diff --git a/tests/test_cases/pipeline_execution/cpu/object_detection_gst_launch_string_gstreamer.json b/tests/test_cases/pipeline_execution/cpu/object_detection_gst_launch_string_gstreamer.json deleted file mode 100644 index c4efb21..0000000 --- a/tests/test_cases/pipeline_execution/cpu/object_detection_gst_launch_string_gstreamer.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "options": {"log_level": "DEBUG"}, - "pipeline": { - "name": "object_detection", - "version": "person_vehicle_bike" - }, - "request": { - "source": { - "type": "uri", - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4" - }, - "destination": { - "type": "file", - "path": "/tmp/object_detection_results.json", - "format": "json" - }, - "parameters": { - "detection-device": "CPU" - } - }, - "expected_server_output": "gst-launch-1.0 urisourcebin uri=file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4 ! decodebin ! gvadetect model=/home/pipeline-server/models/object_detection/person_vehicle_bike/FP32/person-vehicle-bike-detection-crossroad-0078.xml model-instance-id=detection_[a-z0-9]+ model-proc=/home/pipeline-server/models/object_detection/person_vehicle_bike/person-vehicle-bike-detection-crossroad-0078.json ! gvametaconvert source=file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4 tags={} ! gvametapublish file-path=/tmp/object_detection_results.json ! appsink sync=False emit-signals=True", - "result" : [], - "golden_results": false -} \ No newline at end of file diff --git a/tests/test_cases/pipeline_execution/cpu/object_detection_gstreamer.json b/tests/test_cases/pipeline_execution/cpu/object_detection_gstreamer.json deleted file mode 100644 index 83556f5..0000000 --- a/tests/test_cases/pipeline_execution/cpu/object_detection_gstreamer.json +++ /dev/null @@ -1,7496 +0,0 @@ -{ - "options": {}, - "pipeline": { - "name": "object_detection", - "version": "person_vehicle_bike" - }, - "request": { - "source": { - "type": "uri", - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4" - }, - "destination": { - "type": "file", - "path": "/tmp/object_detection_results.json", - "format": "json" - }, - "parameters": { - "detection-device": "CPU" - } - }, - "numerical_tolerance": 0.001, - "result": [ - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7448995113372803, - "x_min": 0.6734092235565186, - "y_max": 0.9991496205329895, - "y_min": 0.8781012892723083 - }, - "confidence": 0.5402482748031616, - "label": "person", - "label_id": 1 - }, - "h": 52, - "region_id": 5434, - "roi_type": "person", - "w": 55, - "x": 517, - "y": 379 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7442192435264587, - "x_min": 0.6763269305229187, - "y_max": 1.0, - "y_min": 0.8277981281280518 - }, - "confidence": 0.5505853295326233, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 5435, - "roi_type": "person", - "w": 52, - "x": 519, - "y": 358 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7465136051177979, - "x_min": 0.6821862459182739, - "y_max": 1.0, - "y_min": 0.8104690909385681 - }, - "confidence": 0.6447358131408691, - "label": "person", - "label_id": 1 - }, - "h": 82, - "region_id": 5436, - "roi_type": "person", - "w": 49, - "x": 524, - "y": 350 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7481286525726318, - "x_min": 0.68366539478302, - "y_max": 0.9999657869338989, - "y_min": 0.7867170572280884 - }, - "confidence": 0.882526695728302, - "label": "person", - "label_id": 1 - }, - "h": 92, - "region_id": 5437, - "roi_type": "person", - "w": 50, - "x": 525, - "y": 340 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7502986788749695, - "x_min": 0.6836960911750793, - "y_max": 0.9965759515762329, - "y_min": 0.7709740400314331 - }, - "confidence": 0.9252126812934875, - "label": "person", - "label_id": 1 - }, - "h": 97, - "region_id": 5438, - "roi_type": "person", - "w": 51, - "x": 525, - "y": 333 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7533046007156372, - "x_min": 0.6833932399749756, - "y_max": 0.9992514848709106, - "y_min": 0.7517307996749878 - }, - "confidence": 0.9160429835319519, - "label": "person", - "label_id": 1 - }, - "h": 107, - "region_id": 5439, - "roi_type": "person", - "w": 54, - "x": 525, - "y": 325 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7569091320037842, - "x_min": 0.6831721067428589, - "y_max": 0.9893119931221008, - "y_min": 0.7454761862754822 - }, - "confidence": 0.9452281594276428, - "label": "person", - "label_id": 1 - }, - "h": 105, - "region_id": 5441, - "roi_type": "person", - "w": 57, - "x": 525, - "y": 322 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.758220374584198, - "x_min": 0.6869714856147766, - "y_max": 0.9744250774383545, - "y_min": 0.7232376337051392 - }, - "confidence": 0.9522698521614075, - "label": "person", - "label_id": 1 - }, - "h": 109, - "region_id": 5442, - "roi_type": "person", - "w": 55, - "x": 528, - "y": 312 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.757515549659729, - "x_min": 0.6908836364746094, - "y_max": 0.9485968351364136, - "y_min": 0.7128696441650391 - }, - "confidence": 0.8796297907829285, - "label": "person", - "label_id": 1 - }, - "h": 102, - "region_id": 5443, - "roi_type": "person", - "w": 51, - "x": 531, - "y": 308 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7562522292137146, - "x_min": 0.6947104334831238, - "y_max": 0.8969831466674805, - "y_min": 0.7029379606246948 - }, - "confidence": 0.8928061127662659, - "label": "person", - "label_id": 1 - }, - "h": 84, - "region_id": 5444, - "roi_type": "person", - "w": 47, - "x": 534, - "y": 304 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7574296593666077, - "x_min": 0.6979045271873474, - "y_max": 0.8754802346229553, - "y_min": 0.6884984374046326 - }, - "confidence": 0.8720522522926331, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 5445, - "roi_type": "person", - "w": 46, - "x": 536, - "y": 297 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7628753781318665, - "x_min": 0.6962668299674988, - "y_max": 0.9012861251831055, - "y_min": 0.6672508716583252 - }, - "confidence": 0.6989018321037292, - "label": "person", - "label_id": 1 - }, - "h": 101, - "region_id": 5446, - "roi_type": "person", - "w": 51, - "x": 535, - "y": 288 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7642366886138916, - "x_min": 0.6945128440856934, - "y_max": 0.8976410031318665, - "y_min": 0.6511140465736389 - }, - "confidence": 0.6954102516174316, - "label": "person", - "label_id": 1 - }, - "h": 106, - "region_id": 5447, - "roi_type": "person", - "w": 54, - "x": 533, - "y": 281 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7641031742095947, - "x_min": 0.7028636932373047, - "y_max": 0.8516806960105896, - "y_min": 0.6483859419822693 - }, - "confidence": 0.6670747995376587, - "label": "person", - "label_id": 1 - }, - "h": 88, - "region_id": 5448, - "roi_type": "person", - "w": 47, - "x": 540, - "y": 280 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7670164108276367, - "x_min": 0.7064443826675415, - "y_max": 0.829826295375824, - "y_min": 0.6299616694450378 - }, - "confidence": 0.929532527923584, - "label": "person", - "label_id": 1 - }, - "h": 86, - "region_id": 5449, - "roi_type": "person", - "w": 47, - "x": 543, - "y": 272 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7725509405136108, - "x_min": 0.7098292112350464, - "y_max": 0.8254445195198059, - "y_min": 0.6173177361488342 - }, - "confidence": 0.6896131634712219, - "label": "person", - "label_id": 1 - }, - "h": 90, - "region_id": 5450, - "roi_type": "person", - "w": 48, - "x": 545, - "y": 267 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.77418452501297, - "x_min": 0.7090356945991516, - "y_max": 0.8218122124671936, - "y_min": 0.6104786992073059 - }, - "confidence": 0.7604833841323853, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 5451, - "roi_type": "person", - "w": 50, - "x": 545, - "y": 264 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7783714532852173, - "x_min": 0.7181830406188965, - "y_max": 0.7849859595298767, - "y_min": 0.5744112133979797 - }, - "confidence": 0.502738356590271, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 5452, - "roi_type": "person", - "w": 46, - "x": 552, - "y": 248 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7834279537200928, - "x_min": 0.7257949113845825, - "y_max": 0.7589362263679504, - "y_min": 0.5519590973854065 - }, - "confidence": 0.7043135166168213, - "label": "person", - "label_id": 1 - }, - "h": 89, - "region_id": 5453, - "roi_type": "person", - "w": 44, - "x": 557, - "y": 238 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.78952956199646, - "x_min": 0.7326743602752686, - "y_max": 0.7261121273040771, - "y_min": 0.5483003854751587 - }, - "confidence": 0.9756479263305664, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 5454, - "roi_type": "person", - "w": 44, - "x": 563, - "y": 237 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7890371084213257, - "x_min": 0.737720251083374, - "y_max": 0.7031307816505432, - "y_min": 0.5400574803352356 - }, - "confidence": 0.8415098786354065, - "label": "person", - "label_id": 1 - }, - "h": 70, - "region_id": 5455, - "roi_type": "person", - "w": 39, - "x": 567, - "y": 233 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7952908873558044, - "x_min": 0.7402903437614441, - "y_max": 0.6921250820159912, - "y_min": 0.5216915607452393 - }, - "confidence": 0.7716295719146729, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 5456, - "roi_type": "person", - "w": 42, - "x": 569, - "y": 225 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8006463646888733, - "x_min": 0.746234118938446, - "y_max": 0.6880520582199097, - "y_min": 0.5218417644500732 - }, - "confidence": 0.8759844303131104, - "label": "person", - "label_id": 1 - }, - "h": 72, - "region_id": 5457, - "roi_type": "person", - "w": 42, - "x": 573, - "y": 225 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8098055720329285, - "x_min": 0.7457361817359924, - "y_max": 0.7030310034751892, - "y_min": 0.5026633143424988 - }, - "confidence": 0.9101058840751648, - "label": "person", - "label_id": 1 - }, - "h": 87, - "region_id": 5458, - "roi_type": "person", - "w": 49, - "x": 573, - "y": 217 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8131635785102844, - "x_min": 0.7560372948646545, - "y_max": 0.68419349193573, - "y_min": 0.4961233139038086 - }, - "confidence": 0.9086412787437439, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 5459, - "roi_type": "person", - "w": 44, - "x": 581, - "y": 214 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.823058545589447, - "x_min": 0.7637491822242737, - "y_max": 0.6855756640434265, - "y_min": 0.4885023236274719 - }, - "confidence": 0.8248202800750732, - "label": "person", - "label_id": 1 - }, - "h": 85, - "region_id": 5462, - "roi_type": "person", - "w": 46, - "x": 587, - "y": 211 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8232852220535278, - "x_min": 0.760567307472229, - "y_max": 0.6924915909767151, - "y_min": 0.47507840394973755 - }, - "confidence": 0.6950181126594543, - "label": "person", - "label_id": 1 - }, - "h": 94, - "region_id": 5465, - "roi_type": "person", - "w": 48, - "x": 584, - "y": 205 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8322221040725708, - "x_min": 0.7602424621582031, - "y_max": 0.6941542625427246, - "y_min": 0.46584224700927734 - }, - "confidence": 0.5867351293563843, - "label": "person", - "label_id": 1 - }, - "h": 99, - "region_id": 5466, - "roi_type": "person", - "w": 55, - "x": 584, - "y": 201 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8429373502731323, - "x_min": 0.793522834777832, - "y_max": 0.6419346928596497, - "y_min": 0.43809905648231506 - }, - "confidence": 0.96792072057724, - "label": "person", - "label_id": 1 - }, - "h": 88, - "region_id": 5467, - "roi_type": "person", - "w": 38, - "x": 609, - "y": 189 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.849794328212738, - "x_min": 0.796667754650116, - "y_max": 0.615337610244751, - "y_min": 0.44303929805755615 - }, - "confidence": 0.8853123188018799, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 5468, - "roi_type": "person", - "w": 41, - "x": 612, - "y": 191 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8533491492271423, - "x_min": 0.8009874224662781, - "y_max": 0.6051764488220215, - "y_min": 0.4295734465122223 - }, - "confidence": 0.90330970287323, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 5471, - "roi_type": "person", - "w": 40, - "x": 615, - "y": 186 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8604123592376709, - "x_min": 0.8060647249221802, - "y_max": 0.5924712419509888, - "y_min": 0.42701780796051025 - }, - "confidence": 0.8053339719772339, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 5473, - "roi_type": "person", - "w": 42, - "x": 619, - "y": 184 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8663100600242615, - "x_min": 0.810594379901886, - "y_max": 0.5942341089248657, - "y_min": 0.42083391547203064 - }, - "confidence": 0.7699306607246399, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 5475, - "roi_type": "person", - "w": 43, - "x": 623, - "y": 182 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8744010329246521, - "x_min": 0.817695677280426, - "y_max": 0.5900759696960449, - "y_min": 0.41369643807411194 - }, - "confidence": 0.9554973244667053, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 5476, - "roi_type": "person", - "w": 44, - "x": 628, - "y": 179 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8855565190315247, - "x_min": 0.8264035582542419, - "y_max": 0.5860601663589478, - "y_min": 0.4029603898525238 - }, - "confidence": 0.8228950500488281, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 5478, - "roi_type": "person", - "w": 45, - "x": 635, - "y": 174 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8908534049987793, - "x_min": 0.8350781202316284, - "y_max": 0.5897727012634277, - "y_min": 0.3878403902053833 - }, - "confidence": 0.8011389970779419, - "label": "person", - "label_id": 1 - }, - "h": 87, - "region_id": 5479, - "roi_type": "person", - "w": 43, - "x": 641, - "y": 168 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9007775187492371, - "x_min": 0.8356189131736755, - "y_max": 0.5877959132194519, - "y_min": 0.39412611722946167 - }, - "confidence": 0.6489140391349792, - "label": "person", - "label_id": 1 - }, - "h": 84, - "region_id": 5480, - "roi_type": "person", - "w": 50, - "x": 642, - "y": 170 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9088490605354309, - "x_min": 0.8531065583229065, - "y_max": 0.5604838728904724, - "y_min": 0.376047819852829 - }, - "confidence": 0.6436927914619446, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 5481, - "roi_type": "person", - "w": 43, - "x": 655, - "y": 162 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.91246098279953, - "x_min": 0.8664992451667786, - "y_max": 0.5441793203353882, - "y_min": 0.36725080013275146 - }, - "confidence": 0.8806077837944031, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 5482, - "roi_type": "person", - "w": 35, - "x": 665, - "y": 159 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9204215407371521, - "x_min": 0.8713714480400085, - "y_max": 0.5294153690338135, - "y_min": 0.3520965278148651 - }, - "confidence": 0.9779548048973083, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 5483, - "roi_type": "person", - "w": 38, - "x": 669, - "y": 152 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9224029779434204, - "x_min": 0.8775302171707153, - "y_max": 0.5218915343284607, - "y_min": 0.35059165954589844 - }, - "confidence": 0.9283971786499023, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 5484, - "roi_type": "person", - "w": 34, - "x": 674, - "y": 151 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9281563758850098, - "x_min": 0.87200927734375, - "y_max": 0.5194041728973389, - "y_min": 0.3446289598941803 - }, - "confidence": 0.7565144896507263, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 5485, - "roi_type": "person", - "w": 43, - "x": 670, - "y": 149 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.937407910823822, - "x_min": 0.8853235840797424, - "y_max": 0.5107858777046204, - "y_min": 0.34274011850357056 - }, - "confidence": 0.950576663017273, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 5486, - "roi_type": "person", - "w": 40, - "x": 680, - "y": 148 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9449759125709534, - "x_min": 0.8897075057029724, - "y_max": 0.5037586688995361, - "y_min": 0.33645257353782654 - }, - "confidence": 0.909963846206665, - "label": "person", - "label_id": 1 - }, - "h": 72, - "region_id": 5487, - "roi_type": "person", - "w": 42, - "x": 683, - "y": 145 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9549130201339722, - "x_min": 0.8982007503509521, - "y_max": 0.5104894638061523, - "y_min": 0.3242742419242859 - }, - "confidence": 0.7820349931716919, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 5489, - "roi_type": "person", - "w": 44, - "x": 690, - "y": 140 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9616369009017944, - "x_min": 0.9061300754547119, - "y_max": 0.5176384449005127, - "y_min": 0.32654041051864624 - }, - "confidence": 0.7777004837989807, - "label": "person", - "label_id": 1 - }, - "h": 83, - "region_id": 5488, - "roi_type": "person", - "w": 43, - "x": 696, - "y": 141 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9738940000534058, - "x_min": 0.9141021966934204, - "y_max": 0.4915769100189209, - "y_min": 0.3181222677230835 - }, - "confidence": 0.7904218435287476, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 5490, - "roi_type": "person", - "w": 46, - "x": 702, - "y": 137 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.975996196269989, - "x_min": 0.9256718754768372, - "y_max": 0.4855739176273346, - "y_min": 0.30408164858818054 - }, - "confidence": 0.7352949976921082, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 5491, - "roi_type": "person", - "w": 39, - "x": 711, - "y": 131 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9818256497383118, - "x_min": 0.928584635257721, - "y_max": 0.47780394554138184, - "y_min": 0.2946469187736511 - }, - "confidence": 0.8346178531646729, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 5492, - "roi_type": "person", - "w": 41, - "x": 713, - "y": 127 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9829865097999573, - "x_min": 0.9321264624595642, - "y_max": 0.46189287304878235, - "y_min": 0.2909712493419647 - }, - "confidence": 0.9709599018096924, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 5493, - "roi_type": "person", - "w": 39, - "x": 716, - "y": 126 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9856051206588745, - "x_min": 0.9314626455307007, - "y_max": 0.4595508873462677, - "y_min": 0.2890259921550751 - }, - "confidence": 0.6953359246253967, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 5494, - "roi_type": "person", - "w": 42, - "x": 715, - "y": 125 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9974535703659058, - "x_min": 0.9289860725402832, - "y_max": 0.46979770064353943, - "y_min": 0.25890347361564636 - }, - "confidence": 0.5784777998924255, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 5495, - "roi_type": "person", - "w": 53, - "x": 713, - "y": 112 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9965777397155762, - "x_min": 0.948677659034729, - "y_max": 0.4469355344772339, - "y_min": 0.2675803303718567 - }, - "confidence": 0.5522598028182983, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 5496, - "roi_type": "person", - "w": 37, - "x": 729, - "y": 116 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.11904987692832947, - "y_max": 0.9856871068477631, - "y_min": 0.019983261823654175 - }, - "confidence": 0.5811690092086792, - "label": "vehicle", - "label_id": 2 - }, - "h": 417, - "region_id": 5497, - "roi_type": "vehicle", - "w": 677, - "x": 91, - "y": 9 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 13916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3472718670964241, - "x_min": 0.12164772301912308, - "y_max": 1.0, - "y_min": 0.8393084406852722 - }, - "confidence": 0.6197941899299622, - "label": "vehicle", - "label_id": 2 - }, - "h": 69, - "region_id": 5498, - "roi_type": "vehicle", - "w": 173, - "x": 93, - "y": 363 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35296928882598877, - "x_min": 0.12145508825778961, - "y_max": 1.0, - "y_min": 0.809481143951416 - }, - "confidence": 0.7172138094902039, - "label": "vehicle", - "label_id": 2 - }, - "h": 82, - "region_id": 5499, - "roi_type": "vehicle", - "w": 178, - "x": 93, - "y": 350 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35698965191841125, - "x_min": 0.12027296423912048, - "y_max": 0.9967044591903687, - "y_min": 0.783829927444458 - }, - "confidence": 0.8247243762016296, - "label": "vehicle", - "label_id": 2 - }, - "h": 92, - "region_id": 5500, - "roi_type": "vehicle", - "w": 182, - "x": 92, - "y": 339 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35937564820051193, - "x_min": 0.1130119189620018, - "y_max": 0.9963881969451904, - "y_min": 0.7641627788543701 - }, - "confidence": 0.8237555027008057, - "label": "vehicle", - "label_id": 2 - }, - "h": 100, - "region_id": 5501, - "roi_type": "vehicle", - "w": 189, - "x": 87, - "y": 330 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3695478141307831, - "x_min": 0.11453911662101746, - "y_max": 1.0, - "y_min": 0.7280340790748596 - }, - "confidence": 0.7173946499824524, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 5502, - "roi_type": "vehicle", - "w": 196, - "x": 88, - "y": 315 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36808082461357117, - "x_min": 0.10083702206611633, - "y_max": 0.9959658980369568, - "y_min": 0.7031351923942566 - }, - "confidence": 0.8457762002944946, - "label": "vehicle", - "label_id": 2 - }, - "h": 127, - "region_id": 5503, - "roi_type": "vehicle", - "w": 205, - "x": 77, - "y": 304 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37700890004634857, - "x_min": 0.10729126632213593, - "y_max": 0.9994959831237793, - "y_min": 0.6779965162277222 - }, - "confidence": 0.9278457760810852, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "region_id": 5504, - "roi_type": "vehicle", - "w": 207, - "x": 82, - "y": 293 - }, - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.12105026841163635, - "y_max": 0.9884764552116394, - "y_min": 0.031229078769683838 - }, - "confidence": 0.6490932106971741, - "label": "vehicle", - "label_id": 2 - }, - "h": 414, - "region_id": 5505, - "roi_type": "vehicle", - "w": 675, - "x": 93, - "y": 13 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37933249771595, - "x_min": 0.10664261877536774, - "y_max": 1.0, - "y_min": 0.6494535207748413 - }, - "confidence": 0.9569631814956665, - "label": "vehicle", - "label_id": 2 - }, - "h": 151, - "region_id": 5506, - "roi_type": "vehicle", - "w": 209, - "x": 82, - "y": 281 - }, - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.12350031733512878, - "y_max": 0.9561575353145599, - "y_min": 0.036140888929367065 - }, - "confidence": 0.6475626826286316, - "label": "vehicle", - "label_id": 2 - }, - "h": 397, - "region_id": 5507, - "roi_type": "vehicle", - "w": 673, - "x": 95, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37901879847049713, - "x_min": 0.10554523766040802, - "y_max": 1.0, - "y_min": 0.6312699913978577 - }, - "confidence": 0.9906972646713257, - "label": "vehicle", - "label_id": 2 - }, - "h": 159, - "region_id": 5508, - "roi_type": "vehicle", - "w": 210, - "x": 81, - "y": 273 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3792016804218292, - "x_min": 0.11973920464515686, - "y_max": 0.9997225999832153, - "y_min": 0.6097801923751831 - }, - "confidence": 0.9947446584701538, - "label": "vehicle", - "label_id": 2 - }, - "h": 168, - "region_id": 5509, - "roi_type": "vehicle", - "w": 199, - "x": 92, - "y": 263 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3760889172554016, - "x_min": 0.11782974004745483, - "y_max": 0.9969019889831543, - "y_min": 0.5848079919815063 - }, - "confidence": 0.9949920773506165, - "label": "vehicle", - "label_id": 2 - }, - "h": 178, - "region_id": 5510, - "roi_type": "vehicle", - "w": 198, - "x": 90, - "y": 253 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3769965320825577, - "x_min": 0.11793924868106842, - "y_max": 0.9975459575653076, - "y_min": 0.5624508857727051 - }, - "confidence": 0.9885396361351013, - "label": "vehicle", - "label_id": 2 - }, - "h": 188, - "region_id": 5511, - "roi_type": "vehicle", - "w": 199, - "x": 91, - "y": 243 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37293992936611176, - "x_min": 0.11036746203899384, - "y_max": 1.0, - "y_min": 0.5396616458892822 - }, - "confidence": 0.9783477783203125, - "label": "vehicle", - "label_id": 2 - }, - "h": 199, - "region_id": 5512, - "roi_type": "vehicle", - "w": 202, - "x": 85, - "y": 233 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36592480540275574, - "x_min": 0.13214635848999023, - "y_max": 1.0, - "y_min": 0.5241050720214844 - }, - "confidence": 0.9772934317588806, - "label": "vehicle", - "label_id": 2 - }, - "h": 206, - "region_id": 5513, - "roi_type": "vehicle", - "w": 180, - "x": 101, - "y": 226 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3634260296821594, - "x_min": 0.13490857183933258, - "y_max": 1.0, - "y_min": 0.5041921138763428 - }, - "confidence": 0.9919345378875732, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "region_id": 5514, - "roi_type": "vehicle", - "w": 176, - "x": 104, - "y": 218 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.960456371307373, - "x_min": 0.14331555366516113, - "y_max": 0.8030669689178467, - "y_min": 0.04740440845489502 - }, - "confidence": 0.6498066186904907, - "label": "vehicle", - "label_id": 2 - }, - "h": 326, - "region_id": 5515, - "roi_type": "vehicle", - "w": 628, - "x": 110, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3554348349571228, - "x_min": 0.14201128482818604, - "y_max": 0.9914812445640564, - "y_min": 0.49649685621261597 - }, - "confidence": 0.9959776997566223, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "region_id": 5516, - "roi_type": "vehicle", - "w": 164, - "x": 109, - "y": 214 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35458171367645264, - "x_min": 0.14792513847351074, - "y_max": 0.9985901713371277, - "y_min": 0.47491592168807983 - }, - "confidence": 0.9977288842201233, - "label": "vehicle", - "label_id": 2 - }, - "h": 226, - "region_id": 5517, - "roi_type": "vehicle", - "w": 159, - "x": 114, - "y": 205 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9464908838272095, - "x_min": 0.37183070182800293, - "y_max": 0.8923693895339966, - "y_min": 0.04037749767303467 - }, - "confidence": 0.5506706833839417, - "label": "vehicle", - "label_id": 2 - }, - "h": 368, - "region_id": 5518, - "roi_type": "vehicle", - "w": 441, - "x": 286, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35628217458724976, - "x_min": 0.1539267748594284, - "y_max": 0.9833188056945801, - "y_min": 0.4503910541534424 - }, - "confidence": 0.994249701499939, - "label": "vehicle", - "label_id": 2 - }, - "h": 230, - "region_id": 5519, - "roi_type": "vehicle", - "w": 155, - "x": 118, - "y": 195 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3493105173110962, - "x_min": 0.15961898863315582, - "y_max": 0.9475720822811127, - "y_min": 0.4319262206554413 - }, - "confidence": 0.9976761937141418, - "label": "vehicle", - "label_id": 2 - }, - "h": 223, - "region_id": 5520, - "roi_type": "vehicle", - "w": 146, - "x": 123, - "y": 187 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9634890258312225, - "x_min": 0.3556390702724457, - "y_max": 0.7470780611038208, - "y_min": 0.06608313322067261 - }, - "confidence": 0.7034559845924377, - "label": "vehicle", - "label_id": 2 - }, - "h": 294, - "region_id": 5521, - "roi_type": "vehicle", - "w": 467, - "x": 273, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3447081446647644, - "x_min": 0.16244013607501984, - "y_max": 0.9356728792190552, - "y_min": 0.42220282554626465 - }, - "confidence": 0.997654139995575, - "label": "vehicle", - "label_id": 2 - }, - "h": 222, - "region_id": 5522, - "roi_type": "vehicle", - "w": 140, - "x": 125, - "y": 182 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9825330972671509, - "x_min": 0.34150373935699463, - "y_max": 0.9223797023296356, - "y_min": 0.048903077840805054 - }, - "confidence": 0.5919698476791382, - "label": "vehicle", - "label_id": 2 - }, - "h": 377, - "region_id": 5523, - "roi_type": "vehicle", - "w": 492, - "x": 262, - "y": 21 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3389114439487457, - "x_min": 0.16517701745033264, - "y_max": 0.9076908528804779, - "y_min": 0.4019246995449066 - }, - "confidence": 0.9994926452636719, - "label": "vehicle", - "label_id": 2 - }, - "h": 218, - "region_id": 5524, - "roi_type": "vehicle", - "w": 133, - "x": 127, - "y": 174 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3360127806663513, - "x_min": 0.1654418557882309, - "y_max": 0.8818584084510803, - "y_min": 0.3884504437446594 - }, - "confidence": 0.9987764954566956, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "region_id": 5525, - "roi_type": "vehicle", - "w": 131, - "x": 127, - "y": 168 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9590835273265839, - "x_min": 0.31477364897727966, - "y_max": 0.8576100170612335, - "y_min": 0.07268145680427551 - }, - "confidence": 0.5272276401519775, - "label": "vehicle", - "label_id": 2 - }, - "h": 339, - "region_id": 5526, - "roi_type": "vehicle", - "w": 495, - "x": 242, - "y": 31 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33232998847961426, - "x_min": 0.16263365745544434, - "y_max": 0.8597554564476013, - "y_min": 0.3726103901863098 - }, - "confidence": 0.9985213875770569, - "label": "vehicle", - "label_id": 2 - }, - "h": 210, - "region_id": 5527, - "roi_type": "vehicle", - "w": 130, - "x": 125, - "y": 161 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9746560454368591, - "x_min": 0.3364577889442444, - "y_max": 0.9104736745357513, - "y_min": 0.05242249369621277 - }, - "confidence": 0.5714530348777771, - "label": "vehicle", - "label_id": 2 - }, - "h": 371, - "region_id": 5528, - "roi_type": "vehicle", - "w": 490, - "x": 258, - "y": 23 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33004996180534363, - "x_min": 0.16184934973716736, - "y_max": 0.831344723701477, - "y_min": 0.35449519753456116 - }, - "confidence": 0.9997923970222473, - "label": "vehicle", - "label_id": 2 - }, - "h": 206, - "region_id": 5529, - "roi_type": "vehicle", - "w": 129, - "x": 124, - "y": 153 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9590028822422028, - "x_min": 0.3254684507846832, - "y_max": 0.8569502830505371, - "y_min": 0.06740456819534302 - }, - "confidence": 0.7004438042640686, - "label": "vehicle", - "label_id": 2 - }, - "h": 341, - "region_id": 5530, - "roi_type": "vehicle", - "w": 487, - "x": 250, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3289366066455841, - "x_min": 0.1574317216873169, - "y_max": 0.8062315583229065, - "y_min": 0.34386783838272095 - }, - "confidence": 0.9998531341552734, - "label": "vehicle", - "label_id": 2 - }, - "h": 200, - "region_id": 5531, - "roi_type": "vehicle", - "w": 132, - "x": 121, - "y": 149 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.964382529258728, - "x_min": 0.32466232776641846, - "y_max": 0.8281485438346863, - "y_min": 0.05045187473297119 - }, - "confidence": 0.7299045920372009, - "label": "vehicle", - "label_id": 2 - }, - "h": 336, - "region_id": 5532, - "roi_type": "vehicle", - "w": 491, - "x": 249, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.32749849557876587, - "x_min": 0.15210948884487152, - "y_max": 0.7838110327720642, - "y_min": 0.3270363211631775 - }, - "confidence": 0.9998413324356079, - "label": "vehicle", - "label_id": 2 - }, - "h": 197, - "region_id": 5533, - "roi_type": "vehicle", - "w": 135, - "x": 117, - "y": 141 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9622262120246887, - "x_min": 0.3427131772041321, - "y_max": 0.87251016497612, - "y_min": 0.04009708762168884 - }, - "confidence": 0.5857366919517517, - "label": "vehicle", - "label_id": 2 - }, - "h": 360, - "region_id": 5534, - "roi_type": "vehicle", - "w": 476, - "x": 263, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3233610689640045, - "x_min": 0.14286422729492188, - "y_max": 0.7728333473205566, - "y_min": 0.3200983703136444 - }, - "confidence": 0.9999895095825195, - "label": "vehicle", - "label_id": 2 - }, - "h": 196, - "region_id": 5535, - "roi_type": "vehicle", - "w": 139, - "x": 110, - "y": 138 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9750470519065857, - "x_min": 0.29748600721359253, - "y_max": 0.878402590751648, - "y_min": 0.02611905336380005 - }, - "confidence": 0.6027935147285461, - "label": "vehicle", - "label_id": 2 - }, - "h": 368, - "region_id": 5536, - "roi_type": "vehicle", - "w": 520, - "x": 228, - "y": 11 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3201468884944916, - "x_min": 0.13641870021820068, - "y_max": 0.7574479579925537, - "y_min": 0.309865802526474 - }, - "confidence": 0.9999890327453613, - "label": "vehicle", - "label_id": 2 - }, - "h": 193, - "region_id": 5537, - "roi_type": "vehicle", - "w": 141, - "x": 105, - "y": 134 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.967246949672699, - "x_min": 0.2861178517341614, - "y_max": 0.8358006775379181, - "y_min": 0.03851500153541565 - }, - "confidence": 0.7227263450622559, - "label": "vehicle", - "label_id": 2 - }, - "h": 344, - "region_id": 5538, - "roi_type": "vehicle", - "w": 523, - "x": 220, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31699711084365845, - "x_min": 0.13015078008174896, - "y_max": 0.7375568151473999, - "y_min": 0.29937541484832764 - }, - "confidence": 0.9999899864196777, - "label": "vehicle", - "label_id": 2 - }, - "h": 189, - "region_id": 5539, - "roi_type": "vehicle", - "w": 143, - "x": 100, - "y": 129 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9515461325645447, - "x_min": 0.33267635107040405, - "y_max": 0.8539553582668304, - "y_min": 0.03352043032646179 - }, - "confidence": 0.8081793785095215, - "label": "vehicle", - "label_id": 2 - }, - "h": 354, - "region_id": 5540, - "roi_type": "vehicle", - "w": 475, - "x": 255, - "y": 14 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.313996784389019, - "x_min": 0.1178915724158287, - "y_max": 0.721222996711731, - "y_min": 0.2869602143764496 - }, - "confidence": 0.9999879598617554, - "label": "vehicle", - "label_id": 2 - }, - "h": 188, - "region_id": 5541, - "roi_type": "vehicle", - "w": 151, - "x": 91, - "y": 124 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9608641266822815, - "x_min": 0.32193297147750854, - "y_max": 0.872944712638855, - "y_min": 0.03886592388153076 - }, - "confidence": 0.6384647488594055, - "label": "vehicle", - "label_id": 2 - }, - "h": 360, - "region_id": 5542, - "roi_type": "vehicle", - "w": 491, - "x": 247, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31122130155563354, - "x_min": 0.10584880411624908, - "y_max": 0.7095153331756592, - "y_min": 0.28365960717201233 - }, - "confidence": 0.9999860525131226, - "label": "vehicle", - "label_id": 2 - }, - "h": 184, - "region_id": 5543, - "roi_type": "vehicle", - "w": 158, - "x": 81, - "y": 123 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9637041389942169, - "x_min": 0.32208338379859924, - "y_max": 0.8715708255767822, - "y_min": 0.04041773080825806 - }, - "confidence": 0.649631142616272, - "label": "vehicle", - "label_id": 2 - }, - "h": 359, - "region_id": 5544, - "roi_type": "vehicle", - "w": 493, - "x": 247, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.30708828568458557, - "x_min": 0.08848142623901367, - "y_max": 0.6941937208175659, - "y_min": 0.27684852480888367 - }, - "confidence": 0.9999517202377319, - "label": "vehicle", - "label_id": 2 - }, - "h": 180, - "region_id": 5545, - "roi_type": "vehicle", - "w": 168, - "x": 68, - "y": 120 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9554692804813385, - "x_min": 0.3402766287326813, - "y_max": 0.8379943072795868, - "y_min": 0.04827651381492615 - }, - "confidence": 0.7163934707641602, - "label": "vehicle", - "label_id": 2 - }, - "h": 341, - "region_id": 5546, - "roi_type": "vehicle", - "w": 472, - "x": 261, - "y": 21 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3021143078804016, - "x_min": 0.08180795609951019, - "y_max": 0.6738347411155701, - "y_min": 0.2771807909011841 - }, - "confidence": 0.9999845027923584, - "label": "vehicle", - "label_id": 2 - }, - "h": 171, - "region_id": 5547, - "roi_type": "vehicle", - "w": 169, - "x": 63, - "y": 120 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9660838842391968, - "x_min": 0.33971118927001953, - "y_max": 0.8525603115558624, - "y_min": 0.0668802559375763 - }, - "confidence": 0.5413897633552551, - "label": "vehicle", - "label_id": 2 - }, - "h": 339, - "region_id": 5548, - "roi_type": "vehicle", - "w": 481, - "x": 261, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2942667081952095, - "x_min": 0.07385558634996414, - "y_max": 0.656566858291626, - "y_min": 0.27267447113990784 - }, - "confidence": 0.9999916553497314, - "label": "vehicle", - "label_id": 2 - }, - "h": 166, - "region_id": 5549, - "roi_type": "vehicle", - "w": 169, - "x": 57, - "y": 118 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9926852583885193, - "x_min": 0.3049655556678772, - "y_max": 0.8486753702163696, - "y_min": 0.05000650882720947 - }, - "confidence": 0.5591980814933777, - "label": "vehicle", - "label_id": 2 - }, - "h": 345, - "region_id": 5550, - "roi_type": "vehicle", - "w": 528, - "x": 234, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.28687456995248795, - "x_min": 0.06621802598237991, - "y_max": 0.6433695554733276, - "y_min": 0.2654878795146942 - }, - "confidence": 0.9999983310699463, - "label": "vehicle", - "label_id": 2 - }, - "h": 163, - "region_id": 5551, - "roi_type": "vehicle", - "w": 169, - "x": 51, - "y": 115 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.28295157104730606, - "x_min": 0.055335767567157745, - "y_max": 0.6373208165168762, - "y_min": 0.2616565227508545 - }, - "confidence": 0.9999963045120239, - "label": "vehicle", - "label_id": 2 - }, - "h": 162, - "region_id": 5552, - "roi_type": "vehicle", - "w": 175, - "x": 42, - "y": 113 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.95826455950737, - "x_min": 0.3554447591304779, - "y_max": 0.7013552486896515, - "y_min": 0.061350494623184204 - }, - "confidence": 0.6528945565223694, - "label": "vehicle", - "label_id": 2 - }, - "h": 276, - "region_id": 5553, - "roi_type": "vehicle", - "w": 463, - "x": 273, - "y": 27 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27854787558317184, - "x_min": 0.04411589354276657, - "y_max": 0.62773197889328, - "y_min": 0.2605406641960144 - }, - "confidence": 0.999983549118042, - "label": "vehicle", - "label_id": 2 - }, - "h": 159, - "region_id": 5554, - "roi_type": "vehicle", - "w": 180, - "x": 34, - "y": 113 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27031123638153076, - "x_min": 0.03065599501132965, - "y_max": 0.6122254133224487, - "y_min": 0.2575317919254303 - }, - "confidence": 0.9999444484710693, - "label": "vehicle", - "label_id": 2 - }, - "h": 153, - "region_id": 5555, - "roi_type": "vehicle", - "w": 184, - "x": 24, - "y": 111 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2618173286318779, - "x_min": 0.01927035301923752, - "y_max": 0.6008049249649048, - "y_min": 0.2527608275413513 - }, - "confidence": 0.9999783039093018, - "label": "vehicle", - "label_id": 2 - }, - "h": 150, - "region_id": 5556, - "roi_type": "vehicle", - "w": 186, - "x": 15, - "y": 109 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2521120309829712, - "x_min": 0.006787553429603577, - "y_max": 0.5942617058753967, - "y_min": 0.25123631954193115 - }, - "confidence": 0.999976396560669, - "label": "vehicle", - "label_id": 2 - }, - "h": 148, - "region_id": 5557, - "roi_type": "vehicle", - "w": 188, - "x": 5, - "y": 109 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2455773949623108, - "x_min": 0.0038528144359588623, - "y_max": 0.5852652192115784, - "y_min": 0.25117599964141846 - }, - "confidence": 0.999962568283081, - "label": "vehicle", - "label_id": 2 - }, - "h": 144, - "region_id": 5558, - "roi_type": "vehicle", - "w": 186, - "x": 3, - "y": 109 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23418442159891129, - "x_min": 0.00190020352602005, - "y_max": 0.5771202892065048, - "y_min": 0.24817226827144623 - }, - "confidence": 0.9999908208847046, - "label": "vehicle", - "label_id": 2 - }, - "h": 142, - "region_id": 5559, - "roi_type": "vehicle", - "w": 178, - "x": 1, - "y": 107 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.22408055514097214, - "x_min": 0.000627569854259491, - "y_max": 0.5654963403940201, - "y_min": 0.2458530217409134 - }, - "confidence": 0.9999959468841553, - "label": "vehicle", - "label_id": 2 - }, - "h": 138, - "region_id": 5560, - "roi_type": "vehicle", - "w": 172, - "x": 0, - "y": 106 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9729532599449158, - "x_min": 0.3975161910057068, - "y_max": 0.7704417705535889, - "y_min": 0.06877964735031128 - }, - "confidence": 0.5025386214256287, - "label": "vehicle", - "label_id": 2 - }, - "h": 303, - "region_id": 5561, - "roi_type": "vehicle", - "w": 442, - "x": 305, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.21542106568813324, - "x_min": 0.0, - "y_max": 0.5575774908065796, - "y_min": 0.24282824993133545 - }, - "confidence": 0.9999918937683105, - "label": "vehicle", - "label_id": 2 - }, - "h": 136, - "region_id": 5562, - "roi_type": "vehicle", - "w": 165, - "x": 0, - "y": 105 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9764736294746399, - "x_min": 0.3866834044456482, - "y_max": 0.8177641928195953, - "y_min": 0.04835072159767151 - }, - "confidence": 0.5299532413482666, - "label": "vehicle", - "label_id": 2 - }, - "h": 332, - "region_id": 5563, - "roi_type": "vehicle", - "w": 453, - "x": 297, - "y": 21 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.20652518421411514, - "x_min": 0.0, - "y_max": 0.5523459762334824, - "y_min": 0.2393653839826584 - }, - "confidence": 0.9999760389328003, - "label": "vehicle", - "label_id": 2 - }, - "h": 135, - "region_id": 5564, - "roi_type": "vehicle", - "w": 159, - "x": 0, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19814243912696838, - "x_min": 9.648501873016357e-05, - "y_max": 0.5438299030065536, - "y_min": 0.23729972541332245 - }, - "confidence": 0.99991774559021, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 5565, - "roi_type": "vehicle", - "w": 152, - "x": 0, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.18656962364912033, - "x_min": 0.00026082247495651245, - "y_max": 0.540632963180542, - "y_min": 0.22892174124717712 - }, - "confidence": 0.999891996383667, - "label": "vehicle", - "label_id": 2 - }, - "h": 135, - "region_id": 5566, - "roi_type": "vehicle", - "w": 143, - "x": 0, - "y": 99 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.17477919906377792, - "x_min": 0.001994602382183075, - "y_max": 0.5303716063499451, - "y_min": 0.22543710470199585 - }, - "confidence": 0.9990342855453491, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 5567, - "roi_type": "vehicle", - "w": 133, - "x": 2, - "y": 97 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.16638848185539246, - "x_min": 0.0, - "y_max": 0.5288660079240799, - "y_min": 0.22173668444156647 - }, - "confidence": 0.9978117346763611, - "label": "vehicle", - "label_id": 2 - }, - "h": 133, - "region_id": 5568, - "roi_type": "vehicle", - "w": 128, - "x": 0, - "y": 96 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15866544842720032, - "x_min": 0.0, - "y_max": 0.5260069519281387, - "y_min": 0.22341085970401764 - }, - "confidence": 0.9969075322151184, - "label": "vehicle", - "label_id": 2 - }, - "h": 131, - "region_id": 5569, - "roi_type": "vehicle", - "w": 122, - "x": 0, - "y": 97 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.14424734562635422, - "x_min": 0.0004708394408226013, - "y_max": 0.5235311985015869, - "y_min": 0.22360435128211975 - }, - "confidence": 0.9907389879226685, - "label": "vehicle", - "label_id": 2 - }, - "h": 130, - "region_id": 5570, - "roi_type": "vehicle", - "w": 110, - "x": 0, - "y": 97 - }, - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.11542871594429016, - "y_max": 0.9303610026836395, - "y_min": 0.03652903437614441 - }, - "confidence": 0.5644902586936951, - "label": "vehicle", - "label_id": 2 - }, - "h": 386, - "region_id": 5571, - "roi_type": "vehicle", - "w": 679, - "x": 89, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1311522275209427, - "x_min": 0.0012656599283218384, - "y_max": 0.5229739546775818, - "y_min": 0.2319927215576172 - }, - "confidence": 0.8800601363182068, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 5572, - "roi_type": "vehicle", - "w": 100, - "x": 1, - "y": 100 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.12498541176319122, - "x_min": 0.0, - "y_max": 0.5163314342498779, - "y_min": 0.24239161610603333 - }, - "confidence": 0.7448732256889343, - "label": "vehicle", - "label_id": 2 - }, - "h": 118, - "region_id": 5573, - "roi_type": "vehicle", - "w": 96, - "x": 0, - "y": 105 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1116863377392292, - "x_min": 0.0006904192268848419, - "y_max": 0.5155525207519531, - "y_min": 0.24023357033729553 - }, - "confidence": 0.8874056935310364, - "label": "vehicle", - "label_id": 2 - }, - "h": 119, - "region_id": 5574, - "roi_type": "vehicle", - "w": 85, - "x": 1, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.09923026710748672, - "x_min": 0.001333586871623993, - "y_max": 0.5189979076385498, - "y_min": 0.23733755946159363 - }, - "confidence": 0.6848376989364624, - "label": "vehicle", - "label_id": 2 - }, - "h": 122, - "region_id": 5575, - "roi_type": "vehicle", - "w": 75, - "x": 1, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.08814660087227821, - "x_min": 0.0, - "y_max": 0.5184166878461838, - "y_min": 0.23750726878643036 - }, - "confidence": 0.547851026058197, - "label": "vehicle", - "label_id": 2 - }, - "h": 121, - "region_id": 5576, - "roi_type": "vehicle", - "w": 68, - "x": 0, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07822689414024353, - "x_min": 0.0, - "y_max": 0.5102934390306473, - "y_min": 0.23988105356693268 - }, - "confidence": 0.7760471105575562, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 5577, - "roi_type": "vehicle", - "w": 60, - "x": 0, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06671496108174324, - "x_min": 0.0004887916147708893, - "y_max": 0.5063621997833252, - "y_min": 0.24073129892349243 - }, - "confidence": 0.721200168132782, - "label": "vehicle", - "label_id": 2 - }, - "h": 115, - "region_id": 5578, - "roi_type": "vehicle", - "w": 51, - "x": 0, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.058564310893416405, - "x_min": 0.0012591909617185593, - "y_max": 0.49973881244659424, - "y_min": 0.2501286268234253 - }, - "confidence": 0.7428306341171265, - "label": "vehicle", - "label_id": 2 - }, - "h": 108, - "region_id": 5579, - "roi_type": "vehicle", - "w": 44, - "x": 1, - "y": 108 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.04703952744603157, - "x_min": 0.0021373629570007324, - "y_max": 0.491912305355072, - "y_min": 0.27300935983657837 - }, - "confidence": 0.5740195512771606, - "label": "vehicle", - "label_id": 2 - }, - "h": 95, - "region_id": 5581, - "roi_type": "vehicle", - "w": 34, - "x": 2, - "y": 118 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.03855092264711857, - "x_min": 0.0, - "y_max": 0.48962903022766113, - "y_min": 0.2736285924911499 - }, - "confidence": 0.5253973007202148, - "label": "vehicle", - "label_id": 2 - }, - "h": 93, - "region_id": 5580, - "roi_type": "vehicle", - "w": 30, - "x": 0, - "y": 118 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.934235006570816, - "x_min": 0.04731431603431702, - "y_max": 0.9905672669410706, - "y_min": 0.005245864391326904 - }, - "confidence": 0.5478575229644775, - "label": "vehicle", - "label_id": 2 - }, - "h": 426, - "region_id": 5588, - "roi_type": "vehicle", - "w": 681, - "x": 36, - "y": 2 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9340743124485016, - "x_min": 0.05626228451728821, - "y_max": 0.9993162155151367, - "y_min": 0.0 - }, - "confidence": 0.5252728462219238, - "label": "vehicle", - "label_id": 2 - }, - "h": 432, - "region_id": 5589, - "roi_type": "vehicle", - "w": 674, - "x": 43, - "y": 0 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9431887567043304, - "x_min": 0.05145725607872009, - "y_max": 0.9891375601291656, - "y_min": 0.0 - }, - "confidence": 0.5604560375213623, - "label": "vehicle", - "label_id": 2 - }, - "h": 427, - "region_id": 5590, - "roi_type": "vehicle", - "w": 685, - "x": 40, - "y": 0 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9341979622840881, - "x_min": 0.04894071817398071, - "y_max": 0.9517980813980103, - "y_min": 0.0 - }, - "confidence": 0.5412791967391968, - "label": "vehicle", - "label_id": 2 - }, - "h": 411, - "region_id": 5591, - "roi_type": "vehicle", - "w": 680, - "x": 38, - "y": 0 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9681801199913025, - "x_min": 0.22439366579055786, - "y_max": 0.795999139547348, - "y_min": 0.07999715209007263 - }, - "confidence": 0.6512441039085388, - "label": "vehicle", - "label_id": 2 - }, - "h": 309, - "region_id": 5592, - "roi_type": "vehicle", - "w": 571, - "x": 172, - "y": 35 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 27333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.1108655333518982, - "y_max": 0.9221687614917755, - "y_min": 0.024473220109939575 - }, - "confidence": 0.5428245663642883, - "label": "vehicle", - "label_id": 2 - }, - "h": 388, - "region_id": 5593, - "roi_type": "vehicle", - "w": 683, - "x": 85, - "y": 11 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 28166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9668244123458862, - "x_min": 0.04019737243652344, - "y_max": 1.0, - "y_min": 0.018689513206481934 - }, - "confidence": 0.5183915495872498, - "label": "vehicle", - "label_id": 2 - }, - "h": 424, - "region_id": 5596, - "roi_type": "vehicle", - "w": 712, - "x": 31, - "y": 8 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 28916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.05809926800429821, - "x_min": 0.0035657789558172226, - "y_max": 0.2681969776749611, - "y_min": 0.09560371190309525 - }, - "confidence": 0.7589443922042847, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 5604, - "roi_type": "person", - "w": 42, - "x": 3, - "y": 41 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06384254433214664, - "x_min": 0.007957043126225471, - "y_max": 0.274237722158432, - "y_min": 0.1018730103969574 - }, - "confidence": 0.7985617518424988, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 5605, - "roi_type": "person", - "w": 43, - "x": 6, - "y": 44 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07437356747686863, - "x_min": 0.015382559970021248, - "y_max": 0.2672903835773468, - "y_min": 0.09030735492706299 - }, - "confidence": 0.893984317779541, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 5606, - "roi_type": "person", - "w": 45, - "x": 12, - "y": 39 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06839273869991302, - "x_min": 0.022368106991052628, - "y_max": 0.26446548104286194, - "y_min": 0.0925963819026947 - }, - "confidence": 0.946168839931488, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 5607, - "roi_type": "person", - "w": 35, - "x": 17, - "y": 40 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06265867501497269, - "x_min": 0.02845694124698639, - "y_max": 0.2631925344467163, - "y_min": 0.0876958817243576 - }, - "confidence": 0.7030326128005981, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 5608, - "roi_type": "person", - "w": 26, - "x": 22, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07015539705753326, - "x_min": 0.038974471390247345, - "y_max": 0.2708924114704132, - "y_min": 0.08729448914527893 - }, - "confidence": 0.8550823330879211, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 5609, - "roi_type": "person", - "w": 24, - "x": 30, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.08978046476840973, - "x_min": 0.04507404938340187, - "y_max": 0.26029662042856216, - "y_min": 0.08790374547243118 - }, - "confidence": 0.977257251739502, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 5610, - "roi_type": "person", - "w": 34, - "x": 35, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.10240232944488525, - "x_min": 0.050258174538612366, - "y_max": 0.26179608702659607, - "y_min": 0.08916294574737549 - }, - "confidence": 0.9634844064712524, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 5611, - "roi_type": "person", - "w": 40, - "x": 39, - "y": 39 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11237834393978119, - "x_min": 0.0557108074426651, - "y_max": 0.265661358833313, - "y_min": 0.08681026101112366 - }, - "confidence": 0.9638311266899109, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 5612, - "roi_type": "person", - "w": 44, - "x": 43, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11509420722723007, - "x_min": 0.0598953440785408, - "y_max": 0.26093965768814087, - "y_min": 0.08726376295089722 - }, - "confidence": 0.9589016437530518, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 5613, - "roi_type": "person", - "w": 42, - "x": 46, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.10801342129707336, - "x_min": 0.0689283162355423, - "y_max": 0.2573170065879822, - "y_min": 0.0888819694519043 - }, - "confidence": 0.7473644018173218, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 5614, - "roi_type": "person", - "w": 30, - "x": 53, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11594520509243011, - "x_min": 0.08451759815216064, - "y_max": 0.2598234713077545, - "y_min": 0.08372160792350769 - }, - "confidence": 0.9428697824478149, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 5615, - "roi_type": "person", - "w": 24, - "x": 65, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.14308200776576996, - "x_min": 0.08935531973838806, - "y_max": 0.25856076925992966, - "y_min": 0.08275481313467026 - }, - "confidence": 0.9797755479812622, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 5616, - "roi_type": "person", - "w": 41, - "x": 69, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15327730774879456, - "x_min": 0.09761051088571548, - "y_max": 0.25556155294179916, - "y_min": 0.08270096033811569 - }, - "confidence": 0.9193074703216553, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 5617, - "roi_type": "person", - "w": 43, - "x": 75, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15708927810192108, - "x_min": 0.09718881547451019, - "y_max": 0.2538745477795601, - "y_min": 0.08122579008340836 - }, - "confidence": 0.9810740351676941, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 5618, - "roi_type": "person", - "w": 46, - "x": 75, - "y": 35 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15849240124225616, - "x_min": 0.10766856372356415, - "y_max": 0.2546975910663605, - "y_min": 0.07851284742355347 - }, - "confidence": 0.9863011837005615, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 5619, - "roi_type": "person", - "w": 39, - "x": 83, - "y": 34 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.14903458952903748, - "x_min": 0.11753658205270767, - "y_max": 0.2580205202102661, - "y_min": 0.07362668216228485 - }, - "confidence": 0.9098013639450073, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 5620, - "roi_type": "person", - "w": 24, - "x": 90, - "y": 32 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15783970057964325, - "x_min": 0.13124407827854156, - "y_max": 0.25078579038381577, - "y_min": 0.08267303556203842 - }, - "confidence": 0.5655198097229004, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 5621, - "roi_type": "person", - "w": 20, - "x": 101, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1712721735239029, - "x_min": 0.13269366323947906, - "y_max": 0.25339871644973755, - "y_min": 0.0712251216173172 - }, - "confidence": 0.9201220273971558, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 5623, - "roi_type": "person", - "w": 30, - "x": 102, - "y": 31 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.188812255859375, - "x_min": 0.1387019157409668, - "y_max": 0.2481667771935463, - "y_min": 0.06929013878107071 - }, - "confidence": 0.972706139087677, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 5622, - "roi_type": "person", - "w": 38, - "x": 107, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19876964390277863, - "x_min": 0.14241482317447662, - "y_max": 0.24410223960876465, - "y_min": 0.06995522975921631 - }, - "confidence": 0.935201108455658, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 5624, - "roi_type": "person", - "w": 43, - "x": 109, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19850021600723267, - "x_min": 0.14565402269363403, - "y_max": 0.24200070649385452, - "y_min": 0.06734246760606766 - }, - "confidence": 0.9604580402374268, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 5625, - "roi_type": "person", - "w": 41, - "x": 112, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19670461118221283, - "x_min": 0.15936703979969025, - "y_max": 0.24713708460330963, - "y_min": 0.06951303780078888 - }, - "confidence": 0.9338945746421814, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 5626, - "roi_type": "person", - "w": 29, - "x": 122, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19646276533603668, - "x_min": 0.1669870764017105, - "y_max": 0.246548093855381, - "y_min": 0.05969572812318802 - }, - "confidence": 0.8135930299758911, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 5627, - "roi_type": "person", - "w": 23, - "x": 128, - "y": 26 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.20714330673217773, - "x_min": 0.17688614130020142, - "y_max": 0.24033692479133606, - "y_min": 0.06553769111633301 - }, - "confidence": 0.8666308522224426, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 5628, - "roi_type": "person", - "w": 23, - "x": 136, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.22876504063606262, - "x_min": 0.17733925580978394, - "y_max": 0.23425975441932678, - "y_min": 0.0654514729976654 - }, - "confidence": 0.9463271498680115, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 5629, - "roi_type": "person", - "w": 39, - "x": 136, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23787567019462585, - "x_min": 0.18617352843284607, - "y_max": 0.2328994944691658, - "y_min": 0.06733778864145279 - }, - "confidence": 0.8578006029129028, - "label": "person", - "label_id": 1 - }, - "h": 72, - "region_id": 5630, - "roi_type": "person", - "w": 40, - "x": 143, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24495282769203186, - "x_min": 0.18914848566055298, - "y_max": 0.2286892682313919, - "y_min": 0.06330259144306183 - }, - "confidence": 0.9402493834495544, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 5631, - "roi_type": "person", - "w": 43, - "x": 145, - "y": 27 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24374517798423767, - "x_min": 0.19896605610847473, - "y_max": 0.22477789968252182, - "y_min": 0.06456565111875534 - }, - "confidence": 0.9167733192443848, - "label": "person", - "label_id": 1 - }, - "h": 69, - "region_id": 5632, - "roi_type": "person", - "w": 34, - "x": 153, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23920002579689026, - "x_min": 0.2088455855846405, - "y_max": 0.2315978854894638, - "y_min": 0.050867900252342224 - }, - "confidence": 0.7405911087989807, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 5633, - "roi_type": "person", - "w": 23, - "x": 160, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24580711126327515, - "x_min": 0.21504563093185425, - "y_max": 0.22459035366773605, - "y_min": 0.04561009258031845 - }, - "confidence": 0.8077870607376099, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 5634, - "roi_type": "person", - "w": 24, - "x": 165, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.258386492729187, - "x_min": 0.22124245762825012, - "y_max": 0.22196873277425766, - "y_min": 0.04270251840353012 - }, - "confidence": 0.9389499425888062, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 5635, - "roi_type": "person", - "w": 29, - "x": 170, - "y": 18 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2686212658882141, - "x_min": 0.22306442260742188, - "y_max": 0.22240334749221802, - "y_min": 0.03721362352371216 - }, - "confidence": 0.8532395958900452, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 5636, - "roi_type": "person", - "w": 35, - "x": 171, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27878496050834656, - "x_min": 0.2256826013326645, - "y_max": 0.21868880838155746, - "y_min": 0.04378651827573776 - }, - "confidence": 0.940152108669281, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 5637, - "roi_type": "person", - "w": 41, - "x": 173, - "y": 19 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2782133221626282, - "x_min": 0.22981303930282593, - "y_max": 0.21300845593214035, - "y_min": 0.04048468917608261 - }, - "confidence": 0.8954000473022461, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 5638, - "roi_type": "person", - "w": 37, - "x": 176, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27863314747810364, - "x_min": 0.2395808845758438, - "y_max": 0.21157341450452805, - "y_min": 0.026669137179851532 - }, - "confidence": 0.5580120086669922, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 5639, - "roi_type": "person", - "w": 30, - "x": 184, - "y": 12 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2845720052719116, - "x_min": 0.25448018312454224, - "y_max": 0.21495232731103897, - "y_min": 0.026290185749530792 - }, - "confidence": 0.80083167552948, - "label": "person", - "label_id": 1 - }, - "h": 82, - "region_id": 5640, - "roi_type": "person", - "w": 23, - "x": 195, - "y": 11 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.29074627161026, - "x_min": 0.2599877119064331, - "y_max": 0.20789270102977753, - "y_min": 0.022824198007583618 - }, - "confidence": 0.8385727405548096, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 5641, - "roi_type": "person", - "w": 24, - "x": 200, - "y": 10 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.30755072832107544, - "x_min": 0.2656424045562744, - "y_max": 0.19290897250175476, - "y_min": 0.022242024540901184 - }, - "confidence": 0.977880597114563, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 5642, - "roi_type": "person", - "w": 32, - "x": 204, - "y": 10 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31079021096229553, - "x_min": 0.2677251994609833, - "y_max": 0.19722382724285126, - "y_min": 0.023035749793052673 - }, - "confidence": 0.9654287099838257, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 5643, - "roi_type": "person", - "w": 33, - "x": 206, - "y": 10 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.29563216120004654, - "x_min": 0.10331843048334122, - "y_max": 1.0, - "y_min": 0.8515570759773254 - }, - "confidence": 0.761517345905304, - "label": "vehicle", - "label_id": 2 - }, - "h": 64, - "region_id": 5644, - "roi_type": "vehicle", - "w": 148, - "x": 79, - "y": 368 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31590598821640015, - "x_min": 0.27411168813705444, - "y_max": 0.18277175724506378, - "y_min": 0.019142642617225647 - }, - "confidence": 0.9806784987449646, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 5645, - "roi_type": "person", - "w": 32, - "x": 211, - "y": 8 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.302535243332386, - "x_min": 0.08773649483919144, - "y_max": 1.0, - "y_min": 0.8262227177619934 - }, - "confidence": 0.908391535282135, - "label": "vehicle", - "label_id": 2 - }, - "h": 75, - "region_id": 5646, - "roi_type": "vehicle", - "w": 165, - "x": 67, - "y": 357 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3163120448589325, - "x_min": 0.27949169278144836, - "y_max": 0.18241430073976517, - "y_min": 0.00963614135980606 - }, - "confidence": 0.8560529351234436, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 5647, - "roi_type": "person", - "w": 28, - "x": 215, - "y": 4 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3071591779589653, - "x_min": 0.08984949439764023, - "y_max": 1.0, - "y_min": 0.7983192205429077 - }, - "confidence": 0.9688770174980164, - "label": "vehicle", - "label_id": 2 - }, - "h": 87, - "region_id": 5648, - "roi_type": "vehicle", - "w": 167, - "x": 69, - "y": 345 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31996291875839233, - "x_min": 0.28390347957611084, - "y_max": 0.17544172704219818, - "y_min": 0.002514094114303589 - }, - "confidence": 0.9317660927772522, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 5649, - "roi_type": "person", - "w": 28, - "x": 218, - "y": 1 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.31785333156585693, - "x_min": 0.09327417612075806, - "y_max": 0.9961552023887634, - "y_min": 0.7738481163978577 - }, - "confidence": 0.9980048537254333, - "label": "vehicle", - "label_id": 2 - }, - "h": 96, - "region_id": 5650, - "roi_type": "vehicle", - "w": 172, - "x": 72, - "y": 334 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3244977593421936, - "x_min": 0.29137319326400757, - "y_max": 0.18117792904376984, - "y_min": 0.0 - }, - "confidence": 0.9299455285072327, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 5651, - "roi_type": "person", - "w": 25, - "x": 224, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3211563229560852, - "x_min": 0.09341153502464294, - "y_max": 0.9977253675460815, - "y_min": 0.7558172941207886 - }, - "confidence": 0.995922327041626, - "label": "vehicle", - "label_id": 2 - }, - "h": 105, - "region_id": 5652, - "roi_type": "vehicle", - "w": 175, - "x": 72, - "y": 327 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33760935068130493, - "x_min": 0.2969669699668884, - "y_max": 0.1680586189031601, - "y_min": 0.0 - }, - "confidence": 0.97437584400177, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 5653, - "roi_type": "person", - "w": 31, - "x": 228, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.32524099946022034, - "x_min": 0.09379306435585022, - "y_max": 0.9987419843673706, - "y_min": 0.728178858757019 - }, - "confidence": 0.9982354640960693, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 5654, - "roi_type": "vehicle", - "w": 178, - "x": 72, - "y": 315 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34123092889785767, - "x_min": 0.2997239828109741, - "y_max": 0.1591828241944313, - "y_min": 0.0 - }, - "confidence": 0.9657360315322876, - "label": "person", - "label_id": 1 - }, - "h": 69, - "region_id": 5655, - "roi_type": "person", - "w": 32, - "x": 230, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3318566754460335, - "x_min": 0.09386516362428665, - "y_max": 0.9967382550239563, - "y_min": 0.7049055695533752 - }, - "confidence": 0.996229350566864, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 5656, - "roi_type": "vehicle", - "w": 183, - "x": 72, - "y": 305 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3466411232948303, - "x_min": 0.3028194308280945, - "y_max": 0.1562092900276184, - "y_min": 0.0 - }, - "confidence": 0.9846485257148743, - "label": "person", - "label_id": 1 - }, - "h": 67, - "region_id": 5657, - "roi_type": "person", - "w": 34, - "x": 233, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3395664617419243, - "x_min": 0.08993595093488693, - "y_max": 0.9996479153633118, - "y_min": 0.6784219145774841 - }, - "confidence": 0.9955138564109802, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "region_id": 5658, - "roi_type": "vehicle", - "w": 192, - "x": 69, - "y": 293 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34522509574890137, - "x_min": 0.30906105041503906, - "y_max": 0.15079188346862793, - "y_min": 0.0 - }, - "confidence": 0.9445015788078308, - "label": "person", - "label_id": 1 - }, - "h": 65, - "region_id": 5659, - "roi_type": "person", - "w": 28, - "x": 237, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3419874384999275, - "x_min": 0.0941135361790657, - "y_max": 1.0, - "y_min": 0.6525993943214417 - }, - "confidence": 0.9987126588821411, - "label": "vehicle", - "label_id": 2 - }, - "h": 150, - "region_id": 5660, - "roi_type": "vehicle", - "w": 190, - "x": 72, - "y": 282 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3481338918209076, - "x_min": 0.3160833418369293, - "y_max": 0.14550430327653885, - "y_min": 0.0 - }, - "confidence": 0.963749885559082, - "label": "person", - "label_id": 1 - }, - "h": 63, - "region_id": 5661, - "roi_type": "person", - "w": 25, - "x": 243, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.34435374289751053, - "x_min": 0.09984970837831497, - "y_max": 0.9990871548652649, - "y_min": 0.6355069279670715 - }, - "confidence": 0.9971874356269836, - "label": "vehicle", - "label_id": 2 - }, - "h": 157, - "region_id": 5662, - "roi_type": "vehicle", - "w": 188, - "x": 77, - "y": 275 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3530542850494385, - "x_min": 0.3201481103897095, - "y_max": 0.14842259883880615, - "y_min": 0.0 - }, - "confidence": 0.8752254843711853, - "label": "person", - "label_id": 1 - }, - "h": 64, - "region_id": 5663, - "roi_type": "person", - "w": 25, - "x": 246, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.34952497482299805, - "x_min": 0.10708582401275635, - "y_max": 1.0, - "y_min": 0.6191877722740173 - }, - "confidence": 0.998619794845581, - "label": "vehicle", - "label_id": 2 - }, - "h": 165, - "region_id": 5664, - "roi_type": "vehicle", - "w": 186, - "x": 82, - "y": 267 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35819557309150696, - "x_min": 0.3240784704685211, - "y_max": 0.14493504911661148, - "y_min": 0.0 - }, - "confidence": 0.7914350032806396, - "label": "person", - "label_id": 1 - }, - "h": 63, - "region_id": 5665, - "roi_type": "person", - "w": 26, - "x": 249, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3578673005104065, - "x_min": 0.11816421151161194, - "y_max": 0.9963030219078064, - "y_min": 0.5943846106529236 - }, - "confidence": 0.9954742789268494, - "label": "vehicle", - "label_id": 2 - }, - "h": 174, - "region_id": 5666, - "roi_type": "vehicle", - "w": 184, - "x": 91, - "y": 257 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36160674691200256, - "x_min": 0.3288991153240204, - "y_max": 0.14174089580774307, - "y_min": 0.0 - }, - "confidence": 0.6194042563438416, - "label": "person", - "label_id": 1 - }, - "h": 61, - "region_id": 5667, - "roi_type": "person", - "w": 25, - "x": 253, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.35685088485479355, - "x_min": 0.11790122836828232, - "y_max": 0.9961073994636536, - "y_min": 0.5718068480491638 - }, - "confidence": 0.9947429895401001, - "label": "vehicle", - "label_id": 2 - }, - "h": 183, - "region_id": 5668, - "roi_type": "vehicle", - "w": 184, - "x": 91, - "y": 247 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36447739601135254, - "x_min": 0.33208173513412476, - "y_max": 0.14312608540058136, - "y_min": 0.0 - }, - "confidence": 0.8804531693458557, - "label": "person", - "label_id": 1 - }, - "h": 62, - "region_id": 5669, - "roi_type": "person", - "w": 25, - "x": 255, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.36100974678993225, - "x_min": 0.10920840501785278, - "y_max": 1.0, - "y_min": 0.5514669418334961 - }, - "confidence": 0.9975082874298096, - "label": "vehicle", - "label_id": 2 - }, - "h": 194, - "region_id": 5670, - "roi_type": "vehicle", - "w": 193, - "x": 84, - "y": 238 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3689320683479309, - "x_min": 0.33504199981689453, - "y_max": 0.1309487745165825, - "y_min": 0.0 - }, - "confidence": 0.5245084166526794, - "label": "person", - "label_id": 1 - }, - "h": 57, - "region_id": 5671, - "roi_type": "person", - "w": 26, - "x": 257, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.36274436861276627, - "x_min": 0.11731896549463272, - "y_max": 1.0, - "y_min": 0.5336947441101074 - }, - "confidence": 0.9914770722389221, - "label": "vehicle", - "label_id": 2 - }, - "h": 201, - "region_id": 5672, - "roi_type": "vehicle", - "w": 188, - "x": 90, - "y": 231 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3659408688545227, - "x_min": 0.11780126392841339, - "y_max": 1.0, - "y_min": 0.518149733543396 - }, - "confidence": 0.9818969964981079, - "label": "vehicle", - "label_id": 2 - }, - "h": 208, - "region_id": 5673, - "roi_type": "vehicle", - "w": 191, - "x": 90, - "y": 224 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3604143261909485, - "x_min": 0.11885426938533783, - "y_max": 1.0, - "y_min": 0.5062888264656067 - }, - "confidence": 0.9770739674568176, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "region_id": 5674, - "roi_type": "vehicle", - "w": 186, - "x": 91, - "y": 219 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35873663425445557, - "x_min": 0.12577953934669495, - "y_max": 1.0, - "y_min": 0.487548291683197 - }, - "confidence": 0.9604198932647705, - "label": "vehicle", - "label_id": 2 - }, - "h": 221, - "region_id": 5676, - "roi_type": "vehicle", - "w": 179, - "x": 97, - "y": 211 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36819857358932495, - "x_min": 0.13242483139038086, - "y_max": 1.0, - "y_min": 0.4729745090007782 - }, - "confidence": 0.9679286479949951, - "label": "vehicle", - "label_id": 2 - }, - "h": 228, - "region_id": 5675, - "roi_type": "vehicle", - "w": 181, - "x": 102, - "y": 204 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37145912647247314, - "x_min": 0.13698597252368927, - "y_max": 0.9822669923305511, - "y_min": 0.45337817072868347 - }, - "confidence": 0.9909036755561829, - "label": "vehicle", - "label_id": 2 - }, - "h": 228, - "region_id": 5677, - "roi_type": "vehicle", - "w": 180, - "x": 105, - "y": 196 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.360751211643219, - "x_min": 0.14602144062519073, - "y_max": 0.9427908360958099, - "y_min": 0.4422529637813568 - }, - "confidence": 0.9961796998977661, - "label": "vehicle", - "label_id": 2 - }, - "h": 216, - "region_id": 5678, - "roi_type": "vehicle", - "w": 165, - "x": 112, - "y": 191 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3665272891521454, - "x_min": 0.15879389643669128, - "y_max": 0.9357600212097168, - "y_min": 0.41560184955596924 - }, - "confidence": 0.9988160133361816, - "label": "vehicle", - "label_id": 2 - }, - "h": 225, - "region_id": 5679, - "roi_type": "vehicle", - "w": 160, - "x": 122, - "y": 180 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36519184708595276, - "x_min": 0.1624055802822113, - "y_max": 0.9030640423297882, - "y_min": 0.3991294205188751 - }, - "confidence": 0.99962317943573, - "label": "vehicle", - "label_id": 2 - }, - "h": 218, - "region_id": 5680, - "roi_type": "vehicle", - "w": 156, - "x": 125, - "y": 172 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36517783999443054, - "x_min": 0.17351636290550232, - "y_max": 0.8792468309402466, - "y_min": 0.3837735652923584 - }, - "confidence": 0.9997884631156921, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "region_id": 5681, - "roi_type": "vehicle", - "w": 147, - "x": 133, - "y": 166 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36106088757514954, - "x_min": 0.1790127456188202, - "y_max": 0.8557636737823486, - "y_min": 0.36366569995880127 - }, - "confidence": 0.9998449087142944, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "region_id": 5682, - "roi_type": "vehicle", - "w": 140, - "x": 137, - "y": 157 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36285877227783203, - "x_min": 0.18275152146816254, - "y_max": 0.8229827284812927, - "y_min": 0.34286290407180786 - }, - "confidence": 0.9999336004257202, - "label": "vehicle", - "label_id": 2 - }, - "h": 207, - "region_id": 5683, - "roi_type": "vehicle", - "w": 138, - "x": 140, - "y": 148 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3602021038532257, - "x_min": 0.18906906247138977, - "y_max": 0.7855886220932007, - "y_min": 0.32251763343811035 - }, - "confidence": 0.9999699592590332, - "label": "vehicle", - "label_id": 2 - }, - "h": 200, - "region_id": 5684, - "roi_type": "vehicle", - "w": 131, - "x": 145, - "y": 139 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3588583469390869, - "x_min": 0.1904894858598709, - "y_max": 0.766708493232727, - "y_min": 0.31205347180366516 - }, - "confidence": 0.9999749660491943, - "label": "vehicle", - "label_id": 2 - }, - "h": 196, - "region_id": 5685, - "roi_type": "vehicle", - "w": 129, - "x": 146, - "y": 135 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.354780912399292, - "x_min": 0.19472239911556244, - "y_max": 0.7405029535293579, - "y_min": 0.29147496819496155 - }, - "confidence": 0.9999440908432007, - "label": "vehicle", - "label_id": 2 - }, - "h": 194, - "region_id": 5686, - "roi_type": "vehicle", - "w": 123, - "x": 150, - "y": 126 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34999334812164307, - "x_min": 0.194540336728096, - "y_max": 0.7187595367431641, - "y_min": 0.2768002152442932 - }, - "confidence": 0.9998922348022461, - "label": "vehicle", - "label_id": 2 - }, - "h": 191, - "region_id": 5687, - "roi_type": "vehicle", - "w": 119, - "x": 149, - "y": 120 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3457085192203522, - "x_min": 0.20007964968681335, - "y_max": 0.6881219744682312, - "y_min": 0.2653038501739502 - }, - "confidence": 0.9998040795326233, - "label": "vehicle", - "label_id": 2 - }, - "h": 183, - "region_id": 5689, - "roi_type": "vehicle", - "w": 112, - "x": 154, - "y": 115 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34467506408691406, - "x_min": 0.19982749223709106, - "y_max": 0.6525393724441528, - "y_min": 0.2548128664493561 - }, - "confidence": 0.9998615980148315, - "label": "vehicle", - "label_id": 2 - }, - "h": 172, - "region_id": 5688, - "roi_type": "vehicle", - "w": 111, - "x": 153, - "y": 110 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34181272983551025, - "x_min": 0.1947338730096817, - "y_max": 0.6376242786645889, - "y_min": 0.23916591703891754 - }, - "confidence": 0.9997871518135071, - "label": "vehicle", - "label_id": 2 - }, - "h": 172, - "region_id": 5690, - "roi_type": "vehicle", - "w": 113, - "x": 150, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3388643264770508, - "x_min": 0.19013750553131104, - "y_max": 0.6308777332305908, - "y_min": 0.2227199673652649 - }, - "confidence": 0.9997004270553589, - "label": "vehicle", - "label_id": 2 - }, - "h": 176, - "region_id": 5691, - "roi_type": "vehicle", - "w": 114, - "x": 146, - "y": 96 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3375055193901062, - "x_min": 0.18740473687648773, - "y_max": 0.5995768308639526, - "y_min": 0.20673570036888123 - }, - "confidence": 0.9998914003372192, - "label": "vehicle", - "label_id": 2 - }, - "h": 170, - "region_id": 5694, - "roi_type": "vehicle", - "w": 115, - "x": 144, - "y": 89 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3318176567554474, - "x_min": 0.17809423804283142, - "y_max": 0.5778812617063522, - "y_min": 0.19000546634197235 - }, - "confidence": 0.9998241066932678, - "label": "vehicle", - "label_id": 2 - }, - "h": 168, - "region_id": 5693, - "roi_type": "vehicle", - "w": 118, - "x": 137, - "y": 82 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3320659399032593, - "x_min": 0.1678294688463211, - "y_max": 0.5662893801927567, - "y_min": 0.17552174627780914 - }, - "confidence": 0.9969955682754517, - "label": "vehicle", - "label_id": 2 - }, - "h": 169, - "region_id": 5692, - "roi_type": "vehicle", - "w": 126, - "x": 129, - "y": 76 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33100444078445435, - "x_min": 0.15877386927604675, - "y_max": 0.5364057421684265, - "y_min": 0.16238099336624146 - }, - "confidence": 0.99989914894104, - "label": "vehicle", - "label_id": 2 - }, - "h": 162, - "region_id": 5695, - "roi_type": "vehicle", - "w": 132, - "x": 122, - "y": 70 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.32596272230148315, - "x_min": 0.1472930908203125, - "y_max": 0.5152767300605774, - "y_min": 0.15732121467590332 - }, - "confidence": 0.9999929666519165, - "label": "vehicle", - "label_id": 2 - }, - "h": 155, - "region_id": 5696, - "roi_type": "vehicle", - "w": 137, - "x": 113, - "y": 68 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3235021233558655, - "x_min": 0.13618597388267517, - "y_max": 0.5010689496994019, - "y_min": 0.15680626034736633 - }, - "confidence": 0.999995231628418, - "label": "vehicle", - "label_id": 2 - }, - "h": 149, - "region_id": 5697, - "roi_type": "vehicle", - "w": 144, - "x": 105, - "y": 68 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31811434030532837, - "x_min": 0.12496490776538849, - "y_max": 0.48322823643684387, - "y_min": 0.1473962366580963 - }, - "confidence": 0.9999911785125732, - "label": "vehicle", - "label_id": 2 - }, - "h": 145, - "region_id": 5698, - "roi_type": "vehicle", - "w": 148, - "x": 96, - "y": 64 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31093723326921463, - "x_min": 0.10377121716737747, - "y_max": 0.46475063264369965, - "y_min": 0.14403758943080902 - }, - "confidence": 0.9999978542327881, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "region_id": 5699, - "roi_type": "vehicle", - "w": 159, - "x": 80, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3060434088110924, - "x_min": 0.08956294506788254, - "y_max": 0.4555552154779434, - "y_min": 0.13558460772037506 - }, - "confidence": 0.9999889135360718, - "label": "vehicle", - "label_id": 2 - }, - "h": 138, - "region_id": 5700, - "roi_type": "vehicle", - "w": 166, - "x": 69, - "y": 59 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.29430411010980606, - "x_min": 0.07462427765130997, - "y_max": 0.4425668269395828, - "y_min": 0.13647617399692535 - }, - "confidence": 0.9999735355377197, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 5702, - "roi_type": "vehicle", - "w": 169, - "x": 57, - "y": 59 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.28833314031362534, - "x_min": 0.06440760940313339, - "y_max": 0.42713563144207, - "y_min": 0.1353260725736618 - }, - "confidence": 0.9999496936798096, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 5701, - "roi_type": "vehicle", - "w": 172, - "x": 49, - "y": 58 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2806038334965706, - "x_min": 0.046518273651599884, - "y_max": 0.4131326228380203, - "y_min": 0.13239772617816925 - }, - "confidence": 0.9999241828918457, - "label": "vehicle", - "label_id": 2 - }, - "h": 121, - "region_id": 5703, - "roi_type": "vehicle", - "w": 180, - "x": 36, - "y": 57 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27025366574525833, - "x_min": 0.031960584223270416, - "y_max": 0.40551871061325073, - "y_min": 0.1313827633857727 - }, - "confidence": 0.9999902248382568, - "label": "vehicle", - "label_id": 2 - }, - "h": 118, - "region_id": 5704, - "roi_type": "vehicle", - "w": 183, - "x": 25, - "y": 57 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2574407830834389, - "x_min": 0.018124915659427643, - "y_max": 0.39813748002052307, - "y_min": 0.12768623232841492 - }, - "confidence": 0.9999737739562988, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 5705, - "roi_type": "vehicle", - "w": 184, - "x": 14, - "y": 55 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24728650599718094, - "x_min": 0.004216648638248444, - "y_max": 0.39358004927635193, - "y_min": 0.12342569231987 - }, - "confidence": 0.9995150566101074, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 5706, - "roi_type": "vehicle", - "w": 187, - "x": 3, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23507950454950333, - "x_min": 0.0055961087346076965, - "y_max": 0.3909708857536316, - "y_min": 0.12340492010116577 - }, - "confidence": 0.9983311295509338, - "label": "vehicle", - "label_id": 2 - }, - "h": 116, - "region_id": 5707, - "roi_type": "vehicle", - "w": 176, - "x": 4, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.22479692846536636, - "x_min": 0.0017654374241828918, - "y_max": 0.3854464143514633, - "y_min": 0.12457780539989471 - }, - "confidence": 0.9997487664222717, - "label": "vehicle", - "label_id": 2 - }, - "h": 113, - "region_id": 5708, - "roi_type": "vehicle", - "w": 171, - "x": 1, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.21433766931295395, - "x_min": 0.0017601177096366882, - "y_max": 0.37883228063583374, - "y_min": 0.1250355839729309 - }, - "confidence": 0.99918133020401, - "label": "vehicle", - "label_id": 2 - }, - "h": 110, - "region_id": 5709, - "roi_type": "vehicle", - "w": 163, - "x": 1, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2030910775065422, - "x_min": 0.0008123144507408142, - "y_max": 0.37199288606643677, - "y_min": 0.12212663888931274 - }, - "confidence": 0.9997194409370422, - "label": "vehicle", - "label_id": 2 - }, - "h": 108, - "region_id": 5710, - "roi_type": "vehicle", - "w": 155, - "x": 1, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.18479623645544052, - "x_min": 0.0, - "y_max": 0.36851049214601517, - "y_min": 0.1222873404622078 - }, - "confidence": 0.9995477795600891, - "label": "vehicle", - "label_id": 2 - }, - "h": 106, - "region_id": 5711, - "roi_type": "vehicle", - "w": 142, - "x": 0, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1737116277217865, - "x_min": 0.0, - "y_max": 0.36372971534729004, - "y_min": 0.11915415525436401 - }, - "confidence": 0.9950657486915588, - "label": "vehicle", - "label_id": 2 - }, - "h": 106, - "region_id": 5712, - "roi_type": "vehicle", - "w": 133, - "x": 0, - "y": 51 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.16038884222507477, - "x_min": 0.0, - "y_max": 0.3588944375514984, - "y_min": 0.1205725371837616 - }, - "confidence": 0.9822043776512146, - "label": "vehicle", - "label_id": 2 - }, - "h": 103, - "region_id": 5713, - "roi_type": "vehicle", - "w": 123, - "x": 0, - "y": 52 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.14810673147439957, - "x_min": 0.0, - "y_max": 0.35652363300323486, - "y_min": 0.12085320055484772 - }, - "confidence": 0.9530179500579834, - "label": "vehicle", - "label_id": 2 - }, - "h": 102, - "region_id": 5714, - "roi_type": "vehicle", - "w": 114, - "x": 0, - "y": 52 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.13574014604091644, - "x_min": 0.0, - "y_max": 0.3567160964012146, - "y_min": 0.12330564856529236 - }, - "confidence": 0.7856730818748474, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "region_id": 5715, - "roi_type": "vehicle", - "w": 104, - "x": 0, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11242122203111649, - "x_min": 0.0019209012389183044, - "y_max": 0.35550349950790405, - "y_min": 0.1260470598936081 - }, - "confidence": 0.6798886060714722, - "label": "vehicle", - "label_id": 2 - }, - "h": 99, - "region_id": 5716, - "roi_type": "vehicle", - "w": 85, - "x": 1, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.09885160624980927, - "x_min": 0.003643341362476349, - "y_max": 0.358278751373291, - "y_min": 0.1264287382364273 - }, - "confidence": 0.7773323655128479, - "label": "vehicle", - "label_id": 2 - }, - "h": 100, - "region_id": 5717, - "roi_type": "vehicle", - "w": 73, - "x": 3, - "y": 55 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.0878419578075409, - "x_min": 0.0017804354429244995, - "y_max": 0.3632156252861023, - "y_min": 0.12948653101921082 - }, - "confidence": 0.6258467435836792, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "region_id": 5718, - "roi_type": "vehicle", - "w": 66, - "x": 1, - "y": 56 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07318701222538948, - "x_min": 0.004130352288484573, - "y_max": 0.3511764109134674, - "y_min": 0.14347276091575623 - }, - "confidence": 0.6314224004745483, - "label": "vehicle", - "label_id": 2 - }, - "h": 90, - "region_id": 5719, - "roi_type": "vehicle", - "w": 53, - "x": 3, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06266952119767666, - "x_min": 0.0, - "y_max": 0.34957605600357056, - "y_min": 0.14383465051651 - }, - "confidence": 0.6896519064903259, - "label": "vehicle", - "label_id": 2 - }, - "h": 89, - "region_id": 5720, - "roi_type": "vehicle", - "w": 48, - "x": 0, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.04970441199839115, - "x_min": 0.0, - "y_max": 0.34233343601226807, - "y_min": 0.14351695775985718 - }, - "confidence": 0.6430801749229431, - "label": "vehicle", - "label_id": 2 - }, - "h": 86, - "region_id": 5721, - "roi_type": "vehicle", - "w": 38, - "x": 0, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49250000000 - } - ] -} \ No newline at end of file diff --git a/tests/test_cases/pipeline_execution/cpu/object_detection_max_running_pipelines_ffmpeg.json b/tests/test_cases/pipeline_execution/cpu/object_detection_max_running_pipelines_ffmpeg.json deleted file mode 100644 index 61148c7..0000000 --- a/tests/test_cases/pipeline_execution/cpu/object_detection_max_running_pipelines_ffmpeg.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "options": { - "max_running_pipelines": 1 - }, - "pipeline": { - "name": "object_detection", - "version": 1 - }, - "request": { - "source": { - "type": "uri", - "uri": "https://github.com/intel-iot-devkit/sample-videos/raw/master/car-detection.mp4" - }, - "destination": { - "type": "file", - "path": "/tmp/object_detection_results.json", - "format": "json" - } - }, - "golden_results": false, - "check_second_pipeline_queued": true -} \ No newline at end of file diff --git a/tests/test_cases/pipeline_execution/cpu/object_detection_max_running_pipelines_gstreamer.json b/tests/test_cases/pipeline_execution/cpu/object_detection_max_running_pipelines_gstreamer.json deleted file mode 100644 index 1fec89b..0000000 --- a/tests/test_cases/pipeline_execution/cpu/object_detection_max_running_pipelines_gstreamer.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "options": { - "max_running_pipelines": 1 - }, - "pipeline": { - "name": "object_detection", - "version": "person_vehicle_bike" - }, - "request": { - "source": { - "type": "uri", - "uri": "https://github.com/intel-iot-devkit/sample-videos/raw/master/car-detection.mp4" - }, - "destination": { - "type": "file", - "path": "/tmp/max_running_pipelines.json", - "format": "json-lines" - } - }, - "check_second_pipeline_queued": true, - "golden_results": false -} \ No newline at end of file diff --git a/tests/test_cases/pipeline_execution/cpu/object_detection_type_gst_gstreamer.json b/tests/test_cases/pipeline_execution/cpu/object_detection_type_gst_gstreamer.json deleted file mode 100644 index 057e12a..0000000 --- a/tests/test_cases/pipeline_execution/cpu/object_detection_type_gst_gstreamer.json +++ /dev/null @@ -1,7274 +0,0 @@ -{ - "options": {}, - "pipeline": { - "name": "object_detection", - "version": "person_vehicle_bike" - }, - "request": { - "source": { - "type": "gst", - "element": "urisourcebin", - "properties": { - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4" - } - }, - "destination": { - "type": "file", - "path": "/tmp/object_detection_gst_results.json", - "format": "json" - }, - "parameters": { - "detection-device": "CPU" - } - }, - "golden_results": false, - "result": [ - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7448995113372803, - "x_min": 0.6734092235565186, - "y_max": 0.9991496205329895, - "y_min": 0.8781012892723083 - }, - "confidence": 0.5402482748031616, - "label": "person", - "label_id": 1 - }, - "h": 52, - "region_id": 1613, - "roi_type": "person", - "w": 55, - "x": 517, - "y": 379 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 1500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7442192435264587, - "x_min": 0.6763269305229187, - "y_max": 1.0, - "y_min": 0.8277981281280518 - }, - "confidence": 0.5505853295326233, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 1614, - "roi_type": "person", - "w": 52, - "x": 519, - "y": 358 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 1666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7465136051177979, - "x_min": 0.6821862459182739, - "y_max": 1.0, - "y_min": 0.8104690909385681 - }, - "confidence": 0.6447358131408691, - "label": "person", - "label_id": 1 - }, - "h": 82, - "region_id": 1615, - "roi_type": "person", - "w": 49, - "x": 524, - "y": 350 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 1750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7481286525726318, - "x_min": 0.68366539478302, - "y_max": 0.9999657869338989, - "y_min": 0.7867170572280884 - }, - "confidence": 0.882526695728302, - "label": "person", - "label_id": 1 - }, - "h": 92, - "region_id": 1616, - "roi_type": "person", - "w": 50, - "x": 525, - "y": 340 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 1833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7502986788749695, - "x_min": 0.6836960911750793, - "y_max": 0.9965759515762329, - "y_min": 0.7709740400314331 - }, - "confidence": 0.9252126812934875, - "label": "person", - "label_id": 1 - }, - "h": 97, - "region_id": 1617, - "roi_type": "person", - "w": 51, - "x": 525, - "y": 333 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 1916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7533046007156372, - "x_min": 0.6833932399749756, - "y_max": 0.9992514848709106, - "y_min": 0.7517307996749878 - }, - "confidence": 0.9160429835319519, - "label": "person", - "label_id": 1 - }, - "h": 107, - "region_id": 1618, - "roi_type": "person", - "w": 54, - "x": 525, - "y": 325 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 2000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7569091320037842, - "x_min": 0.6831721067428589, - "y_max": 0.9893119931221008, - "y_min": 0.7454761862754822 - }, - "confidence": 0.9452281594276428, - "label": "person", - "label_id": 1 - }, - "h": 105, - "region_id": 1620, - "roi_type": "person", - "w": 57, - "x": 525, - "y": 322 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 2083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.758220374584198, - "x_min": 0.6869714856147766, - "y_max": 0.9744250774383545, - "y_min": 0.7232376337051392 - }, - "confidence": 0.9522698521614075, - "label": "person", - "label_id": 1 - }, - "h": 109, - "region_id": 1621, - "roi_type": "person", - "w": 55, - "x": 528, - "y": 312 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 2166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.757515549659729, - "x_min": 0.6908836364746094, - "y_max": 0.9485968351364136, - "y_min": 0.7128696441650391 - }, - "confidence": 0.8796297907829285, - "label": "person", - "label_id": 1 - }, - "h": 102, - "region_id": 1622, - "roi_type": "person", - "w": 51, - "x": 531, - "y": 308 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 2250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7562522292137146, - "x_min": 0.6947104334831238, - "y_max": 0.8969831466674805, - "y_min": 0.7029379606246948 - }, - "confidence": 0.8928061127662659, - "label": "person", - "label_id": 1 - }, - "h": 84, - "region_id": 1623, - "roi_type": "person", - "w": 47, - "x": 534, - "y": 304 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 2333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7574296593666077, - "x_min": 0.6979045271873474, - "y_max": 0.8754802346229553, - "y_min": 0.6884984374046326 - }, - "confidence": 0.8720522522926331, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 1624, - "roi_type": "person", - "w": 46, - "x": 536, - "y": 297 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 2416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7628753781318665, - "x_min": 0.6962668299674988, - "y_max": 0.9012861251831055, - "y_min": 0.6672508716583252 - }, - "confidence": 0.6989018321037292, - "label": "person", - "label_id": 1 - }, - "h": 101, - "region_id": 1625, - "roi_type": "person", - "w": 51, - "x": 535, - "y": 288 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 2500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7642366886138916, - "x_min": 0.6945128440856934, - "y_max": 0.8976410031318665, - "y_min": 0.6511140465736389 - }, - "confidence": 0.6954102516174316, - "label": "person", - "label_id": 1 - }, - "h": 106, - "region_id": 1626, - "roi_type": "person", - "w": 54, - "x": 533, - "y": 281 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 2583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7641031742095947, - "x_min": 0.7028636932373047, - "y_max": 0.8516806960105896, - "y_min": 0.6483859419822693 - }, - "confidence": 0.6670747995376587, - "label": "person", - "label_id": 1 - }, - "h": 88, - "region_id": 1627, - "roi_type": "person", - "w": 47, - "x": 540, - "y": 280 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 2666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7670164108276367, - "x_min": 0.7064443826675415, - "y_max": 0.829826295375824, - "y_min": 0.6299616694450378 - }, - "confidence": 0.929532527923584, - "label": "person", - "label_id": 1 - }, - "h": 86, - "region_id": 1628, - "roi_type": "person", - "w": 47, - "x": 543, - "y": 272 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 2750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7725509405136108, - "x_min": 0.7098292112350464, - "y_max": 0.8254445195198059, - "y_min": 0.6173177361488342 - }, - "confidence": 0.6896131634712219, - "label": "person", - "label_id": 1 - }, - "h": 90, - "region_id": 1629, - "roi_type": "person", - "w": 48, - "x": 545, - "y": 267 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 2833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.77418452501297, - "x_min": 0.7090356945991516, - "y_max": 0.8218122124671936, - "y_min": 0.6104786992073059 - }, - "confidence": 0.7604833841323853, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 1630, - "roi_type": "person", - "w": 50, - "x": 545, - "y": 264 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 2916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7783714532852173, - "x_min": 0.7181830406188965, - "y_max": 0.7849859595298767, - "y_min": 0.5744112133979797 - }, - "confidence": 0.502738356590271, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 1631, - "roi_type": "person", - "w": 46, - "x": 552, - "y": 248 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 3166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7834279537200928, - "x_min": 0.7257949113845825, - "y_max": 0.7589362263679504, - "y_min": 0.5519590973854065 - }, - "confidence": 0.7043135166168213, - "label": "person", - "label_id": 1 - }, - "h": 89, - "region_id": 1632, - "roi_type": "person", - "w": 44, - "x": 557, - "y": 238 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 3250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.78952956199646, - "x_min": 0.7326743602752686, - "y_max": 0.7261121273040771, - "y_min": 0.5483003854751587 - }, - "confidence": 0.9756479263305664, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 1633, - "roi_type": "person", - "w": 44, - "x": 563, - "y": 237 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 3333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7890371084213257, - "x_min": 0.737720251083374, - "y_max": 0.7031307816505432, - "y_min": 0.5400574803352356 - }, - "confidence": 0.8415098786354065, - "label": "person", - "label_id": 1 - }, - "h": 70, - "region_id": 1634, - "roi_type": "person", - "w": 39, - "x": 567, - "y": 233 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 3416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7952908873558044, - "x_min": 0.7402903437614441, - "y_max": 0.6921250820159912, - "y_min": 0.5216915607452393 - }, - "confidence": 0.7716295719146729, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 1635, - "roi_type": "person", - "w": 42, - "x": 569, - "y": 225 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 3500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8006463646888733, - "x_min": 0.746234118938446, - "y_max": 0.6880520582199097, - "y_min": 0.5218417644500732 - }, - "confidence": 0.8759844303131104, - "label": "person", - "label_id": 1 - }, - "h": 72, - "region_id": 1636, - "roi_type": "person", - "w": 42, - "x": 573, - "y": 225 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 3583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8098055720329285, - "x_min": 0.7457361817359924, - "y_max": 0.7030310034751892, - "y_min": 0.5026633143424988 - }, - "confidence": 0.9101058840751648, - "label": "person", - "label_id": 1 - }, - "h": 87, - "region_id": 1637, - "roi_type": "person", - "w": 49, - "x": 573, - "y": 217 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 3666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8131635785102844, - "x_min": 0.7560372948646545, - "y_max": 0.68419349193573, - "y_min": 0.4961233139038086 - }, - "confidence": 0.9086412787437439, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 1639, - "roi_type": "person", - "w": 44, - "x": 581, - "y": 214 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 3750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.823058545589447, - "x_min": 0.7637491822242737, - "y_max": 0.6855756640434265, - "y_min": 0.4885023236274719 - }, - "confidence": 0.8248202800750732, - "label": "person", - "label_id": 1 - }, - "h": 85, - "region_id": 1638, - "roi_type": "person", - "w": 46, - "x": 587, - "y": 211 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 3833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8232852220535278, - "x_min": 0.760567307472229, - "y_max": 0.6924915909767151, - "y_min": 0.47507840394973755 - }, - "confidence": 0.6950181126594543, - "label": "person", - "label_id": 1 - }, - "h": 94, - "region_id": 1644, - "roi_type": "person", - "w": 48, - "x": 584, - "y": 205 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 3916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8322221040725708, - "x_min": 0.7602424621582031, - "y_max": 0.6941542625427246, - "y_min": 0.46584224700927734 - }, - "confidence": 0.5867351293563843, - "label": "person", - "label_id": 1 - }, - "h": 99, - "region_id": 1645, - "roi_type": "person", - "w": 55, - "x": 584, - "y": 201 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 4000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8429373502731323, - "x_min": 0.793522834777832, - "y_max": 0.6419346928596497, - "y_min": 0.43809905648231506 - }, - "confidence": 0.96792072057724, - "label": "person", - "label_id": 1 - }, - "h": 88, - "region_id": 1646, - "roi_type": "person", - "w": 38, - "x": 609, - "y": 189 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 4250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.849794328212738, - "x_min": 0.796667754650116, - "y_max": 0.615337610244751, - "y_min": 0.44303929805755615 - }, - "confidence": 0.8853123188018799, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 1647, - "roi_type": "person", - "w": 41, - "x": 612, - "y": 191 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 4333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8533491492271423, - "x_min": 0.8009874224662781, - "y_max": 0.6051764488220215, - "y_min": 0.4295734465122223 - }, - "confidence": 0.90330970287323, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 1650, - "roi_type": "person", - "w": 40, - "x": 615, - "y": 186 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 4416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8604123592376709, - "x_min": 0.8060647249221802, - "y_max": 0.5924712419509888, - "y_min": 0.42701780796051025 - }, - "confidence": 0.8053339719772339, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 1652, - "roi_type": "person", - "w": 42, - "x": 619, - "y": 184 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 4500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8663100600242615, - "x_min": 0.810594379901886, - "y_max": 0.5942341089248657, - "y_min": 0.42083391547203064 - }, - "confidence": 0.7699306607246399, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 1654, - "roi_type": "person", - "w": 43, - "x": 623, - "y": 182 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 4583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8744010329246521, - "x_min": 0.817695677280426, - "y_max": 0.5900759696960449, - "y_min": 0.41369643807411194 - }, - "confidence": 0.9554973244667053, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 1655, - "roi_type": "person", - "w": 44, - "x": 628, - "y": 179 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 4666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8855565190315247, - "x_min": 0.8264035582542419, - "y_max": 0.5860601663589478, - "y_min": 0.4029603898525238 - }, - "confidence": 0.8228950500488281, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 1658, - "roi_type": "person", - "w": 45, - "x": 635, - "y": 174 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 4750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8908534049987793, - "x_min": 0.8350781202316284, - "y_max": 0.5897727012634277, - "y_min": 0.3878403902053833 - }, - "confidence": 0.8011389970779419, - "label": "person", - "label_id": 1 - }, - "h": 87, - "region_id": 1657, - "roi_type": "person", - "w": 43, - "x": 641, - "y": 168 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 4833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9007775187492371, - "x_min": 0.8356189131736755, - "y_max": 0.5877959132194519, - "y_min": 0.39412611722946167 - }, - "confidence": 0.6489140391349792, - "label": "person", - "label_id": 1 - }, - "h": 84, - "region_id": 1659, - "roi_type": "person", - "w": 50, - "x": 642, - "y": 170 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 4916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9088490605354309, - "x_min": 0.8531065583229065, - "y_max": 0.5604838728904724, - "y_min": 0.376047819852829 - }, - "confidence": 0.6436927914619446, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 1660, - "roi_type": "person", - "w": 43, - "x": 655, - "y": 162 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 5166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.91246098279953, - "x_min": 0.8664992451667786, - "y_max": 0.5441793203353882, - "y_min": 0.36725080013275146 - }, - "confidence": 0.8806077837944031, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 1661, - "roi_type": "person", - "w": 35, - "x": 665, - "y": 159 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 5250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9204215407371521, - "x_min": 0.8713714480400085, - "y_max": 0.5294153690338135, - "y_min": 0.3520965278148651 - }, - "confidence": 0.9779548048973083, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 1662, - "roi_type": "person", - "w": 38, - "x": 669, - "y": 152 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 5333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9224029779434204, - "x_min": 0.8775302171707153, - "y_max": 0.5218915343284607, - "y_min": 0.35059165954589844 - }, - "confidence": 0.9283971786499023, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 1663, - "roi_type": "person", - "w": 34, - "x": 674, - "y": 151 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 5416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9281563758850098, - "x_min": 0.87200927734375, - "y_max": 0.5194041728973389, - "y_min": 0.3446289598941803 - }, - "confidence": 0.7565144896507263, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 1664, - "roi_type": "person", - "w": 43, - "x": 670, - "y": 149 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 5500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.937407910823822, - "x_min": 0.8853235840797424, - "y_max": 0.5107858777046204, - "y_min": 0.34274011850357056 - }, - "confidence": 0.950576663017273, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 1665, - "roi_type": "person", - "w": 40, - "x": 680, - "y": 148 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 5583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9449759125709534, - "x_min": 0.8897075057029724, - "y_max": 0.5037586688995361, - "y_min": 0.33645257353782654 - }, - "confidence": 0.909963846206665, - "label": "person", - "label_id": 1 - }, - "h": 72, - "region_id": 1666, - "roi_type": "person", - "w": 42, - "x": 683, - "y": 145 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 5666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9549130201339722, - "x_min": 0.8982007503509521, - "y_max": 0.5104894638061523, - "y_min": 0.3242742419242859 - }, - "confidence": 0.7820349931716919, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 1667, - "roi_type": "person", - "w": 44, - "x": 690, - "y": 140 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 5750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9616369009017944, - "x_min": 0.9061300754547119, - "y_max": 0.5176384449005127, - "y_min": 0.32654041051864624 - }, - "confidence": 0.7777004837989807, - "label": "person", - "label_id": 1 - }, - "h": 83, - "region_id": 1668, - "roi_type": "person", - "w": 43, - "x": 696, - "y": 141 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 5833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9738940000534058, - "x_min": 0.9141021966934204, - "y_max": 0.4915769100189209, - "y_min": 0.3181222677230835 - }, - "confidence": 0.7904218435287476, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 1669, - "roi_type": "person", - "w": 46, - "x": 702, - "y": 137 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 6083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.975996196269989, - "x_min": 0.9256718754768372, - "y_max": 0.4855739176273346, - "y_min": 0.30408164858818054 - }, - "confidence": 0.7352949976921082, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 1670, - "roi_type": "person", - "w": 39, - "x": 711, - "y": 131 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 6166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9818256497383118, - "x_min": 0.928584635257721, - "y_max": 0.47780394554138184, - "y_min": 0.2946469187736511 - }, - "confidence": 0.8346178531646729, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 1671, - "roi_type": "person", - "w": 41, - "x": 713, - "y": 127 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 6250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9829865097999573, - "x_min": 0.9321264624595642, - "y_max": 0.46189287304878235, - "y_min": 0.2909712493419647 - }, - "confidence": 0.9709599018096924, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 1672, - "roi_type": "person", - "w": 39, - "x": 716, - "y": 126 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 6333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9856051206588745, - "x_min": 0.9314626455307007, - "y_max": 0.4595508873462677, - "y_min": 0.2890259921550751 - }, - "confidence": 0.6953359246253967, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 1673, - "roi_type": "person", - "w": 42, - "x": 715, - "y": 125 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 6416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9974535703659058, - "x_min": 0.9289860725402832, - "y_max": 0.46979770064353943, - "y_min": 0.25890347361564636 - }, - "confidence": 0.5784777998924255, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 1674, - "roi_type": "person", - "w": 53, - "x": 713, - "y": 112 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 6500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9965777397155762, - "x_min": 0.948677659034729, - "y_max": 0.4469355344772339, - "y_min": 0.2675803303718567 - }, - "confidence": 0.5522598028182983, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 1675, - "roi_type": "person", - "w": 37, - "x": 729, - "y": 116 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 6583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.11904987692832947, - "y_max": 0.9856871068477631, - "y_min": 0.019983261823654175 - }, - "confidence": 0.5811690092086792, - "label": "vehicle", - "label_id": 2 - }, - "h": 417, - "region_id": 1676, - "roi_type": "vehicle", - "w": 677, - "x": 91, - "y": 9 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 13916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3472718670964241, - "x_min": 0.12164772301912308, - "y_max": 1.0, - "y_min": 0.8393084406852722 - }, - "confidence": 0.6197941899299622, - "label": "vehicle", - "label_id": 2 - }, - "h": 69, - "region_id": 1677, - "roi_type": "vehicle", - "w": 173, - "x": 93, - "y": 363 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 14333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35296928882598877, - "x_min": 0.12145508825778961, - "y_max": 1.0, - "y_min": 0.809481143951416 - }, - "confidence": 0.7172138094902039, - "label": "vehicle", - "label_id": 2 - }, - "h": 82, - "region_id": 1678, - "roi_type": "vehicle", - "w": 178, - "x": 93, - "y": 350 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 14416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35698965191841125, - "x_min": 0.12027296423912048, - "y_max": 0.9967044591903687, - "y_min": 0.783829927444458 - }, - "confidence": 0.8247243762016296, - "label": "vehicle", - "label_id": 2 - }, - "h": 92, - "region_id": 1679, - "roi_type": "vehicle", - "w": 182, - "x": 92, - "y": 339 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 14500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35937564820051193, - "x_min": 0.1130119189620018, - "y_max": 0.9963881969451904, - "y_min": 0.7641627788543701 - }, - "confidence": 0.8237555027008057, - "label": "vehicle", - "label_id": 2 - }, - "h": 100, - "region_id": 1680, - "roi_type": "vehicle", - "w": 189, - "x": 87, - "y": 330 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 14583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3695478141307831, - "x_min": 0.11453911662101746, - "y_max": 1.0, - "y_min": 0.7280340790748596 - }, - "confidence": 0.7173946499824524, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 1681, - "roi_type": "vehicle", - "w": 196, - "x": 88, - "y": 315 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 14666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36808082461357117, - "x_min": 0.10083702206611633, - "y_max": 0.9959658980369568, - "y_min": 0.7031351923942566 - }, - "confidence": 0.8457762002944946, - "label": "vehicle", - "label_id": 2 - }, - "h": 127, - "region_id": 1682, - "roi_type": "vehicle", - "w": 205, - "x": 77, - "y": 304 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 14750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37700890004634857, - "x_min": 0.10729126632213593, - "y_max": 0.9994959831237793, - "y_min": 0.6779965162277222 - }, - "confidence": 0.9278457760810852, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "region_id": 1683, - "roi_type": "vehicle", - "w": 207, - "x": 82, - "y": 293 - }, - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.12105026841163635, - "y_max": 0.9884764552116394, - "y_min": 0.031229078769683838 - }, - "confidence": 0.6490932106971741, - "label": "vehicle", - "label_id": 2 - }, - "h": 414, - "region_id": 1684, - "roi_type": "vehicle", - "w": 675, - "x": 93, - "y": 13 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 14833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37933249771595, - "x_min": 0.10664261877536774, - "y_max": 1.0, - "y_min": 0.6494535207748413 - }, - "confidence": 0.9569631814956665, - "label": "vehicle", - "label_id": 2 - }, - "h": 151, - "region_id": 1685, - "roi_type": "vehicle", - "w": 209, - "x": 82, - "y": 281 - }, - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.12350031733512878, - "y_max": 0.9561575353145599, - "y_min": 0.036140888929367065 - }, - "confidence": 0.6475626826286316, - "label": "vehicle", - "label_id": 2 - }, - "h": 397, - "region_id": 1686, - "roi_type": "vehicle", - "w": 673, - "x": 95, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 14916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37901879847049713, - "x_min": 0.10554523766040802, - "y_max": 1.0, - "y_min": 0.6312699913978577 - }, - "confidence": 0.9906972646713257, - "label": "vehicle", - "label_id": 2 - }, - "h": 159, - "region_id": 1687, - "roi_type": "vehicle", - "w": 210, - "x": 81, - "y": 273 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 15000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3792016804218292, - "x_min": 0.11973920464515686, - "y_max": 0.9997225999832153, - "y_min": 0.6097801923751831 - }, - "confidence": 0.9947446584701538, - "label": "vehicle", - "label_id": 2 - }, - "h": 168, - "region_id": 1688, - "roi_type": "vehicle", - "w": 199, - "x": 92, - "y": 263 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 15083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3760889172554016, - "x_min": 0.11782974004745483, - "y_max": 0.9969019889831543, - "y_min": 0.5848079919815063 - }, - "confidence": 0.9949920773506165, - "label": "vehicle", - "label_id": 2 - }, - "h": 178, - "region_id": 1689, - "roi_type": "vehicle", - "w": 198, - "x": 90, - "y": 253 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 15166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3769965320825577, - "x_min": 0.11793924868106842, - "y_max": 0.9975459575653076, - "y_min": 0.5624508857727051 - }, - "confidence": 0.9885396361351013, - "label": "vehicle", - "label_id": 2 - }, - "h": 188, - "region_id": 1690, - "roi_type": "vehicle", - "w": 199, - "x": 91, - "y": 243 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 15250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37293992936611176, - "x_min": 0.11036746203899384, - "y_max": 1.0, - "y_min": 0.5396616458892822 - }, - "confidence": 0.9783477783203125, - "label": "vehicle", - "label_id": 2 - }, - "h": 199, - "region_id": 1691, - "roi_type": "vehicle", - "w": 202, - "x": 85, - "y": 233 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 15333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36592480540275574, - "x_min": 0.13214635848999023, - "y_max": 1.0, - "y_min": 0.5241050720214844 - }, - "confidence": 0.9772934317588806, - "label": "vehicle", - "label_id": 2 - }, - "h": 206, - "region_id": 1692, - "roi_type": "vehicle", - "w": 180, - "x": 101, - "y": 226 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 15416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3634260296821594, - "x_min": 0.13490857183933258, - "y_max": 1.0, - "y_min": 0.5041921138763428 - }, - "confidence": 0.9919345378875732, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "region_id": 1693, - "roi_type": "vehicle", - "w": 176, - "x": 104, - "y": 218 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.960456371307373, - "x_min": 0.14331555366516113, - "y_max": 0.8030669689178467, - "y_min": 0.04740440845489502 - }, - "confidence": 0.6498066186904907, - "label": "vehicle", - "label_id": 2 - }, - "h": 326, - "region_id": 1694, - "roi_type": "vehicle", - "w": 628, - "x": 110, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 15500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3554348349571228, - "x_min": 0.14201128482818604, - "y_max": 0.9914812445640564, - "y_min": 0.49649685621261597 - }, - "confidence": 0.9959776997566223, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "region_id": 1695, - "roi_type": "vehicle", - "w": 164, - "x": 109, - "y": 214 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 15583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35458171367645264, - "x_min": 0.14792513847351074, - "y_max": 0.9985901713371277, - "y_min": 0.47491592168807983 - }, - "confidence": 0.9977288842201233, - "label": "vehicle", - "label_id": 2 - }, - "h": 226, - "region_id": 1696, - "roi_type": "vehicle", - "w": 159, - "x": 114, - "y": 205 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9464908838272095, - "x_min": 0.37183070182800293, - "y_max": 0.8923693895339966, - "y_min": 0.04037749767303467 - }, - "confidence": 0.5506706833839417, - "label": "vehicle", - "label_id": 2 - }, - "h": 368, - "region_id": 1697, - "roi_type": "vehicle", - "w": 441, - "x": 286, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 15666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35628217458724976, - "x_min": 0.1539267748594284, - "y_max": 0.9833188056945801, - "y_min": 0.4503910541534424 - }, - "confidence": 0.994249701499939, - "label": "vehicle", - "label_id": 2 - }, - "h": 230, - "region_id": 1698, - "roi_type": "vehicle", - "w": 155, - "x": 118, - "y": 195 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 15750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3493105173110962, - "x_min": 0.15961898863315582, - "y_max": 0.9475720822811127, - "y_min": 0.4319262206554413 - }, - "confidence": 0.9976761937141418, - "label": "vehicle", - "label_id": 2 - }, - "h": 223, - "region_id": 1699, - "roi_type": "vehicle", - "w": 146, - "x": 123, - "y": 187 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9634890258312225, - "x_min": 0.3556390702724457, - "y_max": 0.7470780611038208, - "y_min": 0.06608313322067261 - }, - "confidence": 0.7034559845924377, - "label": "vehicle", - "label_id": 2 - }, - "h": 294, - "region_id": 1700, - "roi_type": "vehicle", - "w": 467, - "x": 273, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 15833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3447081446647644, - "x_min": 0.16244013607501984, - "y_max": 0.9356728792190552, - "y_min": 0.42220282554626465 - }, - "confidence": 0.997654139995575, - "label": "vehicle", - "label_id": 2 - }, - "h": 222, - "region_id": 1701, - "roi_type": "vehicle", - "w": 140, - "x": 125, - "y": 182 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9825330972671509, - "x_min": 0.34150373935699463, - "y_max": 0.9223797023296356, - "y_min": 0.048903077840805054 - }, - "confidence": 0.5919698476791382, - "label": "vehicle", - "label_id": 2 - }, - "h": 377, - "region_id": 1702, - "roi_type": "vehicle", - "w": 492, - "x": 262, - "y": 21 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 15916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3389114439487457, - "x_min": 0.16517701745033264, - "y_max": 0.9076908528804779, - "y_min": 0.4019246995449066 - }, - "confidence": 0.9994926452636719, - "label": "vehicle", - "label_id": 2 - }, - "h": 218, - "region_id": 1703, - "roi_type": "vehicle", - "w": 133, - "x": 127, - "y": 174 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 16000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3360127806663513, - "x_min": 0.1654418557882309, - "y_max": 0.8818584084510803, - "y_min": 0.3884504437446594 - }, - "confidence": 0.9987764954566956, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "region_id": 1704, - "roi_type": "vehicle", - "w": 131, - "x": 127, - "y": 168 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9590835273265839, - "x_min": 0.31477364897727966, - "y_max": 0.8576100170612335, - "y_min": 0.07268145680427551 - }, - "confidence": 0.5272276401519775, - "label": "vehicle", - "label_id": 2 - }, - "h": 339, - "region_id": 1705, - "roi_type": "vehicle", - "w": 495, - "x": 242, - "y": 31 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 16083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33232998847961426, - "x_min": 0.16263365745544434, - "y_max": 0.8597554564476013, - "y_min": 0.3726103901863098 - }, - "confidence": 0.9985213875770569, - "label": "vehicle", - "label_id": 2 - }, - "h": 210, - "region_id": 1706, - "roi_type": "vehicle", - "w": 130, - "x": 125, - "y": 161 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9746560454368591, - "x_min": 0.3364577889442444, - "y_max": 0.9104736745357513, - "y_min": 0.05242249369621277 - }, - "confidence": 0.5714530348777771, - "label": "vehicle", - "label_id": 2 - }, - "h": 371, - "region_id": 1707, - "roi_type": "vehicle", - "w": 490, - "x": 258, - "y": 23 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 16166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33004996180534363, - "x_min": 0.16184934973716736, - "y_max": 0.831344723701477, - "y_min": 0.35449519753456116 - }, - "confidence": 0.9997923970222473, - "label": "vehicle", - "label_id": 2 - }, - "h": 206, - "region_id": 1708, - "roi_type": "vehicle", - "w": 129, - "x": 124, - "y": 153 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9590028822422028, - "x_min": 0.3254684507846832, - "y_max": 0.8569502830505371, - "y_min": 0.06740456819534302 - }, - "confidence": 0.7004438042640686, - "label": "vehicle", - "label_id": 2 - }, - "h": 341, - "region_id": 1709, - "roi_type": "vehicle", - "w": 487, - "x": 250, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 16250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3289366066455841, - "x_min": 0.1574317216873169, - "y_max": 0.8062315583229065, - "y_min": 0.34386783838272095 - }, - "confidence": 0.9998531341552734, - "label": "vehicle", - "label_id": 2 - }, - "h": 200, - "region_id": 1710, - "roi_type": "vehicle", - "w": 132, - "x": 121, - "y": 149 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.964382529258728, - "x_min": 0.32466232776641846, - "y_max": 0.8281485438346863, - "y_min": 0.05045187473297119 - }, - "confidence": 0.7299045920372009, - "label": "vehicle", - "label_id": 2 - }, - "h": 336, - "region_id": 1711, - "roi_type": "vehicle", - "w": 491, - "x": 249, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 16333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.32749849557876587, - "x_min": 0.15210948884487152, - "y_max": 0.7838110327720642, - "y_min": 0.3270363211631775 - }, - "confidence": 0.9998413324356079, - "label": "vehicle", - "label_id": 2 - }, - "h": 197, - "region_id": 1712, - "roi_type": "vehicle", - "w": 135, - "x": 117, - "y": 141 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9622262120246887, - "x_min": 0.3427131772041321, - "y_max": 0.87251016497612, - "y_min": 0.04009708762168884 - }, - "confidence": 0.5857366919517517, - "label": "vehicle", - "label_id": 2 - }, - "h": 360, - "region_id": 1713, - "roi_type": "vehicle", - "w": 476, - "x": 263, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 16416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3233610689640045, - "x_min": 0.14286422729492188, - "y_max": 0.7728333473205566, - "y_min": 0.3200983703136444 - }, - "confidence": 0.9999895095825195, - "label": "vehicle", - "label_id": 2 - }, - "h": 196, - "region_id": 1714, - "roi_type": "vehicle", - "w": 139, - "x": 110, - "y": 138 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9750470519065857, - "x_min": 0.29748600721359253, - "y_max": 0.878402590751648, - "y_min": 0.02611905336380005 - }, - "confidence": 0.6027935147285461, - "label": "vehicle", - "label_id": 2 - }, - "h": 368, - "region_id": 1715, - "roi_type": "vehicle", - "w": 520, - "x": 228, - "y": 11 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 16500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3201468884944916, - "x_min": 0.13641870021820068, - "y_max": 0.7574479579925537, - "y_min": 0.309865802526474 - }, - "confidence": 0.9999890327453613, - "label": "vehicle", - "label_id": 2 - }, - "h": 193, - "region_id": 1716, - "roi_type": "vehicle", - "w": 141, - "x": 105, - "y": 134 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.967246949672699, - "x_min": 0.2861178517341614, - "y_max": 0.8358006775379181, - "y_min": 0.03851500153541565 - }, - "confidence": 0.7227263450622559, - "label": "vehicle", - "label_id": 2 - }, - "h": 344, - "region_id": 1717, - "roi_type": "vehicle", - "w": 523, - "x": 220, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 16583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31699711084365845, - "x_min": 0.13015078008174896, - "y_max": 0.7375568151473999, - "y_min": 0.29937541484832764 - }, - "confidence": 0.9999899864196777, - "label": "vehicle", - "label_id": 2 - }, - "h": 189, - "region_id": 1718, - "roi_type": "vehicle", - "w": 143, - "x": 100, - "y": 129 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9515461325645447, - "x_min": 0.33267635107040405, - "y_max": 0.8539553582668304, - "y_min": 0.03352043032646179 - }, - "confidence": 0.8081793785095215, - "label": "vehicle", - "label_id": 2 - }, - "h": 354, - "region_id": 1719, - "roi_type": "vehicle", - "w": 475, - "x": 255, - "y": 14 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 16666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.313996784389019, - "x_min": 0.1178915724158287, - "y_max": 0.721222996711731, - "y_min": 0.2869602143764496 - }, - "confidence": 0.9999879598617554, - "label": "vehicle", - "label_id": 2 - }, - "h": 188, - "region_id": 1720, - "roi_type": "vehicle", - "w": 151, - "x": 91, - "y": 124 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9608641266822815, - "x_min": 0.32193297147750854, - "y_max": 0.872944712638855, - "y_min": 0.03886592388153076 - }, - "confidence": 0.6384647488594055, - "label": "vehicle", - "label_id": 2 - }, - "h": 360, - "region_id": 1721, - "roi_type": "vehicle", - "w": 491, - "x": 247, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 16750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31122130155563354, - "x_min": 0.10584880411624908, - "y_max": 0.7095153331756592, - "y_min": 0.28365960717201233 - }, - "confidence": 0.9999860525131226, - "label": "vehicle", - "label_id": 2 - }, - "h": 184, - "region_id": 1722, - "roi_type": "vehicle", - "w": 158, - "x": 81, - "y": 123 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9637041389942169, - "x_min": 0.32208338379859924, - "y_max": 0.8715708255767822, - "y_min": 0.04041773080825806 - }, - "confidence": 0.649631142616272, - "label": "vehicle", - "label_id": 2 - }, - "h": 359, - "region_id": 1723, - "roi_type": "vehicle", - "w": 493, - "x": 247, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 16833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.30708828568458557, - "x_min": 0.08848142623901367, - "y_max": 0.6941937208175659, - "y_min": 0.27684852480888367 - }, - "confidence": 0.9999517202377319, - "label": "vehicle", - "label_id": 2 - }, - "h": 180, - "region_id": 1724, - "roi_type": "vehicle", - "w": 168, - "x": 68, - "y": 120 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9554692804813385, - "x_min": 0.3402766287326813, - "y_max": 0.8379943072795868, - "y_min": 0.04827651381492615 - }, - "confidence": 0.7163934707641602, - "label": "vehicle", - "label_id": 2 - }, - "h": 341, - "region_id": 1725, - "roi_type": "vehicle", - "w": 472, - "x": 261, - "y": 21 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 16916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3021143078804016, - "x_min": 0.08180795609951019, - "y_max": 0.6738347411155701, - "y_min": 0.2771807909011841 - }, - "confidence": 0.9999845027923584, - "label": "vehicle", - "label_id": 2 - }, - "h": 171, - "region_id": 1726, - "roi_type": "vehicle", - "w": 169, - "x": 63, - "y": 120 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9660838842391968, - "x_min": 0.33971118927001953, - "y_max": 0.8525603115558624, - "y_min": 0.0668802559375763 - }, - "confidence": 0.5413897633552551, - "label": "vehicle", - "label_id": 2 - }, - "h": 339, - "region_id": 1727, - "roi_type": "vehicle", - "w": 481, - "x": 261, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 17000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2942667081952095, - "x_min": 0.07385558634996414, - "y_max": 0.656566858291626, - "y_min": 0.27267447113990784 - }, - "confidence": 0.9999916553497314, - "label": "vehicle", - "label_id": 2 - }, - "h": 166, - "region_id": 1728, - "roi_type": "vehicle", - "w": 169, - "x": 57, - "y": 118 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9926852583885193, - "x_min": 0.3049655556678772, - "y_max": 0.8486753702163696, - "y_min": 0.05000650882720947 - }, - "confidence": 0.5591980814933777, - "label": "vehicle", - "label_id": 2 - }, - "h": 345, - "region_id": 1729, - "roi_type": "vehicle", - "w": 528, - "x": 234, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 17083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.28687456995248795, - "x_min": 0.06621802598237991, - "y_max": 0.6433695554733276, - "y_min": 0.2654878795146942 - }, - "confidence": 0.9999983310699463, - "label": "vehicle", - "label_id": 2 - }, - "h": 163, - "region_id": 1730, - "roi_type": "vehicle", - "w": 169, - "x": 51, - "y": 115 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 17166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.28295157104730606, - "x_min": 0.055335767567157745, - "y_max": 0.6373208165168762, - "y_min": 0.2616565227508545 - }, - "confidence": 0.9999963045120239, - "label": "vehicle", - "label_id": 2 - }, - "h": 162, - "region_id": 1731, - "roi_type": "vehicle", - "w": 175, - "x": 42, - "y": 113 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.95826455950737, - "x_min": 0.3554447591304779, - "y_max": 0.7013552486896515, - "y_min": 0.061350494623184204 - }, - "confidence": 0.6528945565223694, - "label": "vehicle", - "label_id": 2 - }, - "h": 276, - "region_id": 1732, - "roi_type": "vehicle", - "w": 463, - "x": 273, - "y": 27 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 17250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27854787558317184, - "x_min": 0.04411589354276657, - "y_max": 0.62773197889328, - "y_min": 0.2605406641960144 - }, - "confidence": 0.999983549118042, - "label": "vehicle", - "label_id": 2 - }, - "h": 159, - "region_id": 1733, - "roi_type": "vehicle", - "w": 180, - "x": 34, - "y": 113 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 17333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27031123638153076, - "x_min": 0.03065599501132965, - "y_max": 0.6122254133224487, - "y_min": 0.2575317919254303 - }, - "confidence": 0.9999444484710693, - "label": "vehicle", - "label_id": 2 - }, - "h": 153, - "region_id": 1734, - "roi_type": "vehicle", - "w": 184, - "x": 24, - "y": 111 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 17416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2618173286318779, - "x_min": 0.01927035301923752, - "y_max": 0.6008049249649048, - "y_min": 0.2527608275413513 - }, - "confidence": 0.9999783039093018, - "label": "vehicle", - "label_id": 2 - }, - "h": 150, - "region_id": 1735, - "roi_type": "vehicle", - "w": 186, - "x": 15, - "y": 109 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 17500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2521120309829712, - "x_min": 0.006787553429603577, - "y_max": 0.5942617058753967, - "y_min": 0.25123631954193115 - }, - "confidence": 0.999976396560669, - "label": "vehicle", - "label_id": 2 - }, - "h": 148, - "region_id": 1736, - "roi_type": "vehicle", - "w": 188, - "x": 5, - "y": 109 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 17583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2455773949623108, - "x_min": 0.0038528144359588623, - "y_max": 0.5852652192115784, - "y_min": 0.25117599964141846 - }, - "confidence": 0.999962568283081, - "label": "vehicle", - "label_id": 2 - }, - "h": 144, - "region_id": 1737, - "roi_type": "vehicle", - "w": 186, - "x": 3, - "y": 109 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 17666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23418442159891129, - "x_min": 0.00190020352602005, - "y_max": 0.5771202892065048, - "y_min": 0.24817226827144623 - }, - "confidence": 0.9999908208847046, - "label": "vehicle", - "label_id": 2 - }, - "h": 142, - "region_id": 1738, - "roi_type": "vehicle", - "w": 178, - "x": 1, - "y": 107 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 17750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.22408055514097214, - "x_min": 0.000627569854259491, - "y_max": 0.5654963403940201, - "y_min": 0.2458530217409134 - }, - "confidence": 0.9999959468841553, - "label": "vehicle", - "label_id": 2 - }, - "h": 138, - "region_id": 1739, - "roi_type": "vehicle", - "w": 172, - "x": 0, - "y": 106 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9729532599449158, - "x_min": 0.3975161910057068, - "y_max": 0.7704417705535889, - "y_min": 0.06877964735031128 - }, - "confidence": 0.5025386214256287, - "label": "vehicle", - "label_id": 2 - }, - "h": 303, - "region_id": 1740, - "roi_type": "vehicle", - "w": 442, - "x": 305, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 17833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.21542106568813324, - "x_min": 0.0, - "y_max": 0.5575774908065796, - "y_min": 0.24282824993133545 - }, - "confidence": 0.9999918937683105, - "label": "vehicle", - "label_id": 2 - }, - "h": 136, - "region_id": 1741, - "roi_type": "vehicle", - "w": 165, - "x": 0, - "y": 105 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9764736294746399, - "x_min": 0.3866834044456482, - "y_max": 0.8177641928195953, - "y_min": 0.04835072159767151 - }, - "confidence": 0.5299532413482666, - "label": "vehicle", - "label_id": 2 - }, - "h": 332, - "region_id": 1742, - "roi_type": "vehicle", - "w": 453, - "x": 297, - "y": 21 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 17916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.20652518421411514, - "x_min": 0.0, - "y_max": 0.5523459762334824, - "y_min": 0.2393653839826584 - }, - "confidence": 0.9999760389328003, - "label": "vehicle", - "label_id": 2 - }, - "h": 135, - "region_id": 1743, - "roi_type": "vehicle", - "w": 159, - "x": 0, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 18000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19814243912696838, - "x_min": 9.648501873016357e-05, - "y_max": 0.5438299030065536, - "y_min": 0.23729972541332245 - }, - "confidence": 0.99991774559021, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 1744, - "roi_type": "vehicle", - "w": 152, - "x": 0, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 18083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.18656962364912033, - "x_min": 0.00026082247495651245, - "y_max": 0.540632963180542, - "y_min": 0.22892174124717712 - }, - "confidence": 0.999891996383667, - "label": "vehicle", - "label_id": 2 - }, - "h": 135, - "region_id": 1745, - "roi_type": "vehicle", - "w": 143, - "x": 0, - "y": 99 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 18166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.17477919906377792, - "x_min": 0.001994602382183075, - "y_max": 0.5303716063499451, - "y_min": 0.22543710470199585 - }, - "confidence": 0.9990342855453491, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 1746, - "roi_type": "vehicle", - "w": 133, - "x": 2, - "y": 97 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 18250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.16638848185539246, - "x_min": 0.0, - "y_max": 0.5288660079240799, - "y_min": 0.22173668444156647 - }, - "confidence": 0.9978117346763611, - "label": "vehicle", - "label_id": 2 - }, - "h": 133, - "region_id": 1747, - "roi_type": "vehicle", - "w": 128, - "x": 0, - "y": 96 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 18333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15866544842720032, - "x_min": 0.0, - "y_max": 0.5260069519281387, - "y_min": 0.22341085970401764 - }, - "confidence": 0.9969075322151184, - "label": "vehicle", - "label_id": 2 - }, - "h": 131, - "region_id": 1748, - "roi_type": "vehicle", - "w": 122, - "x": 0, - "y": 97 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 18416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.14424734562635422, - "x_min": 0.0004708394408226013, - "y_max": 0.5235311985015869, - "y_min": 0.22360435128211975 - }, - "confidence": 0.9907389879226685, - "label": "vehicle", - "label_id": 2 - }, - "h": 130, - "region_id": 1749, - "roi_type": "vehicle", - "w": 110, - "x": 0, - "y": 97 - }, - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.11542871594429016, - "y_max": 0.9303610026836395, - "y_min": 0.03652903437614441 - }, - "confidence": 0.5644902586936951, - "label": "vehicle", - "label_id": 2 - }, - "h": 386, - "region_id": 1750, - "roi_type": "vehicle", - "w": 679, - "x": 89, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 18500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1311522275209427, - "x_min": 0.0012656599283218384, - "y_max": 0.5229739546775818, - "y_min": 0.2319927215576172 - }, - "confidence": 0.8800601363182068, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 1751, - "roi_type": "vehicle", - "w": 100, - "x": 1, - "y": 100 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 18583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.12498541176319122, - "x_min": 0.0, - "y_max": 0.5163314342498779, - "y_min": 0.24239161610603333 - }, - "confidence": 0.7448732256889343, - "label": "vehicle", - "label_id": 2 - }, - "h": 118, - "region_id": 1752, - "roi_type": "vehicle", - "w": 96, - "x": 0, - "y": 105 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 18666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1116863377392292, - "x_min": 0.0006904192268848419, - "y_max": 0.5155525207519531, - "y_min": 0.24023357033729553 - }, - "confidence": 0.8874056935310364, - "label": "vehicle", - "label_id": 2 - }, - "h": 119, - "region_id": 1753, - "roi_type": "vehicle", - "w": 85, - "x": 1, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 18750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.09923026710748672, - "x_min": 0.001333586871623993, - "y_max": 0.5189979076385498, - "y_min": 0.23733755946159363 - }, - "confidence": 0.6848376989364624, - "label": "vehicle", - "label_id": 2 - }, - "h": 122, - "region_id": 1754, - "roi_type": "vehicle", - "w": 75, - "x": 1, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 18833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.08814660087227821, - "x_min": 0.0, - "y_max": 0.5184166878461838, - "y_min": 0.23750726878643036 - }, - "confidence": 0.547851026058197, - "label": "vehicle", - "label_id": 2 - }, - "h": 121, - "region_id": 1755, - "roi_type": "vehicle", - "w": 68, - "x": 0, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 18916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07822689414024353, - "x_min": 0.0, - "y_max": 0.5102934390306473, - "y_min": 0.23988105356693268 - }, - "confidence": 0.7760471105575562, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 1756, - "roi_type": "vehicle", - "w": 60, - "x": 0, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 19000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06671496108174324, - "x_min": 0.0004887916147708893, - "y_max": 0.5063621997833252, - "y_min": 0.24073129892349243 - }, - "confidence": 0.721200168132782, - "label": "vehicle", - "label_id": 2 - }, - "h": 115, - "region_id": 1757, - "roi_type": "vehicle", - "w": 51, - "x": 0, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 19083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.058564310893416405, - "x_min": 0.0012591909617185593, - "y_max": 0.49973881244659424, - "y_min": 0.2501286268234253 - }, - "confidence": 0.7428306341171265, - "label": "vehicle", - "label_id": 2 - }, - "h": 108, - "region_id": 1758, - "roi_type": "vehicle", - "w": 44, - "x": 1, - "y": 108 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 19166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.04703952744603157, - "x_min": 0.0021373629570007324, - "y_max": 0.491912305355072, - "y_min": 0.27300935983657837 - }, - "confidence": 0.5740195512771606, - "label": "vehicle", - "label_id": 2 - }, - "h": 95, - "region_id": 1759, - "roi_type": "vehicle", - "w": 34, - "x": 2, - "y": 118 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 19250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.03855092264711857, - "x_min": 0.0, - "y_max": 0.48962903022766113, - "y_min": 0.2736285924911499 - }, - "confidence": 0.5253973007202148, - "label": "vehicle", - "label_id": 2 - }, - "h": 93, - "region_id": 1760, - "roi_type": "vehicle", - "w": 30, - "x": 0, - "y": 118 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 19333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.934235006570816, - "x_min": 0.04731431603431702, - "y_max": 0.9905672669410706, - "y_min": 0.005245864391326904 - }, - "confidence": 0.5478575229644775, - "label": "vehicle", - "label_id": 2 - }, - "h": 426, - "region_id": 1768, - "roi_type": "vehicle", - "w": 681, - "x": 36, - "y": 2 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 26666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9340743124485016, - "x_min": 0.05626228451728821, - "y_max": 0.9993162155151367, - "y_min": 0.0 - }, - "confidence": 0.5252728462219238, - "label": "vehicle", - "label_id": 2 - }, - "h": 432, - "region_id": 1767, - "roi_type": "vehicle", - "w": 674, - "x": 43, - "y": 0 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 26750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9431887567043304, - "x_min": 0.05145725607872009, - "y_max": 0.9891375601291656, - "y_min": 0.0 - }, - "confidence": 0.5604560375213623, - "label": "vehicle", - "label_id": 2 - }, - "h": 427, - "region_id": 1769, - "roi_type": "vehicle", - "w": 685, - "x": 40, - "y": 0 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 26833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9341979622840881, - "x_min": 0.04894071817398071, - "y_max": 0.9517980813980103, - "y_min": 0.0 - }, - "confidence": 0.5412791967391968, - "label": "vehicle", - "label_id": 2 - }, - "h": 411, - "region_id": 1770, - "roi_type": "vehicle", - "w": 680, - "x": 38, - "y": 0 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 26916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9681801199913025, - "x_min": 0.22439366579055786, - "y_max": 0.795999139547348, - "y_min": 0.07999715209007263 - }, - "confidence": 0.6512441039085388, - "label": "vehicle", - "label_id": 2 - }, - "h": 309, - "region_id": 1771, - "roi_type": "vehicle", - "w": 571, - "x": 172, - "y": 35 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 27333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.1108655333518982, - "y_max": 0.9221687614917755, - "y_min": 0.024473220109939575 - }, - "confidence": 0.5428245663642883, - "label": "vehicle", - "label_id": 2 - }, - "h": 388, - "region_id": 1772, - "roi_type": "vehicle", - "w": 683, - "x": 85, - "y": 11 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 28166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9668244123458862, - "x_min": 0.04019737243652344, - "y_max": 1.0, - "y_min": 0.018689513206481934 - }, - "confidence": 0.5183915495872498, - "label": "vehicle", - "label_id": 2 - }, - "h": 424, - "region_id": 1775, - "roi_type": "vehicle", - "w": 712, - "x": 31, - "y": 8 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 28916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.05809926800429821, - "x_min": 0.0035657789558172226, - "y_max": 0.2681969776749611, - "y_min": 0.09560371190309525 - }, - "confidence": 0.7589443922042847, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 1783, - "roi_type": "person", - "w": 42, - "x": 3, - "y": 41 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 40583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06384254433214664, - "x_min": 0.007957043126225471, - "y_max": 0.274237722158432, - "y_min": 0.1018730103969574 - }, - "confidence": 0.7985617518424988, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 1784, - "roi_type": "person", - "w": 43, - "x": 6, - "y": 44 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 40666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07437356747686863, - "x_min": 0.015382559970021248, - "y_max": 0.2672903835773468, - "y_min": 0.09030735492706299 - }, - "confidence": 0.893984317779541, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 1785, - "roi_type": "person", - "w": 45, - "x": 12, - "y": 39 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 40750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06839273869991302, - "x_min": 0.022368106991052628, - "y_max": 0.26446548104286194, - "y_min": 0.0925963819026947 - }, - "confidence": 0.946168839931488, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 1786, - "roi_type": "person", - "w": 35, - "x": 17, - "y": 40 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 40833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06265867501497269, - "x_min": 0.02845694124698639, - "y_max": 0.2631925344467163, - "y_min": 0.0876958817243576 - }, - "confidence": 0.7030326128005981, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 1787, - "roi_type": "person", - "w": 26, - "x": 22, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 40916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07015539705753326, - "x_min": 0.038974471390247345, - "y_max": 0.2708924114704132, - "y_min": 0.08729448914527893 - }, - "confidence": 0.8550823330879211, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 1788, - "roi_type": "person", - "w": 24, - "x": 30, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 41000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.08978046476840973, - "x_min": 0.04507404938340187, - "y_max": 0.26029662042856216, - "y_min": 0.08790374547243118 - }, - "confidence": 0.977257251739502, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 1789, - "roi_type": "person", - "w": 34, - "x": 35, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 41083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.10240232944488525, - "x_min": 0.050258174538612366, - "y_max": 0.26179608702659607, - "y_min": 0.08916294574737549 - }, - "confidence": 0.9634844064712524, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 1790, - "roi_type": "person", - "w": 40, - "x": 39, - "y": 39 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 41166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11237834393978119, - "x_min": 0.0557108074426651, - "y_max": 0.265661358833313, - "y_min": 0.08681026101112366 - }, - "confidence": 0.9638311266899109, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 1791, - "roi_type": "person", - "w": 44, - "x": 43, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 41250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11509420722723007, - "x_min": 0.0598953440785408, - "y_max": 0.26093965768814087, - "y_min": 0.08726376295089722 - }, - "confidence": 0.9589016437530518, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 1792, - "roi_type": "person", - "w": 42, - "x": 46, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 41333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.10801342129707336, - "x_min": 0.0689283162355423, - "y_max": 0.2573170065879822, - "y_min": 0.0888819694519043 - }, - "confidence": 0.7473644018173218, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 1793, - "roi_type": "person", - "w": 30, - "x": 53, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 41416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11594520509243011, - "x_min": 0.08451759815216064, - "y_max": 0.2598234713077545, - "y_min": 0.08372160792350769 - }, - "confidence": 0.9428697824478149, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 1794, - "roi_type": "person", - "w": 24, - "x": 65, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 41583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.14308200776576996, - "x_min": 0.08935531973838806, - "y_max": 0.25856076925992966, - "y_min": 0.08275481313467026 - }, - "confidence": 0.9797755479812622, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 1795, - "roi_type": "person", - "w": 41, - "x": 69, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 41666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15327730774879456, - "x_min": 0.09761051088571548, - "y_max": 0.25556155294179916, - "y_min": 0.08270096033811569 - }, - "confidence": 0.9193074703216553, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 1796, - "roi_type": "person", - "w": 43, - "x": 75, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 41750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15708927810192108, - "x_min": 0.09718881547451019, - "y_max": 0.2538745477795601, - "y_min": 0.08122579008340836 - }, - "confidence": 0.9810740351676941, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 1797, - "roi_type": "person", - "w": 46, - "x": 75, - "y": 35 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 41833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15849240124225616, - "x_min": 0.10766856372356415, - "y_max": 0.2546975910663605, - "y_min": 0.07851284742355347 - }, - "confidence": 0.9863011837005615, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 1798, - "roi_type": "person", - "w": 39, - "x": 83, - "y": 34 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 41916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.14903458952903748, - "x_min": 0.11753658205270767, - "y_max": 0.2580205202102661, - "y_min": 0.07362668216228485 - }, - "confidence": 0.9098013639450073, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 1799, - "roi_type": "person", - "w": 24, - "x": 90, - "y": 32 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 42000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15783970057964325, - "x_min": 0.13124407827854156, - "y_max": 0.25078579038381577, - "y_min": 0.08267303556203842 - }, - "confidence": 0.5655198097229004, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 1800, - "roi_type": "person", - "w": 20, - "x": 101, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 42083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1712721735239029, - "x_min": 0.13269366323947906, - "y_max": 0.25339871644973755, - "y_min": 0.0712251216173172 - }, - "confidence": 0.9201220273971558, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 1801, - "roi_type": "person", - "w": 30, - "x": 102, - "y": 31 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 42166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.188812255859375, - "x_min": 0.1387019157409668, - "y_max": 0.2481667771935463, - "y_min": 0.06929013878107071 - }, - "confidence": 0.972706139087677, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 1802, - "roi_type": "person", - "w": 38, - "x": 107, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 42250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19876964390277863, - "x_min": 0.14241482317447662, - "y_max": 0.24410223960876465, - "y_min": 0.06995522975921631 - }, - "confidence": 0.935201108455658, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 1803, - "roi_type": "person", - "w": 43, - "x": 109, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 42333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19850021600723267, - "x_min": 0.14565402269363403, - "y_max": 0.24200070649385452, - "y_min": 0.06734246760606766 - }, - "confidence": 0.9604580402374268, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 1804, - "roi_type": "person", - "w": 41, - "x": 112, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 42416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19670461118221283, - "x_min": 0.15936703979969025, - "y_max": 0.24713708460330963, - "y_min": 0.06951303780078888 - }, - "confidence": 0.9338945746421814, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 1805, - "roi_type": "person", - "w": 29, - "x": 122, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 42500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19646276533603668, - "x_min": 0.1669870764017105, - "y_max": 0.246548093855381, - "y_min": 0.05969572812318802 - }, - "confidence": 0.8135930299758911, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 1807, - "roi_type": "person", - "w": 23, - "x": 128, - "y": 26 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 42583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.20714330673217773, - "x_min": 0.17688614130020142, - "y_max": 0.24033692479133606, - "y_min": 0.06553769111633301 - }, - "confidence": 0.8666308522224426, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 1806, - "roi_type": "person", - "w": 23, - "x": 136, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 42666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.22876504063606262, - "x_min": 0.17733925580978394, - "y_max": 0.23425975441932678, - "y_min": 0.0654514729976654 - }, - "confidence": 0.9463271498680115, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 1808, - "roi_type": "person", - "w": 39, - "x": 136, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 42750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23787567019462585, - "x_min": 0.18617352843284607, - "y_max": 0.2328994944691658, - "y_min": 0.06733778864145279 - }, - "confidence": 0.8578006029129028, - "label": "person", - "label_id": 1 - }, - "h": 72, - "region_id": 1809, - "roi_type": "person", - "w": 40, - "x": 143, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 42833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24495282769203186, - "x_min": 0.18914848566055298, - "y_max": 0.2286892682313919, - "y_min": 0.06330259144306183 - }, - "confidence": 0.9402493834495544, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 1810, - "roi_type": "person", - "w": 43, - "x": 145, - "y": 27 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 42916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24374517798423767, - "x_min": 0.19896605610847473, - "y_max": 0.22477789968252182, - "y_min": 0.06456565111875534 - }, - "confidence": 0.9167733192443848, - "label": "person", - "label_id": 1 - }, - "h": 69, - "region_id": 1811, - "roi_type": "person", - "w": 34, - "x": 153, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 43000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23920002579689026, - "x_min": 0.2088455855846405, - "y_max": 0.2315978854894638, - "y_min": 0.050867900252342224 - }, - "confidence": 0.7405911087989807, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 1812, - "roi_type": "person", - "w": 23, - "x": 160, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 43083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24580711126327515, - "x_min": 0.21504563093185425, - "y_max": 0.22459035366773605, - "y_min": 0.04561009258031845 - }, - "confidence": 0.8077870607376099, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 1813, - "roi_type": "person", - "w": 24, - "x": 165, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 43166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.258386492729187, - "x_min": 0.22124245762825012, - "y_max": 0.22196873277425766, - "y_min": 0.04270251840353012 - }, - "confidence": 0.9389499425888062, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 1814, - "roi_type": "person", - "w": 29, - "x": 170, - "y": 18 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 43250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2686212658882141, - "x_min": 0.22306442260742188, - "y_max": 0.22240334749221802, - "y_min": 0.03721362352371216 - }, - "confidence": 0.8532395958900452, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 1815, - "roi_type": "person", - "w": 35, - "x": 171, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 43333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27878496050834656, - "x_min": 0.2256826013326645, - "y_max": 0.21868880838155746, - "y_min": 0.04378651827573776 - }, - "confidence": 0.940152108669281, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 1816, - "roi_type": "person", - "w": 41, - "x": 173, - "y": 19 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 43416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2782133221626282, - "x_min": 0.22981303930282593, - "y_max": 0.21300845593214035, - "y_min": 0.04048468917608261 - }, - "confidence": 0.8954000473022461, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 1817, - "roi_type": "person", - "w": 37, - "x": 176, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 43500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27863314747810364, - "x_min": 0.2395808845758438, - "y_max": 0.21157341450452805, - "y_min": 0.026669137179851532 - }, - "confidence": 0.5580120086669922, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 1818, - "roi_type": "person", - "w": 30, - "x": 184, - "y": 12 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 43583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2845720052719116, - "x_min": 0.25448018312454224, - "y_max": 0.21495232731103897, - "y_min": 0.026290185749530792 - }, - "confidence": 0.80083167552948, - "label": "person", - "label_id": 1 - }, - "h": 82, - "region_id": 1819, - "roi_type": "person", - "w": 23, - "x": 195, - "y": 11 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 43666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.29074627161026, - "x_min": 0.2599877119064331, - "y_max": 0.20789270102977753, - "y_min": 0.022824198007583618 - }, - "confidence": 0.8385727405548096, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 1820, - "roi_type": "person", - "w": 24, - "x": 200, - "y": 10 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 43750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.30755072832107544, - "x_min": 0.2656424045562744, - "y_max": 0.19290897250175476, - "y_min": 0.022242024540901184 - }, - "confidence": 0.977880597114563, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 1821, - "roi_type": "person", - "w": 32, - "x": 204, - "y": 10 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 43833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31079021096229553, - "x_min": 0.2677251994609833, - "y_max": 0.19722382724285126, - "y_min": 0.023035749793052673 - }, - "confidence": 0.9654287099838257, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 1822, - "roi_type": "person", - "w": 33, - "x": 206, - "y": 10 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.29563216120004654, - "x_min": 0.10331843048334122, - "y_max": 1.0, - "y_min": 0.8515570759773254 - }, - "confidence": 0.761517345905304, - "label": "vehicle", - "label_id": 2 - }, - "h": 64, - "region_id": 1823, - "roi_type": "vehicle", - "w": 148, - "x": 79, - "y": 368 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 43916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31590598821640015, - "x_min": 0.27411168813705444, - "y_max": 0.18277175724506378, - "y_min": 0.019142642617225647 - }, - "confidence": 0.9806784987449646, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 1824, - "roi_type": "person", - "w": 32, - "x": 211, - "y": 8 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.302535243332386, - "x_min": 0.08773649483919144, - "y_max": 1.0, - "y_min": 0.8262227177619934 - }, - "confidence": 0.908391535282135, - "label": "vehicle", - "label_id": 2 - }, - "h": 75, - "region_id": 1825, - "roi_type": "vehicle", - "w": 165, - "x": 67, - "y": 357 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 44000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3163120448589325, - "x_min": 0.27949169278144836, - "y_max": 0.18241430073976517, - "y_min": 0.00963614135980606 - }, - "confidence": 0.8560529351234436, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 1826, - "roi_type": "person", - "w": 28, - "x": 215, - "y": 4 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3071591779589653, - "x_min": 0.08984949439764023, - "y_max": 1.0, - "y_min": 0.7983192205429077 - }, - "confidence": 0.9688770174980164, - "label": "vehicle", - "label_id": 2 - }, - "h": 87, - "region_id": 1827, - "roi_type": "vehicle", - "w": 167, - "x": 69, - "y": 345 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 44083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31996291875839233, - "x_min": 0.28390347957611084, - "y_max": 0.17544172704219818, - "y_min": 0.002514094114303589 - }, - "confidence": 0.9317660927772522, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 1828, - "roi_type": "person", - "w": 28, - "x": 218, - "y": 1 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.31785333156585693, - "x_min": 0.09327417612075806, - "y_max": 0.9961552023887634, - "y_min": 0.7738481163978577 - }, - "confidence": 0.9980048537254333, - "label": "vehicle", - "label_id": 2 - }, - "h": 96, - "region_id": 1829, - "roi_type": "vehicle", - "w": 172, - "x": 72, - "y": 334 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 44166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3244977593421936, - "x_min": 0.29137319326400757, - "y_max": 0.18117792904376984, - "y_min": 0.0 - }, - "confidence": 0.9299455285072327, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 1830, - "roi_type": "person", - "w": 25, - "x": 224, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3211563229560852, - "x_min": 0.09341153502464294, - "y_max": 0.9977253675460815, - "y_min": 0.7558172941207886 - }, - "confidence": 0.995922327041626, - "label": "vehicle", - "label_id": 2 - }, - "h": 105, - "region_id": 1831, - "roi_type": "vehicle", - "w": 175, - "x": 72, - "y": 327 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 44250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33760935068130493, - "x_min": 0.2969669699668884, - "y_max": 0.1680586189031601, - "y_min": 0.0 - }, - "confidence": 0.97437584400177, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 1832, - "roi_type": "person", - "w": 31, - "x": 228, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.32524099946022034, - "x_min": 0.09379306435585022, - "y_max": 0.9987419843673706, - "y_min": 0.728178858757019 - }, - "confidence": 0.9982354640960693, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 1833, - "roi_type": "vehicle", - "w": 178, - "x": 72, - "y": 315 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 44333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34123092889785767, - "x_min": 0.2997239828109741, - "y_max": 0.1591828241944313, - "y_min": 0.0 - }, - "confidence": 0.9657360315322876, - "label": "person", - "label_id": 1 - }, - "h": 69, - "region_id": 1834, - "roi_type": "person", - "w": 32, - "x": 230, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3318566754460335, - "x_min": 0.09386516362428665, - "y_max": 0.9967382550239563, - "y_min": 0.7049055695533752 - }, - "confidence": 0.996229350566864, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 1835, - "roi_type": "vehicle", - "w": 183, - "x": 72, - "y": 305 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 44416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3466411232948303, - "x_min": 0.3028194308280945, - "y_max": 0.1562092900276184, - "y_min": 0.0 - }, - "confidence": 0.9846485257148743, - "label": "person", - "label_id": 1 - }, - "h": 67, - "region_id": 1836, - "roi_type": "person", - "w": 34, - "x": 233, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3395664617419243, - "x_min": 0.08993595093488693, - "y_max": 0.9996479153633118, - "y_min": 0.6784219145774841 - }, - "confidence": 0.9955138564109802, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "region_id": 1837, - "roi_type": "vehicle", - "w": 192, - "x": 69, - "y": 293 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 44500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34522509574890137, - "x_min": 0.30906105041503906, - "y_max": 0.15079188346862793, - "y_min": 0.0 - }, - "confidence": 0.9445015788078308, - "label": "person", - "label_id": 1 - }, - "h": 65, - "region_id": 1838, - "roi_type": "person", - "w": 28, - "x": 237, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3419874384999275, - "x_min": 0.0941135361790657, - "y_max": 1.0, - "y_min": 0.6525993943214417 - }, - "confidence": 0.9987126588821411, - "label": "vehicle", - "label_id": 2 - }, - "h": 150, - "region_id": 1839, - "roi_type": "vehicle", - "w": 190, - "x": 72, - "y": 282 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 44583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3481338918209076, - "x_min": 0.3160833418369293, - "y_max": 0.14550430327653885, - "y_min": 0.0 - }, - "confidence": 0.963749885559082, - "label": "person", - "label_id": 1 - }, - "h": 63, - "region_id": 1840, - "roi_type": "person", - "w": 25, - "x": 243, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.34435374289751053, - "x_min": 0.09984970837831497, - "y_max": 0.9990871548652649, - "y_min": 0.6355069279670715 - }, - "confidence": 0.9971874356269836, - "label": "vehicle", - "label_id": 2 - }, - "h": 157, - "region_id": 1841, - "roi_type": "vehicle", - "w": 188, - "x": 77, - "y": 275 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 44666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3530542850494385, - "x_min": 0.3201481103897095, - "y_max": 0.14842259883880615, - "y_min": 0.0 - }, - "confidence": 0.8752254843711853, - "label": "person", - "label_id": 1 - }, - "h": 64, - "region_id": 1842, - "roi_type": "person", - "w": 25, - "x": 246, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.34952497482299805, - "x_min": 0.10708582401275635, - "y_max": 1.0, - "y_min": 0.6191877722740173 - }, - "confidence": 0.998619794845581, - "label": "vehicle", - "label_id": 2 - }, - "h": 165, - "region_id": 1843, - "roi_type": "vehicle", - "w": 186, - "x": 82, - "y": 267 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 44750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35819557309150696, - "x_min": 0.3240784704685211, - "y_max": 0.14493504911661148, - "y_min": 0.0 - }, - "confidence": 0.7914350032806396, - "label": "person", - "label_id": 1 - }, - "h": 63, - "region_id": 1844, - "roi_type": "person", - "w": 26, - "x": 249, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3578673005104065, - "x_min": 0.11816421151161194, - "y_max": 0.9963030219078064, - "y_min": 0.5943846106529236 - }, - "confidence": 0.9954742789268494, - "label": "vehicle", - "label_id": 2 - }, - "h": 174, - "region_id": 1845, - "roi_type": "vehicle", - "w": 184, - "x": 91, - "y": 257 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 44833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36160674691200256, - "x_min": 0.3288991153240204, - "y_max": 0.14174089580774307, - "y_min": 0.0 - }, - "confidence": 0.6194042563438416, - "label": "person", - "label_id": 1 - }, - "h": 61, - "region_id": 1846, - "roi_type": "person", - "w": 25, - "x": 253, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.35685088485479355, - "x_min": 0.11790122836828232, - "y_max": 0.9961073994636536, - "y_min": 0.5718068480491638 - }, - "confidence": 0.9947429895401001, - "label": "vehicle", - "label_id": 2 - }, - "h": 183, - "region_id": 1847, - "roi_type": "vehicle", - "w": 184, - "x": 91, - "y": 247 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 44916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36447739601135254, - "x_min": 0.33208173513412476, - "y_max": 0.14312608540058136, - "y_min": 0.0 - }, - "confidence": 0.8804531693458557, - "label": "person", - "label_id": 1 - }, - "h": 62, - "region_id": 1848, - "roi_type": "person", - "w": 25, - "x": 255, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.36100974678993225, - "x_min": 0.10920840501785278, - "y_max": 1.0, - "y_min": 0.5514669418334961 - }, - "confidence": 0.9975082874298096, - "label": "vehicle", - "label_id": 2 - }, - "h": 194, - "region_id": 1849, - "roi_type": "vehicle", - "w": 193, - "x": 84, - "y": 238 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 45000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3689320683479309, - "x_min": 0.33504199981689453, - "y_max": 0.1309487745165825, - "y_min": 0.0 - }, - "confidence": 0.5245084166526794, - "label": "person", - "label_id": 1 - }, - "h": 57, - "region_id": 1850, - "roi_type": "person", - "w": 26, - "x": 257, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.36274436861276627, - "x_min": 0.11731896549463272, - "y_max": 1.0, - "y_min": 0.5336947441101074 - }, - "confidence": 0.9914770722389221, - "label": "vehicle", - "label_id": 2 - }, - "h": 201, - "region_id": 1851, - "roi_type": "vehicle", - "w": 188, - "x": 90, - "y": 231 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 45083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3659408688545227, - "x_min": 0.11780126392841339, - "y_max": 1.0, - "y_min": 0.518149733543396 - }, - "confidence": 0.9818969964981079, - "label": "vehicle", - "label_id": 2 - }, - "h": 208, - "region_id": 1852, - "roi_type": "vehicle", - "w": 191, - "x": 90, - "y": 224 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 45166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3604143261909485, - "x_min": 0.11885426938533783, - "y_max": 1.0, - "y_min": 0.5062888264656067 - }, - "confidence": 0.9770739674568176, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "region_id": 1853, - "roi_type": "vehicle", - "w": 186, - "x": 91, - "y": 219 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 45250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35873663425445557, - "x_min": 0.12577953934669495, - "y_max": 1.0, - "y_min": 0.487548291683197 - }, - "confidence": 0.9604198932647705, - "label": "vehicle", - "label_id": 2 - }, - "h": 221, - "region_id": 1854, - "roi_type": "vehicle", - "w": 179, - "x": 97, - "y": 211 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 45333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36819857358932495, - "x_min": 0.13242483139038086, - "y_max": 1.0, - "y_min": 0.4729745090007782 - }, - "confidence": 0.9679286479949951, - "label": "vehicle", - "label_id": 2 - }, - "h": 228, - "region_id": 1855, - "roi_type": "vehicle", - "w": 181, - "x": 102, - "y": 204 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 45416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37145912647247314, - "x_min": 0.13698597252368927, - "y_max": 0.9822669923305511, - "y_min": 0.45337817072868347 - }, - "confidence": 0.9909036755561829, - "label": "vehicle", - "label_id": 2 - }, - "h": 228, - "region_id": 1856, - "roi_type": "vehicle", - "w": 180, - "x": 105, - "y": 196 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 45500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.360751211643219, - "x_min": 0.14602144062519073, - "y_max": 0.9427908360958099, - "y_min": 0.4422529637813568 - }, - "confidence": 0.9961796998977661, - "label": "vehicle", - "label_id": 2 - }, - "h": 216, - "region_id": 1857, - "roi_type": "vehicle", - "w": 165, - "x": 112, - "y": 191 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 45583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3665272891521454, - "x_min": 0.15879389643669128, - "y_max": 0.9357600212097168, - "y_min": 0.41560184955596924 - }, - "confidence": 0.9988160133361816, - "label": "vehicle", - "label_id": 2 - }, - "h": 225, - "region_id": 1858, - "roi_type": "vehicle", - "w": 160, - "x": 122, - "y": 180 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 45666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36519184708595276, - "x_min": 0.1624055802822113, - "y_max": 0.9030640423297882, - "y_min": 0.3991294205188751 - }, - "confidence": 0.99962317943573, - "label": "vehicle", - "label_id": 2 - }, - "h": 218, - "region_id": 1859, - "roi_type": "vehicle", - "w": 156, - "x": 125, - "y": 172 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 45750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36517783999443054, - "x_min": 0.17351636290550232, - "y_max": 0.8792468309402466, - "y_min": 0.3837735652923584 - }, - "confidence": 0.9997884631156921, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "region_id": 1860, - "roi_type": "vehicle", - "w": 147, - "x": 133, - "y": 166 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 45833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36106088757514954, - "x_min": 0.1790127456188202, - "y_max": 0.8557636737823486, - "y_min": 0.36366569995880127 - }, - "confidence": 0.9998449087142944, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "region_id": 1861, - "roi_type": "vehicle", - "w": 140, - "x": 137, - "y": 157 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 45916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36285877227783203, - "x_min": 0.18275152146816254, - "y_max": 0.8229827284812927, - "y_min": 0.34286290407180786 - }, - "confidence": 0.9999336004257202, - "label": "vehicle", - "label_id": 2 - }, - "h": 207, - "region_id": 1862, - "roi_type": "vehicle", - "w": 138, - "x": 140, - "y": 148 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 46000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3602021038532257, - "x_min": 0.18906906247138977, - "y_max": 0.7855886220932007, - "y_min": 0.32251763343811035 - }, - "confidence": 0.9999699592590332, - "label": "vehicle", - "label_id": 2 - }, - "h": 200, - "region_id": 1863, - "roi_type": "vehicle", - "w": 131, - "x": 145, - "y": 139 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 46083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3588583469390869, - "x_min": 0.1904894858598709, - "y_max": 0.766708493232727, - "y_min": 0.31205347180366516 - }, - "confidence": 0.9999749660491943, - "label": "vehicle", - "label_id": 2 - }, - "h": 196, - "region_id": 1864, - "roi_type": "vehicle", - "w": 129, - "x": 146, - "y": 135 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 46166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.354780912399292, - "x_min": 0.19472239911556244, - "y_max": 0.7405029535293579, - "y_min": 0.29147496819496155 - }, - "confidence": 0.9999440908432007, - "label": "vehicle", - "label_id": 2 - }, - "h": 194, - "region_id": 1865, - "roi_type": "vehicle", - "w": 123, - "x": 150, - "y": 126 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 46250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34999334812164307, - "x_min": 0.194540336728096, - "y_max": 0.7187595367431641, - "y_min": 0.2768002152442932 - }, - "confidence": 0.9998922348022461, - "label": "vehicle", - "label_id": 2 - }, - "h": 191, - "region_id": 1866, - "roi_type": "vehicle", - "w": 119, - "x": 149, - "y": 120 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 46333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3457085192203522, - "x_min": 0.20007964968681335, - "y_max": 0.6881219744682312, - "y_min": 0.2653038501739502 - }, - "confidence": 0.9998040795326233, - "label": "vehicle", - "label_id": 2 - }, - "h": 183, - "region_id": 1867, - "roi_type": "vehicle", - "w": 112, - "x": 154, - "y": 115 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 46416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34467506408691406, - "x_min": 0.19982749223709106, - "y_max": 0.6525393724441528, - "y_min": 0.2548128664493561 - }, - "confidence": 0.9998615980148315, - "label": "vehicle", - "label_id": 2 - }, - "h": 172, - "region_id": 1868, - "roi_type": "vehicle", - "w": 111, - "x": 153, - "y": 110 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 46500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34181272983551025, - "x_min": 0.1947338730096817, - "y_max": 0.6376242786645889, - "y_min": 0.23916591703891754 - }, - "confidence": 0.9997871518135071, - "label": "vehicle", - "label_id": 2 - }, - "h": 172, - "region_id": 1869, - "roi_type": "vehicle", - "w": 113, - "x": 150, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 46583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3388643264770508, - "x_min": 0.19013750553131104, - "y_max": 0.6308777332305908, - "y_min": 0.2227199673652649 - }, - "confidence": 0.9997004270553589, - "label": "vehicle", - "label_id": 2 - }, - "h": 176, - "region_id": 1870, - "roi_type": "vehicle", - "w": 114, - "x": 146, - "y": 96 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 46666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3375055193901062, - "x_min": 0.18740473687648773, - "y_max": 0.5995768308639526, - "y_min": 0.20673570036888123 - }, - "confidence": 0.9998914003372192, - "label": "vehicle", - "label_id": 2 - }, - "h": 170, - "region_id": 1871, - "roi_type": "vehicle", - "w": 115, - "x": 144, - "y": 89 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 46750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3318176567554474, - "x_min": 0.17809423804283142, - "y_max": 0.5778812617063522, - "y_min": 0.19000546634197235 - }, - "confidence": 0.9998241066932678, - "label": "vehicle", - "label_id": 2 - }, - "h": 168, - "region_id": 1872, - "roi_type": "vehicle", - "w": 118, - "x": 137, - "y": 82 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 46833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3320659399032593, - "x_min": 0.1678294688463211, - "y_max": 0.5662893801927567, - "y_min": 0.17552174627780914 - }, - "confidence": 0.9969955682754517, - "label": "vehicle", - "label_id": 2 - }, - "h": 169, - "region_id": 1873, - "roi_type": "vehicle", - "w": 126, - "x": 129, - "y": 76 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 46916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33100444078445435, - "x_min": 0.15877386927604675, - "y_max": 0.5364057421684265, - "y_min": 0.16238099336624146 - }, - "confidence": 0.99989914894104, - "label": "vehicle", - "label_id": 2 - }, - "h": 162, - "region_id": 1875, - "roi_type": "vehicle", - "w": 132, - "x": 122, - "y": 70 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 47000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.32596272230148315, - "x_min": 0.1472930908203125, - "y_max": 0.5152767300605774, - "y_min": 0.15732121467590332 - }, - "confidence": 0.9999929666519165, - "label": "vehicle", - "label_id": 2 - }, - "h": 155, - "region_id": 1874, - "roi_type": "vehicle", - "w": 137, - "x": 113, - "y": 68 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 47083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3235021233558655, - "x_min": 0.13618597388267517, - "y_max": 0.5010689496994019, - "y_min": 0.15680626034736633 - }, - "confidence": 0.999995231628418, - "label": "vehicle", - "label_id": 2 - }, - "h": 149, - "region_id": 1876, - "roi_type": "vehicle", - "w": 144, - "x": 105, - "y": 68 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 47166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31811434030532837, - "x_min": 0.12496490776538849, - "y_max": 0.48322823643684387, - "y_min": 0.1473962366580963 - }, - "confidence": 0.9999911785125732, - "label": "vehicle", - "label_id": 2 - }, - "h": 145, - "region_id": 1877, - "roi_type": "vehicle", - "w": 148, - "x": 96, - "y": 64 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 47250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31093723326921463, - "x_min": 0.10377121716737747, - "y_max": 0.46475063264369965, - "y_min": 0.14403758943080902 - }, - "confidence": 0.9999978542327881, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "region_id": 1878, - "roi_type": "vehicle", - "w": 159, - "x": 80, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 47333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3060434088110924, - "x_min": 0.08956294506788254, - "y_max": 0.4555552154779434, - "y_min": 0.13558460772037506 - }, - "confidence": 0.9999889135360718, - "label": "vehicle", - "label_id": 2 - }, - "h": 138, - "region_id": 1879, - "roi_type": "vehicle", - "w": 166, - "x": 69, - "y": 59 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 47416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.29430411010980606, - "x_min": 0.07462427765130997, - "y_max": 0.4425668269395828, - "y_min": 0.13647617399692535 - }, - "confidence": 0.9999735355377197, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 1880, - "roi_type": "vehicle", - "w": 169, - "x": 57, - "y": 59 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 47500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.28833314031362534, - "x_min": 0.06440760940313339, - "y_max": 0.42713563144207, - "y_min": 0.1353260725736618 - }, - "confidence": 0.9999496936798096, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 1881, - "roi_type": "vehicle", - "w": 172, - "x": 49, - "y": 58 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 47583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2806038334965706, - "x_min": 0.046518273651599884, - "y_max": 0.4131326228380203, - "y_min": 0.13239772617816925 - }, - "confidence": 0.9999241828918457, - "label": "vehicle", - "label_id": 2 - }, - "h": 121, - "region_id": 1883, - "roi_type": "vehicle", - "w": 180, - "x": 36, - "y": 57 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 47666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27025366574525833, - "x_min": 0.031960584223270416, - "y_max": 0.40551871061325073, - "y_min": 0.1313827633857727 - }, - "confidence": 0.9999902248382568, - "label": "vehicle", - "label_id": 2 - }, - "h": 118, - "region_id": 1882, - "roi_type": "vehicle", - "w": 183, - "x": 25, - "y": 57 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 47750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2574407830834389, - "x_min": 0.018124915659427643, - "y_max": 0.39813748002052307, - "y_min": 0.12768623232841492 - }, - "confidence": 0.9999737739562988, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 1884, - "roi_type": "vehicle", - "w": 184, - "x": 14, - "y": 55 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 47833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24728650599718094, - "x_min": 0.004216648638248444, - "y_max": 0.39358004927635193, - "y_min": 0.12342569231987 - }, - "confidence": 0.9995150566101074, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 1885, - "roi_type": "vehicle", - "w": 187, - "x": 3, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 47916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23507950454950333, - "x_min": 0.0055961087346076965, - "y_max": 0.3909708857536316, - "y_min": 0.12340492010116577 - }, - "confidence": 0.9983311295509338, - "label": "vehicle", - "label_id": 2 - }, - "h": 116, - "region_id": 1887, - "roi_type": "vehicle", - "w": 176, - "x": 4, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 48000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.22479692846536636, - "x_min": 0.0017654374241828918, - "y_max": 0.3854464143514633, - "y_min": 0.12457780539989471 - }, - "confidence": 0.9997487664222717, - "label": "vehicle", - "label_id": 2 - }, - "h": 113, - "region_id": 1886, - "roi_type": "vehicle", - "w": 171, - "x": 1, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 48083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.21433766931295395, - "x_min": 0.0017601177096366882, - "y_max": 0.37883228063583374, - "y_min": 0.1250355839729309 - }, - "confidence": 0.99918133020401, - "label": "vehicle", - "label_id": 2 - }, - "h": 110, - "region_id": 1888, - "roi_type": "vehicle", - "w": 163, - "x": 1, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 48166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2030910775065422, - "x_min": 0.0008123144507408142, - "y_max": 0.37199288606643677, - "y_min": 0.12212663888931274 - }, - "confidence": 0.9997194409370422, - "label": "vehicle", - "label_id": 2 - }, - "h": 108, - "region_id": 1889, - "roi_type": "vehicle", - "w": 155, - "x": 1, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 48250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.18479623645544052, - "x_min": 0.0, - "y_max": 0.36851049214601517, - "y_min": 0.1222873404622078 - }, - "confidence": 0.9995477795600891, - "label": "vehicle", - "label_id": 2 - }, - "h": 106, - "region_id": 1891, - "roi_type": "vehicle", - "w": 142, - "x": 0, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 48333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1737116277217865, - "x_min": 0.0, - "y_max": 0.36372971534729004, - "y_min": 0.11915415525436401 - }, - "confidence": 0.9950657486915588, - "label": "vehicle", - "label_id": 2 - }, - "h": 106, - "region_id": 1890, - "roi_type": "vehicle", - "w": 133, - "x": 0, - "y": 51 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 48416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.16038884222507477, - "x_min": 0.0, - "y_max": 0.3588944375514984, - "y_min": 0.1205725371837616 - }, - "confidence": 0.9822043776512146, - "label": "vehicle", - "label_id": 2 - }, - "h": 103, - "region_id": 1892, - "roi_type": "vehicle", - "w": 123, - "x": 0, - "y": 52 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 48500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.14810673147439957, - "x_min": 0.0, - "y_max": 0.35652363300323486, - "y_min": 0.12085320055484772 - }, - "confidence": 0.9530179500579834, - "label": "vehicle", - "label_id": 2 - }, - "h": 102, - "region_id": 1893, - "roi_type": "vehicle", - "w": 114, - "x": 0, - "y": 52 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 48583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.13574014604091644, - "x_min": 0.0, - "y_max": 0.3567160964012146, - "y_min": 0.12330564856529236 - }, - "confidence": 0.7856730818748474, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "region_id": 1894, - "roi_type": "vehicle", - "w": 104, - "x": 0, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 48666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11242122203111649, - "x_min": 0.0019209012389183044, - "y_max": 0.35550349950790405, - "y_min": 0.1260470598936081 - }, - "confidence": 0.6798886060714722, - "label": "vehicle", - "label_id": 2 - }, - "h": 99, - "region_id": 1895, - "roi_type": "vehicle", - "w": 85, - "x": 1, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 48833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.09885160624980927, - "x_min": 0.003643341362476349, - "y_max": 0.358278751373291, - "y_min": 0.1264287382364273 - }, - "confidence": 0.7773323655128479, - "label": "vehicle", - "label_id": 2 - }, - "h": 100, - "region_id": 1896, - "roi_type": "vehicle", - "w": 73, - "x": 3, - "y": 55 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 48916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.0878419578075409, - "x_min": 0.0017804354429244995, - "y_max": 0.3632156252861023, - "y_min": 0.12948653101921082 - }, - "confidence": 0.6258467435836792, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "region_id": 1897, - "roi_type": "vehicle", - "w": 66, - "x": 1, - "y": 56 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 49000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07318701222538948, - "x_min": 0.004130352288484573, - "y_max": 0.3511764109134674, - "y_min": 0.14347276091575623 - }, - "confidence": 0.6314224004745483, - "label": "vehicle", - "label_id": 2 - }, - "h": 90, - "region_id": 1898, - "roi_type": "vehicle", - "w": 53, - "x": 3, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 49083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06266952119767666, - "x_min": 0.0, - "y_max": 0.34957605600357056, - "y_min": 0.14383465051651 - }, - "confidence": 0.6896519064903259, - "label": "vehicle", - "label_id": 2 - }, - "h": 89, - "region_id": 1899, - "roi_type": "vehicle", - "w": 48, - "x": 0, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 49166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.04970441199839115, - "x_min": 0.0, - "y_max": 0.34233343601226807, - "y_min": 0.14351695775985718 - }, - "confidence": 0.6430801749229431, - "label": "vehicle", - "label_id": 2 - }, - "h": 86, - "region_id": 1900, - "roi_type": "vehicle", - "w": 38, - "x": 0, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "tags": {}, - "timestamp": 49250000000 - } - ] -} \ No newline at end of file diff --git a/tests/test_cases/pipeline_execution/cpu/object_tracking_gstreamer.json b/tests/test_cases/pipeline_execution/cpu/object_tracking_gstreamer.json deleted file mode 100644 index 785d212..0000000 --- a/tests/test_cases/pipeline_execution/cpu/object_tracking_gstreamer.json +++ /dev/null @@ -1,10258 +0,0 @@ -{ - "options": {}, - "pipeline": { - "name": "object_tracking", - "version": "person_vehicle_bike" - }, - "request": { - "source": { - "type": "uri", - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4" - }, - "destination": { - "type": "file", - "path": "/tmp/object_tracking_results.json", - "format": "json" - }, - "parameters": { - "detection-device": "CPU", - "classification-device": "CPU", - "detection-model-instance-id": "tracking_detection", - "classification-model-instance-id": "tracking_classification" - } - }, - "numerical_tolerance": 0.3, - "result": [ - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7448995113372803, - "x_min": 0.6734092235565186, - "y_max": 0.9991496205329895, - "y_min": 0.8781012892723083 - }, - "confidence": 0.5402482748031616, - "label": "person", - "label_id": 1 - }, - "h": 52, - "id": 1, - "region_id": 2618, - "roi_type": "person", - "w": 55, - "x": 517, - "y": 379 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7442192435264587, - "x_min": 0.6763269305229187, - "y_max": 1.0, - "y_min": 0.8277981281280518 - }, - "confidence": 0.5505853295326233, - "label": "person", - "label_id": 1 - }, - "h": 74, - "id": 2, - "region_id": 2619, - "roi_type": "person", - "w": 52, - "x": 519, - "y": 358 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7465136051177979, - "x_min": 0.6821862459182739, - "y_max": 1.0, - "y_min": 0.8104690909385681 - }, - "confidence": 0.6447358131408691, - "label": "person", - "label_id": 1 - }, - "h": 82, - "id": 2, - "region_id": 2620, - "roi_type": "person", - "w": 49, - "x": 524, - "y": 350 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7481286525726318, - "x_min": 0.68366539478302, - "y_max": 0.9999657869338989, - "y_min": 0.7867170572280884 - }, - "confidence": 0.882526695728302, - "label": "person", - "label_id": 1 - }, - "h": 92, - "id": 2, - "region_id": 2621, - "roi_type": "person", - "w": 50, - "x": 525, - "y": 340 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7502986788749695, - "x_min": 0.6836960911750793, - "y_max": 0.9965759515762329, - "y_min": 0.7709740400314331 - }, - "confidence": 0.9252126812934875, - "label": "person", - "label_id": 1 - }, - "h": 97, - "id": 2, - "region_id": 2622, - "roi_type": "person", - "w": 51, - "x": 525, - "y": 333 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7533046007156372, - "x_min": 0.6833932399749756, - "y_max": 0.9992514848709106, - "y_min": 0.7517307996749878 - }, - "confidence": 0.9160429835319519, - "label": "person", - "label_id": 1 - }, - "h": 107, - "id": 2, - "region_id": 2623, - "roi_type": "person", - "w": 54, - "x": 525, - "y": 325 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7569091320037842, - "x_min": 0.6831721067428589, - "y_max": 0.9893119931221008, - "y_min": 0.7454761862754822 - }, - "confidence": 0.9452281594276428, - "label": "person", - "label_id": 1 - }, - "h": 105, - "id": 2, - "region_id": 2625, - "roi_type": "person", - "w": 57, - "x": 525, - "y": 322 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.758220374584198, - "x_min": 0.6869714856147766, - "y_max": 0.9744250774383545, - "y_min": 0.7232376337051392 - }, - "confidence": 0.9522698521614075, - "label": "person", - "label_id": 1 - }, - "h": 109, - "id": 2, - "region_id": 2626, - "roi_type": "person", - "w": 55, - "x": 528, - "y": 312 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.757515549659729, - "x_min": 0.6908836364746094, - "y_max": 0.9485968351364136, - "y_min": 0.7128696441650391 - }, - "confidence": 0.8796297907829285, - "label": "person", - "label_id": 1 - }, - "h": 102, - "id": 2, - "region_id": 2627, - "roi_type": "person", - "w": 51, - "x": 531, - "y": 308 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7562522292137146, - "x_min": 0.6947104334831238, - "y_max": 0.8969831466674805, - "y_min": 0.7029379606246948 - }, - "confidence": 0.8928061127662659, - "label": "person", - "label_id": 1 - }, - "h": 84, - "id": 2, - "region_id": 2628, - "roi_type": "person", - "w": 47, - "x": 534, - "y": 304 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7574296593666077, - "x_min": 0.6979045271873474, - "y_max": 0.8754802346229553, - "y_min": 0.6884984374046326 - }, - "confidence": 0.8720522522926331, - "label": "person", - "label_id": 1 - }, - "h": 81, - "id": 2, - "region_id": 2630, - "roi_type": "person", - "w": 46, - "x": 536, - "y": 297 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7628753781318665, - "x_min": 0.6962668299674988, - "y_max": 0.9012861251831055, - "y_min": 0.6672508716583252 - }, - "confidence": 0.6989018321037292, - "label": "person", - "label_id": 1 - }, - "h": 101, - "id": 2, - "region_id": 2629, - "roi_type": "person", - "w": 51, - "x": 535, - "y": 288 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7642366886138916, - "x_min": 0.6945128440856934, - "y_max": 0.8976410031318665, - "y_min": 0.6511140465736389 - }, - "confidence": 0.6954102516174316, - "label": "person", - "label_id": 1 - }, - "h": 106, - "id": 2, - "region_id": 2631, - "roi_type": "person", - "w": 54, - "x": 533, - "y": 281 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7641031742095947, - "x_min": 0.7028636932373047, - "y_max": 0.8516806960105896, - "y_min": 0.6483859419822693 - }, - "confidence": 0.6670747995376587, - "label": "person", - "label_id": 1 - }, - "h": 88, - "id": 2, - "region_id": 2632, - "roi_type": "person", - "w": 47, - "x": 540, - "y": 280 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7670164108276367, - "x_min": 0.7064443826675415, - "y_max": 0.829826295375824, - "y_min": 0.6299616694450378 - }, - "confidence": 0.929532527923584, - "label": "person", - "label_id": 1 - }, - "h": 86, - "id": 2, - "region_id": 2633, - "roi_type": "person", - "w": 47, - "x": 543, - "y": 272 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7725509405136108, - "x_min": 0.7098292112350464, - "y_max": 0.8254445195198059, - "y_min": 0.6173177361488342 - }, - "confidence": 0.6896131634712219, - "label": "person", - "label_id": 1 - }, - "h": 90, - "id": 2, - "region_id": 2634, - "roi_type": "person", - "w": 48, - "x": 545, - "y": 267 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.77418452501297, - "x_min": 0.7090356945991516, - "y_max": 0.8218122124671936, - "y_min": 0.6104786992073059 - }, - "confidence": 0.7604833841323853, - "label": "person", - "label_id": 1 - }, - "h": 91, - "id": 2, - "region_id": 2635, - "roi_type": "person", - "w": 50, - "x": 545, - "y": 264 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7783714532852173, - "x_min": 0.7181830406188965, - "y_max": 0.7849859595298767, - "y_min": 0.5744112133979797 - }, - "confidence": 0.502738356590271, - "label": "person", - "label_id": 1 - }, - "h": 91, - "id": 2, - "region_id": 2636, - "roi_type": "person", - "w": 46, - "x": 552, - "y": 248 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7834279537200928, - "x_min": 0.7257949113845825, - "y_max": 0.7589362263679504, - "y_min": 0.5519590973854065 - }, - "confidence": 0.7043135166168213, - "label": "person", - "label_id": 1 - }, - "h": 89, - "id": 2, - "region_id": 2637, - "roi_type": "person", - "w": 44, - "x": 557, - "y": 238 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.78952956199646, - "x_min": 0.7326743602752686, - "y_max": 0.7261121273040771, - "y_min": 0.5483003854751587 - }, - "confidence": 0.9756479263305664, - "label": "person", - "label_id": 1 - }, - "h": 77, - "id": 2, - "region_id": 2638, - "roi_type": "person", - "w": 44, - "x": 563, - "y": 237 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7890371084213257, - "x_min": 0.737720251083374, - "y_max": 0.7031307816505432, - "y_min": 0.5400574803352356 - }, - "confidence": 0.8415098786354065, - "label": "person", - "label_id": 1 - }, - "h": 70, - "id": 2, - "region_id": 2639, - "roi_type": "person", - "w": 39, - "x": 567, - "y": 233 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7952908873558044, - "x_min": 0.7402903437614441, - "y_max": 0.6921250820159912, - "y_min": 0.5216915607452393 - }, - "confidence": 0.7716295719146729, - "label": "person", - "label_id": 1 - }, - "h": 74, - "id": 2, - "region_id": 2640, - "roi_type": "person", - "w": 42, - "x": 569, - "y": 225 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8006463646888733, - "x_min": 0.746234118938446, - "y_max": 0.6880520582199097, - "y_min": 0.5218417644500732 - }, - "confidence": 0.8759844303131104, - "label": "person", - "label_id": 1 - }, - "h": 72, - "id": 2, - "region_id": 2641, - "roi_type": "person", - "w": 42, - "x": 573, - "y": 225 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8098055720329285, - "x_min": 0.7457361817359924, - "y_max": 0.7030310034751892, - "y_min": 0.5026633143424988 - }, - "confidence": 0.9101058840751648, - "label": "person", - "label_id": 1 - }, - "h": 87, - "id": 2, - "region_id": 2642, - "roi_type": "person", - "w": 49, - "x": 573, - "y": 217 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8131635785102844, - "x_min": 0.7560372948646545, - "y_max": 0.68419349193573, - "y_min": 0.4961233139038086 - }, - "confidence": 0.9086412787437439, - "label": "person", - "label_id": 1 - }, - "h": 81, - "id": 2, - "region_id": 2646, - "roi_type": "person", - "w": 44, - "x": 581, - "y": 214 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.823058545589447, - "x_min": 0.7637491822242737, - "y_max": 0.6855756640434265, - "y_min": 0.4885023236274719 - }, - "confidence": 0.8248202800750732, - "label": "person", - "label_id": 1 - }, - "h": 85, - "id": 2, - "region_id": 2643, - "roi_type": "person", - "w": 46, - "x": 587, - "y": 211 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8232852220535278, - "x_min": 0.760567307472229, - "y_max": 0.6924915909767151, - "y_min": 0.47507840394973755 - }, - "confidence": 0.6950181126594543, - "label": "person", - "label_id": 1 - }, - "h": 94, - "id": 2, - "region_id": 2649, - "roi_type": "person", - "w": 48, - "x": 584, - "y": 205 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8322221040725708, - "x_min": 0.7602424621582031, - "y_max": 0.6941542625427246, - "y_min": 0.46584224700927734 - }, - "confidence": 0.5867351293563843, - "label": "person", - "label_id": 1 - }, - "h": 99, - "id": 2, - "region_id": 2650, - "roi_type": "person", - "w": 55, - "x": 584, - "y": 201 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8429373502731323, - "x_min": 0.793522834777832, - "y_max": 0.6419346928596497, - "y_min": 0.43809905648231506 - }, - "confidence": 0.96792072057724, - "label": "person", - "label_id": 1 - }, - "h": 88, - "id": 2, - "region_id": 2651, - "roi_type": "person", - "w": 38, - "x": 609, - "y": 189 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.849794328212738, - "x_min": 0.796667754650116, - "y_max": 0.615337610244751, - "y_min": 0.44303929805755615 - }, - "confidence": 0.8853123188018799, - "label": "person", - "label_id": 1 - }, - "h": 74, - "id": 2, - "region_id": 2652, - "roi_type": "person", - "w": 41, - "x": 612, - "y": 191 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8533491492271423, - "x_min": 0.8009874224662781, - "y_max": 0.6051764488220215, - "y_min": 0.4295734465122223 - }, - "confidence": 0.90330970287323, - "label": "person", - "label_id": 1 - }, - "h": 76, - "id": 2, - "region_id": 2655, - "roi_type": "person", - "w": 40, - "x": 615, - "y": 186 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8604123592376709, - "x_min": 0.8060647249221802, - "y_max": 0.5924712419509888, - "y_min": 0.42701780796051025 - }, - "confidence": 0.8053339719772339, - "label": "person", - "label_id": 1 - }, - "h": 71, - "id": 2, - "region_id": 2657, - "roi_type": "person", - "w": 42, - "x": 619, - "y": 184 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8663100600242615, - "x_min": 0.810594379901886, - "y_max": 0.5942341089248657, - "y_min": 0.42083391547203064 - }, - "confidence": 0.7699306607246399, - "label": "person", - "label_id": 1 - }, - "h": 75, - "id": 2, - "region_id": 2659, - "roi_type": "person", - "w": 43, - "x": 623, - "y": 182 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8744010329246521, - "x_min": 0.817695677280426, - "y_max": 0.5900759696960449, - "y_min": 0.41369643807411194 - }, - "confidence": 0.9554973244667053, - "label": "person", - "label_id": 1 - }, - "h": 76, - "id": 2, - "region_id": 2660, - "roi_type": "person", - "w": 44, - "x": 628, - "y": 179 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8855565190315247, - "x_min": 0.8264035582542419, - "y_max": 0.5860601663589478, - "y_min": 0.4029603898525238 - }, - "confidence": 0.8228950500488281, - "label": "person", - "label_id": 1 - }, - "h": 79, - "id": 2, - "region_id": 2662, - "roi_type": "person", - "w": 45, - "x": 635, - "y": 174 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8908534049987793, - "x_min": 0.8350781202316284, - "y_max": 0.5897727012634277, - "y_min": 0.3878403902053833 - }, - "confidence": 0.8011389970779419, - "label": "person", - "label_id": 1 - }, - "h": 87, - "id": 2, - "region_id": 2663, - "roi_type": "person", - "w": 43, - "x": 641, - "y": 168 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9007775187492371, - "x_min": 0.8356189131736755, - "y_max": 0.5877959132194519, - "y_min": 0.39412611722946167 - }, - "confidence": 0.6489140391349792, - "label": "person", - "label_id": 1 - }, - "h": 84, - "id": 2, - "region_id": 2664, - "roi_type": "person", - "w": 50, - "x": 642, - "y": 170 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9088490605354309, - "x_min": 0.8531065583229065, - "y_max": 0.5604838728904724, - "y_min": 0.376047819852829 - }, - "confidence": 0.6436927914619446, - "label": "person", - "label_id": 1 - }, - "h": 80, - "id": 2, - "region_id": 2665, - "roi_type": "person", - "w": 43, - "x": 655, - "y": 162 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.91246098279953, - "x_min": 0.8664992451667786, - "y_max": 0.5441793203353882, - "y_min": 0.36725080013275146 - }, - "confidence": 0.8806077837944031, - "label": "person", - "label_id": 1 - }, - "h": 76, - "id": 2, - "region_id": 2666, - "roi_type": "person", - "w": 35, - "x": 665, - "y": 159 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9204215407371521, - "x_min": 0.8713714480400085, - "y_max": 0.5294153690338135, - "y_min": 0.3520965278148651 - }, - "confidence": 0.9779548048973083, - "label": "person", - "label_id": 1 - }, - "h": 77, - "id": 2, - "region_id": 2667, - "roi_type": "person", - "w": 38, - "x": 669, - "y": 152 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9224029779434204, - "x_min": 0.8775302171707153, - "y_max": 0.5218915343284607, - "y_min": 0.35059165954589844 - }, - "confidence": 0.9283971786499023, - "label": "person", - "label_id": 1 - }, - "h": 74, - "id": 2, - "region_id": 2668, - "roi_type": "person", - "w": 34, - "x": 674, - "y": 151 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9281563758850098, - "x_min": 0.87200927734375, - "y_max": 0.5194041728973389, - "y_min": 0.3446289598941803 - }, - "confidence": 0.7565144896507263, - "label": "person", - "label_id": 1 - }, - "h": 76, - "id": 2, - "region_id": 2669, - "roi_type": "person", - "w": 43, - "x": 670, - "y": 149 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.937407910823822, - "x_min": 0.8853235840797424, - "y_max": 0.5107858777046204, - "y_min": 0.34274011850357056 - }, - "confidence": 0.950576663017273, - "label": "person", - "label_id": 1 - }, - "h": 73, - "id": 2, - "region_id": 2670, - "roi_type": "person", - "w": 40, - "x": 680, - "y": 148 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9449759125709534, - "x_min": 0.8897075057029724, - "y_max": 0.5037586688995361, - "y_min": 0.33645257353782654 - }, - "confidence": 0.909963846206665, - "label": "person", - "label_id": 1 - }, - "h": 72, - "id": 2, - "region_id": 2671, - "roi_type": "person", - "w": 42, - "x": 683, - "y": 145 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9549130201339722, - "x_min": 0.8982007503509521, - "y_max": 0.5104894638061523, - "y_min": 0.3242742419242859 - }, - "confidence": 0.7820349931716919, - "label": "person", - "label_id": 1 - }, - "h": 80, - "id": 2, - "region_id": 2672, - "roi_type": "person", - "w": 44, - "x": 690, - "y": 140 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9616369009017944, - "x_min": 0.9061300754547119, - "y_max": 0.5176384449005127, - "y_min": 0.32654041051864624 - }, - "confidence": 0.7777004837989807, - "label": "person", - "label_id": 1 - }, - "h": 83, - "id": 2, - "region_id": 2673, - "roi_type": "person", - "w": 43, - "x": 696, - "y": 141 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9738940000534058, - "x_min": 0.9141021966934204, - "y_max": 0.4915769100189209, - "y_min": 0.3181222677230835 - }, - "confidence": 0.7904218435287476, - "label": "person", - "label_id": 1 - }, - "h": 75, - "id": 2, - "region_id": 2674, - "roi_type": "person", - "w": 46, - "x": 702, - "y": 137 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.975996196269989, - "x_min": 0.9256718754768372, - "y_max": 0.4855739176273346, - "y_min": 0.30408164858818054 - }, - "confidence": 0.7352949976921082, - "label": "person", - "label_id": 1 - }, - "h": 78, - "id": 2, - "region_id": 2675, - "roi_type": "person", - "w": 39, - "x": 711, - "y": 131 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9818256497383118, - "x_min": 0.928584635257721, - "y_max": 0.47780394554138184, - "y_min": 0.2946469187736511 - }, - "confidence": 0.8346178531646729, - "label": "person", - "label_id": 1 - }, - "h": 79, - "id": 2, - "region_id": 2676, - "roi_type": "person", - "w": 41, - "x": 713, - "y": 127 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9829865097999573, - "x_min": 0.9321264624595642, - "y_max": 0.46189287304878235, - "y_min": 0.2909712493419647 - }, - "confidence": 0.9709599018096924, - "label": "person", - "label_id": 1 - }, - "h": 74, - "id": 2, - "region_id": 2677, - "roi_type": "person", - "w": 39, - "x": 716, - "y": 126 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9856051206588745, - "x_min": 0.9314626455307007, - "y_max": 0.4595508873462677, - "y_min": 0.2890259921550751 - }, - "confidence": 0.6953359246253967, - "label": "person", - "label_id": 1 - }, - "h": 74, - "id": 2, - "region_id": 2678, - "roi_type": "person", - "w": 42, - "x": 715, - "y": 125 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9974535703659058, - "x_min": 0.9289860725402832, - "y_max": 0.46979770064353943, - "y_min": 0.25890347361564636 - }, - "confidence": 0.5784777998924255, - "label": "person", - "label_id": 1 - }, - "h": 91, - "id": 2, - "region_id": 2679, - "roi_type": "person", - "w": 53, - "x": 713, - "y": 112 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9965777397155762, - "x_min": 0.948677659034729, - "y_max": 0.4469355344772339, - "y_min": 0.2675803303718567 - }, - "confidence": 0.5522598028182983, - "label": "person", - "label_id": 1 - }, - "h": 77, - "id": 2, - "region_id": 2680, - "roi_type": "person", - "w": 37, - "x": 729, - "y": 116 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7891656160354614, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.11904987692832947, - "y_max": 0.9856871068477631, - "y_min": 0.019983261823654175 - }, - "confidence": 0.5811690092086792, - "label": "vehicle", - "label_id": 2 - }, - "h": 417, - "id": 3, - "region_id": 2681, - "roi_type": "vehicle", - "type": { - "confidence": 0.9973426461219788, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 677, - "x": 91, - "y": 9 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 13916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999992847442627, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3472718670964241, - "x_min": 0.12164772301912308, - "y_max": 1.0, - "y_min": 0.8393084406852722 - }, - "confidence": 0.6197941899299622, - "label": "vehicle", - "label_id": 2 - }, - "h": 69, - "id": 4, - "region_id": 2682, - "roi_type": "vehicle", - "type": { - "confidence": 0.9978079199790955, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 173, - "x": 93, - "y": 363 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999407529830933, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35296928882598877, - "x_min": 0.12145508825778961, - "y_max": 1.0, - "y_min": 0.809481143951416 - }, - "confidence": 0.7172138094902039, - "label": "vehicle", - "label_id": 2 - }, - "h": 82, - "id": 4, - "region_id": 2683, - "roi_type": "vehicle", - "type": { - "confidence": 0.9810752272605896, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 178, - "x": 93, - "y": 350 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9996539354324341, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35698965191841125, - "x_min": 0.12027296423912048, - "y_max": 0.9967044591903687, - "y_min": 0.783829927444458 - }, - "confidence": 0.8247243762016296, - "label": "vehicle", - "label_id": 2 - }, - "h": 92, - "id": 4, - "region_id": 2684, - "roi_type": "vehicle", - "type": { - "confidence": 0.7544021010398865, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 182, - "x": 92, - "y": 339 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.999993085861206, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35937564820051193, - "x_min": 0.1130119189620018, - "y_max": 0.9963881969451904, - "y_min": 0.7641627788543701 - }, - "confidence": 0.8237555027008057, - "label": "vehicle", - "label_id": 2 - }, - "h": 100, - "id": 4, - "region_id": 2685, - "roi_type": "vehicle", - "type": { - "confidence": 0.9930738210678101, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 189, - "x": 87, - "y": 330 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9995425939559937, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3695478141307831, - "x_min": 0.11453911662101746, - "y_max": 1.0, - "y_min": 0.7280340790748596 - }, - "confidence": 0.7173946499824524, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "id": 4, - "region_id": 2686, - "roi_type": "vehicle", - "type": { - "confidence": 0.50337153673172, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 196, - "x": 88, - "y": 315 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9991163611412048, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36808082461357117, - "x_min": 0.10083702206611633, - "y_max": 0.9959658980369568, - "y_min": 0.7031351923942566 - }, - "confidence": 0.8457762002944946, - "label": "vehicle", - "label_id": 2 - }, - "h": 127, - "id": 4, - "region_id": 2687, - "roi_type": "vehicle", - "type": { - "confidence": 0.8348413705825806, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 205, - "x": 77, - "y": 304 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9991899132728577, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.37700890004634857, - "x_min": 0.10729126632213593, - "y_max": 0.9994959831237793, - "y_min": 0.6779965162277222 - }, - "confidence": 0.9278457760810852, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "id": 4, - "region_id": 2688, - "roi_type": "vehicle", - "type": { - "confidence": 0.9957727789878845, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 207, - "x": 82, - "y": 293 - }, - { - "color": { - "confidence": 0.7643881440162659, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.12105026841163635, - "y_max": 0.9884764552116394, - "y_min": 0.031229078769683838 - }, - "confidence": 0.6490932106971741, - "label": "vehicle", - "label_id": 2 - }, - "h": 414, - "id": 5, - "region_id": 2689, - "roi_type": "vehicle", - "type": { - "confidence": 0.9641008973121643, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 675, - "x": 93, - "y": 13 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9966446161270142, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.37933249771595, - "x_min": 0.10664261877536774, - "y_max": 1.0, - "y_min": 0.6494535207748413 - }, - "confidence": 0.9569631814956665, - "label": "vehicle", - "label_id": 2 - }, - "h": 151, - "id": 4, - "region_id": 2690, - "roi_type": "vehicle", - "type": { - "confidence": 0.9936966300010681, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 209, - "x": 82, - "y": 281 - }, - { - "color": { - "confidence": 0.5622632503509521, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.12350031733512878, - "y_max": 0.9561575353145599, - "y_min": 0.036140888929367065 - }, - "confidence": 0.6475626826286316, - "label": "vehicle", - "label_id": 2 - }, - "h": 397, - "id": 5, - "region_id": 2691, - "roi_type": "vehicle", - "type": { - "confidence": 0.9848967790603638, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 673, - "x": 95, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9998095631599426, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.37901879847049713, - "x_min": 0.10554523766040802, - "y_max": 1.0, - "y_min": 0.6312699913978577 - }, - "confidence": 0.9906972646713257, - "label": "vehicle", - "label_id": 2 - }, - "h": 159, - "id": 4, - "region_id": 2692, - "roi_type": "vehicle", - "type": { - "confidence": 0.9978911280632019, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 210, - "x": 81, - "y": 273 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999986886978149, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3792016804218292, - "x_min": 0.11973920464515686, - "y_max": 0.9997225999832153, - "y_min": 0.6097801923751831 - }, - "confidence": 0.9947446584701538, - "label": "vehicle", - "label_id": 2 - }, - "h": 168, - "id": 4, - "region_id": 2693, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998151659965515, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 199, - "x": 92, - "y": 263 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999973773956299, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3760889172554016, - "x_min": 0.11782974004745483, - "y_max": 0.9969019889831543, - "y_min": 0.5848079919815063 - }, - "confidence": 0.9949920773506165, - "label": "vehicle", - "label_id": 2 - }, - "h": 178, - "id": 4, - "region_id": 2694, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999407529830933, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 198, - "x": 90, - "y": 253 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999994039535522, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3769965320825577, - "x_min": 0.11793924868106842, - "y_max": 0.9975459575653076, - "y_min": 0.5624508857727051 - }, - "confidence": 0.9885396361351013, - "label": "vehicle", - "label_id": 2 - }, - "h": 188, - "id": 4, - "region_id": 2695, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999685287475586, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 199, - "x": 91, - "y": 243 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999995231628418, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.37293992936611176, - "x_min": 0.11036746203899384, - "y_max": 1.0, - "y_min": 0.5396616458892822 - }, - "confidence": 0.9783477783203125, - "label": "vehicle", - "label_id": 2 - }, - "h": 199, - "id": 4, - "region_id": 2696, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998794794082642, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 202, - "x": 85, - "y": 233 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999992847442627, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36592480540275574, - "x_min": 0.13214635848999023, - "y_max": 1.0, - "y_min": 0.5241050720214844 - }, - "confidence": 0.9772934317588806, - "label": "vehicle", - "label_id": 2 - }, - "h": 206, - "id": 4, - "region_id": 2697, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998465776443481, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 180, - "x": 101, - "y": 226 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999992847442627, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3634260296821594, - "x_min": 0.13490857183933258, - "y_max": 1.0, - "y_min": 0.5041921138763428 - }, - "confidence": 0.9919345378875732, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "id": 4, - "region_id": 2698, - "roi_type": "vehicle", - "type": { - "confidence": 0.9955381751060486, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 176, - "x": 104, - "y": 218 - }, - { - "color": { - "confidence": 0.5667799711227417, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.960456371307373, - "x_min": 0.14331555366516113, - "y_max": 0.8030669689178467, - "y_min": 0.04740440845489502 - }, - "confidence": 0.6498066186904907, - "label": "vehicle", - "label_id": 2 - }, - "h": 326, - "id": 6, - "region_id": 2699, - "roi_type": "vehicle", - "type": { - "confidence": 0.9822282195091248, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 628, - "x": 110, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999997615814209, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3554348349571228, - "x_min": 0.14201128482818604, - "y_max": 0.9914812445640564, - "y_min": 0.49649685621261597 - }, - "confidence": 0.9959776997566223, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "id": 4, - "region_id": 2700, - "roi_type": "vehicle", - "type": { - "confidence": 0.9852773547172546, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 164, - "x": 109, - "y": 214 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35458171367645264, - "x_min": 0.14792513847351074, - "y_max": 0.9985901713371277, - "y_min": 0.47491592168807983 - }, - "confidence": 0.9977288842201233, - "label": "vehicle", - "label_id": 2 - }, - "h": 226, - "id": 4, - "region_id": 2701, - "roi_type": "vehicle", - "type": { - "confidence": 0.9812224507331848, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 159, - "x": 114, - "y": 205 - }, - { - "color": { - "confidence": 0.6801050901412964, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9464908838272095, - "x_min": 0.37183070182800293, - "y_max": 0.8923693895339966, - "y_min": 0.04037749767303467 - }, - "confidence": 0.5506706833839417, - "label": "vehicle", - "label_id": 2 - }, - "h": 368, - "id": 7, - "region_id": 2702, - "roi_type": "vehicle", - "type": { - "confidence": 0.9994076490402222, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 441, - "x": 286, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999994039535522, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35628217458724976, - "x_min": 0.1539267748594284, - "y_max": 0.9833188056945801, - "y_min": 0.4503910541534424 - }, - "confidence": 0.994249701499939, - "label": "vehicle", - "label_id": 2 - }, - "h": 230, - "id": 4, - "region_id": 2703, - "roi_type": "vehicle", - "type": { - "confidence": 0.9980984330177307, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 155, - "x": 118, - "y": 195 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999985694885254, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3493105173110962, - "x_min": 0.15961898863315582, - "y_max": 0.9475720822811127, - "y_min": 0.4319262206554413 - }, - "confidence": 0.9976761937141418, - "label": "vehicle", - "label_id": 2 - }, - "h": 223, - "id": 4, - "region_id": 2704, - "roi_type": "vehicle", - "type": { - "confidence": 0.9835509657859802, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 146, - "x": 123, - "y": 187 - }, - { - "color": { - "confidence": 0.614988386631012, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9634890258312225, - "x_min": 0.3556390702724457, - "y_max": 0.7470780611038208, - "y_min": 0.06608313322067261 - }, - "confidence": 0.7034559845924377, - "label": "vehicle", - "label_id": 2 - }, - "h": 294, - "id": 8, - "region_id": 2705, - "roi_type": "vehicle", - "type": { - "confidence": 0.998102605342865, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 467, - "x": 273, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999997615814209, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3447081446647644, - "x_min": 0.16244013607501984, - "y_max": 0.9356728792190552, - "y_min": 0.42220282554626465 - }, - "confidence": 0.997654139995575, - "label": "vehicle", - "label_id": 2 - }, - "h": 222, - "id": 4, - "region_id": 2706, - "roi_type": "vehicle", - "type": { - "confidence": 0.9667874574661255, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 140, - "x": 125, - "y": 182 - }, - { - "color": { - "confidence": 0.5594086050987244, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9825330972671509, - "x_min": 0.34150373935699463, - "y_max": 0.9223797023296356, - "y_min": 0.048903077840805054 - }, - "confidence": 0.5919698476791382, - "label": "vehicle", - "label_id": 2 - }, - "h": 377, - "id": 8, - "region_id": 2707, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998914003372192, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 492, - "x": 262, - "y": 21 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.999996542930603, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3389114439487457, - "x_min": 0.16517701745033264, - "y_max": 0.9076908528804779, - "y_min": 0.4019246995449066 - }, - "confidence": 0.9994926452636719, - "label": "vehicle", - "label_id": 2 - }, - "h": 218, - "id": 4, - "region_id": 2708, - "roi_type": "vehicle", - "type": { - "confidence": 0.547698438167572, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 133, - "x": 127, - "y": 174 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999867677688599, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3360127806663513, - "x_min": 0.1654418557882309, - "y_max": 0.8818584084510803, - "y_min": 0.3884504437446594 - }, - "confidence": 0.9987764954566956, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "id": 4, - "region_id": 2709, - "roi_type": "vehicle", - "type": { - "confidence": 0.885420560836792, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 131, - "x": 127, - "y": 168 - }, - { - "color": { - "confidence": 0.42734625935554504, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9590835273265839, - "x_min": 0.31477364897727966, - "y_max": 0.8576100170612335, - "y_min": 0.07268145680427551 - }, - "confidence": 0.5272276401519775, - "label": "vehicle", - "label_id": 2 - }, - "h": 339, - "id": 9, - "region_id": 2710, - "roi_type": "vehicle", - "type": { - "confidence": 0.999447762966156, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 495, - "x": 242, - "y": 31 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999828338623047, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.33232998847961426, - "x_min": 0.16263365745544434, - "y_max": 0.8597554564476013, - "y_min": 0.3726103901863098 - }, - "confidence": 0.9985213875770569, - "label": "vehicle", - "label_id": 2 - }, - "h": 210, - "id": 4, - "region_id": 2711, - "roi_type": "vehicle", - "type": { - "confidence": 0.9828891754150391, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 130, - "x": 125, - "y": 161 - }, - { - "color": { - "confidence": 0.7075168490409851, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9746560454368591, - "x_min": 0.3364577889442444, - "y_max": 0.9104736745357513, - "y_min": 0.05242249369621277 - }, - "confidence": 0.5714530348777771, - "label": "vehicle", - "label_id": 2 - }, - "h": 371, - "id": 9, - "region_id": 2712, - "roi_type": "vehicle", - "type": { - "confidence": 0.9997761845588684, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 490, - "x": 258, - "y": 23 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999812841415405, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.33004996180534363, - "x_min": 0.16184934973716736, - "y_max": 0.831344723701477, - "y_min": 0.35449519753456116 - }, - "confidence": 0.9997923970222473, - "label": "vehicle", - "label_id": 2 - }, - "h": 206, - "id": 4, - "region_id": 2713, - "roi_type": "vehicle", - "type": { - "confidence": 0.9883471131324768, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 129, - "x": 124, - "y": 153 - }, - { - "color": { - "confidence": 0.5001221895217896, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9590028822422028, - "x_min": 0.3254684507846832, - "y_max": 0.8569502830505371, - "y_min": 0.06740456819534302 - }, - "confidence": 0.7004438042640686, - "label": "vehicle", - "label_id": 2 - }, - "h": 341, - "id": 9, - "region_id": 2714, - "roi_type": "vehicle", - "type": { - "confidence": 0.9997856020927429, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 487, - "x": 250, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3289366066455841, - "x_min": 0.1574317216873169, - "y_max": 0.8062315583229065, - "y_min": 0.34386783838272095 - }, - "confidence": 0.9998531341552734, - "label": "vehicle", - "label_id": 2 - }, - "h": 200, - "id": 4, - "region_id": 2715, - "roi_type": "vehicle", - "type": { - "confidence": 0.9963167905807495, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 132, - "x": 121, - "y": 149 - }, - { - "color": { - "confidence": 0.40223732590675354, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.964382529258728, - "x_min": 0.32466232776641846, - "y_max": 0.8281485438346863, - "y_min": 0.05045187473297119 - }, - "confidence": 0.7299045920372009, - "label": "vehicle", - "label_id": 2 - }, - "h": 336, - "id": 9, - "region_id": 2716, - "roi_type": "vehicle", - "type": { - "confidence": 0.9992221593856812, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 491, - "x": 249, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999998807907104, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.32749849557876587, - "x_min": 0.15210948884487152, - "y_max": 0.7838110327720642, - "y_min": 0.3270363211631775 - }, - "confidence": 0.9998413324356079, - "label": "vehicle", - "label_id": 2 - }, - "h": 197, - "id": 4, - "region_id": 2717, - "roi_type": "vehicle", - "type": { - "confidence": 0.9661583304405212, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 135, - "x": 117, - "y": 141 - }, - { - "color": { - "confidence": 0.4082354009151459, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9622262120246887, - "x_min": 0.3427131772041321, - "y_max": 0.87251016497612, - "y_min": 0.04009708762168884 - }, - "confidence": 0.5857366919517517, - "label": "vehicle", - "label_id": 2 - }, - "h": 360, - "id": 9, - "region_id": 2718, - "roi_type": "vehicle", - "type": { - "confidence": 0.9991716146469116, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 476, - "x": 263, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.999996542930603, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3233610689640045, - "x_min": 0.14286422729492188, - "y_max": 0.7728333473205566, - "y_min": 0.3200983703136444 - }, - "confidence": 0.9999895095825195, - "label": "vehicle", - "label_id": 2 - }, - "h": 196, - "id": 4, - "region_id": 2719, - "roi_type": "vehicle", - "type": { - "confidence": 0.9968462586402893, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 139, - "x": 110, - "y": 138 - }, - { - "color": { - "confidence": 0.32906028628349304, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9750470519065857, - "x_min": 0.29748600721359253, - "y_max": 0.878402590751648, - "y_min": 0.02611905336380005 - }, - "confidence": 0.6027935147285461, - "label": "vehicle", - "label_id": 2 - }, - "h": 368, - "id": 9, - "region_id": 2720, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998162388801575, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 520, - "x": 228, - "y": 11 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999997615814209, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3201468884944916, - "x_min": 0.13641870021820068, - "y_max": 0.7574479579925537, - "y_min": 0.309865802526474 - }, - "confidence": 0.9999890327453613, - "label": "vehicle", - "label_id": 2 - }, - "h": 193, - "id": 4, - "region_id": 2721, - "roi_type": "vehicle", - "type": { - "confidence": 0.9931427240371704, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 141, - "x": 105, - "y": 134 - }, - { - "color": { - "confidence": 0.5577108860015869, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.967246949672699, - "x_min": 0.2861178517341614, - "y_max": 0.8358006775379181, - "y_min": 0.03851500153541565 - }, - "confidence": 0.7227263450622559, - "label": "vehicle", - "label_id": 2 - }, - "h": 344, - "id": 9, - "region_id": 2722, - "roi_type": "vehicle", - "type": { - "confidence": 0.999649167060852, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 523, - "x": 220, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.31699711084365845, - "x_min": 0.13015078008174896, - "y_max": 0.7375568151473999, - "y_min": 0.29937541484832764 - }, - "confidence": 0.9999899864196777, - "label": "vehicle", - "label_id": 2 - }, - "h": 189, - "id": 4, - "region_id": 2723, - "roi_type": "vehicle", - "type": { - "confidence": 0.9005993008613586, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 143, - "x": 100, - "y": 129 - }, - { - "color": { - "confidence": 0.4868549406528473, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9515461325645447, - "x_min": 0.33267635107040405, - "y_max": 0.8539553582668304, - "y_min": 0.03352043032646179 - }, - "confidence": 0.8081793785095215, - "label": "vehicle", - "label_id": 2 - }, - "h": 354, - "id": 9, - "region_id": 2724, - "roi_type": "vehicle", - "type": { - "confidence": 0.9985513091087341, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 475, - "x": 255, - "y": 14 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.313996784389019, - "x_min": 0.1178915724158287, - "y_max": 0.721222996711731, - "y_min": 0.2869602143764496 - }, - "confidence": 0.9999879598617554, - "label": "vehicle", - "label_id": 2 - }, - "h": 188, - "id": 4, - "region_id": 2725, - "roi_type": "vehicle", - "type": { - "confidence": 0.4962369203567505, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 151, - "x": 91, - "y": 124 - }, - { - "color": { - "confidence": 0.5879678130149841, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9608641266822815, - "x_min": 0.32193297147750854, - "y_max": 0.872944712638855, - "y_min": 0.03886592388153076 - }, - "confidence": 0.6384647488594055, - "label": "vehicle", - "label_id": 2 - }, - "h": 360, - "id": 9, - "region_id": 2726, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998008608818054, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 491, - "x": 247, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.31122130155563354, - "x_min": 0.10584880411624908, - "y_max": 0.7095153331756592, - "y_min": 0.28365960717201233 - }, - "confidence": 0.9999860525131226, - "label": "vehicle", - "label_id": 2 - }, - "h": 184, - "id": 4, - "region_id": 2727, - "roi_type": "vehicle", - "type": { - "confidence": 0.7103947401046753, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 158, - "x": 81, - "y": 123 - }, - { - "color": { - "confidence": 0.6019455790519714, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9637041389942169, - "x_min": 0.32208338379859924, - "y_max": 0.8715708255767822, - "y_min": 0.04041773080825806 - }, - "confidence": 0.649631142616272, - "label": "vehicle", - "label_id": 2 - }, - "h": 359, - "id": 9, - "region_id": 2728, - "roi_type": "vehicle", - "type": { - "confidence": 0.9997046589851379, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 493, - "x": 247, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.30708828568458557, - "x_min": 0.08848142623901367, - "y_max": 0.6941937208175659, - "y_min": 0.27684852480888367 - }, - "confidence": 0.9999517202377319, - "label": "vehicle", - "label_id": 2 - }, - "h": 180, - "id": 4, - "region_id": 2729, - "roi_type": "vehicle", - "type": { - "confidence": 0.5102647542953491, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 168, - "x": 68, - "y": 120 - }, - { - "color": { - "confidence": 0.6667999625205994, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9554692804813385, - "x_min": 0.3402766287326813, - "y_max": 0.8379943072795868, - "y_min": 0.04827651381492615 - }, - "confidence": 0.7163934707641602, - "label": "vehicle", - "label_id": 2 - }, - "h": 341, - "id": 9, - "region_id": 2730, - "roi_type": "vehicle", - "type": { - "confidence": 0.9969905614852905, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 472, - "x": 261, - "y": 21 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3021143078804016, - "x_min": 0.08180795609951019, - "y_max": 0.6738347411155701, - "y_min": 0.2771807909011841 - }, - "confidence": 0.9999845027923584, - "label": "vehicle", - "label_id": 2 - }, - "h": 171, - "id": 4, - "region_id": 2731, - "roi_type": "vehicle", - "type": { - "confidence": 0.8760337233543396, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 169, - "x": 63, - "y": 120 - }, - { - "color": { - "confidence": 0.7902370691299438, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9660838842391968, - "x_min": 0.33971118927001953, - "y_max": 0.8525603115558624, - "y_min": 0.0668802559375763 - }, - "confidence": 0.5413897633552551, - "label": "vehicle", - "label_id": 2 - }, - "h": 339, - "id": 9, - "region_id": 2732, - "roi_type": "vehicle", - "type": { - "confidence": 0.9997109770774841, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 481, - "x": 261, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2942667081952095, - "x_min": 0.07385558634996414, - "y_max": 0.656566858291626, - "y_min": 0.27267447113990784 - }, - "confidence": 0.9999916553497314, - "label": "vehicle", - "label_id": 2 - }, - "h": 166, - "id": 4, - "region_id": 2733, - "roi_type": "vehicle", - "type": { - "confidence": 0.9852901697158813, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 169, - "x": 57, - "y": 118 - }, - { - "color": { - "confidence": 0.590167760848999, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9926852583885193, - "x_min": 0.3049655556678772, - "y_max": 0.8486753702163696, - "y_min": 0.05000650882720947 - }, - "confidence": 0.5591980814933777, - "label": "vehicle", - "label_id": 2 - }, - "h": 345, - "id": 9, - "region_id": 2734, - "roi_type": "vehicle", - "type": { - "confidence": 0.9996962547302246, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 528, - "x": 234, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.28687456995248795, - "x_min": 0.06621802598237991, - "y_max": 0.6433695554733276, - "y_min": 0.2654878795146942 - }, - "confidence": 0.9999983310699463, - "label": "vehicle", - "label_id": 2 - }, - "h": 163, - "id": 4, - "region_id": 2735, - "roi_type": "vehicle", - "type": { - "confidence": 0.9969983100891113, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 169, - "x": 51, - "y": 115 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.28295157104730606, - "x_min": 0.055335767567157745, - "y_max": 0.6373208165168762, - "y_min": 0.2616565227508545 - }, - "confidence": 0.9999963045120239, - "label": "vehicle", - "label_id": 2 - }, - "h": 162, - "id": 4, - "region_id": 2736, - "roi_type": "vehicle", - "type": { - "confidence": 0.9995378255844116, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 175, - "x": 42, - "y": 113 - }, - { - "color": { - "confidence": 0.7691952586174011, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.95826455950737, - "x_min": 0.3554447591304779, - "y_max": 0.7013552486896515, - "y_min": 0.061350494623184204 - }, - "confidence": 0.6528945565223694, - "label": "vehicle", - "label_id": 2 - }, - "h": 276, - "id": 9, - "region_id": 2737, - "roi_type": "vehicle", - "type": { - "confidence": 0.998582124710083, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 463, - "x": 273, - "y": 27 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.27854787558317184, - "x_min": 0.04411589354276657, - "y_max": 0.62773197889328, - "y_min": 0.2605406641960144 - }, - "confidence": 0.999983549118042, - "label": "vehicle", - "label_id": 2 - }, - "h": 159, - "id": 4, - "region_id": 2738, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999783039093018, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 180, - "x": 34, - "y": 113 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.27031123638153076, - "x_min": 0.03065599501132965, - "y_max": 0.6122254133224487, - "y_min": 0.2575317919254303 - }, - "confidence": 0.9999444484710693, - "label": "vehicle", - "label_id": 2 - }, - "h": 153, - "id": 4, - "region_id": 2739, - "roi_type": "vehicle", - "type": { - "confidence": 0.99994957447052, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 184, - "x": 24, - "y": 111 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2618173286318779, - "x_min": 0.01927035301923752, - "y_max": 0.6008049249649048, - "y_min": 0.2527608275413513 - }, - "confidence": 0.9999783039093018, - "label": "vehicle", - "label_id": 2 - }, - "h": 150, - "id": 4, - "region_id": 2740, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999005794525146, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 186, - "x": 15, - "y": 109 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2521120309829712, - "x_min": 0.006787553429603577, - "y_max": 0.5942617058753967, - "y_min": 0.25123631954193115 - }, - "confidence": 0.999976396560669, - "label": "vehicle", - "label_id": 2 - }, - "h": 148, - "id": 4, - "region_id": 2741, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999986886978149, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 188, - "x": 5, - "y": 109 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2455773949623108, - "x_min": 0.0038528144359588623, - "y_max": 0.5852652192115784, - "y_min": 0.25117599964141846 - }, - "confidence": 0.999962568283081, - "label": "vehicle", - "label_id": 2 - }, - "h": 144, - "id": 4, - "region_id": 2742, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999997615814209, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 186, - "x": 3, - "y": 109 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.23418442159891129, - "x_min": 0.00190020352602005, - "y_max": 0.5771202892065048, - "y_min": 0.24817226827144623 - }, - "confidence": 0.9999908208847046, - "label": "vehicle", - "label_id": 2 - }, - "h": 142, - "id": 4, - "region_id": 2743, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999977350234985, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 178, - "x": 1, - "y": 107 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.22408055514097214, - "x_min": 0.000627569854259491, - "y_max": 0.5654963403940201, - "y_min": 0.2458530217409134 - }, - "confidence": 0.9999959468841553, - "label": "vehicle", - "label_id": 2 - }, - "h": 138, - "id": 4, - "region_id": 2744, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999964237213135, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 172, - "x": 0, - "y": 106 - }, - { - "color": { - "confidence": 0.5029367804527283, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9729532599449158, - "x_min": 0.3975161910057068, - "y_max": 0.7704417705535889, - "y_min": 0.06877964735031128 - }, - "confidence": 0.5025386214256287, - "label": "vehicle", - "label_id": 2 - }, - "h": 303, - "id": 9, - "region_id": 2745, - "roi_type": "vehicle", - "type": { - "confidence": 0.9997140765190125, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 442, - "x": 305, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.21542106568813324, - "x_min": 0.0, - "y_max": 0.5575774908065796, - "y_min": 0.24282824993133545 - }, - "confidence": 0.9999918937683105, - "label": "vehicle", - "label_id": 2 - }, - "h": 136, - "id": 4, - "region_id": 2746, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999957084655762, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 165, - "x": 0, - "y": 105 - }, - { - "color": { - "confidence": 0.6172573566436768, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9764736294746399, - "x_min": 0.3866834044456482, - "y_max": 0.8177641928195953, - "y_min": 0.04835072159767151 - }, - "confidence": 0.5299532413482666, - "label": "vehicle", - "label_id": 2 - }, - "h": 332, - "id": 9, - "region_id": 2747, - "roi_type": "vehicle", - "type": { - "confidence": 0.9991831183433533, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 453, - "x": 297, - "y": 21 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.20652518421411514, - "x_min": 0.0, - "y_max": 0.5523459762334824, - "y_min": 0.2393653839826584 - }, - "confidence": 0.9999760389328003, - "label": "vehicle", - "label_id": 2 - }, - "h": 135, - "id": 4, - "region_id": 2748, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998032450675964, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 159, - "x": 0, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.19814243912696838, - "x_min": 9.648501873016357e-05, - "y_max": 0.5438299030065536, - "y_min": 0.23729972541332245 - }, - "confidence": 0.99991774559021, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "id": 4, - "region_id": 2749, - "roi_type": "vehicle", - "type": { - "confidence": 0.9986026883125305, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 152, - "x": 0, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.18656962364912033, - "x_min": 0.00026082247495651245, - "y_max": 0.540632963180542, - "y_min": 0.22892174124717712 - }, - "confidence": 0.999891996383667, - "label": "vehicle", - "label_id": 2 - }, - "h": 135, - "id": 4, - "region_id": 2750, - "roi_type": "vehicle", - "type": { - "confidence": 0.9873902797698975, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 143, - "x": 0, - "y": 99 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.17477919906377792, - "x_min": 0.001994602382183075, - "y_max": 0.5303716063499451, - "y_min": 0.22543710470199585 - }, - "confidence": 0.9990342855453491, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "id": 4, - "region_id": 2751, - "roi_type": "vehicle", - "type": { - "confidence": 0.9910529255867004, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 133, - "x": 2, - "y": 97 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.16638848185539246, - "x_min": 0.0, - "y_max": 0.5288660079240799, - "y_min": 0.22173668444156647 - }, - "confidence": 0.9978117346763611, - "label": "vehicle", - "label_id": 2 - }, - "h": 133, - "id": 4, - "region_id": 2752, - "roi_type": "vehicle", - "type": { - "confidence": 0.9547353982925415, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 128, - "x": 0, - "y": 96 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.15866544842720032, - "x_min": 0.0, - "y_max": 0.5260069519281387, - "y_min": 0.22341085970401764 - }, - "confidence": 0.9969075322151184, - "label": "vehicle", - "label_id": 2 - }, - "h": 131, - "id": 4, - "region_id": 2753, - "roi_type": "vehicle", - "type": { - "confidence": 0.8816348910331726, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 122, - "x": 0, - "y": 97 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999998807907104, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.14424734562635422, - "x_min": 0.0004708394408226013, - "y_max": 0.5235311985015869, - "y_min": 0.22360435128211975 - }, - "confidence": 0.9907389879226685, - "label": "vehicle", - "label_id": 2 - }, - "h": 130, - "id": 4, - "region_id": 2754, - "roi_type": "vehicle", - "type": { - "confidence": 0.9703205227851868, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 110, - "x": 0, - "y": 97 - }, - { - "color": { - "confidence": 0.8621606230735779, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.11542871594429016, - "y_max": 0.9303610026836395, - "y_min": 0.03652903437614441 - }, - "confidence": 0.5644902586936951, - "label": "vehicle", - "label_id": 2 - }, - "h": 386, - "id": 9, - "region_id": 2755, - "roi_type": "vehicle", - "type": { - "confidence": 0.9965773224830627, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 679, - "x": 89, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999995231628418, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.1311522275209427, - "x_min": 0.0012656599283218384, - "y_max": 0.5229739546775818, - "y_min": 0.2319927215576172 - }, - "confidence": 0.8800601363182068, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "id": 4, - "region_id": 2756, - "roi_type": "vehicle", - "type": { - "confidence": 0.627292275428772, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 100, - "x": 1, - "y": 100 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999997615814209, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.12498541176319122, - "x_min": 0.0, - "y_max": 0.5163314342498779, - "y_min": 0.24239161610603333 - }, - "confidence": 0.7448732256889343, - "label": "vehicle", - "label_id": 2 - }, - "h": 118, - "id": 4, - "region_id": 2757, - "roi_type": "vehicle", - "type": { - "confidence": 0.8046652674674988, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 96, - "x": 0, - "y": 105 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999982118606567, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.1116863377392292, - "x_min": 0.0006904192268848419, - "y_max": 0.5155525207519531, - "y_min": 0.24023357033729553 - }, - "confidence": 0.8874056935310364, - "label": "vehicle", - "label_id": 2 - }, - "h": 119, - "id": 4, - "region_id": 2758, - "roi_type": "vehicle", - "type": { - "confidence": 0.9438390135765076, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 85, - "x": 1, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9998836517333984, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.09923026710748672, - "x_min": 0.001333586871623993, - "y_max": 0.5189979076385498, - "y_min": 0.23733755946159363 - }, - "confidence": 0.6848376989364624, - "label": "vehicle", - "label_id": 2 - }, - "h": 122, - "id": 4, - "region_id": 2759, - "roi_type": "vehicle", - "type": { - "confidence": 0.9106685519218445, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 75, - "x": 1, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9994813799858093, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.08814660087227821, - "x_min": 0.0, - "y_max": 0.5184166878461838, - "y_min": 0.23750726878643036 - }, - "confidence": 0.547851026058197, - "label": "vehicle", - "label_id": 2 - }, - "h": 121, - "id": 4, - "region_id": 2760, - "roi_type": "vehicle", - "type": { - "confidence": 0.8611072301864624, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 68, - "x": 0, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9998313188552856, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.07822689414024353, - "x_min": 0.0, - "y_max": 0.5102934390306473, - "y_min": 0.23988105356693268 - }, - "confidence": 0.7760471105575562, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "id": 4, - "region_id": 2761, - "roi_type": "vehicle", - "type": { - "confidence": 0.9552167057991028, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 60, - "x": 0, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9996935129165649, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.06671496108174324, - "x_min": 0.0004887916147708893, - "y_max": 0.5063621997833252, - "y_min": 0.24073129892349243 - }, - "confidence": 0.721200168132782, - "label": "vehicle", - "label_id": 2 - }, - "h": 115, - "id": 4, - "region_id": 2762, - "roi_type": "vehicle", - "type": { - "confidence": 0.8604604005813599, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 51, - "x": 0, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.999586284160614, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.058564310893416405, - "x_min": 0.0012591909617185593, - "y_max": 0.49973881244659424, - "y_min": 0.2501286268234253 - }, - "confidence": 0.7428306341171265, - "label": "vehicle", - "label_id": 2 - }, - "h": 108, - "id": 4, - "region_id": 2763, - "roi_type": "vehicle", - "type": { - "confidence": 0.6634000539779663, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 44, - "x": 1, - "y": 108 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9998461008071899, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.04703952744603157, - "x_min": 0.0021373629570007324, - "y_max": 0.491912305355072, - "y_min": 0.27300935983657837 - }, - "confidence": 0.5740195512771606, - "label": "vehicle", - "label_id": 2 - }, - "h": 95, - "id": 4, - "region_id": 2764, - "roi_type": "vehicle", - "type": { - "confidence": 0.7999000549316406, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 34, - "x": 2, - "y": 118 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999052286148071, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.03855092264711857, - "x_min": 0.0, - "y_max": 0.48962903022766113, - "y_min": 0.2736285924911499 - }, - "confidence": 0.5253973007202148, - "label": "vehicle", - "label_id": 2 - }, - "h": 93, - "id": 4, - "region_id": 2765, - "roi_type": "vehicle", - "type": { - "confidence": 0.5418111681938171, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 30, - "x": 0, - "y": 118 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.754129946231842, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.934235006570816, - "x_min": 0.04731431603431702, - "y_max": 0.9905672669410706, - "y_min": 0.005245864391326904 - }, - "confidence": 0.5478575229644775, - "label": "vehicle", - "label_id": 2 - }, - "h": 426, - "id": 10, - "region_id": 2772, - "roi_type": "vehicle", - "type": { - "confidence": 0.9800358414649963, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 681, - "x": 36, - "y": 2 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8263446688652039, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9340743124485016, - "x_min": 0.05626228451728821, - "y_max": 0.9993162155151367, - "y_min": 0.0 - }, - "confidence": 0.5252728462219238, - "label": "vehicle", - "label_id": 2 - }, - "h": 432, - "id": 10, - "region_id": 2773, - "roi_type": "vehicle", - "type": { - "confidence": 0.983135998249054, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 674, - "x": 43, - "y": 0 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.853427529335022, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9431887567043304, - "x_min": 0.05145725607872009, - "y_max": 0.9891375601291656, - "y_min": 0.0 - }, - "confidence": 0.5604560375213623, - "label": "vehicle", - "label_id": 2 - }, - "h": 427, - "id": 10, - "region_id": 2774, - "roi_type": "vehicle", - "type": { - "confidence": 0.9693769216537476, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 685, - "x": 40, - "y": 0 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7200186848640442, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9341979622840881, - "x_min": 0.04894071817398071, - "y_max": 0.9517980813980103, - "y_min": 0.0 - }, - "confidence": 0.5412791967391968, - "label": "vehicle", - "label_id": 2 - }, - "h": 411, - "id": 10, - "region_id": 2775, - "roi_type": "vehicle", - "type": { - "confidence": 0.9950309991836548, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 680, - "x": 38, - "y": 0 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.6869295835494995, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9681801199913025, - "x_min": 0.22439366579055786, - "y_max": 0.795999139547348, - "y_min": 0.07999715209007263 - }, - "confidence": 0.6512441039085388, - "label": "vehicle", - "label_id": 2 - }, - "h": 309, - "id": 10, - "region_id": 2776, - "roi_type": "vehicle", - "type": { - "confidence": 0.9984294772148132, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 571, - "x": 172, - "y": 35 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 27333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.4468967616558075, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.1108655333518982, - "y_max": 0.9221687614917755, - "y_min": 0.024473220109939575 - }, - "confidence": 0.5428245663642883, - "label": "vehicle", - "label_id": 2 - }, - "h": 388, - "id": 10, - "region_id": 2777, - "roi_type": "vehicle", - "type": { - "confidence": 0.9917234778404236, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 683, - "x": 85, - "y": 11 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 28166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.6823842525482178, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9668244123458862, - "x_min": 0.04019737243652344, - "y_max": 1.0, - "y_min": 0.018689513206481934 - }, - "confidence": 0.5183915495872498, - "label": "vehicle", - "label_id": 2 - }, - "h": 424, - "id": 10, - "region_id": 2780, - "roi_type": "vehicle", - "type": { - "confidence": 0.9840757250785828, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 712, - "x": 31, - "y": 8 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 28916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.05809926800429821, - "x_min": 0.0035657789558172226, - "y_max": 0.2681969776749611, - "y_min": 0.09560371190309525 - }, - "confidence": 0.7589443922042847, - "label": "person", - "label_id": 1 - }, - "h": 75, - "id": 11, - "region_id": 2788, - "roi_type": "person", - "w": 42, - "x": 3, - "y": 41 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06384254433214664, - "x_min": 0.007957043126225471, - "y_max": 0.274237722158432, - "y_min": 0.1018730103969574 - }, - "confidence": 0.7985617518424988, - "label": "person", - "label_id": 1 - }, - "h": 74, - "id": 11, - "region_id": 2789, - "roi_type": "person", - "w": 43, - "x": 6, - "y": 44 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07437356747686863, - "x_min": 0.015382559970021248, - "y_max": 0.2672903835773468, - "y_min": 0.09030735492706299 - }, - "confidence": 0.893984317779541, - "label": "person", - "label_id": 1 - }, - "h": 76, - "id": 11, - "region_id": 2790, - "roi_type": "person", - "w": 45, - "x": 12, - "y": 39 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06839273869991302, - "x_min": 0.022368106991052628, - "y_max": 0.26446548104286194, - "y_min": 0.0925963819026947 - }, - "confidence": 0.946168839931488, - "label": "person", - "label_id": 1 - }, - "h": 74, - "id": 11, - "region_id": 2792, - "roi_type": "person", - "w": 35, - "x": 17, - "y": 40 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06265867501497269, - "x_min": 0.02845694124698639, - "y_max": 0.2631925344467163, - "y_min": 0.0876958817243576 - }, - "confidence": 0.7030326128005981, - "label": "person", - "label_id": 1 - }, - "h": 76, - "id": 11, - "region_id": 2791, - "roi_type": "person", - "w": 26, - "x": 22, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07015539705753326, - "x_min": 0.038974471390247345, - "y_max": 0.2708924114704132, - "y_min": 0.08729448914527893 - }, - "confidence": 0.8550823330879211, - "label": "person", - "label_id": 1 - }, - "h": 79, - "id": 11, - "region_id": 2793, - "roi_type": "person", - "w": 24, - "x": 30, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.08978046476840973, - "x_min": 0.04507404938340187, - "y_max": 0.26029662042856216, - "y_min": 0.08790374547243118 - }, - "confidence": 0.977257251739502, - "label": "person", - "label_id": 1 - }, - "h": 74, - "id": 11, - "region_id": 2794, - "roi_type": "person", - "w": 34, - "x": 35, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.10240232944488525, - "x_min": 0.050258174538612366, - "y_max": 0.26179608702659607, - "y_min": 0.08916294574737549 - }, - "confidence": 0.9634844064712524, - "label": "person", - "label_id": 1 - }, - "h": 75, - "id": 11, - "region_id": 2795, - "roi_type": "person", - "w": 40, - "x": 39, - "y": 39 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11237834393978119, - "x_min": 0.0557108074426651, - "y_max": 0.265661358833313, - "y_min": 0.08681026101112366 - }, - "confidence": 0.9638311266899109, - "label": "person", - "label_id": 1 - }, - "h": 77, - "id": 11, - "region_id": 2796, - "roi_type": "person", - "w": 44, - "x": 43, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11509420722723007, - "x_min": 0.0598953440785408, - "y_max": 0.26093965768814087, - "y_min": 0.08726376295089722 - }, - "confidence": 0.9589016437530518, - "label": "person", - "label_id": 1 - }, - "h": 75, - "id": 11, - "region_id": 2797, - "roi_type": "person", - "w": 42, - "x": 46, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.10801342129707336, - "x_min": 0.0689283162355423, - "y_max": 0.2573170065879822, - "y_min": 0.0888819694519043 - }, - "confidence": 0.7473644018173218, - "label": "person", - "label_id": 1 - }, - "h": 73, - "id": 11, - "region_id": 2798, - "roi_type": "person", - "w": 30, - "x": 53, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11594520509243011, - "x_min": 0.08451759815216064, - "y_max": 0.2598234713077545, - "y_min": 0.08372160792350769 - }, - "confidence": 0.9428697824478149, - "label": "person", - "label_id": 1 - }, - "h": 76, - "id": 11, - "region_id": 2799, - "roi_type": "person", - "w": 24, - "x": 65, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.14308200776576996, - "x_min": 0.08935531973838806, - "y_max": 0.25856076925992966, - "y_min": 0.08275481313467026 - }, - "confidence": 0.9797755479812622, - "label": "person", - "label_id": 1 - }, - "h": 76, - "id": 11, - "region_id": 2800, - "roi_type": "person", - "w": 41, - "x": 69, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15327730774879456, - "x_min": 0.09761051088571548, - "y_max": 0.25556155294179916, - "y_min": 0.08270096033811569 - }, - "confidence": 0.9193074703216553, - "label": "person", - "label_id": 1 - }, - "h": 75, - "id": 11, - "region_id": 2801, - "roi_type": "person", - "w": 43, - "x": 75, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15708927810192108, - "x_min": 0.09718881547451019, - "y_max": 0.2538745477795601, - "y_min": 0.08122579008340836 - }, - "confidence": 0.9810740351676941, - "label": "person", - "label_id": 1 - }, - "h": 75, - "id": 11, - "region_id": 2802, - "roi_type": "person", - "w": 46, - "x": 75, - "y": 35 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15849240124225616, - "x_min": 0.10766856372356415, - "y_max": 0.2546975910663605, - "y_min": 0.07851284742355347 - }, - "confidence": 0.9863011837005615, - "label": "person", - "label_id": 1 - }, - "h": 76, - "id": 11, - "region_id": 2803, - "roi_type": "person", - "w": 39, - "x": 83, - "y": 34 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.14903458952903748, - "x_min": 0.11753658205270767, - "y_max": 0.2580205202102661, - "y_min": 0.07362668216228485 - }, - "confidence": 0.9098013639450073, - "label": "person", - "label_id": 1 - }, - "h": 80, - "id": 11, - "region_id": 2804, - "roi_type": "person", - "w": 24, - "x": 90, - "y": 32 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15783970057964325, - "x_min": 0.13124407827854156, - "y_max": 0.25078579038381577, - "y_min": 0.08267303556203842 - }, - "confidence": 0.5655198097229004, - "label": "person", - "label_id": 1 - }, - "h": 73, - "id": 11, - "region_id": 2805, - "roi_type": "person", - "w": 20, - "x": 101, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1712721735239029, - "x_min": 0.13269366323947906, - "y_max": 0.25339871644973755, - "y_min": 0.0712251216173172 - }, - "confidence": 0.9201220273971558, - "label": "person", - "label_id": 1 - }, - "h": 79, - "id": 11, - "region_id": 2806, - "roi_type": "person", - "w": 30, - "x": 102, - "y": 31 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.188812255859375, - "x_min": 0.1387019157409668, - "y_max": 0.2481667771935463, - "y_min": 0.06929013878107071 - }, - "confidence": 0.972706139087677, - "label": "person", - "label_id": 1 - }, - "h": 77, - "id": 11, - "region_id": 2807, - "roi_type": "person", - "w": 38, - "x": 107, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19876964390277863, - "x_min": 0.14241482317447662, - "y_max": 0.24410223960876465, - "y_min": 0.06995522975921631 - }, - "confidence": 0.935201108455658, - "label": "person", - "label_id": 1 - }, - "h": 75, - "id": 11, - "region_id": 2808, - "roi_type": "person", - "w": 43, - "x": 109, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19850021600723267, - "x_min": 0.14565402269363403, - "y_max": 0.24200070649385452, - "y_min": 0.06734246760606766 - }, - "confidence": 0.9604580402374268, - "label": "person", - "label_id": 1 - }, - "h": 75, - "id": 11, - "region_id": 2809, - "roi_type": "person", - "w": 41, - "x": 112, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19670461118221283, - "x_min": 0.15936703979969025, - "y_max": 0.24713708460330963, - "y_min": 0.06951303780078888 - }, - "confidence": 0.9338945746421814, - "label": "person", - "label_id": 1 - }, - "h": 77, - "id": 11, - "region_id": 2810, - "roi_type": "person", - "w": 29, - "x": 122, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19646276533603668, - "x_min": 0.1669870764017105, - "y_max": 0.246548093855381, - "y_min": 0.05969572812318802 - }, - "confidence": 0.8135930299758911, - "label": "person", - "label_id": 1 - }, - "h": 81, - "id": 11, - "region_id": 2811, - "roi_type": "person", - "w": 23, - "x": 128, - "y": 26 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.20714330673217773, - "x_min": 0.17688614130020142, - "y_max": 0.24033692479133606, - "y_min": 0.06553769111633301 - }, - "confidence": 0.8666308522224426, - "label": "person", - "label_id": 1 - }, - "h": 76, - "id": 11, - "region_id": 2812, - "roi_type": "person", - "w": 23, - "x": 136, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.22876504063606262, - "x_min": 0.17733925580978394, - "y_max": 0.23425975441932678, - "y_min": 0.0654514729976654 - }, - "confidence": 0.9463271498680115, - "label": "person", - "label_id": 1 - }, - "h": 73, - "id": 11, - "region_id": 2813, - "roi_type": "person", - "w": 39, - "x": 136, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23787567019462585, - "x_min": 0.18617352843284607, - "y_max": 0.2328994944691658, - "y_min": 0.06733778864145279 - }, - "confidence": 0.8578006029129028, - "label": "person", - "label_id": 1 - }, - "h": 72, - "id": 11, - "region_id": 2814, - "roi_type": "person", - "w": 40, - "x": 143, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24495282769203186, - "x_min": 0.18914848566055298, - "y_max": 0.2286892682313919, - "y_min": 0.06330259144306183 - }, - "confidence": 0.9402493834495544, - "label": "person", - "label_id": 1 - }, - "h": 71, - "id": 11, - "region_id": 2815, - "roi_type": "person", - "w": 43, - "x": 145, - "y": 27 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24374517798423767, - "x_min": 0.19896605610847473, - "y_max": 0.22477789968252182, - "y_min": 0.06456565111875534 - }, - "confidence": 0.9167733192443848, - "label": "person", - "label_id": 1 - }, - "h": 69, - "id": 11, - "region_id": 2816, - "roi_type": "person", - "w": 34, - "x": 153, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23920002579689026, - "x_min": 0.2088455855846405, - "y_max": 0.2315978854894638, - "y_min": 0.050867900252342224 - }, - "confidence": 0.7405911087989807, - "label": "person", - "label_id": 1 - }, - "h": 78, - "id": 11, - "region_id": 2817, - "roi_type": "person", - "w": 23, - "x": 160, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24580711126327515, - "x_min": 0.21504563093185425, - "y_max": 0.22459035366773605, - "y_min": 0.04561009258031845 - }, - "confidence": 0.8077870607376099, - "label": "person", - "label_id": 1 - }, - "h": 77, - "id": 11, - "region_id": 2818, - "roi_type": "person", - "w": 24, - "x": 165, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.258386492729187, - "x_min": 0.22124245762825012, - "y_max": 0.22196873277425766, - "y_min": 0.04270251840353012 - }, - "confidence": 0.9389499425888062, - "label": "person", - "label_id": 1 - }, - "h": 77, - "id": 11, - "region_id": 2819, - "roi_type": "person", - "w": 29, - "x": 170, - "y": 18 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2686212658882141, - "x_min": 0.22306442260742188, - "y_max": 0.22240334749221802, - "y_min": 0.03721362352371216 - }, - "confidence": 0.8532395958900452, - "label": "person", - "label_id": 1 - }, - "h": 80, - "id": 11, - "region_id": 2820, - "roi_type": "person", - "w": 35, - "x": 171, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27878496050834656, - "x_min": 0.2256826013326645, - "y_max": 0.21868880838155746, - "y_min": 0.04378651827573776 - }, - "confidence": 0.940152108669281, - "label": "person", - "label_id": 1 - }, - "h": 76, - "id": 11, - "region_id": 2821, - "roi_type": "person", - "w": 41, - "x": 173, - "y": 19 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2782133221626282, - "x_min": 0.22981303930282593, - "y_max": 0.21300845593214035, - "y_min": 0.04048468917608261 - }, - "confidence": 0.8954000473022461, - "label": "person", - "label_id": 1 - }, - "h": 75, - "id": 11, - "region_id": 2822, - "roi_type": "person", - "w": 37, - "x": 176, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27863314747810364, - "x_min": 0.2395808845758438, - "y_max": 0.21157341450452805, - "y_min": 0.026669137179851532 - }, - "confidence": 0.5580120086669922, - "label": "person", - "label_id": 1 - }, - "h": 80, - "id": 11, - "region_id": 2823, - "roi_type": "person", - "w": 30, - "x": 184, - "y": 12 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2845720052719116, - "x_min": 0.25448018312454224, - "y_max": 0.21495232731103897, - "y_min": 0.026290185749530792 - }, - "confidence": 0.80083167552948, - "label": "person", - "label_id": 1 - }, - "h": 82, - "id": 11, - "region_id": 2824, - "roi_type": "person", - "w": 23, - "x": 195, - "y": 11 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.29074627161026, - "x_min": 0.2599877119064331, - "y_max": 0.20789270102977753, - "y_min": 0.022824198007583618 - }, - "confidence": 0.8385727405548096, - "label": "person", - "label_id": 1 - }, - "h": 80, - "id": 11, - "region_id": 2825, - "roi_type": "person", - "w": 24, - "x": 200, - "y": 10 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.30755072832107544, - "x_min": 0.2656424045562744, - "y_max": 0.19290897250175476, - "y_min": 0.022242024540901184 - }, - "confidence": 0.977880597114563, - "label": "person", - "label_id": 1 - }, - "h": 74, - "id": 11, - "region_id": 2826, - "roi_type": "person", - "w": 32, - "x": 204, - "y": 10 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31079021096229553, - "x_min": 0.2677251994609833, - "y_max": 0.19722382724285126, - "y_min": 0.023035749793052673 - }, - "confidence": 0.9654287099838257, - "label": "person", - "label_id": 1 - }, - "h": 75, - "id": 11, - "region_id": 2827, - "roi_type": "person", - "w": 33, - "x": 206, - "y": 10 - }, - { - "color": { - "confidence": 0.7468725442886353, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.29563216120004654, - "x_min": 0.10331843048334122, - "y_max": 1.0, - "y_min": 0.8515570759773254 - }, - "confidence": 0.761517345905304, - "label": "vehicle", - "label_id": 2 - }, - "h": 64, - "id": 12, - "region_id": 2828, - "roi_type": "vehicle", - "type": { - "confidence": 0.545889675617218, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 148, - "x": 79, - "y": 368 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31590598821640015, - "x_min": 0.27411168813705444, - "y_max": 0.18277175724506378, - "y_min": 0.019142642617225647 - }, - "confidence": 0.9806784987449646, - "label": "person", - "label_id": 1 - }, - "h": 71, - "id": 11, - "region_id": 2829, - "roi_type": "person", - "w": 32, - "x": 211, - "y": 8 - }, - { - "color": { - "confidence": 0.966917872428894, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.302535243332386, - "x_min": 0.08773649483919144, - "y_max": 1.0, - "y_min": 0.8262227177619934 - }, - "confidence": 0.908391535282135, - "label": "vehicle", - "label_id": 2 - }, - "h": 75, - "id": 12, - "region_id": 2830, - "roi_type": "vehicle", - "type": { - "confidence": 0.7184173464775085, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 165, - "x": 67, - "y": 357 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3163120448589325, - "x_min": 0.27949169278144836, - "y_max": 0.18241430073976517, - "y_min": 0.00963614135980606 - }, - "confidence": 0.8560529351234436, - "label": "person", - "label_id": 1 - }, - "h": 75, - "id": 11, - "region_id": 2831, - "roi_type": "person", - "w": 28, - "x": 215, - "y": 4 - }, - { - "color": { - "confidence": 0.9669363498687744, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3071591779589653, - "x_min": 0.08984949439764023, - "y_max": 1.0, - "y_min": 0.7983192205429077 - }, - "confidence": 0.9688770174980164, - "label": "vehicle", - "label_id": 2 - }, - "h": 87, - "id": 12, - "region_id": 2832, - "roi_type": "vehicle", - "type": { - "confidence": 0.8623602986335754, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 167, - "x": 69, - "y": 345 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31996291875839233, - "x_min": 0.28390347957611084, - "y_max": 0.17544172704219818, - "y_min": 0.002514094114303589 - }, - "confidence": 0.9317660927772522, - "label": "person", - "label_id": 1 - }, - "h": 75, - "id": 11, - "region_id": 2833, - "roi_type": "person", - "w": 28, - "x": 218, - "y": 1 - }, - { - "color": { - "confidence": 0.9985125660896301, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.31785333156585693, - "x_min": 0.09327417612075806, - "y_max": 0.9961552023887634, - "y_min": 0.7738481163978577 - }, - "confidence": 0.9980048537254333, - "label": "vehicle", - "label_id": 2 - }, - "h": 96, - "id": 12, - "region_id": 2834, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990713596343994, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 172, - "x": 72, - "y": 334 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3244977593421936, - "x_min": 0.29137319326400757, - "y_max": 0.18117792904376984, - "y_min": 0.0 - }, - "confidence": 0.9299455285072327, - "label": "person", - "label_id": 1 - }, - "h": 78, - "id": 11, - "region_id": 2835, - "roi_type": "person", - "w": 25, - "x": 224, - "y": 0 - }, - { - "color": { - "confidence": 0.9868773818016052, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3211563229560852, - "x_min": 0.09341153502464294, - "y_max": 0.9977253675460815, - "y_min": 0.7558172941207886 - }, - "confidence": 0.995922327041626, - "label": "vehicle", - "label_id": 2 - }, - "h": 105, - "id": 12, - "region_id": 2836, - "roi_type": "vehicle", - "type": { - "confidence": 0.9961318969726562, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 175, - "x": 72, - "y": 327 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33760935068130493, - "x_min": 0.2969669699668884, - "y_max": 0.1680586189031601, - "y_min": 0.0 - }, - "confidence": 0.97437584400177, - "label": "person", - "label_id": 1 - }, - "h": 73, - "id": 11, - "region_id": 2837, - "roi_type": "person", - "w": 31, - "x": 228, - "y": 0 - }, - { - "color": { - "confidence": 0.9531167149543762, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.32524099946022034, - "x_min": 0.09379306435585022, - "y_max": 0.9987419843673706, - "y_min": 0.728178858757019 - }, - "confidence": 0.9982354640960693, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "id": 12, - "region_id": 2838, - "roi_type": "vehicle", - "type": { - "confidence": 0.99638831615448, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 178, - "x": 72, - "y": 315 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34123092889785767, - "x_min": 0.2997239828109741, - "y_max": 0.1591828241944313, - "y_min": 0.0 - }, - "confidence": 0.9657360315322876, - "label": "person", - "label_id": 1 - }, - "h": 69, - "id": 11, - "region_id": 2839, - "roi_type": "person", - "w": 32, - "x": 230, - "y": 0 - }, - { - "color": { - "confidence": 0.9923230409622192, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3318566754460335, - "x_min": 0.09386516362428665, - "y_max": 0.9967382550239563, - "y_min": 0.7049055695533752 - }, - "confidence": 0.996229350566864, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "id": 12, - "region_id": 2840, - "roi_type": "vehicle", - "type": { - "confidence": 0.9930793642997742, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 183, - "x": 72, - "y": 305 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3466411232948303, - "x_min": 0.3028194308280945, - "y_max": 0.1562092900276184, - "y_min": 0.0 - }, - "confidence": 0.9846485257148743, - "label": "person", - "label_id": 1 - }, - "h": 67, - "id": 11, - "region_id": 2841, - "roi_type": "person", - "w": 34, - "x": 233, - "y": 0 - }, - { - "color": { - "confidence": 0.9815136194229126, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3395664617419243, - "x_min": 0.08993595093488693, - "y_max": 0.9996479153633118, - "y_min": 0.6784219145774841 - }, - "confidence": 0.9955138564109802, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "id": 12, - "region_id": 2842, - "roi_type": "vehicle", - "type": { - "confidence": 0.9888794422149658, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 192, - "x": 69, - "y": 293 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34522509574890137, - "x_min": 0.30906105041503906, - "y_max": 0.15079188346862793, - "y_min": 0.0 - }, - "confidence": 0.9445015788078308, - "label": "person", - "label_id": 1 - }, - "h": 65, - "id": 11, - "region_id": 2843, - "roi_type": "person", - "w": 28, - "x": 237, - "y": 0 - }, - { - "color": { - "confidence": 0.9439544677734375, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3419874384999275, - "x_min": 0.0941135361790657, - "y_max": 1.0, - "y_min": 0.6525993943214417 - }, - "confidence": 0.9987126588821411, - "label": "vehicle", - "label_id": 2 - }, - "h": 150, - "id": 12, - "region_id": 2844, - "roi_type": "vehicle", - "type": { - "confidence": 0.9753090739250183, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 190, - "x": 72, - "y": 282 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3481338918209076, - "x_min": 0.3160833418369293, - "y_max": 0.14550430327653885, - "y_min": 0.0 - }, - "confidence": 0.963749885559082, - "label": "person", - "label_id": 1 - }, - "h": 63, - "id": 11, - "region_id": 2845, - "roi_type": "person", - "w": 25, - "x": 243, - "y": 0 - }, - { - "color": { - "confidence": 0.8111639022827148, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34435374289751053, - "x_min": 0.09984970837831497, - "y_max": 0.9990871548652649, - "y_min": 0.6355069279670715 - }, - "confidence": 0.9971874356269836, - "label": "vehicle", - "label_id": 2 - }, - "h": 157, - "id": 12, - "region_id": 2846, - "roi_type": "vehicle", - "type": { - "confidence": 0.9859831929206848, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 188, - "x": 77, - "y": 275 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3530542850494385, - "x_min": 0.3201481103897095, - "y_max": 0.14842259883880615, - "y_min": 0.0 - }, - "confidence": 0.8752254843711853, - "label": "person", - "label_id": 1 - }, - "h": 64, - "id": 11, - "region_id": 2847, - "roi_type": "person", - "w": 25, - "x": 246, - "y": 0 - }, - { - "color": { - "confidence": 0.5280356407165527, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34952497482299805, - "x_min": 0.10708582401275635, - "y_max": 1.0, - "y_min": 0.6191877722740173 - }, - "confidence": 0.998619794845581, - "label": "vehicle", - "label_id": 2 - }, - "h": 165, - "id": 12, - "region_id": 2848, - "roi_type": "vehicle", - "type": { - "confidence": 0.9884899258613586, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 186, - "x": 82, - "y": 267 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35819557309150696, - "x_min": 0.3240784704685211, - "y_max": 0.14493504911661148, - "y_min": 0.0 - }, - "confidence": 0.7914350032806396, - "label": "person", - "label_id": 1 - }, - "h": 63, - "id": 11, - "region_id": 2849, - "roi_type": "person", - "w": 26, - "x": 249, - "y": 0 - }, - { - "color": { - "confidence": 0.8881661891937256, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3578673005104065, - "x_min": 0.11816421151161194, - "y_max": 0.9963030219078064, - "y_min": 0.5943846106529236 - }, - "confidence": 0.9954742789268494, - "label": "vehicle", - "label_id": 2 - }, - "h": 174, - "id": 12, - "region_id": 2850, - "roi_type": "vehicle", - "type": { - "confidence": 0.9638090133666992, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 184, - "x": 91, - "y": 257 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36160674691200256, - "x_min": 0.3288991153240204, - "y_max": 0.14174089580774307, - "y_min": 0.0 - }, - "confidence": 0.6194042563438416, - "label": "person", - "label_id": 1 - }, - "h": 61, - "id": 11, - "region_id": 2851, - "roi_type": "person", - "w": 25, - "x": 253, - "y": 0 - }, - { - "color": { - "confidence": 0.6927691698074341, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35685088485479355, - "x_min": 0.11790122836828232, - "y_max": 0.9961073994636536, - "y_min": 0.5718068480491638 - }, - "confidence": 0.9947429895401001, - "label": "vehicle", - "label_id": 2 - }, - "h": 183, - "id": 12, - "region_id": 2852, - "roi_type": "vehicle", - "type": { - "confidence": 0.9615950584411621, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 184, - "x": 91, - "y": 247 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36447739601135254, - "x_min": 0.33208173513412476, - "y_max": 0.14312608540058136, - "y_min": 0.0 - }, - "confidence": 0.8804531693458557, - "label": "person", - "label_id": 1 - }, - "h": 62, - "id": 11, - "region_id": 2853, - "roi_type": "person", - "w": 25, - "x": 255, - "y": 0 - }, - { - "color": { - "confidence": 0.6090085506439209, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36100974678993225, - "x_min": 0.10920840501785278, - "y_max": 1.0, - "y_min": 0.5514669418334961 - }, - "confidence": 0.9975082874298096, - "label": "vehicle", - "label_id": 2 - }, - "h": 194, - "id": 12, - "region_id": 2854, - "roi_type": "vehicle", - "type": { - "confidence": 0.9945594668388367, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 193, - "x": 84, - "y": 238 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3689320683479309, - "x_min": 0.33504199981689453, - "y_max": 0.1309487745165825, - "y_min": 0.0 - }, - "confidence": 0.5245084166526794, - "label": "person", - "label_id": 1 - }, - "h": 57, - "id": 11, - "region_id": 2855, - "roi_type": "person", - "w": 26, - "x": 257, - "y": 0 - }, - { - "color": { - "confidence": 0.8659559488296509, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36274436861276627, - "x_min": 0.11731896549463272, - "y_max": 1.0, - "y_min": 0.5336947441101074 - }, - "confidence": 0.9914770722389221, - "label": "vehicle", - "label_id": 2 - }, - "h": 201, - "id": 12, - "region_id": 2856, - "roi_type": "vehicle", - "type": { - "confidence": 0.9782851338386536, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 188, - "x": 90, - "y": 231 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7261171936988831, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3659408688545227, - "x_min": 0.11780126392841339, - "y_max": 1.0, - "y_min": 0.518149733543396 - }, - "confidence": 0.9818969964981079, - "label": "vehicle", - "label_id": 2 - }, - "h": 208, - "id": 12, - "region_id": 2857, - "roi_type": "vehicle", - "type": { - "confidence": 0.9929179549217224, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 191, - "x": 90, - "y": 224 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7979229688644409, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3604143261909485, - "x_min": 0.11885426938533783, - "y_max": 1.0, - "y_min": 0.5062888264656067 - }, - "confidence": 0.9770739674568176, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "id": 12, - "region_id": 2858, - "roi_type": "vehicle", - "type": { - "confidence": 0.9997255206108093, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 186, - "x": 91, - "y": 219 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.6396380662918091, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35873663425445557, - "x_min": 0.12577953934669495, - "y_max": 1.0, - "y_min": 0.487548291683197 - }, - "confidence": 0.9604198932647705, - "label": "vehicle", - "label_id": 2 - }, - "h": 221, - "id": 12, - "region_id": 2859, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998347759246826, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 179, - "x": 97, - "y": 211 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9329293966293335, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36819857358932495, - "x_min": 0.13242483139038086, - "y_max": 1.0, - "y_min": 0.4729745090007782 - }, - "confidence": 0.9679286479949951, - "label": "vehicle", - "label_id": 2 - }, - "h": 228, - "id": 12, - "region_id": 2860, - "roi_type": "vehicle", - "type": { - "confidence": 0.9380549788475037, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 181, - "x": 102, - "y": 204 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9758688807487488, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.37145912647247314, - "x_min": 0.13698597252368927, - "y_max": 0.9822669923305511, - "y_min": 0.45337817072868347 - }, - "confidence": 0.9909036755561829, - "label": "vehicle", - "label_id": 2 - }, - "h": 228, - "id": 12, - "region_id": 2861, - "roi_type": "vehicle", - "type": { - "confidence": 0.8175630569458008, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 180, - "x": 105, - "y": 196 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.99601811170578, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.360751211643219, - "x_min": 0.14602144062519073, - "y_max": 0.9427908360958099, - "y_min": 0.4422529637813568 - }, - "confidence": 0.9961796998977661, - "label": "vehicle", - "label_id": 2 - }, - "h": 216, - "id": 12, - "region_id": 2863, - "roi_type": "vehicle", - "type": { - "confidence": 0.9925321936607361, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 165, - "x": 112, - "y": 191 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9773136973381042, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3665272891521454, - "x_min": 0.15879389643669128, - "y_max": 0.9357600212097168, - "y_min": 0.41560184955596924 - }, - "confidence": 0.9988160133361816, - "label": "vehicle", - "label_id": 2 - }, - "h": 225, - "id": 12, - "region_id": 2862, - "roi_type": "vehicle", - "type": { - "confidence": 0.614161491394043, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 160, - "x": 122, - "y": 180 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9930024743080139, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36519184708595276, - "x_min": 0.1624055802822113, - "y_max": 0.9030640423297882, - "y_min": 0.3991294205188751 - }, - "confidence": 0.99962317943573, - "label": "vehicle", - "label_id": 2 - }, - "h": 218, - "id": 12, - "region_id": 2864, - "roi_type": "vehicle", - "type": { - "confidence": 0.5760512351989746, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 156, - "x": 125, - "y": 172 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9986255168914795, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36517783999443054, - "x_min": 0.17351636290550232, - "y_max": 0.8792468309402466, - "y_min": 0.3837735652923584 - }, - "confidence": 0.9997884631156921, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "id": 12, - "region_id": 2865, - "roi_type": "vehicle", - "type": { - "confidence": 0.533503532409668, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 147, - "x": 133, - "y": 166 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9977391958236694, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36106088757514954, - "x_min": 0.1790127456188202, - "y_max": 0.8557636737823486, - "y_min": 0.36366569995880127 - }, - "confidence": 0.9998449087142944, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "id": 12, - "region_id": 2866, - "roi_type": "vehicle", - "type": { - "confidence": 0.6246165633201599, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 140, - "x": 137, - "y": 157 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9996715784072876, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36285877227783203, - "x_min": 0.18275152146816254, - "y_max": 0.8229827284812927, - "y_min": 0.34286290407180786 - }, - "confidence": 0.9999336004257202, - "label": "vehicle", - "label_id": 2 - }, - "h": 207, - "id": 12, - "region_id": 2867, - "roi_type": "vehicle", - "type": { - "confidence": 0.7438144087791443, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 138, - "x": 140, - "y": 148 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9991983771324158, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3602021038532257, - "x_min": 0.18906906247138977, - "y_max": 0.7855886220932007, - "y_min": 0.32251763343811035 - }, - "confidence": 0.9999699592590332, - "label": "vehicle", - "label_id": 2 - }, - "h": 200, - "id": 12, - "region_id": 2868, - "roi_type": "vehicle", - "type": { - "confidence": 0.7719494104385376, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 131, - "x": 145, - "y": 139 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9998089671134949, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3588583469390869, - "x_min": 0.1904894858598709, - "y_max": 0.766708493232727, - "y_min": 0.31205347180366516 - }, - "confidence": 0.9999749660491943, - "label": "vehicle", - "label_id": 2 - }, - "h": 196, - "id": 12, - "region_id": 2869, - "roi_type": "vehicle", - "type": { - "confidence": 0.6637498736381531, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 129, - "x": 146, - "y": 135 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999306201934814, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.354780912399292, - "x_min": 0.19472239911556244, - "y_max": 0.7405029535293579, - "y_min": 0.29147496819496155 - }, - "confidence": 0.9999440908432007, - "label": "vehicle", - "label_id": 2 - }, - "h": 194, - "id": 12, - "region_id": 2870, - "roi_type": "vehicle", - "type": { - "confidence": 0.8586626648902893, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 123, - "x": 150, - "y": 126 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9711026549339294, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34999334812164307, - "x_min": 0.194540336728096, - "y_max": 0.7187595367431641, - "y_min": 0.2768002152442932 - }, - "confidence": 0.9998922348022461, - "label": "vehicle", - "label_id": 2 - }, - "h": 191, - "id": 12, - "region_id": 2871, - "roi_type": "vehicle", - "type": { - "confidence": 0.9108662605285645, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 119, - "x": 149, - "y": 120 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9928416013717651, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3457085192203522, - "x_min": 0.20007964968681335, - "y_max": 0.6881219744682312, - "y_min": 0.2653038501739502 - }, - "confidence": 0.9998040795326233, - "label": "vehicle", - "label_id": 2 - }, - "h": 183, - "id": 12, - "region_id": 2872, - "roi_type": "vehicle", - "type": { - "confidence": 0.8837874531745911, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 112, - "x": 154, - "y": 115 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9985859394073486, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34467506408691406, - "x_min": 0.19982749223709106, - "y_max": 0.6525393724441528, - "y_min": 0.2548128664493561 - }, - "confidence": 0.9998615980148315, - "label": "vehicle", - "label_id": 2 - }, - "h": 172, - "id": 12, - "region_id": 2873, - "roi_type": "vehicle", - "type": { - "confidence": 0.6626163721084595, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 111, - "x": 153, - "y": 110 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9502972960472107, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34181272983551025, - "x_min": 0.1947338730096817, - "y_max": 0.6376242786645889, - "y_min": 0.23916591703891754 - }, - "confidence": 0.9997871518135071, - "label": "vehicle", - "label_id": 2 - }, - "h": 172, - "id": 12, - "region_id": 2874, - "roi_type": "vehicle", - "type": { - "confidence": 0.7591845989227295, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 113, - "x": 150, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9493867754936218, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3388643264770508, - "x_min": 0.19013750553131104, - "y_max": 0.6308777332305908, - "y_min": 0.2227199673652649 - }, - "confidence": 0.9997004270553589, - "label": "vehicle", - "label_id": 2 - }, - "h": 176, - "id": 12, - "region_id": 2875, - "roi_type": "vehicle", - "type": { - "confidence": 0.5599343776702881, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 114, - "x": 146, - "y": 96 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9648703336715698, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3375055193901062, - "x_min": 0.18740473687648773, - "y_max": 0.5995768308639526, - "y_min": 0.20673570036888123 - }, - "confidence": 0.9998914003372192, - "label": "vehicle", - "label_id": 2 - }, - "h": 170, - "id": 12, - "region_id": 2876, - "roi_type": "vehicle", - "type": { - "confidence": 0.6556660532951355, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 115, - "x": 144, - "y": 89 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8755231499671936, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3318176567554474, - "x_min": 0.17809423804283142, - "y_max": 0.5778812617063522, - "y_min": 0.19000546634197235 - }, - "confidence": 0.9998241066932678, - "label": "vehicle", - "label_id": 2 - }, - "h": 168, - "id": 12, - "region_id": 2877, - "roi_type": "vehicle", - "type": { - "confidence": 0.620614767074585, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 118, - "x": 137, - "y": 82 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.5343877077102661, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3320659399032593, - "x_min": 0.1678294688463211, - "y_max": 0.5662893801927567, - "y_min": 0.17552174627780914 - }, - "confidence": 0.9969955682754517, - "label": "vehicle", - "label_id": 2 - }, - "h": 169, - "id": 12, - "region_id": 2878, - "roi_type": "vehicle", - "type": { - "confidence": 0.5632005333900452, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 126, - "x": 129, - "y": 76 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7536901831626892, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.33100444078445435, - "x_min": 0.15877386927604675, - "y_max": 0.5364057421684265, - "y_min": 0.16238099336624146 - }, - "confidence": 0.99989914894104, - "label": "vehicle", - "label_id": 2 - }, - "h": 162, - "id": 12, - "region_id": 2879, - "roi_type": "vehicle", - "type": { - "confidence": 0.9606968760490417, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 132, - "x": 122, - "y": 70 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7409470081329346, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.32596272230148315, - "x_min": 0.1472930908203125, - "y_max": 0.5152767300605774, - "y_min": 0.15732121467590332 - }, - "confidence": 0.9999929666519165, - "label": "vehicle", - "label_id": 2 - }, - "h": 155, - "id": 12, - "region_id": 2880, - "roi_type": "vehicle", - "type": { - "confidence": 0.9005874991416931, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 137, - "x": 113, - "y": 68 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8630040884017944, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3235021233558655, - "x_min": 0.13618597388267517, - "y_max": 0.5010689496994019, - "y_min": 0.15680626034736633 - }, - "confidence": 0.999995231628418, - "label": "vehicle", - "label_id": 2 - }, - "h": 149, - "id": 12, - "region_id": 2881, - "roi_type": "vehicle", - "type": { - "confidence": 0.963317334651947, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 144, - "x": 105, - "y": 68 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.5177339315414429, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.31811434030532837, - "x_min": 0.12496490776538849, - "y_max": 0.48322823643684387, - "y_min": 0.1473962366580963 - }, - "confidence": 0.9999911785125732, - "label": "vehicle", - "label_id": 2 - }, - "h": 145, - "id": 12, - "region_id": 2882, - "roi_type": "vehicle", - "type": { - "confidence": 0.9834175705909729, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 148, - "x": 96, - "y": 64 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9002454876899719, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.31093723326921463, - "x_min": 0.10377121716737747, - "y_max": 0.46475063264369965, - "y_min": 0.14403758943080902 - }, - "confidence": 0.9999978542327881, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "id": 12, - "region_id": 2883, - "roi_type": "vehicle", - "type": { - "confidence": 0.979969322681427, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 159, - "x": 80, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.5329621434211731, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3060434088110924, - "x_min": 0.08956294506788254, - "y_max": 0.4555552154779434, - "y_min": 0.13558460772037506 - }, - "confidence": 0.9999889135360718, - "label": "vehicle", - "label_id": 2 - }, - "h": 138, - "id": 12, - "region_id": 2884, - "roi_type": "vehicle", - "type": { - "confidence": 0.6467808485031128, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 166, - "x": 69, - "y": 59 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8349910974502563, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.29430411010980606, - "x_min": 0.07462427765130997, - "y_max": 0.4425668269395828, - "y_min": 0.13647617399692535 - }, - "confidence": 0.9999735355377197, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "id": 12, - "region_id": 2885, - "roi_type": "vehicle", - "type": { - "confidence": 0.8573600649833679, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 169, - "x": 57, - "y": 59 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9079904556274414, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.28833314031362534, - "x_min": 0.06440760940313339, - "y_max": 0.42713563144207, - "y_min": 0.1353260725736618 - }, - "confidence": 0.9999496936798096, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "id": 12, - "region_id": 2886, - "roi_type": "vehicle", - "type": { - "confidence": 0.9182760715484619, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 172, - "x": 49, - "y": 58 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9153870940208435, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2806038334965706, - "x_min": 0.046518273651599884, - "y_max": 0.4131326228380203, - "y_min": 0.13239772617816925 - }, - "confidence": 0.9999241828918457, - "label": "vehicle", - "label_id": 2 - }, - "h": 121, - "id": 12, - "region_id": 2887, - "roi_type": "vehicle", - "type": { - "confidence": 0.9403806328773499, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 180, - "x": 36, - "y": 57 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9474499225616455, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.27025366574525833, - "x_min": 0.031960584223270416, - "y_max": 0.40551871061325073, - "y_min": 0.1313827633857727 - }, - "confidence": 0.9999902248382568, - "label": "vehicle", - "label_id": 2 - }, - "h": 118, - "id": 12, - "region_id": 2888, - "roi_type": "vehicle", - "type": { - "confidence": 0.9429293870925903, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 183, - "x": 25, - "y": 57 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9998084902763367, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2574407830834389, - "x_min": 0.018124915659427643, - "y_max": 0.39813748002052307, - "y_min": 0.12768623232841492 - }, - "confidence": 0.9999737739562988, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "id": 12, - "region_id": 2889, - "roi_type": "vehicle", - "type": { - "confidence": 0.8892050981521606, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 184, - "x": 14, - "y": 55 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999219179153442, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.24728650599718094, - "x_min": 0.004216648638248444, - "y_max": 0.39358004927635193, - "y_min": 0.12342569231987 - }, - "confidence": 0.9995150566101074, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "id": 12, - "region_id": 2890, - "roi_type": "vehicle", - "type": { - "confidence": 0.722600519657135, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 187, - "x": 3, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.994304358959198, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.23507950454950333, - "x_min": 0.0055961087346076965, - "y_max": 0.3909708857536316, - "y_min": 0.12340492010116577 - }, - "confidence": 0.9983311295509338, - "label": "vehicle", - "label_id": 2 - }, - "h": 116, - "id": 12, - "region_id": 2891, - "roi_type": "vehicle", - "type": { - "confidence": 0.9526728987693787, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 176, - "x": 4, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9984727501869202, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.22479692846536636, - "x_min": 0.0017654374241828918, - "y_max": 0.3854464143514633, - "y_min": 0.12457780539989471 - }, - "confidence": 0.9997487664222717, - "label": "vehicle", - "label_id": 2 - }, - "h": 113, - "id": 12, - "region_id": 2892, - "roi_type": "vehicle", - "type": { - "confidence": 0.962515115737915, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 171, - "x": 1, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9998278617858887, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.21433766931295395, - "x_min": 0.0017601177096366882, - "y_max": 0.37883228063583374, - "y_min": 0.1250355839729309 - }, - "confidence": 0.99918133020401, - "label": "vehicle", - "label_id": 2 - }, - "h": 110, - "id": 12, - "region_id": 2893, - "roi_type": "vehicle", - "type": { - "confidence": 0.9985003471374512, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 163, - "x": 1, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.999667763710022, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2030910775065422, - "x_min": 0.0008123144507408142, - "y_max": 0.37199288606643677, - "y_min": 0.12212663888931274 - }, - "confidence": 0.9997194409370422, - "label": "vehicle", - "label_id": 2 - }, - "h": 108, - "id": 12, - "region_id": 2894, - "roi_type": "vehicle", - "type": { - "confidence": 0.9995529055595398, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 155, - "x": 1, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999610185623169, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.18479623645544052, - "x_min": 0.0, - "y_max": 0.36851049214601517, - "y_min": 0.1222873404622078 - }, - "confidence": 0.9995477795600891, - "label": "vehicle", - "label_id": 2 - }, - "h": 106, - "id": 12, - "region_id": 2895, - "roi_type": "vehicle", - "type": { - "confidence": 0.9995977282524109, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 142, - "x": 0, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9997596144676208, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.1737116277217865, - "x_min": 0.0, - "y_max": 0.36372971534729004, - "y_min": 0.11915415525436401 - }, - "confidence": 0.9950657486915588, - "label": "vehicle", - "label_id": 2 - }, - "h": 106, - "id": 12, - "region_id": 2896, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999232292175293, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 133, - "x": 0, - "y": 51 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999818801879883, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.16038884222507477, - "x_min": 0.0, - "y_max": 0.3588944375514984, - "y_min": 0.1205725371837616 - }, - "confidence": 0.9822043776512146, - "label": "vehicle", - "label_id": 2 - }, - "h": 103, - "id": 12, - "region_id": 2897, - "roi_type": "vehicle", - "type": { - "confidence": 0.999942421913147, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 123, - "x": 0, - "y": 52 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999450445175171, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.14810673147439957, - "x_min": 0.0, - "y_max": 0.35652363300323486, - "y_min": 0.12085320055484772 - }, - "confidence": 0.9530179500579834, - "label": "vehicle", - "label_id": 2 - }, - "h": 102, - "id": 12, - "region_id": 2898, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998893737792969, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 114, - "x": 0, - "y": 52 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9992677569389343, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.13574014604091644, - "x_min": 0.0, - "y_max": 0.3567160964012146, - "y_min": 0.12330564856529236 - }, - "confidence": 0.7856730818748474, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "id": 12, - "region_id": 2899, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998465776443481, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 104, - "x": 0, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9976156949996948, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.11242122203111649, - "x_min": 0.0019209012389183044, - "y_max": 0.35550349950790405, - "y_min": 0.1260470598936081 - }, - "confidence": 0.6798886060714722, - "label": "vehicle", - "label_id": 2 - }, - "h": 99, - "id": 12, - "region_id": 2900, - "roi_type": "vehicle", - "type": { - "confidence": 0.9904062151908875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 85, - "x": 1, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9454761147499084, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.09885160624980927, - "x_min": 0.003643341362476349, - "y_max": 0.358278751373291, - "y_min": 0.1264287382364273 - }, - "confidence": 0.7773323655128479, - "label": "vehicle", - "label_id": 2 - }, - "h": 100, - "id": 12, - "region_id": 2901, - "roi_type": "vehicle", - "type": { - "confidence": 0.9880791306495667, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 73, - "x": 3, - "y": 55 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.39773839712142944, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.0878419578075409, - "x_min": 0.0017804354429244995, - "y_max": 0.3632156252861023, - "y_min": 0.12948653101921082 - }, - "confidence": 0.6258467435836792, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "id": 12, - "region_id": 2902, - "roi_type": "vehicle", - "type": { - "confidence": 0.9339539408683777, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 66, - "x": 1, - "y": 56 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9392625093460083, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.07318701222538948, - "x_min": 0.004130352288484573, - "y_max": 0.3511764109134674, - "y_min": 0.14347276091575623 - }, - "confidence": 0.6314224004745483, - "label": "vehicle", - "label_id": 2 - }, - "h": 90, - "id": 12, - "region_id": 2903, - "roi_type": "vehicle", - "type": { - "confidence": 0.591683566570282, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 53, - "x": 3, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9517311453819275, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.06266952119767666, - "x_min": 0.0, - "y_max": 0.34957605600357056, - "y_min": 0.14383465051651 - }, - "confidence": 0.6896519064903259, - "label": "vehicle", - "label_id": 2 - }, - "h": 89, - "id": 12, - "region_id": 2904, - "roi_type": "vehicle", - "type": { - "confidence": 0.8126508593559265, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 48, - "x": 0, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7189172506332397, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.04970441199839115, - "x_min": 0.0, - "y_max": 0.34233343601226807, - "y_min": 0.14351695775985718 - }, - "confidence": 0.6430801749229431, - "label": "vehicle", - "label_id": 2 - }, - "h": 86, - "id": 12, - "region_id": 2905, - "roi_type": "vehicle", - "type": { - "confidence": 0.9153555035591125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 38, - "x": 0, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49250000000 - } - ] -} \ No newline at end of file diff --git a/tests/test_cases/pipeline_execution/cpu/webcam/object_detection_type_webcam_gstreamer.json b/tests/test_cases/pipeline_execution/cpu/webcam/object_detection_type_webcam_gstreamer.json deleted file mode 100644 index aad5d4d..0000000 --- a/tests/test_cases/pipeline_execution/cpu/webcam/object_detection_type_webcam_gstreamer.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "options": {}, - "test_file": "pipeline_execution", - "pipeline": { - "name": "object_detection", - "version": "person_vehicle_bike" - }, - "request": { - "source": { - "device": "/dev/video0", - "type": "webcam" - }, - "destination": { - "type": "file", - "path": "/tmp/object_detection_webcam_results.json", - "format": "json" - }, - "parameters": { - "detection-device": "CPU" - } - }, - "golden_results": false, - "abort": { - "delay": 30 - } -} \ No newline at end of file diff --git a/tests/test_cases/pipeline_execution/gpu/object_classification_cpu_gpu_gstreamer.json b/tests/test_cases/pipeline_execution/gpu/object_classification_cpu_gpu_gstreamer.json deleted file mode 100644 index 945a6de..0000000 --- a/tests/test_cases/pipeline_execution/gpu/object_classification_cpu_gpu_gstreamer.json +++ /dev/null @@ -1,9890 +0,0 @@ -{ - "options": {}, - "pipeline": { - "name": "object_classification", - "version": "vehicle_attributes" - }, - "request": { - "source": { - "type": "uri", - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4" - }, - "destination": { - "type": "file", - "path": "/tmp/object_classification_results.json", - "format": "json-lines" - }, - "parameters": { - "detection-properties": { - "device": "MULTI:CPU,GPU", - "model-instance-id": "detection_object_classification_cpu_gpu_gstreamer" - }, - "classification-properties": { - "device": "GPU", - "model-instance-id": "classification_object_classification_cpu_gpu_gstreamer" - } - } - }, - "golden_results": false, - "result": [ - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7448930740356445, - "x_min": 0.6734142303466797, - "y_max": 0.9991217851638794, - "y_min": 0.8781062364578247 - }, - "confidence": 0.5387544631958008, - "label": "person", - "label_id": 1 - }, - "h": 52, - "region_id": 16812, - "roi_type": "person", - "w": 55, - "x": 517, - "y": 379 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7440981268882751, - "x_min": 0.6758646368980408, - "y_max": 1.0, - "y_min": 0.827924907207489 - }, - "confidence": 0.54345703125, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 16813, - "roi_type": "person", - "w": 52, - "x": 519, - "y": 358 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7466071248054504, - "x_min": 0.6823329329490662, - "y_max": 1.0, - "y_min": 0.8108165264129639 - }, - "confidence": 0.66796875, - "label": "person", - "label_id": 1 - }, - "h": 82, - "region_id": 16814, - "roi_type": "person", - "w": 49, - "x": 524, - "y": 350 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7479705214500427, - "x_min": 0.6836908459663391, - "y_max": 1.0, - "y_min": 0.7869881391525269 - }, - "confidence": 0.88037109375, - "label": "person", - "label_id": 1 - }, - "h": 92, - "region_id": 16815, - "roi_type": "person", - "w": 49, - "x": 525, - "y": 340 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7502939701080322, - "x_min": 0.6836953163146973, - "y_max": 0.9966092705726624, - "y_min": 0.7710259556770325 - }, - "confidence": 0.9255195260047913, - "label": "person", - "label_id": 1 - }, - "h": 97, - "region_id": 16816, - "roi_type": "person", - "w": 51, - "x": 525, - "y": 333 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7552652359008789, - "x_min": 0.6827793121337891, - "y_max": 0.9931315779685974, - "y_min": 0.7555018067359924 - }, - "confidence": 0.9248046875, - "label": "person", - "label_id": 1 - }, - "h": 103, - "region_id": 16818, - "roi_type": "person", - "w": 56, - "x": 524, - "y": 326 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7565565705299377, - "x_min": 0.6830658316612244, - "y_max": 0.9888202548027039, - "y_min": 0.7450335621833801 - }, - "confidence": 0.94921875, - "label": "person", - "label_id": 1 - }, - "h": 105, - "region_id": 16819, - "roi_type": "person", - "w": 56, - "x": 525, - "y": 322 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7581809759140015, - "x_min": 0.6870932579040527, - "y_max": 0.9743094444274902, - "y_min": 0.723680853843689 - }, - "confidence": 0.9560546875, - "label": "person", - "label_id": 1 - }, - "h": 108, - "region_id": 16820, - "roi_type": "person", - "w": 55, - "x": 528, - "y": 313 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7575687766075134, - "x_min": 0.6909058690071106, - "y_max": 0.9489275217056274, - "y_min": 0.7130314111709595 - }, - "confidence": 0.87158203125, - "label": "person", - "label_id": 1 - }, - "h": 102, - "region_id": 16821, - "roi_type": "person", - "w": 51, - "x": 531, - "y": 308 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7562362551689148, - "x_min": 0.6947165131568909, - "y_max": 0.8969943523406982, - "y_min": 0.702964186668396 - }, - "confidence": 0.8926553130149841, - "label": "person", - "label_id": 1 - }, - "h": 84, - "region_id": 16823, - "roi_type": "person", - "w": 47, - "x": 534, - "y": 304 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7573454976081848, - "x_min": 0.6979058384895325, - "y_max": 0.8756023645401001, - "y_min": 0.6885020732879639 - }, - "confidence": 0.8759765625, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 16822, - "roi_type": "person", - "w": 46, - "x": 536, - "y": 297 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.763081967830658, - "x_min": 0.6965207457542419, - "y_max": 0.9013386964797974, - "y_min": 0.6667746305465698 - }, - "confidence": 0.697265625, - "label": "person", - "label_id": 1 - }, - "h": 101, - "region_id": 16824, - "roi_type": "person", - "w": 51, - "x": 535, - "y": 288 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7638378739356995, - "x_min": 0.6945894360542297, - "y_max": 0.897483229637146, - "y_min": 0.6505343914031982 - }, - "confidence": 0.7373046875, - "label": "person", - "label_id": 1 - }, - "h": 107, - "region_id": 16825, - "roi_type": "person", - "w": 53, - "x": 533, - "y": 281 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7640742063522339, - "x_min": 0.7027362585067749, - "y_max": 0.8511595726013184, - "y_min": 0.6484842300415039 - }, - "confidence": 0.6669921875, - "label": "person", - "label_id": 1 - }, - "h": 88, - "region_id": 16826, - "roi_type": "person", - "w": 47, - "x": 540, - "y": 280 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7668865323066711, - "x_min": 0.7063930630683899, - "y_max": 0.830226719379425, - "y_min": 0.629843533039093 - }, - "confidence": 0.927734375, - "label": "person", - "label_id": 1 - }, - "h": 87, - "region_id": 16827, - "roi_type": "person", - "w": 46, - "x": 543, - "y": 272 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7725338339805603, - "x_min": 0.709821879863739, - "y_max": 0.8254443407058716, - "y_min": 0.617332935333252 - }, - "confidence": 0.6890801787376404, - "label": "person", - "label_id": 1 - }, - "h": 90, - "region_id": 16828, - "roi_type": "person", - "w": 48, - "x": 545, - "y": 267 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7740265727043152, - "x_min": 0.7090769410133362, - "y_max": 0.82144695520401, - "y_min": 0.6101848483085632 - }, - "confidence": 0.75, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 16829, - "roi_type": "person", - "w": 50, - "x": 545, - "y": 264 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7839611768722534, - "x_min": 0.7255430221557617, - "y_max": 0.758783221244812, - "y_min": 0.5557914972305298 - }, - "confidence": 0.70278400182724, - "label": "person", - "label_id": 1 - }, - "h": 88, - "region_id": 16830, - "roi_type": "person", - "w": 45, - "x": 557, - "y": 240 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.78947514295578, - "x_min": 0.7327013611793518, - "y_max": 0.7261707782745361, - "y_min": 0.5484710931777954 - }, - "confidence": 0.97509765625, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 16831, - "roi_type": "person", - "w": 44, - "x": 563, - "y": 237 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7890066504478455, - "x_min": 0.7377496361732483, - "y_max": 0.7029215097427368, - "y_min": 0.5400267839431763 - }, - "confidence": 0.84326171875, - "label": "person", - "label_id": 1 - }, - "h": 70, - "region_id": 16832, - "roi_type": "person", - "w": 39, - "x": 567, - "y": 233 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7952556610107422, - "x_min": 0.7402281761169434, - "y_max": 0.6923619508743286, - "y_min": 0.5218515396118164 - }, - "confidence": 0.76513671875, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 16833, - "roi_type": "person", - "w": 42, - "x": 568, - "y": 225 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8006601333618164, - "x_min": 0.7462418079376221, - "y_max": 0.6883482336997986, - "y_min": 0.5218518376350403 - }, - "confidence": 0.87890625, - "label": "person", - "label_id": 1 - }, - "h": 72, - "region_id": 16834, - "roi_type": "person", - "w": 42, - "x": 573, - "y": 225 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8097917437553406, - "x_min": 0.7457413077354431, - "y_max": 0.7030258178710938, - "y_min": 0.5026557445526123 - }, - "confidence": 0.9100750684738159, - "label": "person", - "label_id": 1 - }, - "h": 87, - "region_id": 16835, - "roi_type": "person", - "w": 49, - "x": 573, - "y": 217 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8130742311477661, - "x_min": 0.7562228441238403, - "y_max": 0.6840891242027283, - "y_min": 0.49621087312698364 - }, - "confidence": 0.91357421875, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 16836, - "roi_type": "person", - "w": 44, - "x": 581, - "y": 214 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8229447603225708, - "x_min": 0.763748288154602, - "y_max": 0.6856093406677246, - "y_min": 0.4886976480484009 - }, - "confidence": 0.833984375, - "label": "person", - "label_id": 1 - }, - "h": 85, - "region_id": 16841, - "roi_type": "person", - "w": 45, - "x": 587, - "y": 211 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8231713771820068, - "x_min": 0.7604347467422485, - "y_max": 0.6921271681785583, - "y_min": 0.4757062494754791 - }, - "confidence": 0.68359375, - "label": "person", - "label_id": 1 - }, - "h": 93, - "region_id": 16842, - "roi_type": "person", - "w": 48, - "x": 584, - "y": 206 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8320498466491699, - "x_min": 0.7603206634521484, - "y_max": 0.6944458484649658, - "y_min": 0.46570658683776855 - }, - "confidence": 0.59033203125, - "label": "person", - "label_id": 1 - }, - "h": 99, - "region_id": 16843, - "roi_type": "person", - "w": 55, - "x": 584, - "y": 201 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8428041338920593, - "x_min": 0.7936063408851624, - "y_max": 0.6421533823013306, - "y_min": 0.43810799717903137 - }, - "confidence": 0.9658203125, - "label": "person", - "label_id": 1 - }, - "h": 88, - "region_id": 16844, - "roi_type": "person", - "w": 38, - "x": 609, - "y": 189 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8495814800262451, - "x_min": 0.7967391014099121, - "y_max": 0.6154407858848572, - "y_min": 0.44311457872390747 - }, - "confidence": 0.88671875, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 16847, - "roi_type": "person", - "w": 41, - "x": 612, - "y": 191 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8531036972999573, - "x_min": 0.8009379506111145, - "y_max": 0.605356752872467, - "y_min": 0.42972689867019653 - }, - "confidence": 0.90478515625, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 16849, - "roi_type": "person", - "w": 40, - "x": 615, - "y": 186 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8602517247200012, - "x_min": 0.8060665726661682, - "y_max": 0.5925722122192383, - "y_min": 0.4272420406341553 - }, - "confidence": 0.802734375, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 16851, - "roi_type": "person", - "w": 42, - "x": 619, - "y": 185 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8663100600242615, - "x_min": 0.8106012940406799, - "y_max": 0.5942395925521851, - "y_min": 0.4208495616912842 - }, - "confidence": 0.7701317667961121, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 16852, - "roi_type": "person", - "w": 43, - "x": 623, - "y": 182 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8742167353630066, - "x_min": 0.817884624004364, - "y_max": 0.5900445580482483, - "y_min": 0.4136499762535095 - }, - "confidence": 0.95703125, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 16854, - "roi_type": "person", - "w": 43, - "x": 628, - "y": 179 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8853930830955505, - "x_min": 0.826438844203949, - "y_max": 0.586012601852417, - "y_min": 0.40271833539009094 - }, - "confidence": 0.8271484375, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 16855, - "roi_type": "person", - "w": 45, - "x": 635, - "y": 174 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8913269639015198, - "x_min": 0.834475576877594, - "y_max": 0.5893236994743347, - "y_min": 0.3930070996284485 - }, - "confidence": 0.7890625, - "label": "person", - "label_id": 1 - }, - "h": 85, - "region_id": 16856, - "roi_type": "person", - "w": 44, - "x": 641, - "y": 170 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9005622863769531, - "x_min": 0.8355872631072998, - "y_max": 0.587836503982544, - "y_min": 0.3939674496650696 - }, - "confidence": 0.65576171875, - "label": "person", - "label_id": 1 - }, - "h": 84, - "region_id": 16857, - "roi_type": "person", - "w": 50, - "x": 642, - "y": 170 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9087395668029785, - "x_min": 0.8530853986740112, - "y_max": 0.5614248514175415, - "y_min": 0.3760519027709961 - }, - "confidence": 0.62646484375, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 16858, - "roi_type": "person", - "w": 43, - "x": 655, - "y": 162 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9123356938362122, - "x_min": 0.8665536046028137, - "y_max": 0.5443816184997559, - "y_min": 0.3672276437282562 - }, - "confidence": 0.8828125, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 16859, - "roi_type": "person", - "w": 35, - "x": 666, - "y": 159 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9202427864074707, - "x_min": 0.8713085651397705, - "y_max": 0.5296249389648438, - "y_min": 0.3523065745830536 - }, - "confidence": 0.97705078125, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 16860, - "roi_type": "person", - "w": 38, - "x": 669, - "y": 152 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.922400176525116, - "x_min": 0.8775333762168884, - "y_max": 0.5219058990478516, - "y_min": 0.3506132662296295 - }, - "confidence": 0.9284948110580444, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 16861, - "roi_type": "person", - "w": 34, - "x": 674, - "y": 151 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9280626177787781, - "x_min": 0.872081458568573, - "y_max": 0.5193465352058411, - "y_min": 0.34443533420562744 - }, - "confidence": 0.7626953125, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 16862, - "roi_type": "person", - "w": 43, - "x": 670, - "y": 149 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9372737407684326, - "x_min": 0.8854783773422241, - "y_max": 0.5109970569610596, - "y_min": 0.34280145168304443 - }, - "confidence": 0.95166015625, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 16863, - "roi_type": "person", - "w": 40, - "x": 680, - "y": 148 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9448143243789673, - "x_min": 0.8897277116775513, - "y_max": 0.5036752820014954, - "y_min": 0.3363150954246521 - }, - "confidence": 0.9072265625, - "label": "person", - "label_id": 1 - }, - "h": 72, - "region_id": 16864, - "roi_type": "person", - "w": 42, - "x": 683, - "y": 145 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9548877477645874, - "x_min": 0.8982136249542236, - "y_max": 0.5104914307594299, - "y_min": 0.3243568241596222 - }, - "confidence": 0.771484375, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 16865, - "roi_type": "person", - "w": 44, - "x": 690, - "y": 140 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9616128206253052, - "x_min": 0.9061390161514282, - "y_max": 0.5176489949226379, - "y_min": 0.32653361558914185 - }, - "confidence": 0.7768658995628357, - "label": "person", - "label_id": 1 - }, - "h": 83, - "region_id": 16866, - "roi_type": "person", - "w": 43, - "x": 696, - "y": 141 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9738823771476746, - "x_min": 0.9143497347831726, - "y_max": 0.49129024147987366, - "y_min": 0.31767210364341736 - }, - "confidence": 0.7880859375, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 16867, - "roi_type": "person", - "w": 46, - "x": 702, - "y": 137 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9758822321891785, - "x_min": 0.9256947636604309, - "y_max": 0.4858596622943878, - "y_min": 0.30410680174827576 - }, - "confidence": 0.72509765625, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 16868, - "roi_type": "person", - "w": 39, - "x": 711, - "y": 131 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9818166494369507, - "x_min": 0.9285910129547119, - "y_max": 0.4778532385826111, - "y_min": 0.2946529984474182 - }, - "confidence": 0.8337421417236328, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 16869, - "roi_type": "person", - "w": 41, - "x": 713, - "y": 127 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9829116463661194, - "x_min": 0.9320533871650696, - "y_max": 0.4618929624557495, - "y_min": 0.2908490300178528 - }, - "confidence": 0.9697265625, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 16870, - "roi_type": "person", - "w": 39, - "x": 716, - "y": 126 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.985581636428833, - "x_min": 0.9315074682235718, - "y_max": 0.4598333239555359, - "y_min": 0.28892290592193604 - }, - "confidence": 0.681640625, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 16871, - "roi_type": "person", - "w": 42, - "x": 715, - "y": 125 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9978788495063782, - "x_min": 0.9291815161705017, - "y_max": 0.4698169529438019, - "y_min": 0.2596692740917206 - }, - "confidence": 0.5927734375, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 16872, - "roi_type": "person", - "w": 53, - "x": 714, - "y": 112 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9965602159500122, - "x_min": 0.9486868381500244, - "y_max": 0.44712570309638977, - "y_min": 0.2673933207988739 - }, - "confidence": 0.55322265625, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 16873, - "roi_type": "person", - "w": 37, - "x": 729, - "y": 116 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.703125, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.11995124816894531, - "y_max": 0.9913916289806366, - "y_min": 0.016854017972946167 - }, - "confidence": 0.62158203125, - "label": "vehicle", - "label_id": 2 - }, - "h": 421, - "region_id": 16874, - "roi_type": "vehicle", - "type": { - "confidence": 0.97705078125, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 676, - "x": 92, - "y": 7 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 13916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34788548946380615, - "x_min": 0.12067420780658722, - "y_max": 1.0, - "y_min": 0.8388429880142212 - }, - "confidence": 0.59814453125, - "label": "vehicle", - "label_id": 2 - }, - "h": 70, - "region_id": 16875, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 174, - "x": 93, - "y": 362 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3533565625548363, - "x_min": 0.12123485654592514, - "y_max": 1.0, - "y_min": 0.8090957999229431 - }, - "confidence": 0.71826171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 82, - "region_id": 16876, - "roi_type": "vehicle", - "type": { - "confidence": 0.98193359375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 178, - "x": 93, - "y": 350 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35722535848617554, - "x_min": 0.12032529711723328, - "y_max": 0.9970874786376953, - "y_min": 0.7843096256256104 - }, - "confidence": 0.80517578125, - "label": "vehicle", - "label_id": 2 - }, - "h": 92, - "region_id": 16877, - "roi_type": "vehicle", - "type": { - "confidence": 0.75390625, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 182, - "x": 92, - "y": 339 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35971733182668686, - "x_min": 0.11328639835119247, - "y_max": 0.9965744614601135, - "y_min": 0.7635470032691956 - }, - "confidence": 0.79931640625, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "region_id": 16878, - "roi_type": "vehicle", - "type": { - "confidence": 0.9931640625, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 189, - "x": 87, - "y": 330 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3695388734340668, - "x_min": 0.11450856924057007, - "y_max": 1.0, - "y_min": 0.727990984916687 - }, - "confidence": 0.7165289521217346, - "label": "vehicle", - "label_id": 2 - }, - "h": 118, - "region_id": 16879, - "roi_type": "vehicle", - "type": { - "confidence": 0.658203125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 196, - "x": 88, - "y": 314 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9990234375, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36841410398483276, - "x_min": 0.10085779428482056, - "y_max": 0.996000349521637, - "y_min": 0.7033589482307434 - }, - "confidence": 0.84619140625, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 16880, - "roi_type": "vehicle", - "type": { - "confidence": 0.8291015625, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 205, - "x": 77, - "y": 304 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9990234375, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.37700408697128296, - "x_min": 0.10724449157714844, - "y_max": 0.9995347261428833, - "y_min": 0.6776673793792725 - }, - "confidence": 0.92333984375, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "region_id": 16881, - "roi_type": "vehicle", - "type": { - "confidence": 0.99609375, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 207, - "x": 82, - "y": 293 - }, - { - "color": { - "confidence": 0.5615234375, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.12240788340568542, - "y_max": 0.9747185707092285, - "y_min": 0.03273570537567139 - }, - "confidence": 0.63232421875, - "label": "vehicle", - "label_id": 2 - }, - "h": 407, - "region_id": 16882, - "roi_type": "vehicle", - "type": { - "confidence": 0.947265625, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 674, - "x": 94, - "y": 14 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.998046875, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3794129192829132, - "x_min": 0.10572710633277893, - "y_max": 1.0, - "y_min": 0.6497832536697388 - }, - "confidence": 0.955078125, - "label": "vehicle", - "label_id": 2 - }, - "h": 151, - "region_id": 16883, - "roi_type": "vehicle", - "type": { - "confidence": 0.9931640625, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 210, - "x": 81, - "y": 281 - }, - { - "color": { - "confidence": 0.64111328125, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.12235894799232483, - "y_max": 0.9642861187458038, - "y_min": 0.03327503800392151 - }, - "confidence": 0.63671875, - "label": "vehicle", - "label_id": 2 - }, - "h": 402, - "region_id": 16884, - "roi_type": "vehicle", - "type": { - "confidence": 0.9931640625, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 674, - "x": 94, - "y": 14 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.37893153727054596, - "x_min": 0.10524572432041168, - "y_max": 1.0, - "y_min": 0.6315947771072388 - }, - "confidence": 0.990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 159, - "region_id": 16885, - "roi_type": "vehicle", - "type": { - "confidence": 0.998046875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 210, - "x": 81, - "y": 273 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.37914177775382996, - "x_min": 0.11980330944061279, - "y_max": 0.9996591806411743, - "y_min": 0.6098692417144775 - }, - "confidence": 0.9946527481079102, - "label": "vehicle", - "label_id": 2 - }, - "h": 168, - "region_id": 16886, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 199, - "x": 92, - "y": 263 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.37611158192157745, - "x_min": 0.11804629862308502, - "y_max": 0.9963674545288086, - "y_min": 0.585686445236206 - }, - "confidence": 0.9951171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 177, - "region_id": 16887, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 198, - "x": 91, - "y": 253 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3770822137594223, - "x_min": 0.11729799211025238, - "y_max": 0.99732905626297, - "y_min": 0.5627850890159607 - }, - "confidence": 0.98828125, - "label": "vehicle", - "label_id": 2 - }, - "h": 188, - "region_id": 16888, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 200, - "x": 90, - "y": 243 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3729642927646637, - "x_min": 0.1085742712020874, - "y_max": 1.0, - "y_min": 0.5397972464561462 - }, - "confidence": 0.97802734375, - "label": "vehicle", - "label_id": 2 - }, - "h": 199, - "region_id": 16889, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 203, - "x": 83, - "y": 233 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3656986355781555, - "x_min": 0.13279204070568085, - "y_max": 1.0, - "y_min": 0.5242156386375427 - }, - "confidence": 0.97900390625, - "label": "vehicle", - "label_id": 2 - }, - "h": 206, - "region_id": 16890, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 179, - "x": 102, - "y": 226 - }, - { - "color": { - "confidence": 0.4248046875, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9005439579486847, - "x_min": 0.0947130024433136, - "y_max": 0.6981552839279175, - "y_min": 0.05118680000305176 - }, - "confidence": 0.53125, - "label": "vehicle", - "label_id": 2 - }, - "h": 279, - "region_id": 16891, - "roi_type": "vehicle", - "type": { - "confidence": 0.79931640625, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 619, - "x": 73, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36345532536506653, - "x_min": 0.13489332795143127, - "y_max": 1.0, - "y_min": 0.5042465925216675 - }, - "confidence": 0.9919055700302124, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "region_id": 16892, - "roi_type": "vehicle", - "type": { - "confidence": 0.9951171875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 176, - "x": 104, - "y": 218 - }, - { - "color": { - "confidence": 0.568359375, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9608015418052673, - "x_min": 0.14314371347427368, - "y_max": 0.8043158948421478, - "y_min": 0.04707178473472595 - }, - "confidence": 0.6519930958747864, - "label": "vehicle", - "label_id": 2 - }, - "h": 327, - "region_id": 16893, - "roi_type": "vehicle", - "type": { - "confidence": 0.98291015625, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 628, - "x": 110, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35492169857025146, - "x_min": 0.14194001257419586, - "y_max": 0.9911630153656006, - "y_min": 0.4964284896850586 - }, - "confidence": 0.99609375, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "region_id": 16894, - "roi_type": "vehicle", - "type": { - "confidence": 0.986328125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 164, - "x": 109, - "y": 214 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3554447889328003, - "x_min": 0.1485300064086914, - "y_max": 0.9996136724948883, - "y_min": 0.47489133477211 - }, - "confidence": 0.998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 227, - "region_id": 16895, - "roi_type": "vehicle", - "type": { - "confidence": 0.98095703125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 159, - "x": 114, - "y": 205 - }, - { - "color": { - "confidence": 0.6923828125, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9596475064754486, - "x_min": 0.3637692630290985, - "y_max": 0.9144225120544434, - "y_min": 0.03580266237258911 - }, - "confidence": 0.50537109375, - "label": "vehicle", - "label_id": 2 - }, - "h": 380, - "region_id": 16896, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 458, - "x": 279, - "y": 15 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3561684787273407, - "x_min": 0.1538877785205841, - "y_max": 0.9828415811061859, - "y_min": 0.45157262682914734 - }, - "confidence": 0.9951171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 230, - "region_id": 16897, - "roi_type": "vehicle", - "type": { - "confidence": 0.998046875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 155, - "x": 118, - "y": 195 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34915268421173096, - "x_min": 0.1601976752281189, - "y_max": 0.9477139413356781, - "y_min": 0.43223318457603455 - }, - "confidence": 0.9970703125, - "label": "vehicle", - "label_id": 2 - }, - "h": 223, - "region_id": 16898, - "roi_type": "vehicle", - "type": { - "confidence": 0.984375, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 145, - "x": 123, - "y": 187 - }, - { - "color": { - "confidence": 0.517578125, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9622732400894165, - "x_min": 0.3467036485671997, - "y_max": 0.7548135221004486, - "y_min": 0.06216701865196228 - }, - "confidence": 0.76416015625, - "label": "vehicle", - "label_id": 2 - }, - "h": 299, - "region_id": 16899, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 473, - "x": 266, - "y": 27 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3446933329105377, - "x_min": 0.1624445617198944, - "y_max": 0.935651034116745, - "y_min": 0.4222993552684784 - }, - "confidence": 0.9976456761360168, - "label": "vehicle", - "label_id": 2 - }, - "h": 222, - "region_id": 16902, - "roi_type": "vehicle", - "type": { - "confidence": 0.966796875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 140, - "x": 125, - "y": 182 - }, - { - "color": { - "confidence": 0.56787109375, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9823545217514038, - "x_min": 0.34112024307250977, - "y_max": 0.9226720929145813, - "y_min": 0.04906374216079712 - }, - "confidence": 0.5811396837234497, - "label": "vehicle", - "label_id": 2 - }, - "h": 377, - "region_id": 16903, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 492, - "x": 262, - "y": 21 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3391859233379364, - "x_min": 0.1647346317768097, - "y_max": 0.9072514772415161, - "y_min": 0.4021332263946533 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 218, - "region_id": 16900, - "roi_type": "vehicle", - "type": { - "confidence": 0.75244140625, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 134, - "x": 127, - "y": 174 - }, - { - "color": { - "confidence": 0.432373046875, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9653114080429077, - "x_min": 0.3195772171020508, - "y_max": 0.9068852961063385, - "y_min": 0.05095675587654114 - }, - "confidence": 0.56103515625, - "label": "vehicle", - "label_id": 2 - }, - "h": 370, - "region_id": 16901, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 496, - "x": 245, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3360394239425659, - "x_min": 0.164894700050354, - "y_max": 0.8810743093490601, - "y_min": 0.38855671882629395 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "region_id": 16904, - "roi_type": "vehicle", - "type": { - "confidence": 0.8857421875, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 131, - "x": 127, - "y": 168 - }, - { - "color": { - "confidence": 0.38818359375, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9583485126495361, - "x_min": 0.3183259963989258, - "y_max": 0.836863249540329, - "y_min": 0.07228550314903259 - }, - "confidence": 0.6611328125, - "label": "vehicle", - "label_id": 2 - }, - "h": 330, - "region_id": 16905, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 492, - "x": 244, - "y": 31 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.33219119906425476, - "x_min": 0.16244429349899292, - "y_max": 0.859308660030365, - "y_min": 0.3722662329673767 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 210, - "region_id": 16906, - "roi_type": "vehicle", - "type": { - "confidence": 0.98388671875, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 130, - "x": 125, - "y": 161 - }, - { - "color": { - "confidence": 0.43359375, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.96105095744133, - "x_min": 0.31634053587913513, - "y_max": 0.9130281805992126, - "y_min": 0.06904906034469604 - }, - "confidence": 0.6064453125, - "label": "vehicle", - "label_id": 2 - }, - "h": 365, - "region_id": 16907, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 495, - "x": 243, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.33003008365631104, - "x_min": 0.16216199100017548, - "y_max": 0.8308836817741394, - "y_min": 0.35496407747268677 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 206, - "region_id": 16908, - "roi_type": "vehicle", - "type": { - "confidence": 0.98828125, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 129, - "x": 125, - "y": 153 - }, - { - "color": { - "confidence": 0.623046875, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9567078053951263, - "x_min": 0.3253123462200165, - "y_max": 0.8802770972251892, - "y_min": 0.0708383321762085 - }, - "confidence": 0.6923828125, - "label": "vehicle", - "label_id": 2 - }, - "h": 350, - "region_id": 16909, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 485, - "x": 250, - "y": 31 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3288085162639618, - "x_min": 0.157329261302948, - "y_max": 0.8057076930999756, - "y_min": 0.3446691036224365 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 199, - "region_id": 16910, - "roi_type": "vehicle", - "type": { - "confidence": 0.9873046875, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 132, - "x": 121, - "y": 149 - }, - { - "color": { - "confidence": 0.365234375, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.963686466217041, - "x_min": 0.3247877359390259, - "y_max": 0.8278923332691193, - "y_min": 0.052186518907547 - }, - "confidence": 0.75537109375, - "label": "vehicle", - "label_id": 2 - }, - "h": 335, - "region_id": 16911, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 491, - "x": 249, - "y": 23 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.32748177647590637, - "x_min": 0.15211617946624756, - "y_max": 0.7837777733802795, - "y_min": 0.32704442739486694 - }, - "confidence": 0.9998403787612915, - "label": "vehicle", - "label_id": 2 - }, - "h": 197, - "region_id": 16912, - "roi_type": "vehicle", - "type": { - "confidence": 0.9658203125, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 135, - "x": 117, - "y": 141 - }, - { - "color": { - "confidence": 0.41357421875, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9623179137706757, - "x_min": 0.34200069308280945, - "y_max": 0.8727826476097107, - "y_min": 0.04037773609161377 - }, - "confidence": 0.5788889527320862, - "label": "vehicle", - "label_id": 2 - }, - "h": 360, - "region_id": 16913, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 476, - "x": 263, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.32326173782348633, - "x_min": 0.1429257094860077, - "y_max": 0.7730258703231812, - "y_min": 0.31999945640563965 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 196, - "region_id": 16914, - "roi_type": "vehicle", - "type": { - "confidence": 0.9970703125, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 138, - "x": 110, - "y": 138 - }, - { - "color": { - "confidence": 0.4951171875, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9603236615657806, - "x_min": 0.343340128660202, - "y_max": 0.8690563440322876, - "y_min": 0.03262406587600708 - }, - "confidence": 0.6357421875, - "label": "vehicle", - "label_id": 2 - }, - "h": 361, - "region_id": 16915, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 474, - "x": 264, - "y": 14 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3207375407218933, - "x_min": 0.13676699995994568, - "y_max": 0.7576345205307007, - "y_min": 0.31319475173950195 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 192, - "region_id": 16916, - "roi_type": "vehicle", - "type": { - "confidence": 0.9921875, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 141, - "x": 105, - "y": 135 - }, - { - "color": { - "confidence": 0.393798828125, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9543446004390717, - "x_min": 0.3145720660686493, - "y_max": 0.8108518123626709, - "y_min": 0.03726363182067871 - }, - "confidence": 0.82177734375, - "label": "vehicle", - "label_id": 2 - }, - "h": 334, - "region_id": 16917, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 491, - "x": 242, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3170391619205475, - "x_min": 0.12877821922302246, - "y_max": 0.7354335188865662, - "y_min": 0.30213361978530884 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 187, - "region_id": 16918, - "roi_type": "vehicle", - "type": { - "confidence": 0.9052734375, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 145, - "x": 99, - "y": 131 - }, - { - "color": { - "confidence": 0.41064453125, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9484927356243134, - "x_min": 0.32739946246147156, - "y_max": 0.7967373430728912, - "y_min": 0.03275647759437561 - }, - "confidence": 0.89990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 330, - "region_id": 16919, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 477, - "x": 251, - "y": 14 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3141186833381653, - "x_min": 0.11657941341400146, - "y_max": 0.7233425378799438, - "y_min": 0.29008495807647705 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 187, - "region_id": 16920, - "roi_type": "vehicle", - "type": { - "confidence": 0.64892578125, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 152, - "x": 90, - "y": 125 - }, - { - "color": { - "confidence": 0.490478515625, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.962075799703598, - "x_min": 0.31081756949424744, - "y_max": 0.8074585795402527, - "y_min": 0.043179333209991455 - }, - "confidence": 0.77880859375, - "label": "vehicle", - "label_id": 2 - }, - "h": 330, - "region_id": 16921, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 500, - "x": 239, - "y": 19 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3112388625741005, - "x_min": 0.10588899999856949, - "y_max": 0.7094494104385376, - "y_min": 0.28367915749549866 - }, - "confidence": 0.9999858140945435, - "label": "vehicle", - "label_id": 2 - }, - "h": 184, - "region_id": 16922, - "roi_type": "vehicle", - "type": { - "confidence": 0.7021484375, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 158, - "x": 81, - "y": 123 - }, - { - "color": { - "confidence": 0.591796875, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.963831752538681, - "x_min": 0.32146915793418884, - "y_max": 0.8718832433223724, - "y_min": 0.040582865476608276 - }, - "confidence": 0.6439391374588013, - "label": "vehicle", - "label_id": 2 - }, - "h": 359, - "region_id": 16923, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 493, - "x": 247, - "y": 18 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.30724579095840454, - "x_min": 0.0889257937669754, - "y_max": 0.6935571432113647, - "y_min": 0.27660852670669556 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 180, - "region_id": 16924, - "roi_type": "vehicle", - "type": { - "confidence": 0.60791015625, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 168, - "x": 68, - "y": 119 - }, - { - "color": { - "confidence": 0.70703125, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9568454027175903, - "x_min": 0.3318895101547241, - "y_max": 0.8259652853012085, - "y_min": 0.046311259269714355 - }, - "confidence": 0.7607421875, - "label": "vehicle", - "label_id": 2 - }, - "h": 337, - "region_id": 16925, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 480, - "x": 255, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3021302595734596, - "x_min": 0.0818583145737648, - "y_max": 0.6737563610076904, - "y_min": 0.2771679162979126 - }, - "confidence": 0.9999843835830688, - "label": "vehicle", - "label_id": 2 - }, - "h": 171, - "region_id": 16928, - "roi_type": "vehicle", - "type": { - "confidence": 0.87744140625, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 169, - "x": 63, - "y": 120 - }, - { - "color": { - "confidence": 0.66650390625, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9660256803035736, - "x_min": 0.33882996439933777, - "y_max": 0.8530813753604889, - "y_min": 0.06719699501991272 - }, - "confidence": 0.5354732871055603, - "label": "vehicle", - "label_id": 2 - }, - "h": 340, - "region_id": 16929, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 482, - "x": 260, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2942311242222786, - "x_min": 0.07399673014879227, - "y_max": 0.6569262742996216, - "y_min": 0.27245113253593445 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 166, - "region_id": 16926, - "roi_type": "vehicle", - "type": { - "confidence": 0.9853515625, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 169, - "x": 57, - "y": 118 - }, - { - "color": { - "confidence": 0.69482421875, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9777919352054596, - "x_min": 0.34445157647132874, - "y_max": 0.848713606595993, - "y_min": 0.045572489500045776 - }, - "confidence": 0.69873046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 347, - "region_id": 16927, - "roi_type": "vehicle", - "type": { - "confidence": 0.99609375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 486, - "x": 265, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2884630039334297, - "x_min": 0.06656671315431595, - "y_max": 0.6484526991844177, - "y_min": 0.264728307723999 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 166, - "region_id": 16930, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 170, - "x": 51, - "y": 114 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2830882668495178, - "x_min": 0.054641202092170715, - "y_max": 0.6378852725028992, - "y_min": 0.2628006339073181 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 162, - "region_id": 16931, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 175, - "x": 42, - "y": 114 - }, - { - "color": { - "confidence": 0.5537109375, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9622345864772797, - "x_min": 0.35567352175712585, - "y_max": 0.7274520099163055, - "y_min": 0.06999191641807556 - }, - "confidence": 0.529296875, - "label": "vehicle", - "label_id": 2 - }, - "h": 284, - "region_id": 16932, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 466, - "x": 273, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.27765556424856186, - "x_min": 0.04351823776960373, - "y_max": 0.6269818544387817, - "y_min": 0.25980502367019653 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 159, - "region_id": 16933, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 180, - "x": 33, - "y": 112 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.27031514048576355, - "x_min": 0.030673563480377197, - "y_max": 0.612331748008728, - "y_min": 0.2571866512298584 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 153, - "region_id": 16934, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 184, - "x": 24, - "y": 111 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2617991343140602, - "x_min": 0.019300349056720734, - "y_max": 0.6007411479949951, - "y_min": 0.25281307101249695 - }, - "confidence": 0.9999780654907227, - "label": "vehicle", - "label_id": 2 - }, - "h": 150, - "region_id": 16936, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 186, - "x": 15, - "y": 109 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2566665932536125, - "x_min": 0.010110311210155487, - "y_max": 0.5950663089752197, - "y_min": 0.25599029660224915 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 146, - "region_id": 16935, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 189, - "x": 8, - "y": 111 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.24547897279262543, - "x_min": 0.00378476083278656, - "y_max": 0.58565354347229, - "y_min": 0.250363290309906 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 145, - "region_id": 16937, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 186, - "x": 3, - "y": 108 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.23500293493270874, - "x_min": 0.001883864402770996, - "y_max": 0.5771509259939194, - "y_min": 0.24766944348812103 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 142, - "region_id": 16938, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 179, - "x": 1, - "y": 107 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.22417304664850235, - "x_min": 0.0005508437752723694, - "y_max": 0.5657980293035507, - "y_min": 0.24598316848278046 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 138, - "region_id": 16939, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 172, - "x": 0, - "y": 106 - }, - { - "color": { - "confidence": 0.61083984375, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9669439494609833, - "x_min": 0.3940558135509491, - "y_max": 0.7534793317317963, - "y_min": 0.06528171896934509 - }, - "confidence": 0.61279296875, - "label": "vehicle", - "label_id": 2 - }, - "h": 297, - "region_id": 16940, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 440, - "x": 303, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.21810167282819748, - "x_min": 0.0, - "y_max": 0.5573959350585938, - "y_min": 0.2435314953327179 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 136, - "region_id": 16941, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 168, - "x": 0, - "y": 105 - }, - { - "color": { - "confidence": 0.4599609375, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9764391481876373, - "x_min": 0.3866957724094391, - "y_max": 0.7931325435638428, - "y_min": 0.039081573486328125 - }, - "confidence": 0.708984375, - "label": "vehicle", - "label_id": 2 - }, - "h": 326, - "region_id": 16942, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 453, - "x": 297, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2065199390053749, - "x_min": 0.0, - "y_max": 0.5523040294647217, - "y_min": 0.23934882879257202 - }, - "confidence": 0.9999755620956421, - "label": "vehicle", - "label_id": 2 - }, - "h": 135, - "region_id": 16943, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 159, - "x": 0, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.1992337852716446, - "x_min": 0.0004508793354034424, - "y_max": 0.5388166904449463, - "y_min": 0.24044927954673767 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 129, - "region_id": 16944, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 153, - "x": 0, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.18727533519268036, - "x_min": 0.0016330182552337646, - "y_max": 0.5345794409513474, - "y_min": 0.22854118049144745 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 16945, - "roi_type": "vehicle", - "type": { - "confidence": 0.9912109375, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 143, - "x": 1, - "y": 99 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.17466454952955246, - "x_min": 0.0019783303141593933, - "y_max": 0.530539870262146, - "y_min": 0.22426244616508484 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 16946, - "roi_type": "vehicle", - "type": { - "confidence": 0.9912109375, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 133, - "x": 2, - "y": 97 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.16492079943418503, - "x_min": 0.003018997609615326, - "y_max": 0.523313120007515, - "y_min": 0.22057349979877472 - }, - "confidence": 0.998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 131, - "region_id": 16947, - "roi_type": "vehicle", - "type": { - "confidence": 0.9892578125, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 124, - "x": 2, - "y": 95 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.1586521491408348, - "x_min": 0.0, - "y_max": 0.5259674340486526, - "y_min": 0.22343666851520538 - }, - "confidence": 0.9968696236610413, - "label": "vehicle", - "label_id": 2 - }, - "h": 131, - "region_id": 16948, - "roi_type": "vehicle", - "type": { - "confidence": 0.87890625, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 122, - "x": 0, - "y": 97 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.1441451609134674, - "x_min": 0.000693395733833313, - "y_max": 0.5236131399869919, - "y_min": 0.2226388305425644 - }, - "confidence": 0.990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 130, - "region_id": 16949, - "roi_type": "vehicle", - "type": { - "confidence": 0.9716796875, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 110, - "x": 1, - "y": 96 - }, - { - "color": { - "confidence": 0.90869140625, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.11497771739959717, - "y_max": 0.9465397000312805, - "y_min": 0.03637963533401489 - }, - "confidence": 0.552734375, - "label": "vehicle", - "label_id": 2 - }, - "h": 393, - "region_id": 16950, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 680, - "x": 88, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.1313403695821762, - "x_min": 0.0012536048889160156, - "y_max": 0.5229455083608627, - "y_min": 0.23211054503917694 - }, - "confidence": 0.8857421875, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 16951, - "roi_type": "vehicle", - "type": { - "confidence": 0.626953125, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 100, - "x": 1, - "y": 100 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.1251680999994278, - "x_min": 0.0, - "y_max": 0.5160009860992432, - "y_min": 0.24285933375358582 - }, - "confidence": 0.74755859375, - "label": "vehicle", - "label_id": 2 - }, - "h": 118, - "region_id": 16952, - "roi_type": "vehicle", - "type": { - "confidence": 0.80517578125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 96, - "x": 0, - "y": 105 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.11142117157578468, - "x_min": 0.0006205327808856964, - "y_max": 0.5151717662811279, - "y_min": 0.23993870615959167 - }, - "confidence": 0.88330078125, - "label": "vehicle", - "label_id": 2 - }, - "h": 119, - "region_id": 16955, - "roi_type": "vehicle", - "type": { - "confidence": 0.94287109375, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 85, - "x": 0, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.0992228202521801, - "x_min": 0.0013285242021083832, - "y_max": 0.5190009623765945, - "y_min": 0.237373486161232 - }, - "confidence": 0.6836087703704834, - "label": "vehicle", - "label_id": 2 - }, - "h": 122, - "region_id": 16953, - "roi_type": "vehicle", - "type": { - "confidence": 0.9091796875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 75, - "x": 1, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.08814045041799545, - "x_min": 0.0, - "y_max": 0.5179922431707382, - "y_min": 0.2371600717306137 - }, - "confidence": 0.5166015625, - "label": "vehicle", - "label_id": 2 - }, - "h": 121, - "region_id": 16954, - "roi_type": "vehicle", - "type": { - "confidence": 0.8642578125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 68, - "x": 0, - "y": 102 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.078303974121809, - "x_min": 0.0, - "y_max": 0.5105343610048294, - "y_min": 0.23882491886615753 - }, - "confidence": 0.74951171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 16957, - "roi_type": "vehicle", - "type": { - "confidence": 0.97705078125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 60, - "x": 0, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.06655463203787804, - "x_min": 0.0006585381925106049, - "y_max": 0.5064481496810913, - "y_min": 0.23939380049705505 - }, - "confidence": 0.6376953125, - "label": "vehicle", - "label_id": 2 - }, - "h": 115, - "region_id": 16958, - "roi_type": "vehicle", - "type": { - "confidence": 0.89990234375, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 51, - "x": 1, - "y": 103 - }, - { - "color": { - "confidence": 0.60400390625, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.0942881628870964, - "x_min": 0.04302658885717392, - "y_max": 0.6302101612091064, - "y_min": 0.5369205474853516 - }, - "confidence": 0.5048828125, - "label": "vehicle", - "label_id": 2 - }, - "h": 40, - "region_id": 16959, - "roi_type": "vehicle", - "type": { - "confidence": 0.9912109375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 39, - "x": 33, - "y": 232 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.058548733592033386, - "x_min": 0.0012506619095802307, - "y_max": 0.4997312128543854, - "y_min": 0.2501336634159088 - }, - "confidence": 0.7409294843673706, - "label": "vehicle", - "label_id": 2 - }, - "h": 108, - "region_id": 16956, - "roi_type": "vehicle", - "type": { - "confidence": 0.65380859375, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 44, - "x": 1, - "y": 108 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.04710671491920948, - "x_min": 0.002159060910344124, - "y_max": 0.49160075187683105, - "y_min": 0.27301615476608276 - }, - "confidence": 0.580078125, - "label": "vehicle", - "label_id": 2 - }, - "h": 94, - "region_id": 16960, - "roi_type": "vehicle", - "type": { - "confidence": 0.7900390625, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 35, - "x": 2, - "y": 118 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.038663893938064575, - "x_min": 0.0, - "y_max": 0.4893234968185425, - "y_min": 0.2736009955406189 - }, - "confidence": 0.5234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 93, - "region_id": 16963, - "roi_type": "vehicle", - "type": { - "confidence": 0.54638671875, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 30, - "x": 0, - "y": 118 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.77978515625, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.942987859249115, - "x_min": 0.050960421562194824, - "y_max": 0.9904269278049469, - "y_min": 0.0 - }, - "confidence": 0.5649092197418213, - "label": "vehicle", - "label_id": 2 - }, - "h": 428, - "region_id": 16968, - "roi_type": "vehicle", - "type": { - "confidence": 0.95166015625, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 685, - "x": 39, - "y": 0 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.6533203125, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9569013714790344, - "x_min": 0.2530626654624939, - "y_max": 0.7804694473743439, - "y_min": 0.08048084378242493 - }, - "confidence": 0.66357421875, - "label": "vehicle", - "label_id": 2 - }, - "h": 302, - "region_id": 16969, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 541, - "x": 194, - "y": 35 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 27333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.69091796875, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9674282670021057, - "x_min": 0.040151894092559814, - "y_max": 1.0, - "y_min": 0.018533557653427124 - }, - "confidence": 0.5206025838851929, - "label": "vehicle", - "label_id": 2 - }, - "h": 424, - "region_id": 16972, - "roi_type": "vehicle", - "type": { - "confidence": 0.9853515625, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 712, - "x": 31, - "y": 8 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 28916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.05796085111796856, - "x_min": 0.003526007756590843, - "y_max": 0.2683647871017456, - "y_min": 0.09554657340049744 - }, - "confidence": 0.7578125, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 16980, - "roi_type": "person", - "w": 42, - "x": 3, - "y": 41 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06379417888820171, - "x_min": 0.007910190150141716, - "y_max": 0.2743130400776863, - "y_min": 0.10185719281435013 - }, - "confidence": 0.80126953125, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 16981, - "roi_type": "person", - "w": 43, - "x": 6, - "y": 44 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07424172759056091, - "x_min": 0.015349648892879486, - "y_max": 0.2675032541155815, - "y_min": 0.09078633040189743 - }, - "confidence": 0.892578125, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 16982, - "roi_type": "person", - "w": 45, - "x": 12, - "y": 39 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06838378310203552, - "x_min": 0.022360909730196, - "y_max": 0.2644665911793709, - "y_min": 0.09262839704751968 - }, - "confidence": 0.9458925127983093, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 16983, - "roi_type": "person", - "w": 35, - "x": 17, - "y": 40 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06263137422502041, - "x_min": 0.028442716225981712, - "y_max": 0.2630351260304451, - "y_min": 0.08788127452135086 - }, - "confidence": 0.70654296875, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 16984, - "roi_type": "person", - "w": 26, - "x": 22, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07015642523765564, - "x_min": 0.038890134543180466, - "y_max": 0.2707189917564392, - "y_min": 0.08740551769733429 - }, - "confidence": 0.85986328125, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 16985, - "roi_type": "person", - "w": 24, - "x": 30, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.08970045298337936, - "x_min": 0.045083530247211456, - "y_max": 0.2602956220507622, - "y_min": 0.08799969404935837 - }, - "confidence": 0.97607421875, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 16986, - "roi_type": "person", - "w": 34, - "x": 35, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.10221833735704422, - "x_min": 0.050295390188694, - "y_max": 0.26162880659103394, - "y_min": 0.08928240835666656 - }, - "confidence": 0.96240234375, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 16987, - "roi_type": "person", - "w": 40, - "x": 39, - "y": 39 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1123565286397934, - "x_min": 0.055696893483400345, - "y_max": 0.26567672938108444, - "y_min": 0.0868227407336235 - }, - "confidence": 0.9639860987663269, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 16988, - "roi_type": "person", - "w": 44, - "x": 43, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11494597047567368, - "x_min": 0.06002477556467056, - "y_max": 0.2610744759440422, - "y_min": 0.0874699279665947 - }, - "confidence": 0.95947265625, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 16989, - "roi_type": "person", - "w": 42, - "x": 46, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1076885536313057, - "x_min": 0.06897159665822983, - "y_max": 0.25734183192253113, - "y_min": 0.08855894207954407 - }, - "confidence": 0.75, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 16990, - "roi_type": "person", - "w": 30, - "x": 53, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11588124930858612, - "x_min": 0.0844779908657074, - "y_max": 0.25993383675813675, - "y_min": 0.08377892524003983 - }, - "confidence": 0.94384765625, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 16991, - "roi_type": "person", - "w": 24, - "x": 65, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.14306065440177917, - "x_min": 0.08935098350048065, - "y_max": 0.25856900215148926, - "y_min": 0.08276118338108063 - }, - "confidence": 0.979736864566803, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 16992, - "roi_type": "person", - "w": 41, - "x": 69, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15317003428936005, - "x_min": 0.09756682813167572, - "y_max": 0.25573694705963135, - "y_min": 0.08256407082080841 - }, - "confidence": 0.9208984375, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 16993, - "roi_type": "person", - "w": 43, - "x": 75, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15702785551548004, - "x_min": 0.09714777767658234, - "y_max": 0.25397133082151413, - "y_min": 0.08110251277685165 - }, - "confidence": 0.98291015625, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 16994, - "roi_type": "person", - "w": 46, - "x": 75, - "y": 35 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15839335322380066, - "x_min": 0.10749229788780212, - "y_max": 0.2547931671142578, - "y_min": 0.07889387011528015 - }, - "confidence": 0.9873046875, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 16995, - "roi_type": "person", - "w": 39, - "x": 83, - "y": 34 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1491146832704544, - "x_min": 0.11746441572904587, - "y_max": 0.25783464312553406, - "y_min": 0.07373198866844177 - }, - "confidence": 0.91162109375, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 16996, - "roi_type": "person", - "w": 24, - "x": 90, - "y": 32 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15782630443572998, - "x_min": 0.13123366236686707, - "y_max": 0.2507973685860634, - "y_min": 0.08268926292657852 - }, - "confidence": 0.564289927482605, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 16997, - "roi_type": "person", - "w": 20, - "x": 101, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.17117199301719666, - "x_min": 0.13278326392173767, - "y_max": 0.2538791224360466, - "y_min": 0.0712466761469841 - }, - "confidence": 0.921875, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 16998, - "roi_type": "person", - "w": 29, - "x": 102, - "y": 31 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1887526512145996, - "x_min": 0.13873153924942017, - "y_max": 0.24830224364995956, - "y_min": 0.06952892988920212 - }, - "confidence": 0.9716796875, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 16999, - "roi_type": "person", - "w": 38, - "x": 107, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.198638916015625, - "x_min": 0.1424277126789093, - "y_max": 0.24426036328077316, - "y_min": 0.06967847794294357 - }, - "confidence": 0.9326171875, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 17000, - "roi_type": "person", - "w": 43, - "x": 109, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19823414087295532, - "x_min": 0.14558222889900208, - "y_max": 0.24210044741630554, - "y_min": 0.06738212704658508 - }, - "confidence": 0.9580078125, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 17001, - "roi_type": "person", - "w": 40, - "x": 112, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19670163094997406, - "x_min": 0.1593606323003769, - "y_max": 0.24713261425495148, - "y_min": 0.06951789557933807 - }, - "confidence": 0.9332923293113708, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 17002, - "roi_type": "person", - "w": 29, - "x": 122, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19645187258720398, - "x_min": 0.16701623797416687, - "y_max": 0.2467137724161148, - "y_min": 0.05971263349056244 - }, - "confidence": 0.81396484375, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 17003, - "roi_type": "person", - "w": 23, - "x": 128, - "y": 26 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.20708149671554565, - "x_min": 0.17690825462341309, - "y_max": 0.24018753319978714, - "y_min": 0.06553960591554642 - }, - "confidence": 0.86181640625, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 17004, - "roi_type": "person", - "w": 23, - "x": 136, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.22888699173927307, - "x_min": 0.17742937803268433, - "y_max": 0.2344159260392189, - "y_min": 0.06553412228822708 - }, - "confidence": 0.9453125, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 17005, - "roi_type": "person", - "w": 40, - "x": 136, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23775845766067505, - "x_min": 0.1861700415611267, - "y_max": 0.2327612265944481, - "y_min": 0.0673552080988884 - }, - "confidence": 0.86279296875, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 17006, - "roi_type": "person", - "w": 40, - "x": 143, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2449396252632141, - "x_min": 0.18915033340454102, - "y_max": 0.22870630025863647, - "y_min": 0.06331539154052734 - }, - "confidence": 0.940159797668457, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 17007, - "roi_type": "person", - "w": 43, - "x": 145, - "y": 27 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24371737241744995, - "x_min": 0.19899338483810425, - "y_max": 0.22491950541734695, - "y_min": 0.06480459123849869 - }, - "confidence": 0.91650390625, - "label": "person", - "label_id": 1 - }, - "h": 69, - "region_id": 17008, - "roi_type": "person", - "w": 34, - "x": 153, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23920945823192596, - "x_min": 0.20880557596683502, - "y_max": 0.2312590777873993, - "y_min": 0.051177769899368286 - }, - "confidence": 0.7421875, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 17009, - "roi_type": "person", - "w": 23, - "x": 160, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24577099084854126, - "x_min": 0.21508976817131042, - "y_max": 0.22445382922887802, - "y_min": 0.04580488055944443 - }, - "confidence": 0.8076171875, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 17010, - "roi_type": "person", - "w": 24, - "x": 165, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2584080398082733, - "x_min": 0.2213379144668579, - "y_max": 0.22188827395439148, - "y_min": 0.04266056418418884 - }, - "confidence": 0.9384765625, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 17011, - "roi_type": "person", - "w": 28, - "x": 170, - "y": 18 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2686125934123993, - "x_min": 0.2230585366487503, - "y_max": 0.22240906208753586, - "y_min": 0.03719743341207504 - }, - "confidence": 0.8530436754226685, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 17012, - "roi_type": "person", - "w": 35, - "x": 171, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27866482734680176, - "x_min": 0.22583787143230438, - "y_max": 0.21875855326652527, - "y_min": 0.04367309808731079 - }, - "confidence": 0.94140625, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 17013, - "roi_type": "person", - "w": 41, - "x": 173, - "y": 19 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27825289964675903, - "x_min": 0.22984372079372406, - "y_max": 0.2128024399280548, - "y_min": 0.04053172469139099 - }, - "confidence": 0.89990234375, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 17014, - "roi_type": "person", - "w": 37, - "x": 177, - "y": 18 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.278627872467041, - "x_min": 0.23964999616146088, - "y_max": 0.21169210225343704, - "y_min": 0.026805169880390167 - }, - "confidence": 0.56640625, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 17015, - "roi_type": "person", - "w": 30, - "x": 184, - "y": 12 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.28468194603919983, - "x_min": 0.2542703449726105, - "y_max": 0.2149207815527916, - "y_min": 0.02619936317205429 - }, - "confidence": 0.794921875, - "label": "person", - "label_id": 1 - }, - "h": 82, - "region_id": 17016, - "roi_type": "person", - "w": 23, - "x": 195, - "y": 11 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.29074931144714355, - "x_min": 0.25998377799987793, - "y_max": 0.20787615329027176, - "y_min": 0.02282194048166275 - }, - "confidence": 0.838465690612793, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 17018, - "roi_type": "person", - "w": 24, - "x": 200, - "y": 10 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.30745673179626465, - "x_min": 0.26573002338409424, - "y_max": 0.19293907284736633, - "y_min": 0.02228669822216034 - }, - "confidence": 0.97802734375, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 17017, - "roi_type": "person", - "w": 32, - "x": 204, - "y": 10 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3109080493450165, - "x_min": 0.26781293749809265, - "y_max": 0.19742047786712646, - "y_min": 0.023131072521209717 - }, - "confidence": 0.96533203125, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 17019, - "roi_type": "person", - "w": 33, - "x": 206, - "y": 10 - }, - { - "color": { - "confidence": 0.74267578125, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2956489324569702, - "x_min": 0.10402004420757294, - "y_max": 1.0, - "y_min": 0.8513724207878113 - }, - "confidence": 0.779296875, - "label": "vehicle", - "label_id": 2 - }, - "h": 64, - "region_id": 17020, - "roi_type": "vehicle", - "type": { - "confidence": 0.576171875, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 147, - "x": 80, - "y": 368 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3159233331680298, - "x_min": 0.27413952350616455, - "y_max": 0.1829414889216423, - "y_min": 0.019071929156780243 - }, - "confidence": 0.98193359375, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 17021, - "roi_type": "person", - "w": 32, - "x": 211, - "y": 8 - }, - { - "color": { - "confidence": 0.966796875, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3024454191327095, - "x_min": 0.08785287290811539, - "y_max": 1.0, - "y_min": 0.826200008392334 - }, - "confidence": 0.90869140625, - "label": "vehicle", - "label_id": 2 - }, - "h": 75, - "region_id": 17022, - "roi_type": "vehicle", - "type": { - "confidence": 0.71630859375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 165, - "x": 67, - "y": 357 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3163028359413147, - "x_min": 0.279521107673645, - "y_max": 0.18253225088119507, - "y_min": 0.009588927030563354 - }, - "confidence": 0.85546875, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 17023, - "roi_type": "person", - "w": 28, - "x": 215, - "y": 4 - }, - { - "color": { - "confidence": 0.966796875, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3072689101099968, - "x_min": 0.08985143154859543, - "y_max": 1.0, - "y_min": 0.7982624173164368 - }, - "confidence": 0.9658203125, - "label": "vehicle", - "label_id": 2 - }, - "h": 87, - "region_id": 17024, - "roi_type": "vehicle", - "type": { - "confidence": 0.86328125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 167, - "x": 69, - "y": 345 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.32006755471229553, - "x_min": 0.2837705910205841, - "y_max": 0.17555156350135803, - "y_min": 0.0023487508296966553 - }, - "confidence": 0.931640625, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 17025, - "roi_type": "person", - "w": 28, - "x": 218, - "y": 1 - }, - { - "color": { - "confidence": 0.998046875, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3180421218276024, - "x_min": 0.09333022683858871, - "y_max": 0.996577262878418, - "y_min": 0.7744814157485962 - }, - "confidence": 0.998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 96, - "region_id": 17026, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 173, - "x": 72, - "y": 335 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3244907259941101, - "x_min": 0.29136407375335693, - "y_max": 0.18118666112422943, - "y_min": 0.0 - }, - "confidence": 0.9298216104507446, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 17029, - "roi_type": "person", - "w": 25, - "x": 224, - "y": 0 - }, - { - "color": { - "confidence": 0.9853515625, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.32114875316619873, - "x_min": 0.09346036612987518, - "y_max": 0.9976943731307983, - "y_min": 0.7558609247207642 - }, - "confidence": 0.9959346055984497, - "label": "vehicle", - "label_id": 2 - }, - "h": 104, - "region_id": 17030, - "roi_type": "vehicle", - "type": { - "confidence": 0.99609375, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 175, - "x": 72, - "y": 327 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3375798463821411, - "x_min": 0.29701799154281616, - "y_max": 0.1681172400712967, - "y_min": 0.0 - }, - "confidence": 0.97314453125, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 17027, - "roi_type": "person", - "w": 31, - "x": 228, - "y": 0 - }, - { - "color": { - "confidence": 0.95361328125, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3254093825817108, - "x_min": 0.09381496906280518, - "y_max": 0.9986022710800171, - "y_min": 0.7277764081954956 - }, - "confidence": 0.998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 17028, - "roi_type": "vehicle", - "type": { - "confidence": 0.99609375, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 178, - "x": 72, - "y": 314 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34107476472854614, - "x_min": 0.2997574806213379, - "y_max": 0.15931344777345657, - "y_min": 0.0 - }, - "confidence": 0.96435546875, - "label": "person", - "label_id": 1 - }, - "h": 69, - "region_id": 17031, - "roi_type": "person", - "w": 32, - "x": 230, - "y": 0 - }, - { - "color": { - "confidence": 0.9921875, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3319740891456604, - "x_min": 0.09414704144001007, - "y_max": 0.9966111779212952, - "y_min": 0.7045837044715881 - }, - "confidence": 0.99609375, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 17032, - "roi_type": "vehicle", - "type": { - "confidence": 0.9931640625, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 183, - "x": 72, - "y": 304 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34646058082580566, - "x_min": 0.3028937578201294, - "y_max": 0.156146802008152, - "y_min": 0.0 - }, - "confidence": 0.984375, - "label": "person", - "label_id": 1 - }, - "h": 67, - "region_id": 17033, - "roi_type": "person", - "w": 33, - "x": 233, - "y": 0 - }, - { - "color": { - "confidence": 0.9853515625, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3392763137817383, - "x_min": 0.09022277593612671, - "y_max": 0.9994381070137024, - "y_min": 0.6786060929298401 - }, - "confidence": 0.99609375, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "region_id": 17034, - "roi_type": "vehicle", - "type": { - "confidence": 0.9912109375, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 191, - "x": 69, - "y": 293 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34512296319007874, - "x_min": 0.30911585688591003, - "y_max": 0.15079374611377716, - "y_min": 0.0 - }, - "confidence": 0.94384765625, - "label": "person", - "label_id": 1 - }, - "h": 65, - "region_id": 17037, - "roi_type": "person", - "w": 28, - "x": 237, - "y": 0 - }, - { - "color": { - "confidence": 0.94384765625, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34184062480926514, - "x_min": 0.09453167021274567, - "y_max": 1.0, - "y_min": 0.6524904370307922 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 150, - "region_id": 17038, - "roi_type": "vehicle", - "type": { - "confidence": 0.97607421875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 190, - "x": 73, - "y": 282 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34818318486213684, - "x_min": 0.31593766808509827, - "y_max": 0.14530643820762634, - "y_min": 0.0 - }, - "confidence": 0.96337890625, - "label": "person", - "label_id": 1 - }, - "h": 63, - "region_id": 17039, - "roi_type": "person", - "w": 25, - "x": 243, - "y": 0 - }, - { - "color": { - "confidence": 0.81591796875, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34417855739593506, - "x_min": 0.09946362674236298, - "y_max": 0.999272882938385, - "y_min": 0.6353164315223694 - }, - "confidence": 0.998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 157, - "region_id": 17040, - "roi_type": "vehicle", - "type": { - "confidence": 0.986328125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 188, - "x": 76, - "y": 274 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35304656624794006, - "x_min": 0.3201451599597931, - "y_max": 0.14841407537460327, - "y_min": 0.0 - }, - "confidence": 0.8748641014099121, - "label": "person", - "label_id": 1 - }, - "h": 64, - "region_id": 17035, - "roi_type": "person", - "w": 25, - "x": 246, - "y": 0 - }, - { - "color": { - "confidence": 0.5283203125, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3495451807975769, - "x_min": 0.10705585777759552, - "y_max": 1.0, - "y_min": 0.6191883087158203 - }, - "confidence": 0.9986294507980347, - "label": "vehicle", - "label_id": 2 - }, - "h": 165, - "region_id": 17036, - "roi_type": "vehicle", - "type": { - "confidence": 0.9892578125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 186, - "x": 82, - "y": 267 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35834217071533203, - "x_min": 0.3240100145339966, - "y_max": 0.14449387788772583, - "y_min": 0.0 - }, - "confidence": 0.78515625, - "label": "person", - "label_id": 1 - }, - "h": 62, - "region_id": 17041, - "roi_type": "person", - "w": 26, - "x": 249, - "y": 0 - }, - { - "color": { - "confidence": 0.888671875, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3576863408088684, - "x_min": 0.11795952916145325, - "y_max": 0.9962477087974548, - "y_min": 0.5935474038124084 - }, - "confidence": 0.9951171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 174, - "region_id": 17042, - "roi_type": "vehicle", - "type": { - "confidence": 0.96435546875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 184, - "x": 91, - "y": 256 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3616437613964081, - "x_min": 0.3287608325481415, - "y_max": 0.14139731973409653, - "y_min": 0.0 - }, - "confidence": 0.6171875, - "label": "person", - "label_id": 1 - }, - "h": 61, - "region_id": 17043, - "roi_type": "person", - "w": 25, - "x": 252, - "y": 0 - }, - { - "color": { - "confidence": 0.802734375, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3568938076496124, - "x_min": 0.1184740960597992, - "y_max": 0.9960288405418396, - "y_min": 0.5713207125663757 - }, - "confidence": 0.9951171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 183, - "region_id": 17044, - "roi_type": "vehicle", - "type": { - "confidence": 0.98388671875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 183, - "x": 91, - "y": 247 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3644731938838959, - "x_min": 0.3320888578891754, - "y_max": 0.14311426877975464, - "y_min": 0.0 - }, - "confidence": 0.8803459405899048, - "label": "person", - "label_id": 1 - }, - "h": 62, - "region_id": 17048, - "roi_type": "person", - "w": 25, - "x": 255, - "y": 0 - }, - { - "color": { - "confidence": 0.6220703125, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3609321713447571, - "x_min": 0.10930883884429932, - "y_max": 1.0, - "y_min": 0.5515390038490295 - }, - "confidence": 0.9974979758262634, - "label": "vehicle", - "label_id": 2 - }, - "h": 194, - "region_id": 17049, - "roi_type": "vehicle", - "type": { - "confidence": 0.9951171875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 193, - "x": 84, - "y": 238 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3690513074398041, - "x_min": 0.3348962962627411, - "y_max": 0.13076193630695343, - "y_min": 0.0 - }, - "confidence": 0.53564453125, - "label": "person", - "label_id": 1 - }, - "h": 56, - "region_id": 17045, - "roi_type": "person", - "w": 26, - "x": 257, - "y": 0 - }, - { - "color": { - "confidence": 0.74072265625, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3626910224556923, - "x_min": 0.1165127232670784, - "y_max": 1.0, - "y_min": 0.5341740250587463 - }, - "confidence": 0.9921875, - "label": "vehicle", - "label_id": 2 - }, - "h": 201, - "region_id": 17046, - "roi_type": "vehicle", - "type": { - "confidence": 0.98291015625, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 189, - "x": 89, - "y": 231 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.72607421875, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3653745725750923, - "x_min": 0.11738703399896622, - "y_max": 1.0, - "y_min": 0.5187159776687622 - }, - "confidence": 0.984375, - "label": "vehicle", - "label_id": 2 - }, - "h": 208, - "region_id": 17047, - "roi_type": "vehicle", - "type": { - "confidence": 0.9931640625, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 190, - "x": 90, - "y": 224 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.779296875, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35986167192459106, - "x_min": 0.11861021816730499, - "y_max": 1.0, - "y_min": 0.5067421197891235 - }, - "confidence": 0.97998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "region_id": 17050, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 185, - "x": 91, - "y": 219 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9013671875, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3583891987800598, - "x_min": 0.12578806281089783, - "y_max": 1.0, - "y_min": 0.48726680874824524 - }, - "confidence": 0.96142578125, - "label": "vehicle", - "label_id": 2 - }, - "h": 222, - "region_id": 17051, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 179, - "x": 97, - "y": 210 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.93359375, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36830934882164, - "x_min": 0.13284197449684143, - "y_max": 1.0, - "y_min": 0.4726431965827942 - }, - "confidence": 0.9716796875, - "label": "vehicle", - "label_id": 2 - }, - "h": 228, - "region_id": 17052, - "roi_type": "vehicle", - "type": { - "confidence": 0.939453125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 181, - "x": 102, - "y": 204 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.97607421875, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3714140057563782, - "x_min": 0.1372305154800415, - "y_max": 0.9820627868175507, - "y_min": 0.45351001620292664 - }, - "confidence": 0.9912109375, - "label": "vehicle", - "label_id": 2 - }, - "h": 228, - "region_id": 17053, - "roi_type": "vehicle", - "type": { - "confidence": 0.814453125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 180, - "x": 105, - "y": 196 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.99609375, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.360680490732193, - "x_min": 0.14599928259849548, - "y_max": 0.9428017437458038, - "y_min": 0.4423508942127228 - }, - "confidence": 0.9961766004562378, - "label": "vehicle", - "label_id": 2 - }, - "h": 216, - "region_id": 17054, - "roi_type": "vehicle", - "type": { - "confidence": 0.9921875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 165, - "x": 112, - "y": 191 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.97705078125, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3668741285800934, - "x_min": 0.15882495045661926, - "y_max": 0.9358053803443909, - "y_min": 0.41585129499435425 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 225, - "region_id": 17055, - "roi_type": "vehicle", - "type": { - "confidence": 0.6064453125, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 160, - "x": 122, - "y": 180 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9931640625, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3655020594596863, - "x_min": 0.1626676321029663, - "y_max": 0.903299480676651, - "y_min": 0.39908042550086975 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 218, - "region_id": 17056, - "roi_type": "vehicle", - "type": { - "confidence": 0.57861328125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 156, - "x": 125, - "y": 172 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9951171875, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36492133140563965, - "x_min": 0.17409741878509521, - "y_max": 0.8789278864860535, - "y_min": 0.38409990072250366 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "region_id": 17057, - "roi_type": "vehicle", - "type": { - "confidence": 0.5400390625, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 147, - "x": 134, - "y": 166 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.998046875, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3610725998878479, - "x_min": 0.17910504341125488, - "y_max": 0.8557292222976685, - "y_min": 0.3645592927932739 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 212, - "region_id": 17058, - "roi_type": "vehicle", - "type": { - "confidence": 0.489990234375, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 140, - "x": 138, - "y": 157 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36286112666130066, - "x_min": 0.18279656767845154, - "y_max": 0.8229894638061523, - "y_min": 0.3428793251514435 - }, - "confidence": 0.9999334812164307, - "label": "vehicle", - "label_id": 2 - }, - "h": 207, - "region_id": 17059, - "roi_type": "vehicle", - "type": { - "confidence": 0.74267578125, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 138, - "x": 140, - "y": 148 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36165374517440796, - "x_min": 0.18928389251232147, - "y_max": 0.7933508157730103, - "y_min": 0.32612988352775574 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 202, - "region_id": 17060, - "roi_type": "vehicle", - "type": { - "confidence": 0.72314453125, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 132, - "x": 145, - "y": 141 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3588729202747345, - "x_min": 0.1904868185520172, - "y_max": 0.7664351463317871, - "y_min": 0.3122572898864746 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 196, - "region_id": 17061, - "roi_type": "vehicle", - "type": { - "confidence": 0.66845703125, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 129, - "x": 146, - "y": 135 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35344889760017395, - "x_min": 0.1925678551197052, - "y_max": 0.7419216632843018, - "y_min": 0.29417183995246887 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 193, - "region_id": 17062, - "roi_type": "vehicle", - "type": { - "confidence": 0.72216796875, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 124, - "x": 148, - "y": 127 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9716796875, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34998437762260437, - "x_min": 0.19450798630714417, - "y_max": 0.7181348204612732, - "y_min": 0.2771528959274292 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 191, - "region_id": 17063, - "roi_type": "vehicle", - "type": { - "confidence": 0.90869140625, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 119, - "x": 149, - "y": 120 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9931640625, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34572234749794006, - "x_min": 0.20005705952644348, - "y_max": 0.688109278678894, - "y_min": 0.26533982157707214 - }, - "confidence": 0.9998039603233337, - "label": "vehicle", - "label_id": 2 - }, - "h": 183, - "region_id": 17064, - "roi_type": "vehicle", - "type": { - "confidence": 0.8857421875, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 112, - "x": 154, - "y": 115 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.79248046875, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3438488245010376, - "x_min": 0.19813984632492065, - "y_max": 0.6573256850242615, - "y_min": 0.25968676805496216 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 172, - "region_id": 17065, - "roi_type": "vehicle", - "type": { - "confidence": 0.6416015625, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 112, - "x": 152, - "y": 112 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.96337890625, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34153616428375244, - "x_min": 0.19358372688293457, - "y_max": 0.6417610496282578, - "y_min": 0.24385033547878265 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 172, - "region_id": 17066, - "roi_type": "vehicle", - "type": { - "confidence": 0.568359375, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 114, - "x": 149, - "y": 105 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.94921875, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.33885127305984497, - "x_min": 0.19029003381729126, - "y_max": 0.6309741288423538, - "y_min": 0.2230658084154129 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 176, - "region_id": 17067, - "roi_type": "vehicle", - "type": { - "confidence": 0.544921875, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 114, - "x": 146, - "y": 96 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.96533203125, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3374425172805786, - "x_min": 0.18768715858459473, - "y_max": 0.5997136831283569, - "y_min": 0.2070835530757904 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 170, - "region_id": 17069, - "roi_type": "vehicle", - "type": { - "confidence": 0.650390625, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 115, - "x": 144, - "y": 89 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8798828125, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.33181044459342957, - "x_min": 0.17811045050621033, - "y_max": 0.5778526067733765, - "y_min": 0.1900465488433838 - }, - "confidence": 0.9998239874839783, - "label": "vehicle", - "label_id": 2 - }, - "h": 168, - "region_id": 17068, - "roi_type": "vehicle", - "type": { - "confidence": 0.611328125, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 118, - "x": 137, - "y": 82 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.701171875, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3352878987789154, - "x_min": 0.16757449507713318, - "y_max": 0.562267541885376, - "y_min": 0.1759682595729828 - }, - "confidence": 0.9970703125, - "label": "vehicle", - "label_id": 2 - }, - "h": 167, - "region_id": 17070, - "roi_type": "vehicle", - "type": { - "confidence": 0.79931640625, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 129, - "x": 129, - "y": 76 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.794921875, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.33062705397605896, - "x_min": 0.15925559401512146, - "y_max": 0.5358074903488159, - "y_min": 0.16202977299690247 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 161, - "region_id": 17071, - "roi_type": "vehicle", - "type": { - "confidence": 0.9892578125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 132, - "x": 122, - "y": 70 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.740234375, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3260734975337982, - "x_min": 0.14722785353660583, - "y_max": 0.5155544728040695, - "y_min": 0.157257542014122 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 155, - "region_id": 17072, - "roi_type": "vehicle", - "type": { - "confidence": 0.90283203125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 137, - "x": 113, - "y": 68 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.861328125, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.32348746061325073, - "x_min": 0.13623109459877014, - "y_max": 0.5010326653718948, - "y_min": 0.1568080335855484 - }, - "confidence": 0.9999951124191284, - "label": "vehicle", - "label_id": 2 - }, - "h": 149, - "region_id": 17073, - "roi_type": "vehicle", - "type": { - "confidence": 0.96435546875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 144, - "x": 105, - "y": 68 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.525390625, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3169931545853615, - "x_min": 0.12483716756105423, - "y_max": 0.4827064722776413, - "y_min": 0.1493421047925949 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 144, - "region_id": 17074, - "roi_type": "vehicle", - "type": { - "confidence": 0.98388671875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 148, - "x": 96, - "y": 65 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.50244140625, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3122137784957886, - "x_min": 0.10267382860183716, - "y_max": 0.47069355845451355, - "y_min": 0.1459626853466034 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 140, - "region_id": 17075, - "roi_type": "vehicle", - "type": { - "confidence": 0.89892578125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 161, - "x": 79, - "y": 63 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.5439453125, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.30563071370124817, - "x_min": 0.08968502283096313, - "y_max": 0.4555247873067856, - "y_min": 0.1361779421567917 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 138, - "region_id": 17076, - "roi_type": "vehicle", - "type": { - "confidence": 0.65185546875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 166, - "x": 69, - "y": 59 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.83203125, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2940587177872658, - "x_min": 0.07481119781732559, - "y_max": 0.44223855435848236, - "y_min": 0.13631980121135712 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 17077, - "roi_type": "vehicle", - "type": { - "confidence": 0.85498046875, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 168, - "x": 57, - "y": 59 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.91015625, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2883213460445404, - "x_min": 0.06440111994743347, - "y_max": 0.4271072745323181, - "y_min": 0.13538789749145508 - }, - "confidence": 0.9999485015869141, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 17078, - "roi_type": "vehicle", - "type": { - "confidence": 0.9111328125, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 172, - "x": 49, - "y": 58 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.916015625, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2807242274284363, - "x_min": 0.04622665047645569, - "y_max": 0.41277608275413513, - "y_min": 0.132420152425766 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 121, - "region_id": 17079, - "roi_type": "vehicle", - "type": { - "confidence": 0.9384765625, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 180, - "x": 36, - "y": 57 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9462890625, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2704925760626793, - "x_min": 0.032000623643398285, - "y_max": 0.4054313004016876, - "y_min": 0.131648451089859 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 118, - "region_id": 17081, - "roi_type": "vehicle", - "type": { - "confidence": 0.94189453125, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 183, - "x": 25, - "y": 57 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2576461434364319, - "x_min": 0.018010497093200684, - "y_max": 0.3983272910118103, - "y_min": 0.1276540756225586 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 17080, - "roi_type": "vehicle", - "type": { - "confidence": 0.88818359375, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 184, - "x": 14, - "y": 55 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.24717597663402557, - "x_min": 0.004194930195808411, - "y_max": 0.3936364948749542, - "y_min": 0.12304255366325378 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 17083, - "roi_type": "vehicle", - "type": { - "confidence": 0.72802734375, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 187, - "x": 3, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9951171875, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.23508457839488983, - "x_min": 0.005604341626167297, - "y_max": 0.39096297323703766, - "y_min": 0.12344302237033844 - }, - "confidence": 0.9983170032501221, - "label": "vehicle", - "label_id": 2 - }, - "h": 116, - "region_id": 17082, - "roi_type": "vehicle", - "type": { - "confidence": 0.955078125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 176, - "x": 4, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9990234375, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.22485587745904922, - "x_min": 0.0017657950520515442, - "y_max": 0.3853496015071869, - "y_min": 0.1245599091053009 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 113, - "region_id": 17084, - "roi_type": "vehicle", - "type": { - "confidence": 0.96435546875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 171, - "x": 1, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9990234375, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.21659931540489197, - "x_min": 0.0022316277027130127, - "y_max": 0.3794732093811035, - "y_min": 0.12392610311508179 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 110, - "region_id": 17085, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 165, - "x": 2, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2029200717806816, - "x_min": 0.0007590577006340027, - "y_max": 0.37220699340105057, - "y_min": 0.12221232801675797 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 108, - "region_id": 17086, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 155, - "x": 1, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.18479084223508835, - "x_min": 0.0, - "y_max": 0.3685026168823242, - "y_min": 0.12231658399105072 - }, - "confidence": 0.999538779258728, - "label": "vehicle", - "label_id": 2 - }, - "h": 106, - "region_id": 17087, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 142, - "x": 0, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.1738429069519043, - "x_min": 0.0, - "y_max": 0.3633963465690613, - "y_min": 0.11975441873073578 - }, - "confidence": 0.9951171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 105, - "region_id": 17088, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 134, - "x": 0, - "y": 52 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.16032805293798447, - "x_min": 0.0, - "y_max": 0.358875572681427, - "y_min": 0.12134051322937012 - }, - "confidence": 0.98388671875, - "label": "vehicle", - "label_id": 2 - }, - "h": 103, - "region_id": 17089, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 123, - "x": 0, - "y": 52 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.1480599343776703, - "x_min": 2.3692846298217773e-06, - "y_max": 0.3564804494380951, - "y_min": 0.1216433048248291 - }, - "confidence": 0.95703125, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "region_id": 17090, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 114, - "x": 0, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9990234375, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.13580363243818283, - "x_min": 0.0, - "y_max": 0.3569759950041771, - "y_min": 0.12307702749967575 - }, - "confidence": 0.794921875, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "region_id": 17091, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 104, - "x": 0, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.990234375, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.11234281957149506, - "x_min": 0.0019840747117996216, - "y_max": 0.3554091155529022, - "y_min": 0.12587442994117737 - }, - "confidence": 0.6865234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 99, - "region_id": 17092, - "roi_type": "vehicle", - "type": { - "confidence": 0.99609375, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 85, - "x": 2, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9453125, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.09860633686184883, - "x_min": 0.003699634224176407, - "y_max": 0.3584703207015991, - "y_min": 0.1261626034975052 - }, - "confidence": 0.7734375, - "label": "vehicle", - "label_id": 2 - }, - "h": 100, - "region_id": 17093, - "roi_type": "vehicle", - "type": { - "confidence": 0.9892578125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 73, - "x": 3, - "y": 55 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.40576171875, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.0877152867615223, - "x_min": 0.0017236806452274323, - "y_max": 0.3632138967514038, - "y_min": 0.12957501411437988 - }, - "confidence": 0.6171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "region_id": 17094, - "roi_type": "vehicle", - "type": { - "confidence": 0.93701171875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 66, - "x": 1, - "y": 56 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9248046875, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.07340044155716896, - "x_min": 0.004111398011445999, - "y_max": 0.3508581221103668, - "y_min": 0.14412924647331238 - }, - "confidence": 0.65478515625, - "label": "vehicle", - "label_id": 2 - }, - "h": 89, - "region_id": 17095, - "roi_type": "vehicle", - "type": { - "confidence": 0.73193359375, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 53, - "x": 3, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.95068359375, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.06266309507191181, - "x_min": 0.0, - "y_max": 0.3495999276638031, - "y_min": 0.1438232660293579 - }, - "confidence": 0.6912558674812317, - "label": "vehicle", - "label_id": 2 - }, - "h": 89, - "region_id": 17097, - "roi_type": "vehicle", - "type": { - "confidence": 0.82666015625, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 48, - "x": 0, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.71826171875, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.049724431708455086, - "x_min": 0.0, - "y_max": 0.34245553612709045, - "y_min": 0.14341771602630615 - }, - "confidence": 0.63525390625, - "label": "vehicle", - "label_id": 2 - }, - "h": 86, - "region_id": 17096, - "roi_type": "vehicle", - "type": { - "confidence": 0.91748046875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 38, - "x": 0, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49250000000 - } - ] -} \ No newline at end of file diff --git a/tests/test_cases/pipeline_execution/gpu/object_classification_gpu_gstreamer.json b/tests/test_cases/pipeline_execution/gpu/object_classification_gpu_gstreamer.json deleted file mode 100644 index 4d5d2e8..0000000 --- a/tests/test_cases/pipeline_execution/gpu/object_classification_gpu_gstreamer.json +++ /dev/null @@ -1,9827 +0,0 @@ -{ - "options": {}, - "pipeline": { - "name": "object_classification", - "version": "vehicle_attributes" - }, - "request": { - "source": { - "type": "uri", - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4" - }, - "destination": { - "type": "file", - "path": "/tmp/object_classification_results.json", - "format": "json-lines" - }, - "parameters": { - "detection-device": "GPU", - "classification-device": "GPU" - } - }, - "numerical_tolerance": 0.3, - "result": [ - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7450754046440125, - "x_min": 0.6731894612312317, - "y_max": 0.9991127848625183, - "y_min": 0.8780452609062195 - }, - "confidence": 0.541015625, - "label": "person", - "label_id": 1 - }, - "h": 52, - "region_id": 14801, - "roi_type": "person", - "w": 55, - "x": 517, - "y": 379 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7440981268882751, - "x_min": 0.6758646368980408, - "y_max": 1.0, - "y_min": 0.827924907207489 - }, - "confidence": 0.54345703125, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 14802, - "roi_type": "person", - "w": 52, - "x": 519, - "y": 358 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7466071248054504, - "x_min": 0.6823329329490662, - "y_max": 1.0, - "y_min": 0.8108165264129639 - }, - "confidence": 0.66796875, - "label": "person", - "label_id": 1 - }, - "h": 82, - "region_id": 14803, - "roi_type": "person", - "w": 49, - "x": 524, - "y": 350 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7479705214500427, - "x_min": 0.6836908459663391, - "y_max": 1.0, - "y_min": 0.7869881391525269 - }, - "confidence": 0.88037109375, - "label": "person", - "label_id": 1 - }, - "h": 92, - "region_id": 14804, - "roi_type": "person", - "w": 49, - "x": 525, - "y": 340 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7501941323280334, - "x_min": 0.683894693851471, - "y_max": 0.9971110224723816, - "y_min": 0.771379292011261 - }, - "confidence": 0.931640625, - "label": "person", - "label_id": 1 - }, - "h": 98, - "region_id": 14805, - "roi_type": "person", - "w": 51, - "x": 525, - "y": 333 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7552652359008789, - "x_min": 0.6827793121337891, - "y_max": 0.9931315779685974, - "y_min": 0.7555018067359924 - }, - "confidence": 0.9248046875, - "label": "person", - "label_id": 1 - }, - "h": 103, - "region_id": 14806, - "roi_type": "person", - "w": 56, - "x": 524, - "y": 326 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7565565705299377, - "x_min": 0.6830658316612244, - "y_max": 0.9888202548027039, - "y_min": 0.7450335621833801 - }, - "confidence": 0.94921875, - "label": "person", - "label_id": 1 - }, - "h": 105, - "region_id": 14808, - "roi_type": "person", - "w": 56, - "x": 525, - "y": 322 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7581809759140015, - "x_min": 0.6870932579040527, - "y_max": 0.9743094444274902, - "y_min": 0.723680853843689 - }, - "confidence": 0.9560546875, - "label": "person", - "label_id": 1 - }, - "h": 108, - "region_id": 14809, - "roi_type": "person", - "w": 55, - "x": 528, - "y": 313 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7575687766075134, - "x_min": 0.6909058690071106, - "y_max": 0.9489275217056274, - "y_min": 0.7130314111709595 - }, - "confidence": 0.87158203125, - "label": "person", - "label_id": 1 - }, - "h": 102, - "region_id": 14810, - "roi_type": "person", - "w": 51, - "x": 531, - "y": 308 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.756697416305542, - "x_min": 0.693425178527832, - "y_max": 0.9018371105194092, - "y_min": 0.7055492401123047 - }, - "confidence": 0.888671875, - "label": "person", - "label_id": 1 - }, - "h": 85, - "region_id": 14811, - "roi_type": "person", - "w": 49, - "x": 533, - "y": 305 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7573454976081848, - "x_min": 0.6979058384895325, - "y_max": 0.8756023645401001, - "y_min": 0.6885020732879639 - }, - "confidence": 0.8759765625, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 14812, - "roi_type": "person", - "w": 46, - "x": 536, - "y": 297 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.763081967830658, - "x_min": 0.6965207457542419, - "y_max": 0.9013386964797974, - "y_min": 0.6667746305465698 - }, - "confidence": 0.697265625, - "label": "person", - "label_id": 1 - }, - "h": 101, - "region_id": 14813, - "roi_type": "person", - "w": 51, - "x": 535, - "y": 288 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7638378739356995, - "x_min": 0.6945894360542297, - "y_max": 0.897483229637146, - "y_min": 0.6505343914031982 - }, - "confidence": 0.7373046875, - "label": "person", - "label_id": 1 - }, - "h": 107, - "region_id": 14814, - "roi_type": "person", - "w": 53, - "x": 533, - "y": 281 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7640742063522339, - "x_min": 0.7027362585067749, - "y_max": 0.8511595726013184, - "y_min": 0.6484842300415039 - }, - "confidence": 0.6669921875, - "label": "person", - "label_id": 1 - }, - "h": 88, - "region_id": 14815, - "roi_type": "person", - "w": 47, - "x": 540, - "y": 280 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7668865323066711, - "x_min": 0.7063930630683899, - "y_max": 0.830226719379425, - "y_min": 0.629843533039093 - }, - "confidence": 0.927734375, - "label": "person", - "label_id": 1 - }, - "h": 87, - "region_id": 14816, - "roi_type": "person", - "w": 46, - "x": 543, - "y": 272 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7724691033363342, - "x_min": 0.7098849415779114, - "y_max": 0.8254351615905762, - "y_min": 0.6172851324081421 - }, - "confidence": 0.693359375, - "label": "person", - "label_id": 1 - }, - "h": 90, - "region_id": 14817, - "roi_type": "person", - "w": 48, - "x": 545, - "y": 267 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7740265727043152, - "x_min": 0.7090769410133362, - "y_max": 0.82144695520401, - "y_min": 0.6101848483085632 - }, - "confidence": 0.75, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 14818, - "roi_type": "person", - "w": 50, - "x": 545, - "y": 264 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7839817404747009, - "x_min": 0.7257370352745056, - "y_max": 0.7586237192153931, - "y_min": 0.5558692216873169 - }, - "confidence": 0.71728515625, - "label": "person", - "label_id": 1 - }, - "h": 88, - "region_id": 14819, - "roi_type": "person", - "w": 45, - "x": 557, - "y": 240 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.78947514295578, - "x_min": 0.7327013611793518, - "y_max": 0.7261707782745361, - "y_min": 0.5484710931777954 - }, - "confidence": 0.97509765625, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 14820, - "roi_type": "person", - "w": 44, - "x": 563, - "y": 237 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7890066504478455, - "x_min": 0.7377496361732483, - "y_max": 0.7029215097427368, - "y_min": 0.5400267839431763 - }, - "confidence": 0.84326171875, - "label": "person", - "label_id": 1 - }, - "h": 70, - "region_id": 14821, - "roi_type": "person", - "w": 39, - "x": 567, - "y": 233 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7952556610107422, - "x_min": 0.7402281761169434, - "y_max": 0.6923619508743286, - "y_min": 0.5218515396118164 - }, - "confidence": 0.76513671875, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 14822, - "roi_type": "person", - "w": 42, - "x": 568, - "y": 225 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8006601333618164, - "x_min": 0.7462418079376221, - "y_max": 0.6883482336997986, - "y_min": 0.5218518376350403 - }, - "confidence": 0.87890625, - "label": "person", - "label_id": 1 - }, - "h": 72, - "region_id": 14823, - "roi_type": "person", - "w": 42, - "x": 573, - "y": 225 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8098742365837097, - "x_min": 0.7456627488136292, - "y_max": 0.7028436660766602, - "y_min": 0.5027613639831543 - }, - "confidence": 0.91259765625, - "label": "person", - "label_id": 1 - }, - "h": 86, - "region_id": 14824, - "roi_type": "person", - "w": 49, - "x": 573, - "y": 217 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8130742311477661, - "x_min": 0.7562228441238403, - "y_max": 0.6840891242027283, - "y_min": 0.49621087312698364 - }, - "confidence": 0.91357421875, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 14825, - "roi_type": "person", - "w": 44, - "x": 581, - "y": 214 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8229447603225708, - "x_min": 0.763748288154602, - "y_max": 0.6856093406677246, - "y_min": 0.4886976480484009 - }, - "confidence": 0.833984375, - "label": "person", - "label_id": 1 - }, - "h": 85, - "region_id": 14828, - "roi_type": "person", - "w": 45, - "x": 587, - "y": 211 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8231713771820068, - "x_min": 0.7604347467422485, - "y_max": 0.6921271681785583, - "y_min": 0.4757062494754791 - }, - "confidence": 0.68359375, - "label": "person", - "label_id": 1 - }, - "h": 93, - "region_id": 14831, - "roi_type": "person", - "w": 48, - "x": 584, - "y": 206 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8320498466491699, - "x_min": 0.7603206634521484, - "y_max": 0.6944458484649658, - "y_min": 0.46570658683776855 - }, - "confidence": 0.59033203125, - "label": "person", - "label_id": 1 - }, - "h": 99, - "region_id": 14832, - "roi_type": "person", - "w": 55, - "x": 584, - "y": 201 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8428041338920593, - "x_min": 0.7936063408851624, - "y_max": 0.6421533823013306, - "y_min": 0.43810799717903137 - }, - "confidence": 0.9658203125, - "label": "person", - "label_id": 1 - }, - "h": 88, - "region_id": 14833, - "roi_type": "person", - "w": 38, - "x": 609, - "y": 189 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8495814800262451, - "x_min": 0.7967391014099121, - "y_max": 0.6154407858848572, - "y_min": 0.44311457872390747 - }, - "confidence": 0.88671875, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 14834, - "roi_type": "person", - "w": 41, - "x": 612, - "y": 191 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8531036972999573, - "x_min": 0.8009379506111145, - "y_max": 0.605356752872467, - "y_min": 0.42972689867019653 - }, - "confidence": 0.90478515625, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 14837, - "roi_type": "person", - "w": 40, - "x": 615, - "y": 186 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8602517247200012, - "x_min": 0.8060665726661682, - "y_max": 0.5925722122192383, - "y_min": 0.4272420406341553 - }, - "confidence": 0.802734375, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 14839, - "roi_type": "person", - "w": 42, - "x": 619, - "y": 185 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8662797212600708, - "x_min": 0.8103095293045044, - "y_max": 0.5944654941558838, - "y_min": 0.4206693172454834 - }, - "confidence": 0.76953125, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 14841, - "roi_type": "person", - "w": 43, - "x": 622, - "y": 182 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8742167353630066, - "x_min": 0.817884624004364, - "y_max": 0.5900445580482483, - "y_min": 0.4136499762535095 - }, - "confidence": 0.95703125, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 14842, - "roi_type": "person", - "w": 43, - "x": 628, - "y": 179 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8853930830955505, - "x_min": 0.826438844203949, - "y_max": 0.586012601852417, - "y_min": 0.40271833539009094 - }, - "confidence": 0.8271484375, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 14844, - "roi_type": "person", - "w": 45, - "x": 635, - "y": 174 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8913269639015198, - "x_min": 0.834475576877594, - "y_max": 0.5893236994743347, - "y_min": 0.3930070996284485 - }, - "confidence": 0.7890625, - "label": "person", - "label_id": 1 - }, - "h": 85, - "region_id": 14845, - "roi_type": "person", - "w": 44, - "x": 641, - "y": 170 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9005622863769531, - "x_min": 0.8355872631072998, - "y_max": 0.587836503982544, - "y_min": 0.3939674496650696 - }, - "confidence": 0.65576171875, - "label": "person", - "label_id": 1 - }, - "h": 84, - "region_id": 14846, - "roi_type": "person", - "w": 50, - "x": 642, - "y": 170 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9087395668029785, - "x_min": 0.8530853986740112, - "y_max": 0.5614248514175415, - "y_min": 0.3760519027709961 - }, - "confidence": 0.62646484375, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 14847, - "roi_type": "person", - "w": 43, - "x": 655, - "y": 162 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9123356938362122, - "x_min": 0.8665536046028137, - "y_max": 0.5443816184997559, - "y_min": 0.3672276437282562 - }, - "confidence": 0.8828125, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 14848, - "roi_type": "person", - "w": 35, - "x": 666, - "y": 159 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9202427864074707, - "x_min": 0.8713085651397705, - "y_max": 0.5296249389648438, - "y_min": 0.3523065745830536 - }, - "confidence": 0.97705078125, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 14849, - "roi_type": "person", - "w": 38, - "x": 669, - "y": 152 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9222867488861084, - "x_min": 0.8776892423629761, - "y_max": 0.5221399664878845, - "y_min": 0.3504602313041687 - }, - "confidence": 0.92431640625, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 14850, - "roi_type": "person", - "w": 34, - "x": 674, - "y": 151 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9280626177787781, - "x_min": 0.872081458568573, - "y_max": 0.5193465352058411, - "y_min": 0.34443533420562744 - }, - "confidence": 0.7626953125, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 14851, - "roi_type": "person", - "w": 43, - "x": 670, - "y": 149 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9372737407684326, - "x_min": 0.8854783773422241, - "y_max": 0.5109970569610596, - "y_min": 0.34280145168304443 - }, - "confidence": 0.95166015625, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 14852, - "roi_type": "person", - "w": 40, - "x": 680, - "y": 148 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9448143243789673, - "x_min": 0.8897277116775513, - "y_max": 0.5036752820014954, - "y_min": 0.3363150954246521 - }, - "confidence": 0.9072265625, - "label": "person", - "label_id": 1 - }, - "h": 72, - "region_id": 14853, - "roi_type": "person", - "w": 42, - "x": 683, - "y": 145 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9548877477645874, - "x_min": 0.8982136249542236, - "y_max": 0.5104914307594299, - "y_min": 0.3243568241596222 - }, - "confidence": 0.771484375, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 14854, - "roi_type": "person", - "w": 44, - "x": 690, - "y": 140 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9616000652313232, - "x_min": 0.9061682224273682, - "y_max": 0.5174671411514282, - "y_min": 0.3264445662498474 - }, - "confidence": 0.77392578125, - "label": "person", - "label_id": 1 - }, - "h": 83, - "region_id": 14855, - "roi_type": "person", - "w": 43, - "x": 696, - "y": 141 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9738823771476746, - "x_min": 0.9143497347831726, - "y_max": 0.49129024147987366, - "y_min": 0.31767210364341736 - }, - "confidence": 0.7880859375, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 14856, - "roi_type": "person", - "w": 46, - "x": 702, - "y": 137 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9758822321891785, - "x_min": 0.9256947636604309, - "y_max": 0.4858596622943878, - "y_min": 0.30410680174827576 - }, - "confidence": 0.72509765625, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 14857, - "roi_type": "person", - "w": 39, - "x": 711, - "y": 131 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9817521572113037, - "x_min": 0.9286510944366455, - "y_max": 0.47783294320106506, - "y_min": 0.29440435767173767 - }, - "confidence": 0.82958984375, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 14858, - "roi_type": "person", - "w": 41, - "x": 713, - "y": 127 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9829116463661194, - "x_min": 0.9320533871650696, - "y_max": 0.4618929624557495, - "y_min": 0.2908490300178528 - }, - "confidence": 0.9697265625, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 14859, - "roi_type": "person", - "w": 39, - "x": 716, - "y": 126 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.985581636428833, - "x_min": 0.9315074682235718, - "y_max": 0.4598333239555359, - "y_min": 0.28892290592193604 - }, - "confidence": 0.681640625, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 14860, - "roi_type": "person", - "w": 42, - "x": 715, - "y": 125 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9978788495063782, - "x_min": 0.9291815161705017, - "y_max": 0.4698169529438019, - "y_min": 0.2596692740917206 - }, - "confidence": 0.5927734375, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 14861, - "roi_type": "person", - "w": 53, - "x": 714, - "y": 112 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9965602159500122, - "x_min": 0.9486868381500244, - "y_max": 0.44712570309638977, - "y_min": 0.2673933207988739 - }, - "confidence": 0.55322265625, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 14862, - "roi_type": "person", - "w": 37, - "x": 729, - "y": 116 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.703125, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.11995124816894531, - "y_max": 0.9913916289806366, - "y_min": 0.016854017972946167 - }, - "confidence": 0.62158203125, - "label": "vehicle", - "label_id": 2 - }, - "h": 421, - "region_id": 14863, - "roi_type": "vehicle", - "type": { - "confidence": 0.97705078125, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 676, - "x": 92, - "y": 7 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 13916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34788548946380615, - "x_min": 0.12067420780658722, - "y_max": 1.0, - "y_min": 0.8388429880142212 - }, - "confidence": 0.59814453125, - "label": "vehicle", - "label_id": 2 - }, - "h": 70, - "region_id": 14864, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 174, - "x": 93, - "y": 362 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3533565625548363, - "x_min": 0.12123485654592514, - "y_max": 1.0, - "y_min": 0.8090957999229431 - }, - "confidence": 0.71826171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 82, - "region_id": 14865, - "roi_type": "vehicle", - "type": { - "confidence": 0.98193359375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 178, - "x": 93, - "y": 350 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35722535848617554, - "x_min": 0.12032529711723328, - "y_max": 0.9970874786376953, - "y_min": 0.7843096256256104 - }, - "confidence": 0.80517578125, - "label": "vehicle", - "label_id": 2 - }, - "h": 92, - "region_id": 14866, - "roi_type": "vehicle", - "type": { - "confidence": 0.75390625, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 182, - "x": 92, - "y": 339 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35971733182668686, - "x_min": 0.11328639835119247, - "y_max": 0.9965744614601135, - "y_min": 0.7635470032691956 - }, - "confidence": 0.79931640625, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "region_id": 14867, - "roi_type": "vehicle", - "type": { - "confidence": 0.9931640625, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 189, - "x": 87, - "y": 330 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3702913075685501, - "x_min": 0.11394597589969635, - "y_max": 1.0, - "y_min": 0.7276990413665771 - }, - "confidence": 0.7080078125, - "label": "vehicle", - "label_id": 2 - }, - "h": 118, - "region_id": 14868, - "roi_type": "vehicle", - "type": { - "confidence": 0.658203125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 197, - "x": 88, - "y": 314 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9990234375, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36841410398483276, - "x_min": 0.10085779428482056, - "y_max": 0.996000349521637, - "y_min": 0.7033589482307434 - }, - "confidence": 0.84619140625, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 14869, - "roi_type": "vehicle", - "type": { - "confidence": 0.8291015625, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 205, - "x": 77, - "y": 304 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9990234375, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.37700408697128296, - "x_min": 0.10724449157714844, - "y_max": 0.9995347261428833, - "y_min": 0.6776673793792725 - }, - "confidence": 0.92333984375, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "region_id": 14870, - "roi_type": "vehicle", - "type": { - "confidence": 0.99609375, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 207, - "x": 82, - "y": 293 - }, - { - "color": { - "confidence": 0.5615234375, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.12240788340568542, - "y_max": 0.9747185707092285, - "y_min": 0.03273570537567139 - }, - "confidence": 0.63232421875, - "label": "vehicle", - "label_id": 2 - }, - "h": 407, - "region_id": 14871, - "roi_type": "vehicle", - "type": { - "confidence": 0.947265625, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 674, - "x": 94, - "y": 14 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.998046875, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3794129192829132, - "x_min": 0.10572710633277893, - "y_max": 1.0, - "y_min": 0.6497832536697388 - }, - "confidence": 0.955078125, - "label": "vehicle", - "label_id": 2 - }, - "h": 151, - "region_id": 14872, - "roi_type": "vehicle", - "type": { - "confidence": 0.9931640625, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 210, - "x": 81, - "y": 281 - }, - { - "color": { - "confidence": 0.64111328125, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.12235894799232483, - "y_max": 0.9642861187458038, - "y_min": 0.03327503800392151 - }, - "confidence": 0.63671875, - "label": "vehicle", - "label_id": 2 - }, - "h": 402, - "region_id": 14873, - "roi_type": "vehicle", - "type": { - "confidence": 0.9931640625, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 674, - "x": 94, - "y": 14 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.37893153727054596, - "x_min": 0.10524572432041168, - "y_max": 1.0, - "y_min": 0.6315947771072388 - }, - "confidence": 0.990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 159, - "region_id": 14874, - "roi_type": "vehicle", - "type": { - "confidence": 0.998046875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 210, - "x": 81, - "y": 273 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.37906306982040405, - "x_min": 0.11943095922470093, - "y_max": 0.9988926649093628, - "y_min": 0.6108778715133667 - }, - "confidence": 0.994140625, - "label": "vehicle", - "label_id": 2 - }, - "h": 168, - "region_id": 14875, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 199, - "x": 92, - "y": 264 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.37611158192157745, - "x_min": 0.11804629862308502, - "y_max": 0.9963674545288086, - "y_min": 0.585686445236206 - }, - "confidence": 0.9951171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 177, - "region_id": 14876, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 198, - "x": 91, - "y": 253 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3770822137594223, - "x_min": 0.11729799211025238, - "y_max": 0.99732905626297, - "y_min": 0.5627850890159607 - }, - "confidence": 0.98828125, - "label": "vehicle", - "label_id": 2 - }, - "h": 188, - "region_id": 14877, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 200, - "x": 90, - "y": 243 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3729642927646637, - "x_min": 0.1085742712020874, - "y_max": 1.0, - "y_min": 0.5397972464561462 - }, - "confidence": 0.97802734375, - "label": "vehicle", - "label_id": 2 - }, - "h": 199, - "region_id": 14878, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 203, - "x": 83, - "y": 233 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3656986355781555, - "x_min": 0.13279204070568085, - "y_max": 1.0, - "y_min": 0.5242156386375427 - }, - "confidence": 0.97900390625, - "label": "vehicle", - "label_id": 2 - }, - "h": 206, - "region_id": 14879, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 179, - "x": 102, - "y": 226 - }, - { - "color": { - "confidence": 0.4248046875, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9005439579486847, - "x_min": 0.0947130024433136, - "y_max": 0.6981552839279175, - "y_min": 0.05118680000305176 - }, - "confidence": 0.53125, - "label": "vehicle", - "label_id": 2 - }, - "h": 279, - "region_id": 14880, - "roi_type": "vehicle", - "type": { - "confidence": 0.79931640625, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 619, - "x": 73, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36320242285728455, - "x_min": 0.13479956984519958, - "y_max": 1.0, - "y_min": 0.5036964416503906 - }, - "confidence": 0.9921875, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "region_id": 14881, - "roi_type": "vehicle", - "type": { - "confidence": 0.9931640625, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 175, - "x": 104, - "y": 218 - }, - { - "color": { - "confidence": 0.568359375, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9596145153045654, - "x_min": 0.1480247974395752, - "y_max": 0.8022695779800415, - "y_min": 0.047685861587524414 - }, - "confidence": 0.662109375, - "label": "vehicle", - "label_id": 2 - }, - "h": 326, - "region_id": 14882, - "roi_type": "vehicle", - "type": { - "confidence": 0.9658203125, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 623, - "x": 114, - "y": 21 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35492169857025146, - "x_min": 0.14194001257419586, - "y_max": 0.9911630153656006, - "y_min": 0.4964284896850586 - }, - "confidence": 0.99609375, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "region_id": 14883, - "roi_type": "vehicle", - "type": { - "confidence": 0.986328125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 164, - "x": 109, - "y": 214 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3554447889328003, - "x_min": 0.1485300064086914, - "y_max": 0.9996136724948883, - "y_min": 0.47489133477211 - }, - "confidence": 0.998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 227, - "region_id": 14884, - "roi_type": "vehicle", - "type": { - "confidence": 0.98095703125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 159, - "x": 114, - "y": 205 - }, - { - "color": { - "confidence": 0.6923828125, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9596475064754486, - "x_min": 0.3637692630290985, - "y_max": 0.9144225120544434, - "y_min": 0.03580266237258911 - }, - "confidence": 0.50537109375, - "label": "vehicle", - "label_id": 2 - }, - "h": 380, - "region_id": 14885, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 458, - "x": 279, - "y": 15 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3561684787273407, - "x_min": 0.1538877785205841, - "y_max": 0.9828415811061859, - "y_min": 0.45157262682914734 - }, - "confidence": 0.9951171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 230, - "region_id": 14886, - "roi_type": "vehicle", - "type": { - "confidence": 0.998046875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 155, - "x": 118, - "y": 195 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34915268421173096, - "x_min": 0.1601976752281189, - "y_max": 0.9477139413356781, - "y_min": 0.43223318457603455 - }, - "confidence": 0.9970703125, - "label": "vehicle", - "label_id": 2 - }, - "h": 223, - "region_id": 14887, - "roi_type": "vehicle", - "type": { - "confidence": 0.984375, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 145, - "x": 123, - "y": 187 - }, - { - "color": { - "confidence": 0.517578125, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9622732400894165, - "x_min": 0.3467036485671997, - "y_max": 0.7548135221004486, - "y_min": 0.06216701865196228 - }, - "confidence": 0.76416015625, - "label": "vehicle", - "label_id": 2 - }, - "h": 299, - "region_id": 14888, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 473, - "x": 266, - "y": 27 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34494632482528687, - "x_min": 0.16223210096359253, - "y_max": 0.9361109733581543, - "y_min": 0.4226393699645996 - }, - "confidence": 0.998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 222, - "region_id": 14889, - "roi_type": "vehicle", - "type": { - "confidence": 0.966796875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 140, - "x": 125, - "y": 183 - }, - { - "color": { - "confidence": 0.57763671875, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9732775092124939, - "x_min": 0.3253013491630554, - "y_max": 0.9302563667297363, - "y_min": 0.05300796031951904 - }, - "confidence": 0.6083984375, - "label": "vehicle", - "label_id": 2 - }, - "h": 379, - "region_id": 14890, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 498, - "x": 250, - "y": 23 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3391859233379364, - "x_min": 0.1647346317768097, - "y_max": 0.9072514772415161, - "y_min": 0.4021332263946533 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 218, - "region_id": 14891, - "roi_type": "vehicle", - "type": { - "confidence": 0.75244140625, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 134, - "x": 127, - "y": 174 - }, - { - "color": { - "confidence": 0.432373046875, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9653114080429077, - "x_min": 0.3195772171020508, - "y_max": 0.9068852961063385, - "y_min": 0.05095675587654114 - }, - "confidence": 0.56103515625, - "label": "vehicle", - "label_id": 2 - }, - "h": 370, - "region_id": 14892, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 496, - "x": 245, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3360394239425659, - "x_min": 0.164894700050354, - "y_max": 0.8810743093490601, - "y_min": 0.38855671882629395 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "region_id": 14893, - "roi_type": "vehicle", - "type": { - "confidence": 0.8857421875, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 131, - "x": 127, - "y": 168 - }, - { - "color": { - "confidence": 0.38818359375, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9583485126495361, - "x_min": 0.3183259963989258, - "y_max": 0.836863249540329, - "y_min": 0.07228550314903259 - }, - "confidence": 0.6611328125, - "label": "vehicle", - "label_id": 2 - }, - "h": 330, - "region_id": 14894, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 492, - "x": 244, - "y": 31 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.33219119906425476, - "x_min": 0.16244429349899292, - "y_max": 0.859308660030365, - "y_min": 0.3722662329673767 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 210, - "region_id": 14895, - "roi_type": "vehicle", - "type": { - "confidence": 0.98388671875, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 130, - "x": 125, - "y": 161 - }, - { - "color": { - "confidence": 0.43359375, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.96105095744133, - "x_min": 0.31634053587913513, - "y_max": 0.9130281805992126, - "y_min": 0.06904906034469604 - }, - "confidence": 0.6064453125, - "label": "vehicle", - "label_id": 2 - }, - "h": 365, - "region_id": 14896, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 495, - "x": 243, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.33003008365631104, - "x_min": 0.16216199100017548, - "y_max": 0.8308836817741394, - "y_min": 0.35496407747268677 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 206, - "region_id": 14897, - "roi_type": "vehicle", - "type": { - "confidence": 0.98828125, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 129, - "x": 125, - "y": 153 - }, - { - "color": { - "confidence": 0.623046875, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9567078053951263, - "x_min": 0.3253123462200165, - "y_max": 0.8802770972251892, - "y_min": 0.0708383321762085 - }, - "confidence": 0.6923828125, - "label": "vehicle", - "label_id": 2 - }, - "h": 350, - "region_id": 14898, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 485, - "x": 250, - "y": 31 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3288085162639618, - "x_min": 0.157329261302948, - "y_max": 0.8057076930999756, - "y_min": 0.3446691036224365 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 199, - "region_id": 14899, - "roi_type": "vehicle", - "type": { - "confidence": 0.9873046875, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 132, - "x": 121, - "y": 149 - }, - { - "color": { - "confidence": 0.365234375, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.963686466217041, - "x_min": 0.3247877359390259, - "y_max": 0.8278923332691193, - "y_min": 0.052186518907547 - }, - "confidence": 0.75537109375, - "label": "vehicle", - "label_id": 2 - }, - "h": 335, - "region_id": 14900, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 491, - "x": 249, - "y": 23 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.325700581073761, - "x_min": 0.15155886113643646, - "y_max": 0.7916401624679565, - "y_min": 0.3304018974304199 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 199, - "region_id": 14901, - "roi_type": "vehicle", - "type": { - "confidence": 0.9921875, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 134, - "x": 116, - "y": 143 - }, - { - "color": { - "confidence": 0.64501953125, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9605325162410736, - "x_min": 0.34267494082450867, - "y_max": 0.8595539331436157, - "y_min": 0.04185444116592407 - }, - "confidence": 0.60791015625, - "label": "vehicle", - "label_id": 2 - }, - "h": 353, - "region_id": 14902, - "roi_type": "vehicle", - "type": { - "confidence": 0.998046875, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 475, - "x": 263, - "y": 18 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.32326173782348633, - "x_min": 0.1429257094860077, - "y_max": 0.7730258703231812, - "y_min": 0.31999945640563965 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 196, - "region_id": 14903, - "roi_type": "vehicle", - "type": { - "confidence": 0.9970703125, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 138, - "x": 110, - "y": 138 - }, - { - "color": { - "confidence": 0.4951171875, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9603236615657806, - "x_min": 0.343340128660202, - "y_max": 0.8690563440322876, - "y_min": 0.03262406587600708 - }, - "confidence": 0.6357421875, - "label": "vehicle", - "label_id": 2 - }, - "h": 361, - "region_id": 14904, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 474, - "x": 264, - "y": 14 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3207375407218933, - "x_min": 0.13676699995994568, - "y_max": 0.7576345205307007, - "y_min": 0.31319475173950195 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 192, - "region_id": 14905, - "roi_type": "vehicle", - "type": { - "confidence": 0.9921875, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 141, - "x": 105, - "y": 135 - }, - { - "color": { - "confidence": 0.393798828125, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9543446004390717, - "x_min": 0.3145720660686493, - "y_max": 0.8108518123626709, - "y_min": 0.03726363182067871 - }, - "confidence": 0.82177734375, - "label": "vehicle", - "label_id": 2 - }, - "h": 334, - "region_id": 14906, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 491, - "x": 242, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3170391619205475, - "x_min": 0.12877821922302246, - "y_max": 0.7354335188865662, - "y_min": 0.30213361978530884 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 187, - "region_id": 14907, - "roi_type": "vehicle", - "type": { - "confidence": 0.9052734375, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 145, - "x": 99, - "y": 131 - }, - { - "color": { - "confidence": 0.41064453125, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9484927356243134, - "x_min": 0.32739946246147156, - "y_max": 0.7967373430728912, - "y_min": 0.03275647759437561 - }, - "confidence": 0.89990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 330, - "region_id": 14908, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 477, - "x": 251, - "y": 14 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3141186833381653, - "x_min": 0.11657941341400146, - "y_max": 0.7233425378799438, - "y_min": 0.29008495807647705 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 187, - "region_id": 14909, - "roi_type": "vehicle", - "type": { - "confidence": 0.64892578125, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 152, - "x": 90, - "y": 125 - }, - { - "color": { - "confidence": 0.490478515625, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.962075799703598, - "x_min": 0.31081756949424744, - "y_max": 0.8074585795402527, - "y_min": 0.043179333209991455 - }, - "confidence": 0.77880859375, - "label": "vehicle", - "label_id": 2 - }, - "h": 330, - "region_id": 14910, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 500, - "x": 239, - "y": 19 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.31127429008483887, - "x_min": 0.10575759410858154, - "y_max": 0.7095938324928284, - "y_min": 0.2833430767059326 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 184, - "region_id": 14911, - "roi_type": "vehicle", - "type": { - "confidence": 0.7021484375, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 158, - "x": 81, - "y": 122 - }, - { - "color": { - "confidence": 0.68017578125, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9623641967773438, - "x_min": 0.32337188720703125, - "y_max": 0.8485720753669739, - "y_min": 0.04102778434753418 - }, - "confidence": 0.73828125, - "label": "vehicle", - "label_id": 2 - }, - "h": 349, - "region_id": 14912, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 491, - "x": 248, - "y": 18 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.30724579095840454, - "x_min": 0.0889257937669754, - "y_max": 0.6935571432113647, - "y_min": 0.27660852670669556 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 180, - "region_id": 14913, - "roi_type": "vehicle", - "type": { - "confidence": 0.60791015625, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 168, - "x": 68, - "y": 119 - }, - { - "color": { - "confidence": 0.70703125, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9568454027175903, - "x_min": 0.3318895101547241, - "y_max": 0.8259652853012085, - "y_min": 0.046311259269714355 - }, - "confidence": 0.7607421875, - "label": "vehicle", - "label_id": 2 - }, - "h": 337, - "region_id": 14914, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 480, - "x": 255, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3028292879462242, - "x_min": 0.08205672353506088, - "y_max": 0.6734104156494141, - "y_min": 0.2817556858062744 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 169, - "region_id": 14915, - "roi_type": "vehicle", - "type": { - "confidence": 0.70361328125, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 170, - "x": 63, - "y": 122 - }, - { - "color": { - "confidence": 0.669921875, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9649854302406311, - "x_min": 0.31925123929977417, - "y_max": 0.8659673929214478, - "y_min": 0.0621986985206604 - }, - "confidence": 0.54736328125, - "label": "vehicle", - "label_id": 2 - }, - "h": 347, - "region_id": 14916, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 496, - "x": 245, - "y": 27 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2942311242222786, - "x_min": 0.07399673014879227, - "y_max": 0.6569262742996216, - "y_min": 0.27245113253593445 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 166, - "region_id": 14917, - "roi_type": "vehicle", - "type": { - "confidence": 0.9853515625, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 169, - "x": 57, - "y": 118 - }, - { - "color": { - "confidence": 0.69482421875, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9777919352054596, - "x_min": 0.34445157647132874, - "y_max": 0.848713606595993, - "y_min": 0.045572489500045776 - }, - "confidence": 0.69873046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 347, - "region_id": 14918, - "roi_type": "vehicle", - "type": { - "confidence": 0.99609375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 486, - "x": 265, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2884630039334297, - "x_min": 0.06656671315431595, - "y_max": 0.6484526991844177, - "y_min": 0.264728307723999 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 166, - "region_id": 14919, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 170, - "x": 51, - "y": 114 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2830882668495178, - "x_min": 0.054641202092170715, - "y_max": 0.6378852725028992, - "y_min": 0.2628006339073181 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 162, - "region_id": 14920, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 175, - "x": 42, - "y": 114 - }, - { - "color": { - "confidence": 0.5537109375, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9622345864772797, - "x_min": 0.35567352175712585, - "y_max": 0.7274520099163055, - "y_min": 0.06999191641807556 - }, - "confidence": 0.529296875, - "label": "vehicle", - "label_id": 2 - }, - "h": 284, - "region_id": 14921, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 466, - "x": 273, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.27765556424856186, - "x_min": 0.04351823776960373, - "y_max": 0.6269818544387817, - "y_min": 0.25980502367019653 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 159, - "region_id": 14922, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 180, - "x": 33, - "y": 112 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.27031514048576355, - "x_min": 0.030673563480377197, - "y_max": 0.612331748008728, - "y_min": 0.2571866512298584 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 153, - "region_id": 14923, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 184, - "x": 24, - "y": 111 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2615850567817688, - "x_min": 0.019214048981666565, - "y_max": 0.6010944843292236, - "y_min": 0.2520679831504822 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 151, - "region_id": 14924, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 186, - "x": 15, - "y": 109 - }, - { - "color": { - "confidence": 0.572265625, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9748682379722595, - "x_min": 0.3660525679588318, - "y_max": 0.9305697083473206, - "y_min": 0.0460972785949707 - }, - "confidence": 0.5625, - "label": "vehicle", - "label_id": 2 - }, - "h": 382, - "region_id": 14925, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 468, - "x": 281, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2566665932536125, - "x_min": 0.010110311210155487, - "y_max": 0.5950663089752197, - "y_min": 0.25599029660224915 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 146, - "region_id": 14926, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 189, - "x": 8, - "y": 111 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.24547897279262543, - "x_min": 0.00378476083278656, - "y_max": 0.58565354347229, - "y_min": 0.250363290309906 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 145, - "region_id": 14927, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 186, - "x": 3, - "y": 108 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.23500293493270874, - "x_min": 0.001883864402770996, - "y_max": 0.5771509259939194, - "y_min": 0.24766944348812103 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 142, - "region_id": 14928, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 179, - "x": 1, - "y": 107 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.22417304664850235, - "x_min": 0.0005508437752723694, - "y_max": 0.5657980293035507, - "y_min": 0.24598316848278046 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 138, - "region_id": 14929, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 172, - "x": 0, - "y": 106 - }, - { - "color": { - "confidence": 0.61083984375, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9669439494609833, - "x_min": 0.3940558135509491, - "y_max": 0.7534793317317963, - "y_min": 0.06528171896934509 - }, - "confidence": 0.61279296875, - "label": "vehicle", - "label_id": 2 - }, - "h": 297, - "region_id": 14930, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 440, - "x": 303, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.21810167282819748, - "x_min": 0.0, - "y_max": 0.5573959350585938, - "y_min": 0.2435314953327179 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 136, - "region_id": 14931, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 168, - "x": 0, - "y": 105 - }, - { - "color": { - "confidence": 0.4599609375, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9764391481876373, - "x_min": 0.3866957724094391, - "y_max": 0.7931325435638428, - "y_min": 0.039081573486328125 - }, - "confidence": 0.708984375, - "label": "vehicle", - "label_id": 2 - }, - "h": 326, - "region_id": 14932, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 453, - "x": 297, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.20639830827713013, - "x_min": 0.0010264068841934204, - "y_max": 0.5487916022539139, - "y_min": 0.24332047998905182 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 14933, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 158, - "x": 1, - "y": 105 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.1992337852716446, - "x_min": 0.0004508793354034424, - "y_max": 0.5388166904449463, - "y_min": 0.24044927954673767 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 129, - "region_id": 14934, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 153, - "x": 0, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.18727533519268036, - "x_min": 0.0016330182552337646, - "y_max": 0.5345794409513474, - "y_min": 0.22854118049144745 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 14935, - "roi_type": "vehicle", - "type": { - "confidence": 0.9912109375, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 143, - "x": 1, - "y": 99 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.17466454952955246, - "x_min": 0.0019783303141593933, - "y_max": 0.530539870262146, - "y_min": 0.22426244616508484 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 14936, - "roi_type": "vehicle", - "type": { - "confidence": 0.9912109375, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 133, - "x": 2, - "y": 97 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.16492079943418503, - "x_min": 0.003018997609615326, - "y_max": 0.523313120007515, - "y_min": 0.22057349979877472 - }, - "confidence": 0.998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 131, - "region_id": 14937, - "roi_type": "vehicle", - "type": { - "confidence": 0.9892578125, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 124, - "x": 2, - "y": 95 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.15884939581155777, - "x_min": 0.0, - "y_max": 0.5263099074363708, - "y_min": 0.2229311466217041 - }, - "confidence": 0.9970703125, - "label": "vehicle", - "label_id": 2 - }, - "h": 131, - "region_id": 14938, - "roi_type": "vehicle", - "type": { - "confidence": 0.87890625, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 122, - "x": 0, - "y": 96 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.1441451609134674, - "x_min": 0.000693395733833313, - "y_max": 0.5236131399869919, - "y_min": 0.2226388305425644 - }, - "confidence": 0.990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 130, - "region_id": 14939, - "roi_type": "vehicle", - "type": { - "confidence": 0.9716796875, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 110, - "x": 1, - "y": 96 - }, - { - "color": { - "confidence": 0.90869140625, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.11497771739959717, - "y_max": 0.9465397000312805, - "y_min": 0.03637963533401489 - }, - "confidence": 0.552734375, - "label": "vehicle", - "label_id": 2 - }, - "h": 393, - "region_id": 14940, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 680, - "x": 88, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.1313403695821762, - "x_min": 0.0012536048889160156, - "y_max": 0.5229455083608627, - "y_min": 0.23211054503917694 - }, - "confidence": 0.8857421875, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 14941, - "roi_type": "vehicle", - "type": { - "confidence": 0.626953125, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 100, - "x": 1, - "y": 100 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.1251680999994278, - "x_min": 0.0, - "y_max": 0.5160009860992432, - "y_min": 0.24285933375358582 - }, - "confidence": 0.74755859375, - "label": "vehicle", - "label_id": 2 - }, - "h": 118, - "region_id": 14942, - "roi_type": "vehicle", - "type": { - "confidence": 0.80517578125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 96, - "x": 0, - "y": 105 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.11142117157578468, - "x_min": 0.0006205327808856964, - "y_max": 0.5151717662811279, - "y_min": 0.23993870615959167 - }, - "confidence": 0.88330078125, - "label": "vehicle", - "label_id": 2 - }, - "h": 119, - "region_id": 14943, - "roi_type": "vehicle", - "type": { - "confidence": 0.94287109375, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 85, - "x": 0, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.09933491796255112, - "x_min": 0.0014743134379386902, - "y_max": 0.518338680267334, - "y_min": 0.23731520771980286 - }, - "confidence": 0.6923828125, - "label": "vehicle", - "label_id": 2 - }, - "h": 121, - "region_id": 14944, - "roi_type": "vehicle", - "type": { - "confidence": 0.916015625, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 75, - "x": 1, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.08814045041799545, - "x_min": 0.0, - "y_max": 0.5179922431707382, - "y_min": 0.2371600717306137 - }, - "confidence": 0.5166015625, - "label": "vehicle", - "label_id": 2 - }, - "h": 121, - "region_id": 14945, - "roi_type": "vehicle", - "type": { - "confidence": 0.8642578125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 68, - "x": 0, - "y": 102 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.078303974121809, - "x_min": 0.0, - "y_max": 0.5105343610048294, - "y_min": 0.23882491886615753 - }, - "confidence": 0.74951171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 14946, - "roi_type": "vehicle", - "type": { - "confidence": 0.97705078125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 60, - "x": 0, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.06655463203787804, - "x_min": 0.0006585381925106049, - "y_max": 0.5064481496810913, - "y_min": 0.23939380049705505 - }, - "confidence": 0.6376953125, - "label": "vehicle", - "label_id": 2 - }, - "h": 115, - "region_id": 14947, - "roi_type": "vehicle", - "type": { - "confidence": 0.89990234375, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 51, - "x": 1, - "y": 103 - }, - { - "color": { - "confidence": 0.60400390625, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.0942881628870964, - "x_min": 0.04302658885717392, - "y_max": 0.6302101612091064, - "y_min": 0.5369205474853516 - }, - "confidence": 0.5048828125, - "label": "vehicle", - "label_id": 2 - }, - "h": 40, - "region_id": 14948, - "roi_type": "vehicle", - "type": { - "confidence": 0.9912109375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 39, - "x": 33, - "y": 232 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.058643946424126625, - "x_min": 0.0012939441949129105, - "y_max": 0.4994227886199951, - "y_min": 0.24962610006332397 - }, - "confidence": 0.74755859375, - "label": "vehicle", - "label_id": 2 - }, - "h": 108, - "region_id": 14949, - "roi_type": "vehicle", - "type": { - "confidence": 0.65380859375, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 44, - "x": 1, - "y": 108 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.04710671491920948, - "x_min": 0.002159060910344124, - "y_max": 0.49160075187683105, - "y_min": 0.27301615476608276 - }, - "confidence": 0.580078125, - "label": "vehicle", - "label_id": 2 - }, - "h": 94, - "region_id": 14950, - "roi_type": "vehicle", - "type": { - "confidence": 0.7900390625, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 35, - "x": 2, - "y": 118 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.038663893938064575, - "x_min": 0.0, - "y_max": 0.4893234968185425, - "y_min": 0.2736009955406189 - }, - "confidence": 0.5234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 93, - "region_id": 14951, - "roi_type": "vehicle", - "type": { - "confidence": 0.54638671875, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 30, - "x": 0, - "y": 118 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.6533203125, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9569013714790344, - "x_min": 0.2530626654624939, - "y_max": 0.7804694473743439, - "y_min": 0.08048084378242493 - }, - "confidence": 0.66357421875, - "label": "vehicle", - "label_id": 2 - }, - "h": 302, - "region_id": 14958, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 541, - "x": 194, - "y": 35 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 27333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.05796085111796856, - "x_min": 0.003526007756590843, - "y_max": 0.2683647871017456, - "y_min": 0.09554657340049744 - }, - "confidence": 0.7578125, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 14968, - "roi_type": "person", - "w": 42, - "x": 3, - "y": 41 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06379417888820171, - "x_min": 0.007910190150141716, - "y_max": 0.2743130400776863, - "y_min": 0.10185719281435013 - }, - "confidence": 0.80126953125, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 14969, - "roi_type": "person", - "w": 43, - "x": 6, - "y": 44 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07424172759056091, - "x_min": 0.015349648892879486, - "y_max": 0.2675032541155815, - "y_min": 0.09078633040189743 - }, - "confidence": 0.892578125, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 14970, - "roi_type": "person", - "w": 45, - "x": 12, - "y": 39 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06830157898366451, - "x_min": 0.022359145805239677, - "y_max": 0.26452428847551346, - "y_min": 0.09266514331102371 - }, - "confidence": 0.9462890625, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 14971, - "roi_type": "person", - "w": 35, - "x": 17, - "y": 40 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06263137422502041, - "x_min": 0.028442716225981712, - "y_max": 0.2630351260304451, - "y_min": 0.08788127452135086 - }, - "confidence": 0.70654296875, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 14972, - "roi_type": "person", - "w": 26, - "x": 22, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07015642523765564, - "x_min": 0.038890134543180466, - "y_max": 0.2707189917564392, - "y_min": 0.08740551769733429 - }, - "confidence": 0.85986328125, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 14973, - "roi_type": "person", - "w": 24, - "x": 30, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.08970045298337936, - "x_min": 0.045083530247211456, - "y_max": 0.2602956220507622, - "y_min": 0.08799969404935837 - }, - "confidence": 0.97607421875, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 14974, - "roi_type": "person", - "w": 34, - "x": 35, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.10221833735704422, - "x_min": 0.050295390188694, - "y_max": 0.26162880659103394, - "y_min": 0.08928240835666656 - }, - "confidence": 0.96240234375, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 14975, - "roi_type": "person", - "w": 40, - "x": 39, - "y": 39 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1124647855758667, - "x_min": 0.05559557303786278, - "y_max": 0.26580512523651123, - "y_min": 0.08706669509410858 - }, - "confidence": 0.96240234375, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 14976, - "roi_type": "person", - "w": 44, - "x": 43, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11494597047567368, - "x_min": 0.06002477556467056, - "y_max": 0.2610744759440422, - "y_min": 0.0874699279665947 - }, - "confidence": 0.95947265625, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 14977, - "roi_type": "person", - "w": 42, - "x": 46, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1076885536313057, - "x_min": 0.06897159665822983, - "y_max": 0.25734183192253113, - "y_min": 0.08855894207954407 - }, - "confidence": 0.75, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 14978, - "roi_type": "person", - "w": 30, - "x": 53, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11588124930858612, - "x_min": 0.0844779908657074, - "y_max": 0.25993383675813675, - "y_min": 0.08377892524003983 - }, - "confidence": 0.94384765625, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 14979, - "roi_type": "person", - "w": 24, - "x": 65, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.14279809594154358, - "x_min": 0.08925659954547882, - "y_max": 0.2586924508213997, - "y_min": 0.08260411769151688 - }, - "confidence": 0.98095703125, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 14980, - "roi_type": "person", - "w": 41, - "x": 69, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15317003428936005, - "x_min": 0.09756682813167572, - "y_max": 0.25573694705963135, - "y_min": 0.08256407082080841 - }, - "confidence": 0.9208984375, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 14981, - "roi_type": "person", - "w": 43, - "x": 75, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15702785551548004, - "x_min": 0.09714777767658234, - "y_max": 0.25397133082151413, - "y_min": 0.08110251277685165 - }, - "confidence": 0.98291015625, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 14982, - "roi_type": "person", - "w": 46, - "x": 75, - "y": 35 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15839335322380066, - "x_min": 0.10749229788780212, - "y_max": 0.2547931671142578, - "y_min": 0.07889387011528015 - }, - "confidence": 0.9873046875, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 14983, - "roi_type": "person", - "w": 39, - "x": 83, - "y": 34 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1491146832704544, - "x_min": 0.11746441572904587, - "y_max": 0.25783464312553406, - "y_min": 0.07373198866844177 - }, - "confidence": 0.91162109375, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 14984, - "roi_type": "person", - "w": 24, - "x": 90, - "y": 32 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15772441029548645, - "x_min": 0.13126039505004883, - "y_max": 0.2508736029267311, - "y_min": 0.08296392112970352 - }, - "confidence": 0.55517578125, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 14985, - "roi_type": "person", - "w": 20, - "x": 101, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.17117199301719666, - "x_min": 0.13278326392173767, - "y_max": 0.2538791224360466, - "y_min": 0.0712466761469841 - }, - "confidence": 0.921875, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 14986, - "roi_type": "person", - "w": 29, - "x": 102, - "y": 31 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1887526512145996, - "x_min": 0.13873153924942017, - "y_max": 0.24830224364995956, - "y_min": 0.06952892988920212 - }, - "confidence": 0.9716796875, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 14987, - "roi_type": "person", - "w": 38, - "x": 107, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.198638916015625, - "x_min": 0.1424277126789093, - "y_max": 0.24426036328077316, - "y_min": 0.06967847794294357 - }, - "confidence": 0.9326171875, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 14988, - "roi_type": "person", - "w": 43, - "x": 109, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19823414087295532, - "x_min": 0.14558222889900208, - "y_max": 0.24210044741630554, - "y_min": 0.06738212704658508 - }, - "confidence": 0.9580078125, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 14989, - "roi_type": "person", - "w": 40, - "x": 112, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19666728377342224, - "x_min": 0.15930649638175964, - "y_max": 0.24701160937547684, - "y_min": 0.06952521950006485 - }, - "confidence": 0.9384765625, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 14990, - "roi_type": "person", - "w": 29, - "x": 122, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19645187258720398, - "x_min": 0.16701623797416687, - "y_max": 0.2467137724161148, - "y_min": 0.05971263349056244 - }, - "confidence": 0.81396484375, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 14991, - "roi_type": "person", - "w": 23, - "x": 128, - "y": 26 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.20708149671554565, - "x_min": 0.17690825462341309, - "y_max": 0.24018753319978714, - "y_min": 0.06553960591554642 - }, - "confidence": 0.86181640625, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 14992, - "roi_type": "person", - "w": 23, - "x": 136, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.22888699173927307, - "x_min": 0.17742937803268433, - "y_max": 0.2344159260392189, - "y_min": 0.06553412228822708 - }, - "confidence": 0.9453125, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 14993, - "roi_type": "person", - "w": 40, - "x": 136, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23775845766067505, - "x_min": 0.1861700415611267, - "y_max": 0.2327612265944481, - "y_min": 0.0673552080988884 - }, - "confidence": 0.86279296875, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 14994, - "roi_type": "person", - "w": 40, - "x": 143, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24472364783287048, - "x_min": 0.18928638100624084, - "y_max": 0.22882839292287827, - "y_min": 0.06334161013364792 - }, - "confidence": 0.939453125, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 14995, - "roi_type": "person", - "w": 43, - "x": 145, - "y": 27 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24371737241744995, - "x_min": 0.19899338483810425, - "y_max": 0.22491950541734695, - "y_min": 0.06480459123849869 - }, - "confidence": 0.91650390625, - "label": "person", - "label_id": 1 - }, - "h": 69, - "region_id": 14996, - "roi_type": "person", - "w": 34, - "x": 153, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23920945823192596, - "x_min": 0.20880557596683502, - "y_max": 0.2312590777873993, - "y_min": 0.051177769899368286 - }, - "confidence": 0.7421875, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 14997, - "roi_type": "person", - "w": 23, - "x": 160, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24577099084854126, - "x_min": 0.21508976817131042, - "y_max": 0.22445382922887802, - "y_min": 0.04580488055944443 - }, - "confidence": 0.8076171875, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 14998, - "roi_type": "person", - "w": 24, - "x": 165, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2584080398082733, - "x_min": 0.2213379144668579, - "y_max": 0.22188827395439148, - "y_min": 0.04266056418418884 - }, - "confidence": 0.9384765625, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 14999, - "roi_type": "person", - "w": 28, - "x": 170, - "y": 18 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.26847225427627563, - "x_min": 0.22314880788326263, - "y_max": 0.22252074629068375, - "y_min": 0.03724823147058487 - }, - "confidence": 0.85595703125, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 15000, - "roi_type": "person", - "w": 35, - "x": 171, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27866482734680176, - "x_min": 0.22583787143230438, - "y_max": 0.21875855326652527, - "y_min": 0.04367309808731079 - }, - "confidence": 0.94140625, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 15001, - "roi_type": "person", - "w": 41, - "x": 173, - "y": 19 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27825289964675903, - "x_min": 0.22984372079372406, - "y_max": 0.2128024399280548, - "y_min": 0.04053172469139099 - }, - "confidence": 0.89990234375, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 15002, - "roi_type": "person", - "w": 37, - "x": 177, - "y": 18 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.278627872467041, - "x_min": 0.23964999616146088, - "y_max": 0.21169210225343704, - "y_min": 0.026805169880390167 - }, - "confidence": 0.56640625, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 15003, - "roi_type": "person", - "w": 30, - "x": 184, - "y": 12 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.28468194603919983, - "x_min": 0.2542703449726105, - "y_max": 0.2149207815527916, - "y_min": 0.02619936317205429 - }, - "confidence": 0.794921875, - "label": "person", - "label_id": 1 - }, - "h": 82, - "region_id": 15004, - "roi_type": "person", - "w": 23, - "x": 195, - "y": 11 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2908972501754761, - "x_min": 0.2598450779914856, - "y_max": 0.2079339250922203, - "y_min": 0.022825680673122406 - }, - "confidence": 0.8330078125, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 15005, - "roi_type": "person", - "w": 24, - "x": 200, - "y": 10 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.30745673179626465, - "x_min": 0.26573002338409424, - "y_max": 0.19293907284736633, - "y_min": 0.02228669822216034 - }, - "confidence": 0.97802734375, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 15006, - "roi_type": "person", - "w": 32, - "x": 204, - "y": 10 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3109080493450165, - "x_min": 0.26781293749809265, - "y_max": 0.19742047786712646, - "y_min": 0.023131072521209717 - }, - "confidence": 0.96533203125, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 15007, - "roi_type": "person", - "w": 33, - "x": 206, - "y": 10 - }, - { - "color": { - "confidence": 0.74267578125, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2956489324569702, - "x_min": 0.10402004420757294, - "y_max": 1.0, - "y_min": 0.8513724207878113 - }, - "confidence": 0.779296875, - "label": "vehicle", - "label_id": 2 - }, - "h": 64, - "region_id": 15008, - "roi_type": "vehicle", - "type": { - "confidence": 0.576171875, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 147, - "x": 80, - "y": 368 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3159233331680298, - "x_min": 0.27413952350616455, - "y_max": 0.1829414889216423, - "y_min": 0.019071929156780243 - }, - "confidence": 0.98193359375, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 15009, - "roi_type": "person", - "w": 32, - "x": 211, - "y": 8 - }, - { - "color": { - "confidence": 0.966796875, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3024454191327095, - "x_min": 0.08785287290811539, - "y_max": 1.0, - "y_min": 0.826200008392334 - }, - "confidence": 0.90869140625, - "label": "vehicle", - "label_id": 2 - }, - "h": 75, - "region_id": 15010, - "roi_type": "vehicle", - "type": { - "confidence": 0.71630859375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 165, - "x": 67, - "y": 357 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3163028359413147, - "x_min": 0.279521107673645, - "y_max": 0.18253225088119507, - "y_min": 0.009588927030563354 - }, - "confidence": 0.85546875, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 15011, - "roi_type": "person", - "w": 28, - "x": 215, - "y": 4 - }, - { - "color": { - "confidence": 0.966796875, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3072689101099968, - "x_min": 0.08985143154859543, - "y_max": 1.0, - "y_min": 0.7982624173164368 - }, - "confidence": 0.9658203125, - "label": "vehicle", - "label_id": 2 - }, - "h": 87, - "region_id": 15012, - "roi_type": "vehicle", - "type": { - "confidence": 0.86328125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 167, - "x": 69, - "y": 345 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.32006755471229553, - "x_min": 0.2837705910205841, - "y_max": 0.17555156350135803, - "y_min": 0.0023487508296966553 - }, - "confidence": 0.931640625, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 15013, - "roi_type": "person", - "w": 28, - "x": 218, - "y": 1 - }, - { - "color": { - "confidence": 0.998046875, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3180421218276024, - "x_min": 0.09333022683858871, - "y_max": 0.996577262878418, - "y_min": 0.7744814157485962 - }, - "confidence": 0.998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 96, - "region_id": 15014, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 173, - "x": 72, - "y": 335 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3245868682861328, - "x_min": 0.2912326455116272, - "y_max": 0.18103285878896713, - "y_min": 0.0 - }, - "confidence": 0.93017578125, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 15015, - "roi_type": "person", - "w": 26, - "x": 224, - "y": 0 - }, - { - "color": { - "confidence": 0.9853515625, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3213460445404053, - "x_min": 0.09354156255722046, - "y_max": 0.997982382774353, - "y_min": 0.7562445402145386 - }, - "confidence": 0.99609375, - "label": "vehicle", - "label_id": 2 - }, - "h": 104, - "region_id": 15016, - "roi_type": "vehicle", - "type": { - "confidence": 0.99609375, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 175, - "x": 72, - "y": 327 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3375798463821411, - "x_min": 0.29701799154281616, - "y_max": 0.1681172400712967, - "y_min": 0.0 - }, - "confidence": 0.97314453125, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 15017, - "roi_type": "person", - "w": 31, - "x": 228, - "y": 0 - }, - { - "color": { - "confidence": 0.95361328125, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3254093825817108, - "x_min": 0.09381496906280518, - "y_max": 0.9986022710800171, - "y_min": 0.7277764081954956 - }, - "confidence": 0.998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 15018, - "roi_type": "vehicle", - "type": { - "confidence": 0.99609375, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 178, - "x": 72, - "y": 314 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34107476472854614, - "x_min": 0.2997574806213379, - "y_max": 0.15931344777345657, - "y_min": 0.0 - }, - "confidence": 0.96435546875, - "label": "person", - "label_id": 1 - }, - "h": 69, - "region_id": 15019, - "roi_type": "person", - "w": 32, - "x": 230, - "y": 0 - }, - { - "color": { - "confidence": 0.9921875, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3319740891456604, - "x_min": 0.09414704144001007, - "y_max": 0.9966111779212952, - "y_min": 0.7045837044715881 - }, - "confidence": 0.99609375, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 15020, - "roi_type": "vehicle", - "type": { - "confidence": 0.9931640625, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 183, - "x": 72, - "y": 304 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34646058082580566, - "x_min": 0.3028937578201294, - "y_max": 0.156146802008152, - "y_min": 0.0 - }, - "confidence": 0.984375, - "label": "person", - "label_id": 1 - }, - "h": 67, - "region_id": 15021, - "roi_type": "person", - "w": 33, - "x": 233, - "y": 0 - }, - { - "color": { - "confidence": 0.9853515625, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3392763137817383, - "x_min": 0.09022277593612671, - "y_max": 0.9994381070137024, - "y_min": 0.6786060929298401 - }, - "confidence": 0.99609375, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "region_id": 15022, - "roi_type": "vehicle", - "type": { - "confidence": 0.9912109375, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 191, - "x": 69, - "y": 293 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34512296319007874, - "x_min": 0.30911585688591003, - "y_max": 0.15079374611377716, - "y_min": 0.0 - }, - "confidence": 0.94384765625, - "label": "person", - "label_id": 1 - }, - "h": 65, - "region_id": 15023, - "roi_type": "person", - "w": 28, - "x": 237, - "y": 0 - }, - { - "color": { - "confidence": 0.94384765625, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34184062480926514, - "x_min": 0.09453167021274567, - "y_max": 1.0, - "y_min": 0.6524904370307922 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 150, - "region_id": 15024, - "roi_type": "vehicle", - "type": { - "confidence": 0.97607421875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 190, - "x": 73, - "y": 282 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34818318486213684, - "x_min": 0.31593766808509827, - "y_max": 0.14530643820762634, - "y_min": 0.0 - }, - "confidence": 0.96337890625, - "label": "person", - "label_id": 1 - }, - "h": 63, - "region_id": 15025, - "roi_type": "person", - "w": 25, - "x": 243, - "y": 0 - }, - { - "color": { - "confidence": 0.81591796875, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34417855739593506, - "x_min": 0.09946362674236298, - "y_max": 0.999272882938385, - "y_min": 0.6353164315223694 - }, - "confidence": 0.998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 157, - "region_id": 15026, - "roi_type": "vehicle", - "type": { - "confidence": 0.986328125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 188, - "x": 76, - "y": 274 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35314884781837463, - "x_min": 0.32001474499702454, - "y_max": 0.14837931841611862, - "y_min": 0.0 - }, - "confidence": 0.87060546875, - "label": "person", - "label_id": 1 - }, - "h": 64, - "region_id": 15027, - "roi_type": "person", - "w": 25, - "x": 246, - "y": 0 - }, - { - "color": { - "confidence": 0.51708984375, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3492073640227318, - "x_min": 0.10767313092947006, - "y_max": 1.0, - "y_min": 0.6190989017486572 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 165, - "region_id": 15028, - "roi_type": "vehicle", - "type": { - "confidence": 0.994140625, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 185, - "x": 83, - "y": 267 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35834217071533203, - "x_min": 0.3240100145339966, - "y_max": 0.14449387788772583, - "y_min": 0.0 - }, - "confidence": 0.78515625, - "label": "person", - "label_id": 1 - }, - "h": 62, - "region_id": 15029, - "roi_type": "person", - "w": 26, - "x": 249, - "y": 0 - }, - { - "color": { - "confidence": 0.888671875, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3576863408088684, - "x_min": 0.11795952916145325, - "y_max": 0.9962477087974548, - "y_min": 0.5935474038124084 - }, - "confidence": 0.9951171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 174, - "region_id": 15030, - "roi_type": "vehicle", - "type": { - "confidence": 0.96435546875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 184, - "x": 91, - "y": 256 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3616437613964081, - "x_min": 0.3287608325481415, - "y_max": 0.14139731973409653, - "y_min": 0.0 - }, - "confidence": 0.6171875, - "label": "person", - "label_id": 1 - }, - "h": 61, - "region_id": 15031, - "roi_type": "person", - "w": 25, - "x": 252, - "y": 0 - }, - { - "color": { - "confidence": 0.802734375, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3568938076496124, - "x_min": 0.1184740960597992, - "y_max": 0.9960288405418396, - "y_min": 0.5713207125663757 - }, - "confidence": 0.9951171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 183, - "region_id": 15032, - "roi_type": "vehicle", - "type": { - "confidence": 0.98388671875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 183, - "x": 91, - "y": 247 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3645513355731964, - "x_min": 0.3319735825061798, - "y_max": 0.14285987615585327, - "y_min": 0.0 - }, - "confidence": 0.88134765625, - "label": "person", - "label_id": 1 - }, - "h": 62, - "region_id": 15033, - "roi_type": "person", - "w": 25, - "x": 255, - "y": 0 - }, - { - "color": { - "confidence": 0.56787109375, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3612084537744522, - "x_min": 0.10926742851734161, - "y_max": 1.0, - "y_min": 0.5522088408470154 - }, - "confidence": 0.998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 193, - "region_id": 15034, - "roi_type": "vehicle", - "type": { - "confidence": 0.9970703125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 193, - "x": 84, - "y": 239 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3690513074398041, - "x_min": 0.3348962962627411, - "y_max": 0.13076193630695343, - "y_min": 0.0 - }, - "confidence": 0.53564453125, - "label": "person", - "label_id": 1 - }, - "h": 56, - "region_id": 15035, - "roi_type": "person", - "w": 26, - "x": 257, - "y": 0 - }, - { - "color": { - "confidence": 0.74072265625, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3626910224556923, - "x_min": 0.1165127232670784, - "y_max": 1.0, - "y_min": 0.5341740250587463 - }, - "confidence": 0.9921875, - "label": "vehicle", - "label_id": 2 - }, - "h": 201, - "region_id": 15036, - "roi_type": "vehicle", - "type": { - "confidence": 0.98291015625, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 189, - "x": 89, - "y": 231 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.72607421875, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3653745725750923, - "x_min": 0.11738703399896622, - "y_max": 1.0, - "y_min": 0.5187159776687622 - }, - "confidence": 0.984375, - "label": "vehicle", - "label_id": 2 - }, - "h": 208, - "region_id": 15037, - "roi_type": "vehicle", - "type": { - "confidence": 0.9931640625, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 190, - "x": 90, - "y": 224 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.779296875, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35986167192459106, - "x_min": 0.11861021816730499, - "y_max": 1.0, - "y_min": 0.5067421197891235 - }, - "confidence": 0.97998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "region_id": 15038, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 185, - "x": 91, - "y": 219 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9013671875, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3583891987800598, - "x_min": 0.12578806281089783, - "y_max": 1.0, - "y_min": 0.48726680874824524 - }, - "confidence": 0.96142578125, - "label": "vehicle", - "label_id": 2 - }, - "h": 222, - "region_id": 15039, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 179, - "x": 97, - "y": 210 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.93359375, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36830934882164, - "x_min": 0.13284197449684143, - "y_max": 1.0, - "y_min": 0.4726431965827942 - }, - "confidence": 0.9716796875, - "label": "vehicle", - "label_id": 2 - }, - "h": 228, - "region_id": 15040, - "roi_type": "vehicle", - "type": { - "confidence": 0.939453125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 181, - "x": 102, - "y": 204 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.97607421875, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3714140057563782, - "x_min": 0.1372305154800415, - "y_max": 0.9820627868175507, - "y_min": 0.45351001620292664 - }, - "confidence": 0.9912109375, - "label": "vehicle", - "label_id": 2 - }, - "h": 228, - "region_id": 15041, - "roi_type": "vehicle", - "type": { - "confidence": 0.814453125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 180, - "x": 105, - "y": 196 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.99609375, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3608435392379761, - "x_min": 0.14590299129486084, - "y_max": 0.9431758522987366, - "y_min": 0.4430229067802429 - }, - "confidence": 0.9970703125, - "label": "vehicle", - "label_id": 2 - }, - "h": 216, - "region_id": 15042, - "roi_type": "vehicle", - "type": { - "confidence": 0.9921875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 165, - "x": 112, - "y": 191 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.97705078125, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3668741285800934, - "x_min": 0.15882495045661926, - "y_max": 0.9358053803443909, - "y_min": 0.41585129499435425 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 225, - "region_id": 15043, - "roi_type": "vehicle", - "type": { - "confidence": 0.6064453125, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 160, - "x": 122, - "y": 180 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9931640625, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3655020594596863, - "x_min": 0.1626676321029663, - "y_max": 0.903299480676651, - "y_min": 0.39908042550086975 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 218, - "region_id": 15044, - "roi_type": "vehicle", - "type": { - "confidence": 0.57861328125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 156, - "x": 125, - "y": 172 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9951171875, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36492133140563965, - "x_min": 0.17409741878509521, - "y_max": 0.8789278864860535, - "y_min": 0.38409990072250366 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "region_id": 15045, - "roi_type": "vehicle", - "type": { - "confidence": 0.5400390625, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 147, - "x": 134, - "y": 166 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.998046875, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3610725998878479, - "x_min": 0.17910504341125488, - "y_max": 0.8557292222976685, - "y_min": 0.3645592927932739 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 212, - "region_id": 15046, - "roi_type": "vehicle", - "type": { - "confidence": 0.489990234375, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 140, - "x": 138, - "y": 157 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3623489737510681, - "x_min": 0.18269610404968262, - "y_max": 0.824630856513977, - "y_min": 0.34558507800102234 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 207, - "region_id": 15047, - "roi_type": "vehicle", - "type": { - "confidence": 0.74267578125, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 138, - "x": 140, - "y": 149 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36165374517440796, - "x_min": 0.18928389251232147, - "y_max": 0.7933508157730103, - "y_min": 0.32612988352775574 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 202, - "region_id": 15048, - "roi_type": "vehicle", - "type": { - "confidence": 0.72314453125, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 132, - "x": 145, - "y": 141 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3588729202747345, - "x_min": 0.1904868185520172, - "y_max": 0.7664351463317871, - "y_min": 0.3122572898864746 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 196, - "region_id": 15049, - "roi_type": "vehicle", - "type": { - "confidence": 0.66845703125, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 129, - "x": 146, - "y": 135 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35344889760017395, - "x_min": 0.1925678551197052, - "y_max": 0.7419216632843018, - "y_min": 0.29417183995246887 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 193, - "region_id": 15050, - "roi_type": "vehicle", - "type": { - "confidence": 0.72216796875, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 124, - "x": 148, - "y": 127 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9716796875, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34998437762260437, - "x_min": 0.19450798630714417, - "y_max": 0.7181348204612732, - "y_min": 0.2771528959274292 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 191, - "region_id": 15051, - "roi_type": "vehicle", - "type": { - "confidence": 0.90869140625, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 119, - "x": 149, - "y": 120 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.97802734375, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3468645513057709, - "x_min": 0.20163050293922424, - "y_max": 0.6970539093017578, - "y_min": 0.26379626989364624 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 187, - "region_id": 15052, - "roi_type": "vehicle", - "type": { - "confidence": 0.9140625, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 112, - "x": 155, - "y": 114 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.79248046875, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3438488245010376, - "x_min": 0.19813984632492065, - "y_max": 0.6573256850242615, - "y_min": 0.25968676805496216 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 172, - "region_id": 15053, - "roi_type": "vehicle", - "type": { - "confidence": 0.6416015625, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 112, - "x": 152, - "y": 112 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.96337890625, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34153616428375244, - "x_min": 0.19358372688293457, - "y_max": 0.6417610496282578, - "y_min": 0.24385033547878265 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 172, - "region_id": 15054, - "roi_type": "vehicle", - "type": { - "confidence": 0.568359375, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 114, - "x": 149, - "y": 105 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.94921875, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.33885127305984497, - "x_min": 0.19029003381729126, - "y_max": 0.6309741288423538, - "y_min": 0.2230658084154129 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 176, - "region_id": 15055, - "roi_type": "vehicle", - "type": { - "confidence": 0.544921875, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 114, - "x": 146, - "y": 96 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.96533203125, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3374425172805786, - "x_min": 0.18768715858459473, - "y_max": 0.5997136831283569, - "y_min": 0.2070835530757904 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 170, - "region_id": 15056, - "roi_type": "vehicle", - "type": { - "confidence": 0.650390625, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 115, - "x": 144, - "y": 89 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8125, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3319251835346222, - "x_min": 0.17804953455924988, - "y_max": 0.5778214484453201, - "y_min": 0.1903323084115982 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 167, - "region_id": 15057, - "roi_type": "vehicle", - "type": { - "confidence": 0.79931640625, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 118, - "x": 137, - "y": 82 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.701171875, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3352878987789154, - "x_min": 0.16757449507713318, - "y_max": 0.562267541885376, - "y_min": 0.1759682595729828 - }, - "confidence": 0.9970703125, - "label": "vehicle", - "label_id": 2 - }, - "h": 167, - "region_id": 15058, - "roi_type": "vehicle", - "type": { - "confidence": 0.79931640625, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 129, - "x": 129, - "y": 76 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.794921875, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.33062705397605896, - "x_min": 0.15925559401512146, - "y_max": 0.5358074903488159, - "y_min": 0.16202977299690247 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 161, - "region_id": 15059, - "roi_type": "vehicle", - "type": { - "confidence": 0.9892578125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 132, - "x": 122, - "y": 70 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.740234375, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3260734975337982, - "x_min": 0.14722785353660583, - "y_max": 0.5155544728040695, - "y_min": 0.157257542014122 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 155, - "region_id": 15060, - "roi_type": "vehicle", - "type": { - "confidence": 0.90283203125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 137, - "x": 113, - "y": 68 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.85107421875, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3224096894264221, - "x_min": 0.13780492544174194, - "y_max": 0.501104936003685, - "y_min": 0.15674106776714325 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 149, - "region_id": 15061, - "roi_type": "vehicle", - "type": { - "confidence": 0.97412109375, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 142, - "x": 106, - "y": 68 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.525390625, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3169931545853615, - "x_min": 0.12483716756105423, - "y_max": 0.4827064722776413, - "y_min": 0.1493421047925949 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 144, - "region_id": 15062, - "roi_type": "vehicle", - "type": { - "confidence": 0.98388671875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 148, - "x": 96, - "y": 65 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.50244140625, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3122137784957886, - "x_min": 0.10267382860183716, - "y_max": 0.47069355845451355, - "y_min": 0.1459626853466034 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 140, - "region_id": 15063, - "roi_type": "vehicle", - "type": { - "confidence": 0.89892578125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 161, - "x": 79, - "y": 63 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.5439453125, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.30563071370124817, - "x_min": 0.08968502283096313, - "y_max": 0.4555247873067856, - "y_min": 0.1361779421567917 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 138, - "region_id": 15064, - "roi_type": "vehicle", - "type": { - "confidence": 0.65185546875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 166, - "x": 69, - "y": 59 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.83203125, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2940587177872658, - "x_min": 0.07481119781732559, - "y_max": 0.44223855435848236, - "y_min": 0.13631980121135712 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 15065, - "roi_type": "vehicle", - "type": { - "confidence": 0.85498046875, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 168, - "x": 57, - "y": 59 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.650390625, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2887636423110962, - "x_min": 0.06353342533111572, - "y_max": 0.4263155907392502, - "y_min": 0.1369212120771408 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 125, - "region_id": 15066, - "roi_type": "vehicle", - "type": { - "confidence": 0.955078125, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 173, - "x": 49, - "y": 59 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.916015625, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2807242274284363, - "x_min": 0.04622665047645569, - "y_max": 0.41277608275413513, - "y_min": 0.132420152425766 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 121, - "region_id": 15067, - "roi_type": "vehicle", - "type": { - "confidence": 0.9384765625, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 180, - "x": 36, - "y": 57 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9462890625, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2704925760626793, - "x_min": 0.032000623643398285, - "y_max": 0.4054313004016876, - "y_min": 0.131648451089859 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 118, - "region_id": 15068, - "roi_type": "vehicle", - "type": { - "confidence": 0.94189453125, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 183, - "x": 25, - "y": 57 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2576461434364319, - "x_min": 0.018010497093200684, - "y_max": 0.3983272910118103, - "y_min": 0.1276540756225586 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 15069, - "roi_type": "vehicle", - "type": { - "confidence": 0.88818359375, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 184, - "x": 14, - "y": 55 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.24717597663402557, - "x_min": 0.004194930195808411, - "y_max": 0.3936364948749542, - "y_min": 0.12304255366325378 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 15070, - "roi_type": "vehicle", - "type": { - "confidence": 0.72802734375, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 187, - "x": 3, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9951171875, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.23502223938703537, - "x_min": 0.005615077912807465, - "y_max": 0.39088256657123566, - "y_min": 0.12330974638462067 - }, - "confidence": 0.998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 116, - "region_id": 15071, - "roi_type": "vehicle", - "type": { - "confidence": 0.955078125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 176, - "x": 4, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9990234375, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.22485587745904922, - "x_min": 0.0017657950520515442, - "y_max": 0.3853496015071869, - "y_min": 0.1245599091053009 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 113, - "region_id": 15072, - "roi_type": "vehicle", - "type": { - "confidence": 0.96435546875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 171, - "x": 1, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9990234375, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.21659931540489197, - "x_min": 0.0022316277027130127, - "y_max": 0.3794732093811035, - "y_min": 0.12392610311508179 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 110, - "region_id": 15073, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 165, - "x": 2, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2029200717806816, - "x_min": 0.0007590577006340027, - "y_max": 0.37220699340105057, - "y_min": 0.12221232801675797 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 108, - "region_id": 15074, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 155, - "x": 1, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.18482676148414612, - "x_min": 0.0, - "y_max": 0.36792203038930893, - "y_min": 0.12216844409704208 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 106, - "region_id": 15075, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 142, - "x": 0, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.1738429069519043, - "x_min": 0.0, - "y_max": 0.3633963465690613, - "y_min": 0.11975441873073578 - }, - "confidence": 0.9951171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 105, - "region_id": 15076, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 134, - "x": 0, - "y": 52 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.16032805293798447, - "x_min": 0.0, - "y_max": 0.358875572681427, - "y_min": 0.12134051322937012 - }, - "confidence": 0.98388671875, - "label": "vehicle", - "label_id": 2 - }, - "h": 103, - "region_id": 15077, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 123, - "x": 0, - "y": 52 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.1480599343776703, - "x_min": 2.3692846298217773e-06, - "y_max": 0.3564804494380951, - "y_min": 0.1216433048248291 - }, - "confidence": 0.95703125, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "region_id": 15078, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 114, - "x": 0, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9990234375, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.13580363243818283, - "x_min": 0.0, - "y_max": 0.3569759950041771, - "y_min": 0.12307702749967575 - }, - "confidence": 0.794921875, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "region_id": 15079, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 104, - "x": 0, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.990234375, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.11234281957149506, - "x_min": 0.0019840747117996216, - "y_max": 0.3554091155529022, - "y_min": 0.12587442994117737 - }, - "confidence": 0.6865234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 99, - "region_id": 15080, - "roi_type": "vehicle", - "type": { - "confidence": 0.99609375, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 85, - "x": 2, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9453125, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.09860633686184883, - "x_min": 0.003699634224176407, - "y_max": 0.3584703207015991, - "y_min": 0.1261626034975052 - }, - "confidence": 0.7734375, - "label": "vehicle", - "label_id": 2 - }, - "h": 100, - "region_id": 15081, - "roi_type": "vehicle", - "type": { - "confidence": 0.9892578125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 73, - "x": 3, - "y": 55 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.40576171875, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.0877152867615223, - "x_min": 0.0017236806452274323, - "y_max": 0.3632138967514038, - "y_min": 0.12957501411437988 - }, - "confidence": 0.6171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "region_id": 15082, - "roi_type": "vehicle", - "type": { - "confidence": 0.93701171875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 66, - "x": 1, - "y": 56 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9248046875, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.07340044155716896, - "x_min": 0.004111398011445999, - "y_max": 0.3508581221103668, - "y_min": 0.14412924647331238 - }, - "confidence": 0.65478515625, - "label": "vehicle", - "label_id": 2 - }, - "h": 89, - "region_id": 15083, - "roi_type": "vehicle", - "type": { - "confidence": 0.73193359375, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 53, - "x": 3, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.95068359375, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.06271997094154358, - "x_min": 0.0, - "y_max": 0.3495235741138458, - "y_min": 0.14369750022888184 - }, - "confidence": 0.68505859375, - "label": "vehicle", - "label_id": 2 - }, - "h": 89, - "region_id": 15084, - "roi_type": "vehicle", - "type": { - "confidence": 0.82666015625, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 48, - "x": 0, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.71826171875, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.049724431708455086, - "x_min": 0.0, - "y_max": 0.34245553612709045, - "y_min": 0.14341771602630615 - }, - "confidence": 0.63525390625, - "label": "vehicle", - "label_id": 2 - }, - "h": 86, - "region_id": 15085, - "roi_type": "vehicle", - "type": { - "confidence": 0.91748046875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 38, - "x": 0, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49250000000 - } - ] -} \ No newline at end of file diff --git a/tests/test_cases/pipeline_execution/gpu/object_detection_gpu_FP16_gstreamer.json b/tests/test_cases/pipeline_execution/gpu/object_detection_gpu_FP16_gstreamer.json deleted file mode 100644 index 1b5cb5f..0000000 --- a/tests/test_cases/pipeline_execution/gpu/object_detection_gpu_FP16_gstreamer.json +++ /dev/null @@ -1,7362 +0,0 @@ -{ - "options": {}, - "pipeline": { - "name": "object_detection", - "version": "person_vehicle_bike" - }, - "request": { - "source": { - "type": "uri", - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4" - }, - "destination": { - "type": "file", - "path": "/tmp/object_detection_gpu_results.json", - "format": "json-lines" - }, - "parameters": { - "detection-device": "GPU" - } - }, - "numerical_tolerance": 0.3, - "result": [ - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7450754046440125, - "x_min": 0.6731894612312317, - "y_max": 0.9991127848625183, - "y_min": 0.8780452609062195 - }, - "confidence": 0.541015625, - "label": "person", - "label_id": 1 - }, - "h": 52, - "region_id": 13064, - "roi_type": "person", - "w": 55, - "x": 517, - "y": 379 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7440981268882751, - "x_min": 0.6758646368980408, - "y_max": 1.0, - "y_min": 0.827924907207489 - }, - "confidence": 0.54345703125, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 13065, - "roi_type": "person", - "w": 52, - "x": 519, - "y": 358 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7466071248054504, - "x_min": 0.6823329329490662, - "y_max": 1.0, - "y_min": 0.8108165264129639 - }, - "confidence": 0.66796875, - "label": "person", - "label_id": 1 - }, - "h": 82, - "region_id": 13066, - "roi_type": "person", - "w": 49, - "x": 524, - "y": 350 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7479705214500427, - "x_min": 0.6836908459663391, - "y_max": 1.0, - "y_min": 0.7869881391525269 - }, - "confidence": 0.88037109375, - "label": "person", - "label_id": 1 - }, - "h": 92, - "region_id": 13067, - "roi_type": "person", - "w": 49, - "x": 525, - "y": 340 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7501941323280334, - "x_min": 0.683894693851471, - "y_max": 0.9971110224723816, - "y_min": 0.771379292011261 - }, - "confidence": 0.931640625, - "label": "person", - "label_id": 1 - }, - "h": 98, - "region_id": 13068, - "roi_type": "person", - "w": 51, - "x": 525, - "y": 333 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7552652359008789, - "x_min": 0.6827793121337891, - "y_max": 0.9931315779685974, - "y_min": 0.7555018067359924 - }, - "confidence": 0.9248046875, - "label": "person", - "label_id": 1 - }, - "h": 103, - "region_id": 13069, - "roi_type": "person", - "w": 56, - "x": 524, - "y": 326 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7565565705299377, - "x_min": 0.6830658316612244, - "y_max": 0.9888202548027039, - "y_min": 0.7450335621833801 - }, - "confidence": 0.94921875, - "label": "person", - "label_id": 1 - }, - "h": 105, - "region_id": 13071, - "roi_type": "person", - "w": 56, - "x": 525, - "y": 322 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7581809759140015, - "x_min": 0.6870932579040527, - "y_max": 0.9743094444274902, - "y_min": 0.723680853843689 - }, - "confidence": 0.9560546875, - "label": "person", - "label_id": 1 - }, - "h": 108, - "region_id": 13072, - "roi_type": "person", - "w": 55, - "x": 528, - "y": 313 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7575687766075134, - "x_min": 0.6909058690071106, - "y_max": 0.9489275217056274, - "y_min": 0.7130314111709595 - }, - "confidence": 0.87158203125, - "label": "person", - "label_id": 1 - }, - "h": 102, - "region_id": 13073, - "roi_type": "person", - "w": 51, - "x": 531, - "y": 308 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.756697416305542, - "x_min": 0.693425178527832, - "y_max": 0.9018371105194092, - "y_min": 0.7055492401123047 - }, - "confidence": 0.888671875, - "label": "person", - "label_id": 1 - }, - "h": 85, - "region_id": 13074, - "roi_type": "person", - "w": 49, - "x": 533, - "y": 305 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7573454976081848, - "x_min": 0.6979058384895325, - "y_max": 0.8756023645401001, - "y_min": 0.6885020732879639 - }, - "confidence": 0.8759765625, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 13075, - "roi_type": "person", - "w": 46, - "x": 536, - "y": 297 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.763081967830658, - "x_min": 0.6965207457542419, - "y_max": 0.9013386964797974, - "y_min": 0.6667746305465698 - }, - "confidence": 0.697265625, - "label": "person", - "label_id": 1 - }, - "h": 101, - "region_id": 13076, - "roi_type": "person", - "w": 51, - "x": 535, - "y": 288 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7638378739356995, - "x_min": 0.6945894360542297, - "y_max": 0.897483229637146, - "y_min": 0.6505343914031982 - }, - "confidence": 0.7373046875, - "label": "person", - "label_id": 1 - }, - "h": 107, - "region_id": 13077, - "roi_type": "person", - "w": 53, - "x": 533, - "y": 281 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7640742063522339, - "x_min": 0.7027362585067749, - "y_max": 0.8511595726013184, - "y_min": 0.6484842300415039 - }, - "confidence": 0.6669921875, - "label": "person", - "label_id": 1 - }, - "h": 88, - "region_id": 13078, - "roi_type": "person", - "w": 47, - "x": 540, - "y": 280 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7668865323066711, - "x_min": 0.7063930630683899, - "y_max": 0.830226719379425, - "y_min": 0.629843533039093 - }, - "confidence": 0.927734375, - "label": "person", - "label_id": 1 - }, - "h": 87, - "region_id": 13079, - "roi_type": "person", - "w": 46, - "x": 543, - "y": 272 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7724691033363342, - "x_min": 0.7098849415779114, - "y_max": 0.8254351615905762, - "y_min": 0.6172851324081421 - }, - "confidence": 0.693359375, - "label": "person", - "label_id": 1 - }, - "h": 90, - "region_id": 13080, - "roi_type": "person", - "w": 48, - "x": 545, - "y": 267 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7740265727043152, - "x_min": 0.7090769410133362, - "y_max": 0.82144695520401, - "y_min": 0.6101848483085632 - }, - "confidence": 0.75, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 13081, - "roi_type": "person", - "w": 50, - "x": 545, - "y": 264 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7839817404747009, - "x_min": 0.7257370352745056, - "y_max": 0.7586237192153931, - "y_min": 0.5558692216873169 - }, - "confidence": 0.71728515625, - "label": "person", - "label_id": 1 - }, - "h": 88, - "region_id": 13082, - "roi_type": "person", - "w": 45, - "x": 557, - "y": 240 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.78947514295578, - "x_min": 0.7327013611793518, - "y_max": 0.7261707782745361, - "y_min": 0.5484710931777954 - }, - "confidence": 0.97509765625, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 13083, - "roi_type": "person", - "w": 44, - "x": 563, - "y": 237 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7890066504478455, - "x_min": 0.7377496361732483, - "y_max": 0.7029215097427368, - "y_min": 0.5400267839431763 - }, - "confidence": 0.84326171875, - "label": "person", - "label_id": 1 - }, - "h": 70, - "region_id": 13084, - "roi_type": "person", - "w": 39, - "x": 567, - "y": 233 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7952556610107422, - "x_min": 0.7402281761169434, - "y_max": 0.6923619508743286, - "y_min": 0.5218515396118164 - }, - "confidence": 0.76513671875, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 13085, - "roi_type": "person", - "w": 42, - "x": 568, - "y": 225 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8006601333618164, - "x_min": 0.7462418079376221, - "y_max": 0.6883482336997986, - "y_min": 0.5218518376350403 - }, - "confidence": 0.87890625, - "label": "person", - "label_id": 1 - }, - "h": 72, - "region_id": 13086, - "roi_type": "person", - "w": 42, - "x": 573, - "y": 225 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8098742365837097, - "x_min": 0.7456627488136292, - "y_max": 0.7028436660766602, - "y_min": 0.5027613639831543 - }, - "confidence": 0.91259765625, - "label": "person", - "label_id": 1 - }, - "h": 86, - "region_id": 13087, - "roi_type": "person", - "w": 49, - "x": 573, - "y": 217 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8130742311477661, - "x_min": 0.7562228441238403, - "y_max": 0.6840891242027283, - "y_min": 0.49621087312698364 - }, - "confidence": 0.91357421875, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 13088, - "roi_type": "person", - "w": 44, - "x": 581, - "y": 214 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8229447603225708, - "x_min": 0.763748288154602, - "y_max": 0.6856093406677246, - "y_min": 0.4886976480484009 - }, - "confidence": 0.833984375, - "label": "person", - "label_id": 1 - }, - "h": 85, - "region_id": 13091, - "roi_type": "person", - "w": 45, - "x": 587, - "y": 211 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8231713771820068, - "x_min": 0.7604347467422485, - "y_max": 0.6921271681785583, - "y_min": 0.4757062494754791 - }, - "confidence": 0.68359375, - "label": "person", - "label_id": 1 - }, - "h": 93, - "region_id": 13094, - "roi_type": "person", - "w": 48, - "x": 584, - "y": 206 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8320498466491699, - "x_min": 0.7603206634521484, - "y_max": 0.6944458484649658, - "y_min": 0.46570658683776855 - }, - "confidence": 0.59033203125, - "label": "person", - "label_id": 1 - }, - "h": 99, - "region_id": 13095, - "roi_type": "person", - "w": 55, - "x": 584, - "y": 201 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8428041338920593, - "x_min": 0.7936063408851624, - "y_max": 0.6421533823013306, - "y_min": 0.43810799717903137 - }, - "confidence": 0.9658203125, - "label": "person", - "label_id": 1 - }, - "h": 88, - "region_id": 13096, - "roi_type": "person", - "w": 38, - "x": 609, - "y": 189 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8495814800262451, - "x_min": 0.7967391014099121, - "y_max": 0.6154407858848572, - "y_min": 0.44311457872390747 - }, - "confidence": 0.88671875, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 13097, - "roi_type": "person", - "w": 41, - "x": 612, - "y": 191 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8531036972999573, - "x_min": 0.8009379506111145, - "y_max": 0.605356752872467, - "y_min": 0.42972689867019653 - }, - "confidence": 0.90478515625, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 13100, - "roi_type": "person", - "w": 40, - "x": 615, - "y": 186 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8602517247200012, - "x_min": 0.8060665726661682, - "y_max": 0.5925722122192383, - "y_min": 0.4272420406341553 - }, - "confidence": 0.802734375, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 13102, - "roi_type": "person", - "w": 42, - "x": 619, - "y": 185 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8662797212600708, - "x_min": 0.8103095293045044, - "y_max": 0.5944654941558838, - "y_min": 0.4206693172454834 - }, - "confidence": 0.76953125, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 13104, - "roi_type": "person", - "w": 43, - "x": 622, - "y": 182 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8742167353630066, - "x_min": 0.817884624004364, - "y_max": 0.5900445580482483, - "y_min": 0.4136499762535095 - }, - "confidence": 0.95703125, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 13105, - "roi_type": "person", - "w": 43, - "x": 628, - "y": 179 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8853930830955505, - "x_min": 0.826438844203949, - "y_max": 0.586012601852417, - "y_min": 0.40271833539009094 - }, - "confidence": 0.8271484375, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 13107, - "roi_type": "person", - "w": 45, - "x": 635, - "y": 174 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8913269639015198, - "x_min": 0.834475576877594, - "y_max": 0.5893236994743347, - "y_min": 0.3930070996284485 - }, - "confidence": 0.7890625, - "label": "person", - "label_id": 1 - }, - "h": 85, - "region_id": 13108, - "roi_type": "person", - "w": 44, - "x": 641, - "y": 170 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9005622863769531, - "x_min": 0.8355872631072998, - "y_max": 0.587836503982544, - "y_min": 0.3939674496650696 - }, - "confidence": 0.65576171875, - "label": "person", - "label_id": 1 - }, - "h": 84, - "region_id": 13109, - "roi_type": "person", - "w": 50, - "x": 642, - "y": 170 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9087395668029785, - "x_min": 0.8530853986740112, - "y_max": 0.5614248514175415, - "y_min": 0.3760519027709961 - }, - "confidence": 0.62646484375, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 13110, - "roi_type": "person", - "w": 43, - "x": 655, - "y": 162 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9123356938362122, - "x_min": 0.8665536046028137, - "y_max": 0.5443816184997559, - "y_min": 0.3672276437282562 - }, - "confidence": 0.8828125, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 13111, - "roi_type": "person", - "w": 35, - "x": 666, - "y": 159 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9202427864074707, - "x_min": 0.8713085651397705, - "y_max": 0.5296249389648438, - "y_min": 0.3523065745830536 - }, - "confidence": 0.97705078125, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 13112, - "roi_type": "person", - "w": 38, - "x": 669, - "y": 152 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9222867488861084, - "x_min": 0.8776892423629761, - "y_max": 0.5221399664878845, - "y_min": 0.3504602313041687 - }, - "confidence": 0.92431640625, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 13113, - "roi_type": "person", - "w": 34, - "x": 674, - "y": 151 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9280626177787781, - "x_min": 0.872081458568573, - "y_max": 0.5193465352058411, - "y_min": 0.34443533420562744 - }, - "confidence": 0.7626953125, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 13114, - "roi_type": "person", - "w": 43, - "x": 670, - "y": 149 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9372737407684326, - "x_min": 0.8854783773422241, - "y_max": 0.5109970569610596, - "y_min": 0.34280145168304443 - }, - "confidence": 0.95166015625, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 13115, - "roi_type": "person", - "w": 40, - "x": 680, - "y": 148 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9448143243789673, - "x_min": 0.8897277116775513, - "y_max": 0.5036752820014954, - "y_min": 0.3363150954246521 - }, - "confidence": 0.9072265625, - "label": "person", - "label_id": 1 - }, - "h": 72, - "region_id": 13116, - "roi_type": "person", - "w": 42, - "x": 683, - "y": 145 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9548877477645874, - "x_min": 0.8982136249542236, - "y_max": 0.5104914307594299, - "y_min": 0.3243568241596222 - }, - "confidence": 0.771484375, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 13117, - "roi_type": "person", - "w": 44, - "x": 690, - "y": 140 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9616000652313232, - "x_min": 0.9061682224273682, - "y_max": 0.5174671411514282, - "y_min": 0.3264445662498474 - }, - "confidence": 0.77392578125, - "label": "person", - "label_id": 1 - }, - "h": 83, - "region_id": 13118, - "roi_type": "person", - "w": 43, - "x": 696, - "y": 141 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9738823771476746, - "x_min": 0.9143497347831726, - "y_max": 0.49129024147987366, - "y_min": 0.31767210364341736 - }, - "confidence": 0.7880859375, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 13119, - "roi_type": "person", - "w": 46, - "x": 702, - "y": 137 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9758822321891785, - "x_min": 0.9256947636604309, - "y_max": 0.4858596622943878, - "y_min": 0.30410680174827576 - }, - "confidence": 0.72509765625, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 13120, - "roi_type": "person", - "w": 39, - "x": 711, - "y": 131 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9817521572113037, - "x_min": 0.9286510944366455, - "y_max": 0.47783294320106506, - "y_min": 0.29440435767173767 - }, - "confidence": 0.82958984375, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 13121, - "roi_type": "person", - "w": 41, - "x": 713, - "y": 127 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9829116463661194, - "x_min": 0.9320533871650696, - "y_max": 0.4618929624557495, - "y_min": 0.2908490300178528 - }, - "confidence": 0.9697265625, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 13122, - "roi_type": "person", - "w": 39, - "x": 716, - "y": 126 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.985581636428833, - "x_min": 0.9315074682235718, - "y_max": 0.4598333239555359, - "y_min": 0.28892290592193604 - }, - "confidence": 0.681640625, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 13123, - "roi_type": "person", - "w": 42, - "x": 715, - "y": 125 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9978788495063782, - "x_min": 0.9291815161705017, - "y_max": 0.4698169529438019, - "y_min": 0.2596692740917206 - }, - "confidence": 0.5927734375, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 13124, - "roi_type": "person", - "w": 53, - "x": 714, - "y": 112 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9965602159500122, - "x_min": 0.9486868381500244, - "y_max": 0.44712570309638977, - "y_min": 0.2673933207988739 - }, - "confidence": 0.55322265625, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 13125, - "roi_type": "person", - "w": 37, - "x": 729, - "y": 116 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.11995124816894531, - "y_max": 0.9913916289806366, - "y_min": 0.016854017972946167 - }, - "confidence": 0.62158203125, - "label": "vehicle", - "label_id": 2 - }, - "h": 421, - "region_id": 13126, - "roi_type": "vehicle", - "w": 676, - "x": 92, - "y": 7 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 13916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34788548946380615, - "x_min": 0.12067420780658722, - "y_max": 1.0, - "y_min": 0.8388429880142212 - }, - "confidence": 0.59814453125, - "label": "vehicle", - "label_id": 2 - }, - "h": 70, - "region_id": 13127, - "roi_type": "vehicle", - "w": 174, - "x": 93, - "y": 362 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3533565625548363, - "x_min": 0.12123485654592514, - "y_max": 1.0, - "y_min": 0.8090957999229431 - }, - "confidence": 0.71826171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 82, - "region_id": 13128, - "roi_type": "vehicle", - "w": 178, - "x": 93, - "y": 350 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35722535848617554, - "x_min": 0.12032529711723328, - "y_max": 0.9970874786376953, - "y_min": 0.7843096256256104 - }, - "confidence": 0.80517578125, - "label": "vehicle", - "label_id": 2 - }, - "h": 92, - "region_id": 13129, - "roi_type": "vehicle", - "w": 182, - "x": 92, - "y": 339 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35971733182668686, - "x_min": 0.11328639835119247, - "y_max": 0.9965744614601135, - "y_min": 0.7635470032691956 - }, - "confidence": 0.79931640625, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "region_id": 13130, - "roi_type": "vehicle", - "w": 189, - "x": 87, - "y": 330 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3702913075685501, - "x_min": 0.11394597589969635, - "y_max": 1.0, - "y_min": 0.7276990413665771 - }, - "confidence": 0.7080078125, - "label": "vehicle", - "label_id": 2 - }, - "h": 118, - "region_id": 13131, - "roi_type": "vehicle", - "w": 197, - "x": 88, - "y": 314 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36841410398483276, - "x_min": 0.10085779428482056, - "y_max": 0.996000349521637, - "y_min": 0.7033589482307434 - }, - "confidence": 0.84619140625, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 13132, - "roi_type": "vehicle", - "w": 205, - "x": 77, - "y": 304 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37700408697128296, - "x_min": 0.10724449157714844, - "y_max": 0.9995347261428833, - "y_min": 0.6776673793792725 - }, - "confidence": 0.92333984375, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "region_id": 13133, - "roi_type": "vehicle", - "w": 207, - "x": 82, - "y": 293 - }, - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.12240788340568542, - "y_max": 0.9747185707092285, - "y_min": 0.03273570537567139 - }, - "confidence": 0.63232421875, - "label": "vehicle", - "label_id": 2 - }, - "h": 407, - "region_id": 13134, - "roi_type": "vehicle", - "w": 674, - "x": 94, - "y": 14 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3794129192829132, - "x_min": 0.10572710633277893, - "y_max": 1.0, - "y_min": 0.6497832536697388 - }, - "confidence": 0.955078125, - "label": "vehicle", - "label_id": 2 - }, - "h": 151, - "region_id": 13135, - "roi_type": "vehicle", - "w": 210, - "x": 81, - "y": 281 - }, - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.12235894799232483, - "y_max": 0.9642861187458038, - "y_min": 0.03327503800392151 - }, - "confidence": 0.63671875, - "label": "vehicle", - "label_id": 2 - }, - "h": 402, - "region_id": 13136, - "roi_type": "vehicle", - "w": 674, - "x": 94, - "y": 14 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37893153727054596, - "x_min": 0.10524572432041168, - "y_max": 1.0, - "y_min": 0.6315947771072388 - }, - "confidence": 0.990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 159, - "region_id": 13137, - "roi_type": "vehicle", - "w": 210, - "x": 81, - "y": 273 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37906306982040405, - "x_min": 0.11943095922470093, - "y_max": 0.9988926649093628, - "y_min": 0.6108778715133667 - }, - "confidence": 0.994140625, - "label": "vehicle", - "label_id": 2 - }, - "h": 168, - "region_id": 13138, - "roi_type": "vehicle", - "w": 199, - "x": 92, - "y": 264 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37611158192157745, - "x_min": 0.11804629862308502, - "y_max": 0.9963674545288086, - "y_min": 0.585686445236206 - }, - "confidence": 0.9951171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 177, - "region_id": 13139, - "roi_type": "vehicle", - "w": 198, - "x": 91, - "y": 253 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3770822137594223, - "x_min": 0.11729799211025238, - "y_max": 0.99732905626297, - "y_min": 0.5627850890159607 - }, - "confidence": 0.98828125, - "label": "vehicle", - "label_id": 2 - }, - "h": 188, - "region_id": 13140, - "roi_type": "vehicle", - "w": 200, - "x": 90, - "y": 243 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3729642927646637, - "x_min": 0.1085742712020874, - "y_max": 1.0, - "y_min": 0.5397972464561462 - }, - "confidence": 0.97802734375, - "label": "vehicle", - "label_id": 2 - }, - "h": 199, - "region_id": 13141, - "roi_type": "vehicle", - "w": 203, - "x": 83, - "y": 233 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3656986355781555, - "x_min": 0.13279204070568085, - "y_max": 1.0, - "y_min": 0.5242156386375427 - }, - "confidence": 0.97900390625, - "label": "vehicle", - "label_id": 2 - }, - "h": 206, - "region_id": 13142, - "roi_type": "vehicle", - "w": 179, - "x": 102, - "y": 226 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9005439579486847, - "x_min": 0.0947130024433136, - "y_max": 0.6981552839279175, - "y_min": 0.05118680000305176 - }, - "confidence": 0.53125, - "label": "vehicle", - "label_id": 2 - }, - "h": 279, - "region_id": 13143, - "roi_type": "vehicle", - "w": 619, - "x": 73, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36320242285728455, - "x_min": 0.13479956984519958, - "y_max": 1.0, - "y_min": 0.5036964416503906 - }, - "confidence": 0.9921875, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "region_id": 13144, - "roi_type": "vehicle", - "w": 175, - "x": 104, - "y": 218 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9596145153045654, - "x_min": 0.1480247974395752, - "y_max": 0.8022695779800415, - "y_min": 0.047685861587524414 - }, - "confidence": 0.662109375, - "label": "vehicle", - "label_id": 2 - }, - "h": 326, - "region_id": 13145, - "roi_type": "vehicle", - "w": 623, - "x": 114, - "y": 21 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35492169857025146, - "x_min": 0.14194001257419586, - "y_max": 0.9911630153656006, - "y_min": 0.4964284896850586 - }, - "confidence": 0.99609375, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "region_id": 13146, - "roi_type": "vehicle", - "w": 164, - "x": 109, - "y": 214 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3554447889328003, - "x_min": 0.1485300064086914, - "y_max": 0.9996136724948883, - "y_min": 0.47489133477211 - }, - "confidence": 0.998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 227, - "region_id": 13147, - "roi_type": "vehicle", - "w": 159, - "x": 114, - "y": 205 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9596475064754486, - "x_min": 0.3637692630290985, - "y_max": 0.9144225120544434, - "y_min": 0.03580266237258911 - }, - "confidence": 0.50537109375, - "label": "vehicle", - "label_id": 2 - }, - "h": 380, - "region_id": 13148, - "roi_type": "vehicle", - "w": 458, - "x": 279, - "y": 15 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3561684787273407, - "x_min": 0.1538877785205841, - "y_max": 0.9828415811061859, - "y_min": 0.45157262682914734 - }, - "confidence": 0.9951171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 230, - "region_id": 13149, - "roi_type": "vehicle", - "w": 155, - "x": 118, - "y": 195 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34915268421173096, - "x_min": 0.1601976752281189, - "y_max": 0.9477139413356781, - "y_min": 0.43223318457603455 - }, - "confidence": 0.9970703125, - "label": "vehicle", - "label_id": 2 - }, - "h": 223, - "region_id": 13150, - "roi_type": "vehicle", - "w": 145, - "x": 123, - "y": 187 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9622732400894165, - "x_min": 0.3467036485671997, - "y_max": 0.7548135221004486, - "y_min": 0.06216701865196228 - }, - "confidence": 0.76416015625, - "label": "vehicle", - "label_id": 2 - }, - "h": 299, - "region_id": 13151, - "roi_type": "vehicle", - "w": 473, - "x": 266, - "y": 27 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34494632482528687, - "x_min": 0.16223210096359253, - "y_max": 0.9361109733581543, - "y_min": 0.4226393699645996 - }, - "confidence": 0.998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 222, - "region_id": 13152, - "roi_type": "vehicle", - "w": 140, - "x": 125, - "y": 183 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9732775092124939, - "x_min": 0.3253013491630554, - "y_max": 0.9302563667297363, - "y_min": 0.05300796031951904 - }, - "confidence": 0.6083984375, - "label": "vehicle", - "label_id": 2 - }, - "h": 379, - "region_id": 13153, - "roi_type": "vehicle", - "w": 498, - "x": 250, - "y": 23 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3391859233379364, - "x_min": 0.1647346317768097, - "y_max": 0.9072514772415161, - "y_min": 0.4021332263946533 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 218, - "region_id": 13154, - "roi_type": "vehicle", - "w": 134, - "x": 127, - "y": 174 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9653114080429077, - "x_min": 0.3195772171020508, - "y_max": 0.9068852961063385, - "y_min": 0.05095675587654114 - }, - "confidence": 0.56103515625, - "label": "vehicle", - "label_id": 2 - }, - "h": 370, - "region_id": 13155, - "roi_type": "vehicle", - "w": 496, - "x": 245, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3360394239425659, - "x_min": 0.164894700050354, - "y_max": 0.8810743093490601, - "y_min": 0.38855671882629395 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "region_id": 13156, - "roi_type": "vehicle", - "w": 131, - "x": 127, - "y": 168 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9583485126495361, - "x_min": 0.3183259963989258, - "y_max": 0.836863249540329, - "y_min": 0.07228550314903259 - }, - "confidence": 0.6611328125, - "label": "vehicle", - "label_id": 2 - }, - "h": 330, - "region_id": 13157, - "roi_type": "vehicle", - "w": 492, - "x": 244, - "y": 31 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33219119906425476, - "x_min": 0.16244429349899292, - "y_max": 0.859308660030365, - "y_min": 0.3722662329673767 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 210, - "region_id": 13158, - "roi_type": "vehicle", - "w": 130, - "x": 125, - "y": 161 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.96105095744133, - "x_min": 0.31634053587913513, - "y_max": 0.9130281805992126, - "y_min": 0.06904906034469604 - }, - "confidence": 0.6064453125, - "label": "vehicle", - "label_id": 2 - }, - "h": 365, - "region_id": 13159, - "roi_type": "vehicle", - "w": 495, - "x": 243, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33003008365631104, - "x_min": 0.16216199100017548, - "y_max": 0.8308836817741394, - "y_min": 0.35496407747268677 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 206, - "region_id": 13160, - "roi_type": "vehicle", - "w": 129, - "x": 125, - "y": 153 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9567078053951263, - "x_min": 0.3253123462200165, - "y_max": 0.8802770972251892, - "y_min": 0.0708383321762085 - }, - "confidence": 0.6923828125, - "label": "vehicle", - "label_id": 2 - }, - "h": 350, - "region_id": 13161, - "roi_type": "vehicle", - "w": 485, - "x": 250, - "y": 31 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3288085162639618, - "x_min": 0.157329261302948, - "y_max": 0.8057076930999756, - "y_min": 0.3446691036224365 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 199, - "region_id": 13162, - "roi_type": "vehicle", - "w": 132, - "x": 121, - "y": 149 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.963686466217041, - "x_min": 0.3247877359390259, - "y_max": 0.8278923332691193, - "y_min": 0.052186518907547 - }, - "confidence": 0.75537109375, - "label": "vehicle", - "label_id": 2 - }, - "h": 335, - "region_id": 13163, - "roi_type": "vehicle", - "w": 491, - "x": 249, - "y": 23 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.325700581073761, - "x_min": 0.15155886113643646, - "y_max": 0.7916401624679565, - "y_min": 0.3304018974304199 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 199, - "region_id": 13164, - "roi_type": "vehicle", - "w": 134, - "x": 116, - "y": 143 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9605325162410736, - "x_min": 0.34267494082450867, - "y_max": 0.8595539331436157, - "y_min": 0.04185444116592407 - }, - "confidence": 0.60791015625, - "label": "vehicle", - "label_id": 2 - }, - "h": 353, - "region_id": 13165, - "roi_type": "vehicle", - "w": 475, - "x": 263, - "y": 18 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.32326173782348633, - "x_min": 0.1429257094860077, - "y_max": 0.7730258703231812, - "y_min": 0.31999945640563965 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 196, - "region_id": 13166, - "roi_type": "vehicle", - "w": 138, - "x": 110, - "y": 138 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9603236615657806, - "x_min": 0.343340128660202, - "y_max": 0.8690563440322876, - "y_min": 0.03262406587600708 - }, - "confidence": 0.6357421875, - "label": "vehicle", - "label_id": 2 - }, - "h": 361, - "region_id": 13167, - "roi_type": "vehicle", - "w": 474, - "x": 264, - "y": 14 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3207375407218933, - "x_min": 0.13676699995994568, - "y_max": 0.7576345205307007, - "y_min": 0.31319475173950195 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 192, - "region_id": 13168, - "roi_type": "vehicle", - "w": 141, - "x": 105, - "y": 135 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9543446004390717, - "x_min": 0.3145720660686493, - "y_max": 0.8108518123626709, - "y_min": 0.03726363182067871 - }, - "confidence": 0.82177734375, - "label": "vehicle", - "label_id": 2 - }, - "h": 334, - "region_id": 13169, - "roi_type": "vehicle", - "w": 491, - "x": 242, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3170391619205475, - "x_min": 0.12877821922302246, - "y_max": 0.7354335188865662, - "y_min": 0.30213361978530884 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 187, - "region_id": 13170, - "roi_type": "vehicle", - "w": 145, - "x": 99, - "y": 131 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9484927356243134, - "x_min": 0.32739946246147156, - "y_max": 0.7967373430728912, - "y_min": 0.03275647759437561 - }, - "confidence": 0.89990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 330, - "region_id": 13171, - "roi_type": "vehicle", - "w": 477, - "x": 251, - "y": 14 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3141186833381653, - "x_min": 0.11657941341400146, - "y_max": 0.7233425378799438, - "y_min": 0.29008495807647705 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 187, - "region_id": 13172, - "roi_type": "vehicle", - "w": 152, - "x": 90, - "y": 125 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.962075799703598, - "x_min": 0.31081756949424744, - "y_max": 0.8074585795402527, - "y_min": 0.043179333209991455 - }, - "confidence": 0.77880859375, - "label": "vehicle", - "label_id": 2 - }, - "h": 330, - "region_id": 13173, - "roi_type": "vehicle", - "w": 500, - "x": 239, - "y": 19 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31127429008483887, - "x_min": 0.10575759410858154, - "y_max": 0.7095938324928284, - "y_min": 0.2833430767059326 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 184, - "region_id": 13174, - "roi_type": "vehicle", - "w": 158, - "x": 81, - "y": 122 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9623641967773438, - "x_min": 0.32337188720703125, - "y_max": 0.8485720753669739, - "y_min": 0.04102778434753418 - }, - "confidence": 0.73828125, - "label": "vehicle", - "label_id": 2 - }, - "h": 349, - "region_id": 13175, - "roi_type": "vehicle", - "w": 491, - "x": 248, - "y": 18 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.30724579095840454, - "x_min": 0.0889257937669754, - "y_max": 0.6935571432113647, - "y_min": 0.27660852670669556 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 180, - "region_id": 13176, - "roi_type": "vehicle", - "w": 168, - "x": 68, - "y": 119 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9568454027175903, - "x_min": 0.3318895101547241, - "y_max": 0.8259652853012085, - "y_min": 0.046311259269714355 - }, - "confidence": 0.7607421875, - "label": "vehicle", - "label_id": 2 - }, - "h": 337, - "region_id": 13177, - "roi_type": "vehicle", - "w": 480, - "x": 255, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3028292879462242, - "x_min": 0.08205672353506088, - "y_max": 0.6734104156494141, - "y_min": 0.2817556858062744 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 169, - "region_id": 13178, - "roi_type": "vehicle", - "w": 170, - "x": 63, - "y": 122 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9649854302406311, - "x_min": 0.31925123929977417, - "y_max": 0.8659673929214478, - "y_min": 0.0621986985206604 - }, - "confidence": 0.54736328125, - "label": "vehicle", - "label_id": 2 - }, - "h": 347, - "region_id": 13179, - "roi_type": "vehicle", - "w": 496, - "x": 245, - "y": 27 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2942311242222786, - "x_min": 0.07399673014879227, - "y_max": 0.6569262742996216, - "y_min": 0.27245113253593445 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 166, - "region_id": 13180, - "roi_type": "vehicle", - "w": 169, - "x": 57, - "y": 118 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9777919352054596, - "x_min": 0.34445157647132874, - "y_max": 0.848713606595993, - "y_min": 0.045572489500045776 - }, - "confidence": 0.69873046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 347, - "region_id": 13181, - "roi_type": "vehicle", - "w": 486, - "x": 265, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2884630039334297, - "x_min": 0.06656671315431595, - "y_max": 0.6484526991844177, - "y_min": 0.264728307723999 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 166, - "region_id": 13182, - "roi_type": "vehicle", - "w": 170, - "x": 51, - "y": 114 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2830882668495178, - "x_min": 0.054641202092170715, - "y_max": 0.6378852725028992, - "y_min": 0.2628006339073181 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 162, - "region_id": 13183, - "roi_type": "vehicle", - "w": 175, - "x": 42, - "y": 114 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9622345864772797, - "x_min": 0.35567352175712585, - "y_max": 0.7274520099163055, - "y_min": 0.06999191641807556 - }, - "confidence": 0.529296875, - "label": "vehicle", - "label_id": 2 - }, - "h": 284, - "region_id": 13184, - "roi_type": "vehicle", - "w": 466, - "x": 273, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27765556424856186, - "x_min": 0.04351823776960373, - "y_max": 0.6269818544387817, - "y_min": 0.25980502367019653 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 159, - "region_id": 13185, - "roi_type": "vehicle", - "w": 180, - "x": 33, - "y": 112 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27031514048576355, - "x_min": 0.030673563480377197, - "y_max": 0.612331748008728, - "y_min": 0.2571866512298584 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 153, - "region_id": 13186, - "roi_type": "vehicle", - "w": 184, - "x": 24, - "y": 111 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2615850567817688, - "x_min": 0.019214048981666565, - "y_max": 0.6010944843292236, - "y_min": 0.2520679831504822 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 151, - "region_id": 13187, - "roi_type": "vehicle", - "w": 186, - "x": 15, - "y": 109 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9748682379722595, - "x_min": 0.3660525679588318, - "y_max": 0.9305697083473206, - "y_min": 0.0460972785949707 - }, - "confidence": 0.5625, - "label": "vehicle", - "label_id": 2 - }, - "h": 382, - "region_id": 13188, - "roi_type": "vehicle", - "w": 468, - "x": 281, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2566665932536125, - "x_min": 0.010110311210155487, - "y_max": 0.5950663089752197, - "y_min": 0.25599029660224915 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 146, - "region_id": 13189, - "roi_type": "vehicle", - "w": 189, - "x": 8, - "y": 111 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24547897279262543, - "x_min": 0.00378476083278656, - "y_max": 0.58565354347229, - "y_min": 0.250363290309906 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 145, - "region_id": 13190, - "roi_type": "vehicle", - "w": 186, - "x": 3, - "y": 108 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23500293493270874, - "x_min": 0.001883864402770996, - "y_max": 0.5771509259939194, - "y_min": 0.24766944348812103 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 142, - "region_id": 13191, - "roi_type": "vehicle", - "w": 179, - "x": 1, - "y": 107 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.22417304664850235, - "x_min": 0.0005508437752723694, - "y_max": 0.5657980293035507, - "y_min": 0.24598316848278046 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 138, - "region_id": 13192, - "roi_type": "vehicle", - "w": 172, - "x": 0, - "y": 106 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9669439494609833, - "x_min": 0.3940558135509491, - "y_max": 0.7534793317317963, - "y_min": 0.06528171896934509 - }, - "confidence": 0.61279296875, - "label": "vehicle", - "label_id": 2 - }, - "h": 297, - "region_id": 13193, - "roi_type": "vehicle", - "w": 440, - "x": 303, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.21810167282819748, - "x_min": 0.0, - "y_max": 0.5573959350585938, - "y_min": 0.2435314953327179 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 136, - "region_id": 13194, - "roi_type": "vehicle", - "w": 168, - "x": 0, - "y": 105 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9764391481876373, - "x_min": 0.3866957724094391, - "y_max": 0.7931325435638428, - "y_min": 0.039081573486328125 - }, - "confidence": 0.708984375, - "label": "vehicle", - "label_id": 2 - }, - "h": 326, - "region_id": 13195, - "roi_type": "vehicle", - "w": 453, - "x": 297, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.20639830827713013, - "x_min": 0.0010264068841934204, - "y_max": 0.5487916022539139, - "y_min": 0.24332047998905182 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 13196, - "roi_type": "vehicle", - "w": 158, - "x": 1, - "y": 105 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1992337852716446, - "x_min": 0.0004508793354034424, - "y_max": 0.5388166904449463, - "y_min": 0.24044927954673767 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 129, - "region_id": 13197, - "roi_type": "vehicle", - "w": 153, - "x": 0, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.18727533519268036, - "x_min": 0.0016330182552337646, - "y_max": 0.5345794409513474, - "y_min": 0.22854118049144745 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 13198, - "roi_type": "vehicle", - "w": 143, - "x": 1, - "y": 99 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.17466454952955246, - "x_min": 0.0019783303141593933, - "y_max": 0.530539870262146, - "y_min": 0.22426244616508484 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 13199, - "roi_type": "vehicle", - "w": 133, - "x": 2, - "y": 97 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.16492079943418503, - "x_min": 0.003018997609615326, - "y_max": 0.523313120007515, - "y_min": 0.22057349979877472 - }, - "confidence": 0.998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 131, - "region_id": 13200, - "roi_type": "vehicle", - "w": 124, - "x": 2, - "y": 95 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15884939581155777, - "x_min": 0.0, - "y_max": 0.5263099074363708, - "y_min": 0.2229311466217041 - }, - "confidence": 0.9970703125, - "label": "vehicle", - "label_id": 2 - }, - "h": 131, - "region_id": 13201, - "roi_type": "vehicle", - "w": 122, - "x": 0, - "y": 96 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1441451609134674, - "x_min": 0.000693395733833313, - "y_max": 0.5236131399869919, - "y_min": 0.2226388305425644 - }, - "confidence": 0.990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 130, - "region_id": 13202, - "roi_type": "vehicle", - "w": 110, - "x": 1, - "y": 96 - }, - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.11497771739959717, - "y_max": 0.9465397000312805, - "y_min": 0.03637963533401489 - }, - "confidence": 0.552734375, - "label": "vehicle", - "label_id": 2 - }, - "h": 393, - "region_id": 13203, - "roi_type": "vehicle", - "w": 680, - "x": 88, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1313403695821762, - "x_min": 0.0012536048889160156, - "y_max": 0.5229455083608627, - "y_min": 0.23211054503917694 - }, - "confidence": 0.8857421875, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 13204, - "roi_type": "vehicle", - "w": 100, - "x": 1, - "y": 100 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1251680999994278, - "x_min": 0.0, - "y_max": 0.5160009860992432, - "y_min": 0.24285933375358582 - }, - "confidence": 0.74755859375, - "label": "vehicle", - "label_id": 2 - }, - "h": 118, - "region_id": 13205, - "roi_type": "vehicle", - "w": 96, - "x": 0, - "y": 105 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11142117157578468, - "x_min": 0.0006205327808856964, - "y_max": 0.5151717662811279, - "y_min": 0.23993870615959167 - }, - "confidence": 0.88330078125, - "label": "vehicle", - "label_id": 2 - }, - "h": 119, - "region_id": 13206, - "roi_type": "vehicle", - "w": 85, - "x": 0, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.09933491796255112, - "x_min": 0.0014743134379386902, - "y_max": 0.518338680267334, - "y_min": 0.23731520771980286 - }, - "confidence": 0.6923828125, - "label": "vehicle", - "label_id": 2 - }, - "h": 121, - "region_id": 13207, - "roi_type": "vehicle", - "w": 75, - "x": 1, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.08814045041799545, - "x_min": 0.0, - "y_max": 0.5179922431707382, - "y_min": 0.2371600717306137 - }, - "confidence": 0.5166015625, - "label": "vehicle", - "label_id": 2 - }, - "h": 121, - "region_id": 13208, - "roi_type": "vehicle", - "w": 68, - "x": 0, - "y": 102 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.078303974121809, - "x_min": 0.0, - "y_max": 0.5105343610048294, - "y_min": 0.23882491886615753 - }, - "confidence": 0.74951171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 13209, - "roi_type": "vehicle", - "w": 60, - "x": 0, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06655463203787804, - "x_min": 0.0006585381925106049, - "y_max": 0.5064481496810913, - "y_min": 0.23939380049705505 - }, - "confidence": 0.6376953125, - "label": "vehicle", - "label_id": 2 - }, - "h": 115, - "region_id": 13210, - "roi_type": "vehicle", - "w": 51, - "x": 1, - "y": 103 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.0942881628870964, - "x_min": 0.04302658885717392, - "y_max": 0.6302101612091064, - "y_min": 0.5369205474853516 - }, - "confidence": 0.5048828125, - "label": "vehicle", - "label_id": 2 - }, - "h": 40, - "region_id": 13211, - "roi_type": "vehicle", - "w": 39, - "x": 33, - "y": 232 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.058643946424126625, - "x_min": 0.0012939441949129105, - "y_max": 0.4994227886199951, - "y_min": 0.24962610006332397 - }, - "confidence": 0.74755859375, - "label": "vehicle", - "label_id": 2 - }, - "h": 108, - "region_id": 13212, - "roi_type": "vehicle", - "w": 44, - "x": 1, - "y": 108 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.04710671491920948, - "x_min": 0.002159060910344124, - "y_max": 0.49160075187683105, - "y_min": 0.27301615476608276 - }, - "confidence": 0.580078125, - "label": "vehicle", - "label_id": 2 - }, - "h": 94, - "region_id": 13213, - "roi_type": "vehicle", - "w": 35, - "x": 2, - "y": 118 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.038663893938064575, - "x_min": 0.0, - "y_max": 0.4893234968185425, - "y_min": 0.2736009955406189 - }, - "confidence": 0.5234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 93, - "region_id": 13214, - "roi_type": "vehicle", - "w": 30, - "x": 0, - "y": 118 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9569013714790344, - "x_min": 0.2530626654624939, - "y_max": 0.7804694473743439, - "y_min": 0.08048084378242493 - }, - "confidence": 0.66357421875, - "label": "vehicle", - "label_id": 2 - }, - "h": 302, - "region_id": 13221, - "roi_type": "vehicle", - "w": 541, - "x": 194, - "y": 35 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 27333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.05796085111796856, - "x_min": 0.003526007756590843, - "y_max": 0.2683647871017456, - "y_min": 0.09554657340049744 - }, - "confidence": 0.7578125, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 13231, - "roi_type": "person", - "w": 42, - "x": 3, - "y": 41 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06379417888820171, - "x_min": 0.007910190150141716, - "y_max": 0.2743130400776863, - "y_min": 0.10185719281435013 - }, - "confidence": 0.80126953125, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 13232, - "roi_type": "person", - "w": 43, - "x": 6, - "y": 44 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07424172759056091, - "x_min": 0.015349648892879486, - "y_max": 0.2675032541155815, - "y_min": 0.09078633040189743 - }, - "confidence": 0.892578125, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 13233, - "roi_type": "person", - "w": 45, - "x": 12, - "y": 39 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06830157898366451, - "x_min": 0.022359145805239677, - "y_max": 0.26452428847551346, - "y_min": 0.09266514331102371 - }, - "confidence": 0.9462890625, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 13234, - "roi_type": "person", - "w": 35, - "x": 17, - "y": 40 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06263137422502041, - "x_min": 0.028442716225981712, - "y_max": 0.2630351260304451, - "y_min": 0.08788127452135086 - }, - "confidence": 0.70654296875, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 13235, - "roi_type": "person", - "w": 26, - "x": 22, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07015642523765564, - "x_min": 0.038890134543180466, - "y_max": 0.2707189917564392, - "y_min": 0.08740551769733429 - }, - "confidence": 0.85986328125, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 13236, - "roi_type": "person", - "w": 24, - "x": 30, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.08970045298337936, - "x_min": 0.045083530247211456, - "y_max": 0.2602956220507622, - "y_min": 0.08799969404935837 - }, - "confidence": 0.97607421875, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 13237, - "roi_type": "person", - "w": 34, - "x": 35, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.10221833735704422, - "x_min": 0.050295390188694, - "y_max": 0.26162880659103394, - "y_min": 0.08928240835666656 - }, - "confidence": 0.96240234375, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 13238, - "roi_type": "person", - "w": 40, - "x": 39, - "y": 39 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1124647855758667, - "x_min": 0.05559557303786278, - "y_max": 0.26580512523651123, - "y_min": 0.08706669509410858 - }, - "confidence": 0.96240234375, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 13239, - "roi_type": "person", - "w": 44, - "x": 43, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11494597047567368, - "x_min": 0.06002477556467056, - "y_max": 0.2610744759440422, - "y_min": 0.0874699279665947 - }, - "confidence": 0.95947265625, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 13240, - "roi_type": "person", - "w": 42, - "x": 46, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1076885536313057, - "x_min": 0.06897159665822983, - "y_max": 0.25734183192253113, - "y_min": 0.08855894207954407 - }, - "confidence": 0.75, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 13241, - "roi_type": "person", - "w": 30, - "x": 53, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11588124930858612, - "x_min": 0.0844779908657074, - "y_max": 0.25993383675813675, - "y_min": 0.08377892524003983 - }, - "confidence": 0.94384765625, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 13242, - "roi_type": "person", - "w": 24, - "x": 65, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.14279809594154358, - "x_min": 0.08925659954547882, - "y_max": 0.2586924508213997, - "y_min": 0.08260411769151688 - }, - "confidence": 0.98095703125, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 13243, - "roi_type": "person", - "w": 41, - "x": 69, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15317003428936005, - "x_min": 0.09756682813167572, - "y_max": 0.25573694705963135, - "y_min": 0.08256407082080841 - }, - "confidence": 0.9208984375, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 13244, - "roi_type": "person", - "w": 43, - "x": 75, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15702785551548004, - "x_min": 0.09714777767658234, - "y_max": 0.25397133082151413, - "y_min": 0.08110251277685165 - }, - "confidence": 0.98291015625, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 13245, - "roi_type": "person", - "w": 46, - "x": 75, - "y": 35 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15839335322380066, - "x_min": 0.10749229788780212, - "y_max": 0.2547931671142578, - "y_min": 0.07889387011528015 - }, - "confidence": 0.9873046875, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 13246, - "roi_type": "person", - "w": 39, - "x": 83, - "y": 34 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1491146832704544, - "x_min": 0.11746441572904587, - "y_max": 0.25783464312553406, - "y_min": 0.07373198866844177 - }, - "confidence": 0.91162109375, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 13247, - "roi_type": "person", - "w": 24, - "x": 90, - "y": 32 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15772441029548645, - "x_min": 0.13126039505004883, - "y_max": 0.2508736029267311, - "y_min": 0.08296392112970352 - }, - "confidence": 0.55517578125, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 13248, - "roi_type": "person", - "w": 20, - "x": 101, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.17117199301719666, - "x_min": 0.13278326392173767, - "y_max": 0.2538791224360466, - "y_min": 0.0712466761469841 - }, - "confidence": 0.921875, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 13249, - "roi_type": "person", - "w": 29, - "x": 102, - "y": 31 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1887526512145996, - "x_min": 0.13873153924942017, - "y_max": 0.24830224364995956, - "y_min": 0.06952892988920212 - }, - "confidence": 0.9716796875, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 13250, - "roi_type": "person", - "w": 38, - "x": 107, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.198638916015625, - "x_min": 0.1424277126789093, - "y_max": 0.24426036328077316, - "y_min": 0.06967847794294357 - }, - "confidence": 0.9326171875, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 13251, - "roi_type": "person", - "w": 43, - "x": 109, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19823414087295532, - "x_min": 0.14558222889900208, - "y_max": 0.24210044741630554, - "y_min": 0.06738212704658508 - }, - "confidence": 0.9580078125, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 13252, - "roi_type": "person", - "w": 40, - "x": 112, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19666728377342224, - "x_min": 0.15930649638175964, - "y_max": 0.24701160937547684, - "y_min": 0.06952521950006485 - }, - "confidence": 0.9384765625, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 13253, - "roi_type": "person", - "w": 29, - "x": 122, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19645187258720398, - "x_min": 0.16701623797416687, - "y_max": 0.2467137724161148, - "y_min": 0.05971263349056244 - }, - "confidence": 0.81396484375, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 13254, - "roi_type": "person", - "w": 23, - "x": 128, - "y": 26 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.20708149671554565, - "x_min": 0.17690825462341309, - "y_max": 0.24018753319978714, - "y_min": 0.06553960591554642 - }, - "confidence": 0.86181640625, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 13255, - "roi_type": "person", - "w": 23, - "x": 136, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.22888699173927307, - "x_min": 0.17742937803268433, - "y_max": 0.2344159260392189, - "y_min": 0.06553412228822708 - }, - "confidence": 0.9453125, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 13256, - "roi_type": "person", - "w": 40, - "x": 136, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23775845766067505, - "x_min": 0.1861700415611267, - "y_max": 0.2327612265944481, - "y_min": 0.0673552080988884 - }, - "confidence": 0.86279296875, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 13257, - "roi_type": "person", - "w": 40, - "x": 143, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24472364783287048, - "x_min": 0.18928638100624084, - "y_max": 0.22882839292287827, - "y_min": 0.06334161013364792 - }, - "confidence": 0.939453125, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 13258, - "roi_type": "person", - "w": 43, - "x": 145, - "y": 27 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24371737241744995, - "x_min": 0.19899338483810425, - "y_max": 0.22491950541734695, - "y_min": 0.06480459123849869 - }, - "confidence": 0.91650390625, - "label": "person", - "label_id": 1 - }, - "h": 69, - "region_id": 13259, - "roi_type": "person", - "w": 34, - "x": 153, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23920945823192596, - "x_min": 0.20880557596683502, - "y_max": 0.2312590777873993, - "y_min": 0.051177769899368286 - }, - "confidence": 0.7421875, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 13260, - "roi_type": "person", - "w": 23, - "x": 160, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24577099084854126, - "x_min": 0.21508976817131042, - "y_max": 0.22445382922887802, - "y_min": 0.04580488055944443 - }, - "confidence": 0.8076171875, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 13261, - "roi_type": "person", - "w": 24, - "x": 165, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2584080398082733, - "x_min": 0.2213379144668579, - "y_max": 0.22188827395439148, - "y_min": 0.04266056418418884 - }, - "confidence": 0.9384765625, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 13262, - "roi_type": "person", - "w": 28, - "x": 170, - "y": 18 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.26847225427627563, - "x_min": 0.22314880788326263, - "y_max": 0.22252074629068375, - "y_min": 0.03724823147058487 - }, - "confidence": 0.85595703125, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 13263, - "roi_type": "person", - "w": 35, - "x": 171, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27866482734680176, - "x_min": 0.22583787143230438, - "y_max": 0.21875855326652527, - "y_min": 0.04367309808731079 - }, - "confidence": 0.94140625, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 13264, - "roi_type": "person", - "w": 41, - "x": 173, - "y": 19 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27825289964675903, - "x_min": 0.22984372079372406, - "y_max": 0.2128024399280548, - "y_min": 0.04053172469139099 - }, - "confidence": 0.89990234375, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 13265, - "roi_type": "person", - "w": 37, - "x": 177, - "y": 18 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.278627872467041, - "x_min": 0.23964999616146088, - "y_max": 0.21169210225343704, - "y_min": 0.026805169880390167 - }, - "confidence": 0.56640625, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 13266, - "roi_type": "person", - "w": 30, - "x": 184, - "y": 12 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.28468194603919983, - "x_min": 0.2542703449726105, - "y_max": 0.2149207815527916, - "y_min": 0.02619936317205429 - }, - "confidence": 0.794921875, - "label": "person", - "label_id": 1 - }, - "h": 82, - "region_id": 13267, - "roi_type": "person", - "w": 23, - "x": 195, - "y": 11 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2908972501754761, - "x_min": 0.2598450779914856, - "y_max": 0.2079339250922203, - "y_min": 0.022825680673122406 - }, - "confidence": 0.8330078125, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 13268, - "roi_type": "person", - "w": 24, - "x": 200, - "y": 10 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.30745673179626465, - "x_min": 0.26573002338409424, - "y_max": 0.19293907284736633, - "y_min": 0.02228669822216034 - }, - "confidence": 0.97802734375, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 13269, - "roi_type": "person", - "w": 32, - "x": 204, - "y": 10 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3109080493450165, - "x_min": 0.26781293749809265, - "y_max": 0.19742047786712646, - "y_min": 0.023131072521209717 - }, - "confidence": 0.96533203125, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 13270, - "roi_type": "person", - "w": 33, - "x": 206, - "y": 10 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.2956489324569702, - "x_min": 0.10402004420757294, - "y_max": 1.0, - "y_min": 0.8513724207878113 - }, - "confidence": 0.779296875, - "label": "vehicle", - "label_id": 2 - }, - "h": 64, - "region_id": 13271, - "roi_type": "vehicle", - "w": 147, - "x": 80, - "y": 368 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3159233331680298, - "x_min": 0.27413952350616455, - "y_max": 0.1829414889216423, - "y_min": 0.019071929156780243 - }, - "confidence": 0.98193359375, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 13272, - "roi_type": "person", - "w": 32, - "x": 211, - "y": 8 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3024454191327095, - "x_min": 0.08785287290811539, - "y_max": 1.0, - "y_min": 0.826200008392334 - }, - "confidence": 0.90869140625, - "label": "vehicle", - "label_id": 2 - }, - "h": 75, - "region_id": 13273, - "roi_type": "vehicle", - "w": 165, - "x": 67, - "y": 357 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3163028359413147, - "x_min": 0.279521107673645, - "y_max": 0.18253225088119507, - "y_min": 0.009588927030563354 - }, - "confidence": 0.85546875, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 13274, - "roi_type": "person", - "w": 28, - "x": 215, - "y": 4 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3072689101099968, - "x_min": 0.08985143154859543, - "y_max": 1.0, - "y_min": 0.7982624173164368 - }, - "confidence": 0.9658203125, - "label": "vehicle", - "label_id": 2 - }, - "h": 87, - "region_id": 13275, - "roi_type": "vehicle", - "w": 167, - "x": 69, - "y": 345 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.32006755471229553, - "x_min": 0.2837705910205841, - "y_max": 0.17555156350135803, - "y_min": 0.0023487508296966553 - }, - "confidence": 0.931640625, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 13276, - "roi_type": "person", - "w": 28, - "x": 218, - "y": 1 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3180421218276024, - "x_min": 0.09333022683858871, - "y_max": 0.996577262878418, - "y_min": 0.7744814157485962 - }, - "confidence": 0.998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 96, - "region_id": 13277, - "roi_type": "vehicle", - "w": 173, - "x": 72, - "y": 335 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3245868682861328, - "x_min": 0.2912326455116272, - "y_max": 0.18103285878896713, - "y_min": 0.0 - }, - "confidence": 0.93017578125, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 13278, - "roi_type": "person", - "w": 26, - "x": 224, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3213460445404053, - "x_min": 0.09354156255722046, - "y_max": 0.997982382774353, - "y_min": 0.7562445402145386 - }, - "confidence": 0.99609375, - "label": "vehicle", - "label_id": 2 - }, - "h": 104, - "region_id": 13279, - "roi_type": "vehicle", - "w": 175, - "x": 72, - "y": 327 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3375798463821411, - "x_min": 0.29701799154281616, - "y_max": 0.1681172400712967, - "y_min": 0.0 - }, - "confidence": 0.97314453125, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 13280, - "roi_type": "person", - "w": 31, - "x": 228, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3254093825817108, - "x_min": 0.09381496906280518, - "y_max": 0.9986022710800171, - "y_min": 0.7277764081954956 - }, - "confidence": 0.998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 13281, - "roi_type": "vehicle", - "w": 178, - "x": 72, - "y": 314 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34107476472854614, - "x_min": 0.2997574806213379, - "y_max": 0.15931344777345657, - "y_min": 0.0 - }, - "confidence": 0.96435546875, - "label": "person", - "label_id": 1 - }, - "h": 69, - "region_id": 13282, - "roi_type": "person", - "w": 32, - "x": 230, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3319740891456604, - "x_min": 0.09414704144001007, - "y_max": 0.9966111779212952, - "y_min": 0.7045837044715881 - }, - "confidence": 0.99609375, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 13283, - "roi_type": "vehicle", - "w": 183, - "x": 72, - "y": 304 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34646058082580566, - "x_min": 0.3028937578201294, - "y_max": 0.156146802008152, - "y_min": 0.0 - }, - "confidence": 0.984375, - "label": "person", - "label_id": 1 - }, - "h": 67, - "region_id": 13284, - "roi_type": "person", - "w": 33, - "x": 233, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3392763137817383, - "x_min": 0.09022277593612671, - "y_max": 0.9994381070137024, - "y_min": 0.6786060929298401 - }, - "confidence": 0.99609375, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "region_id": 13285, - "roi_type": "vehicle", - "w": 191, - "x": 69, - "y": 293 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34512296319007874, - "x_min": 0.30911585688591003, - "y_max": 0.15079374611377716, - "y_min": 0.0 - }, - "confidence": 0.94384765625, - "label": "person", - "label_id": 1 - }, - "h": 65, - "region_id": 13286, - "roi_type": "person", - "w": 28, - "x": 237, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.34184062480926514, - "x_min": 0.09453167021274567, - "y_max": 1.0, - "y_min": 0.6524904370307922 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 150, - "region_id": 13287, - "roi_type": "vehicle", - "w": 190, - "x": 73, - "y": 282 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34818318486213684, - "x_min": 0.31593766808509827, - "y_max": 0.14530643820762634, - "y_min": 0.0 - }, - "confidence": 0.96337890625, - "label": "person", - "label_id": 1 - }, - "h": 63, - "region_id": 13288, - "roi_type": "person", - "w": 25, - "x": 243, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.34417855739593506, - "x_min": 0.09946362674236298, - "y_max": 0.999272882938385, - "y_min": 0.6353164315223694 - }, - "confidence": 0.998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 157, - "region_id": 13289, - "roi_type": "vehicle", - "w": 188, - "x": 76, - "y": 274 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35314884781837463, - "x_min": 0.32001474499702454, - "y_max": 0.14837931841611862, - "y_min": 0.0 - }, - "confidence": 0.87060546875, - "label": "person", - "label_id": 1 - }, - "h": 64, - "region_id": 13290, - "roi_type": "person", - "w": 25, - "x": 246, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3492073640227318, - "x_min": 0.10767313092947006, - "y_max": 1.0, - "y_min": 0.6190989017486572 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 165, - "region_id": 13291, - "roi_type": "vehicle", - "w": 185, - "x": 83, - "y": 267 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35834217071533203, - "x_min": 0.3240100145339966, - "y_max": 0.14449387788772583, - "y_min": 0.0 - }, - "confidence": 0.78515625, - "label": "person", - "label_id": 1 - }, - "h": 62, - "region_id": 13292, - "roi_type": "person", - "w": 26, - "x": 249, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3576863408088684, - "x_min": 0.11795952916145325, - "y_max": 0.9962477087974548, - "y_min": 0.5935474038124084 - }, - "confidence": 0.9951171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 174, - "region_id": 13293, - "roi_type": "vehicle", - "w": 184, - "x": 91, - "y": 256 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3616437613964081, - "x_min": 0.3287608325481415, - "y_max": 0.14139731973409653, - "y_min": 0.0 - }, - "confidence": 0.6171875, - "label": "person", - "label_id": 1 - }, - "h": 61, - "region_id": 13294, - "roi_type": "person", - "w": 25, - "x": 252, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3568938076496124, - "x_min": 0.1184740960597992, - "y_max": 0.9960288405418396, - "y_min": 0.5713207125663757 - }, - "confidence": 0.9951171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 183, - "region_id": 13295, - "roi_type": "vehicle", - "w": 183, - "x": 91, - "y": 247 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3645513355731964, - "x_min": 0.3319735825061798, - "y_max": 0.14285987615585327, - "y_min": 0.0 - }, - "confidence": 0.88134765625, - "label": "person", - "label_id": 1 - }, - "h": 62, - "region_id": 13296, - "roi_type": "person", - "w": 25, - "x": 255, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3612084537744522, - "x_min": 0.10926742851734161, - "y_max": 1.0, - "y_min": 0.5522088408470154 - }, - "confidence": 0.998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 193, - "region_id": 13297, - "roi_type": "vehicle", - "w": 193, - "x": 84, - "y": 239 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3690513074398041, - "x_min": 0.3348962962627411, - "y_max": 0.13076193630695343, - "y_min": 0.0 - }, - "confidence": 0.53564453125, - "label": "person", - "label_id": 1 - }, - "h": 56, - "region_id": 13298, - "roi_type": "person", - "w": 26, - "x": 257, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3626910224556923, - "x_min": 0.1165127232670784, - "y_max": 1.0, - "y_min": 0.5341740250587463 - }, - "confidence": 0.9921875, - "label": "vehicle", - "label_id": 2 - }, - "h": 201, - "region_id": 13299, - "roi_type": "vehicle", - "w": 189, - "x": 89, - "y": 231 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3653745725750923, - "x_min": 0.11738703399896622, - "y_max": 1.0, - "y_min": 0.5187159776687622 - }, - "confidence": 0.984375, - "label": "vehicle", - "label_id": 2 - }, - "h": 208, - "region_id": 13300, - "roi_type": "vehicle", - "w": 190, - "x": 90, - "y": 224 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35986167192459106, - "x_min": 0.11861021816730499, - "y_max": 1.0, - "y_min": 0.5067421197891235 - }, - "confidence": 0.97998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "region_id": 13301, - "roi_type": "vehicle", - "w": 185, - "x": 91, - "y": 219 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3583891987800598, - "x_min": 0.12578806281089783, - "y_max": 1.0, - "y_min": 0.48726680874824524 - }, - "confidence": 0.96142578125, - "label": "vehicle", - "label_id": 2 - }, - "h": 222, - "region_id": 13302, - "roi_type": "vehicle", - "w": 179, - "x": 97, - "y": 210 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36830934882164, - "x_min": 0.13284197449684143, - "y_max": 1.0, - "y_min": 0.4726431965827942 - }, - "confidence": 0.9716796875, - "label": "vehicle", - "label_id": 2 - }, - "h": 228, - "region_id": 13303, - "roi_type": "vehicle", - "w": 181, - "x": 102, - "y": 204 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3714140057563782, - "x_min": 0.1372305154800415, - "y_max": 0.9820627868175507, - "y_min": 0.45351001620292664 - }, - "confidence": 0.9912109375, - "label": "vehicle", - "label_id": 2 - }, - "h": 228, - "region_id": 13304, - "roi_type": "vehicle", - "w": 180, - "x": 105, - "y": 196 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3608435392379761, - "x_min": 0.14590299129486084, - "y_max": 0.9431758522987366, - "y_min": 0.4430229067802429 - }, - "confidence": 0.9970703125, - "label": "vehicle", - "label_id": 2 - }, - "h": 216, - "region_id": 13305, - "roi_type": "vehicle", - "w": 165, - "x": 112, - "y": 191 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3668741285800934, - "x_min": 0.15882495045661926, - "y_max": 0.9358053803443909, - "y_min": 0.41585129499435425 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 225, - "region_id": 13306, - "roi_type": "vehicle", - "w": 160, - "x": 122, - "y": 180 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3655020594596863, - "x_min": 0.1626676321029663, - "y_max": 0.903299480676651, - "y_min": 0.39908042550086975 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 218, - "region_id": 13307, - "roi_type": "vehicle", - "w": 156, - "x": 125, - "y": 172 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36492133140563965, - "x_min": 0.17409741878509521, - "y_max": 0.8789278864860535, - "y_min": 0.38409990072250366 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "region_id": 13308, - "roi_type": "vehicle", - "w": 147, - "x": 134, - "y": 166 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3610725998878479, - "x_min": 0.17910504341125488, - "y_max": 0.8557292222976685, - "y_min": 0.3645592927932739 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 212, - "region_id": 13309, - "roi_type": "vehicle", - "w": 140, - "x": 138, - "y": 157 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3623489737510681, - "x_min": 0.18269610404968262, - "y_max": 0.824630856513977, - "y_min": 0.34558507800102234 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 207, - "region_id": 13310, - "roi_type": "vehicle", - "w": 138, - "x": 140, - "y": 149 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36165374517440796, - "x_min": 0.18928389251232147, - "y_max": 0.7933508157730103, - "y_min": 0.32612988352775574 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 202, - "region_id": 13311, - "roi_type": "vehicle", - "w": 132, - "x": 145, - "y": 141 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3588729202747345, - "x_min": 0.1904868185520172, - "y_max": 0.7664351463317871, - "y_min": 0.3122572898864746 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 196, - "region_id": 13312, - "roi_type": "vehicle", - "w": 129, - "x": 146, - "y": 135 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35344889760017395, - "x_min": 0.1925678551197052, - "y_max": 0.7419216632843018, - "y_min": 0.29417183995246887 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 193, - "region_id": 13313, - "roi_type": "vehicle", - "w": 124, - "x": 148, - "y": 127 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34998437762260437, - "x_min": 0.19450798630714417, - "y_max": 0.7181348204612732, - "y_min": 0.2771528959274292 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 191, - "region_id": 13314, - "roi_type": "vehicle", - "w": 119, - "x": 149, - "y": 120 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3468645513057709, - "x_min": 0.20163050293922424, - "y_max": 0.6970539093017578, - "y_min": 0.26379626989364624 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 187, - "region_id": 13315, - "roi_type": "vehicle", - "w": 112, - "x": 155, - "y": 114 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3438488245010376, - "x_min": 0.19813984632492065, - "y_max": 0.6573256850242615, - "y_min": 0.25968676805496216 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 172, - "region_id": 13316, - "roi_type": "vehicle", - "w": 112, - "x": 152, - "y": 112 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34153616428375244, - "x_min": 0.19358372688293457, - "y_max": 0.6417610496282578, - "y_min": 0.24385033547878265 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 172, - "region_id": 13317, - "roi_type": "vehicle", - "w": 114, - "x": 149, - "y": 105 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33885127305984497, - "x_min": 0.19029003381729126, - "y_max": 0.6309741288423538, - "y_min": 0.2230658084154129 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 176, - "region_id": 13318, - "roi_type": "vehicle", - "w": 114, - "x": 146, - "y": 96 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3374425172805786, - "x_min": 0.18768715858459473, - "y_max": 0.5997136831283569, - "y_min": 0.2070835530757904 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 170, - "region_id": 13319, - "roi_type": "vehicle", - "w": 115, - "x": 144, - "y": 89 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3319251835346222, - "x_min": 0.17804953455924988, - "y_max": 0.5778214484453201, - "y_min": 0.1903323084115982 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 167, - "region_id": 13320, - "roi_type": "vehicle", - "w": 118, - "x": 137, - "y": 82 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3352878987789154, - "x_min": 0.16757449507713318, - "y_max": 0.562267541885376, - "y_min": 0.1759682595729828 - }, - "confidence": 0.9970703125, - "label": "vehicle", - "label_id": 2 - }, - "h": 167, - "region_id": 13321, - "roi_type": "vehicle", - "w": 129, - "x": 129, - "y": 76 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33062705397605896, - "x_min": 0.15925559401512146, - "y_max": 0.5358074903488159, - "y_min": 0.16202977299690247 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 161, - "region_id": 13322, - "roi_type": "vehicle", - "w": 132, - "x": 122, - "y": 70 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3260734975337982, - "x_min": 0.14722785353660583, - "y_max": 0.5155544728040695, - "y_min": 0.157257542014122 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 155, - "region_id": 13323, - "roi_type": "vehicle", - "w": 137, - "x": 113, - "y": 68 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3224096894264221, - "x_min": 0.13780492544174194, - "y_max": 0.501104936003685, - "y_min": 0.15674106776714325 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 149, - "region_id": 13324, - "roi_type": "vehicle", - "w": 142, - "x": 106, - "y": 68 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3169931545853615, - "x_min": 0.12483716756105423, - "y_max": 0.4827064722776413, - "y_min": 0.1493421047925949 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 144, - "region_id": 13325, - "roi_type": "vehicle", - "w": 148, - "x": 96, - "y": 65 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3122137784957886, - "x_min": 0.10267382860183716, - "y_max": 0.47069355845451355, - "y_min": 0.1459626853466034 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 140, - "region_id": 13326, - "roi_type": "vehicle", - "w": 161, - "x": 79, - "y": 63 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.30563071370124817, - "x_min": 0.08968502283096313, - "y_max": 0.4555247873067856, - "y_min": 0.1361779421567917 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 138, - "region_id": 13327, - "roi_type": "vehicle", - "w": 166, - "x": 69, - "y": 59 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2940587177872658, - "x_min": 0.07481119781732559, - "y_max": 0.44223855435848236, - "y_min": 0.13631980121135712 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 13328, - "roi_type": "vehicle", - "w": 168, - "x": 57, - "y": 59 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2887636423110962, - "x_min": 0.06353342533111572, - "y_max": 0.4263155907392502, - "y_min": 0.1369212120771408 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 125, - "region_id": 13329, - "roi_type": "vehicle", - "w": 173, - "x": 49, - "y": 59 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2807242274284363, - "x_min": 0.04622665047645569, - "y_max": 0.41277608275413513, - "y_min": 0.132420152425766 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 121, - "region_id": 13330, - "roi_type": "vehicle", - "w": 180, - "x": 36, - "y": 57 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2704925760626793, - "x_min": 0.032000623643398285, - "y_max": 0.4054313004016876, - "y_min": 0.131648451089859 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 118, - "region_id": 13331, - "roi_type": "vehicle", - "w": 183, - "x": 25, - "y": 57 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2576461434364319, - "x_min": 0.018010497093200684, - "y_max": 0.3983272910118103, - "y_min": 0.1276540756225586 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 13332, - "roi_type": "vehicle", - "w": 184, - "x": 14, - "y": 55 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24717597663402557, - "x_min": 0.004194930195808411, - "y_max": 0.3936364948749542, - "y_min": 0.12304255366325378 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 13333, - "roi_type": "vehicle", - "w": 187, - "x": 3, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23502223938703537, - "x_min": 0.005615077912807465, - "y_max": 0.39088256657123566, - "y_min": 0.12330974638462067 - }, - "confidence": 0.998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 116, - "region_id": 13334, - "roi_type": "vehicle", - "w": 176, - "x": 4, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.22485587745904922, - "x_min": 0.0017657950520515442, - "y_max": 0.3853496015071869, - "y_min": 0.1245599091053009 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 113, - "region_id": 13335, - "roi_type": "vehicle", - "w": 171, - "x": 1, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.21659931540489197, - "x_min": 0.0022316277027130127, - "y_max": 0.3794732093811035, - "y_min": 0.12392610311508179 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 110, - "region_id": 13336, - "roi_type": "vehicle", - "w": 165, - "x": 2, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2029200717806816, - "x_min": 0.0007590577006340027, - "y_max": 0.37220699340105057, - "y_min": 0.12221232801675797 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 108, - "region_id": 13337, - "roi_type": "vehicle", - "w": 155, - "x": 1, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.18482676148414612, - "x_min": 0.0, - "y_max": 0.36792203038930893, - "y_min": 0.12216844409704208 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 106, - "region_id": 13338, - "roi_type": "vehicle", - "w": 142, - "x": 0, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1738429069519043, - "x_min": 0.0, - "y_max": 0.3633963465690613, - "y_min": 0.11975441873073578 - }, - "confidence": 0.9951171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 105, - "region_id": 13339, - "roi_type": "vehicle", - "w": 134, - "x": 0, - "y": 52 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.16032805293798447, - "x_min": 0.0, - "y_max": 0.358875572681427, - "y_min": 0.12134051322937012 - }, - "confidence": 0.98388671875, - "label": "vehicle", - "label_id": 2 - }, - "h": 103, - "region_id": 13340, - "roi_type": "vehicle", - "w": 123, - "x": 0, - "y": 52 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1480599343776703, - "x_min": 2.3692846298217773e-06, - "y_max": 0.3564804494380951, - "y_min": 0.1216433048248291 - }, - "confidence": 0.95703125, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "region_id": 13341, - "roi_type": "vehicle", - "w": 114, - "x": 0, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.13580363243818283, - "x_min": 0.0, - "y_max": 0.3569759950041771, - "y_min": 0.12307702749967575 - }, - "confidence": 0.794921875, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "region_id": 13342, - "roi_type": "vehicle", - "w": 104, - "x": 0, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11234281957149506, - "x_min": 0.0019840747117996216, - "y_max": 0.3554091155529022, - "y_min": 0.12587442994117737 - }, - "confidence": 0.6865234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 99, - "region_id": 13343, - "roi_type": "vehicle", - "w": 85, - "x": 2, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.09860633686184883, - "x_min": 0.003699634224176407, - "y_max": 0.3584703207015991, - "y_min": 0.1261626034975052 - }, - "confidence": 0.7734375, - "label": "vehicle", - "label_id": 2 - }, - "h": 100, - "region_id": 13344, - "roi_type": "vehicle", - "w": 73, - "x": 3, - "y": 55 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.0877152867615223, - "x_min": 0.0017236806452274323, - "y_max": 0.3632138967514038, - "y_min": 0.12957501411437988 - }, - "confidence": 0.6171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "region_id": 13345, - "roi_type": "vehicle", - "w": 66, - "x": 1, - "y": 56 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07340044155716896, - "x_min": 0.004111398011445999, - "y_max": 0.3508581221103668, - "y_min": 0.14412924647331238 - }, - "confidence": 0.65478515625, - "label": "vehicle", - "label_id": 2 - }, - "h": 89, - "region_id": 13346, - "roi_type": "vehicle", - "w": 53, - "x": 3, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06271997094154358, - "x_min": 0.0, - "y_max": 0.3495235741138458, - "y_min": 0.14369750022888184 - }, - "confidence": 0.68505859375, - "label": "vehicle", - "label_id": 2 - }, - "h": 89, - "region_id": 13347, - "roi_type": "vehicle", - "w": 48, - "x": 0, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.049724431708455086, - "x_min": 0.0, - "y_max": 0.34245553612709045, - "y_min": 0.14341771602630615 - }, - "confidence": 0.63525390625, - "label": "vehicle", - "label_id": 2 - }, - "h": 86, - "region_id": 13348, - "roi_type": "vehicle", - "w": 38, - "x": 0, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49250000000 - } - ] -} \ No newline at end of file diff --git a/tests/test_cases/pipeline_execution/gpu/object_detection_gpu_FP16_gstreamer_pipelines/object_detection/person_vehicle_bike/pipeline.json b/tests/test_cases/pipeline_execution/gpu/object_detection_gpu_FP16_gstreamer_pipelines/object_detection/person_vehicle_bike/pipeline.json deleted file mode 100644 index e414579..0000000 --- a/tests/test_cases/pipeline_execution/gpu/object_detection_gpu_FP16_gstreamer_pipelines/object_detection/person_vehicle_bike/pipeline.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "type": "GStreamer", - "template": ["uridecodebin name=source", - " ! gvadetect model={models[object_detection][person_vehicle_bike][FP16][network]} ", - " model-proc={models[object_detection][person_vehicle_bike][FP16][proc]} name=detection", - " ! gvametaconvert name=metaconvert ! gvametapublish name=destination", - " ! appsink name=appsink" - ], - "description": "Person Vehicle Bike Detection based on person-vehicle-bike-detection-crossroad-0078", - "parameters": { - "type": "object", - "properties": { - "detection-device": { - "element": { - "name": "detection", - "property": "device" - }, - "type": "string" - }, - "detection-model-instance-id": { - "element": { - "name": "detection", - "property": "model-instance-id" - }, - "type": "string" - }, - "inference-interval": { - "element": "detection", - "type": "integer" - }, - "threshold": { - "element": "detection", - "type": "number" - } - } - } -} diff --git a/tests/test_cases/pipeline_execution/gpu/object_detection_gpu_FP32_gstreamer.json b/tests/test_cases/pipeline_execution/gpu/object_detection_gpu_FP32_gstreamer.json deleted file mode 100644 index 46dca8b..0000000 --- a/tests/test_cases/pipeline_execution/gpu/object_detection_gpu_FP32_gstreamer.json +++ /dev/null @@ -1,7496 +0,0 @@ -{ - "options": {}, - "pipeline": { - "name": "object_detection", - "version": "person_vehicle_bike" - }, - "request": { - "source": { - "type": "uri", - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4" - }, - "destination": { - "type": "file", - "path": "/tmp/object_detection_gpu_results.json", - "format": "json-lines" - }, - "parameters": { - "detection-device": "GPU" - } - }, - "numerical_tolerance": 0.3, - "result": [ - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7448995113372803, - "x_min": 0.6734092235565186, - "y_max": 0.9991495609283447, - "y_min": 0.8781013488769531 - }, - "confidence": 0.5402483940124512, - "label": "person", - "label_id": 1 - }, - "h": 52, - "region_id": 13806, - "roi_type": "person", - "w": 55, - "x": 517, - "y": 379 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7442193627357483, - "x_min": 0.6763269305229187, - "y_max": 1.0, - "y_min": 0.8277980089187622 - }, - "confidence": 0.5505866408348083, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 13807, - "roi_type": "person", - "w": 52, - "x": 519, - "y": 358 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7465136051177979, - "x_min": 0.6821862459182739, - "y_max": 1.0, - "y_min": 0.8104691505432129 - }, - "confidence": 0.6447353959083557, - "label": "person", - "label_id": 1 - }, - "h": 82, - "region_id": 13808, - "roi_type": "person", - "w": 49, - "x": 524, - "y": 350 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7481286525726318, - "x_min": 0.68366539478302, - "y_max": 0.9999657273292542, - "y_min": 0.7867169976234436 - }, - "confidence": 0.8825273513793945, - "label": "person", - "label_id": 1 - }, - "h": 92, - "region_id": 13809, - "roi_type": "person", - "w": 50, - "x": 525, - "y": 340 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7502986788749695, - "x_min": 0.6836960911750793, - "y_max": 0.9965760111808777, - "y_min": 0.7709739804267883 - }, - "confidence": 0.9252126812934875, - "label": "person", - "label_id": 1 - }, - "h": 97, - "region_id": 13810, - "roi_type": "person", - "w": 51, - "x": 525, - "y": 333 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7533046007156372, - "x_min": 0.6833932399749756, - "y_max": 0.9992514252662659, - "y_min": 0.7517308592796326 - }, - "confidence": 0.9160432815551758, - "label": "person", - "label_id": 1 - }, - "h": 107, - "region_id": 13811, - "roi_type": "person", - "w": 54, - "x": 525, - "y": 325 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7569091320037842, - "x_min": 0.6831721067428589, - "y_max": 0.9893121123313904, - "y_min": 0.7454761862754822 - }, - "confidence": 0.9452282786369324, - "label": "person", - "label_id": 1 - }, - "h": 105, - "region_id": 13813, - "roi_type": "person", - "w": 57, - "x": 525, - "y": 322 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.758220374584198, - "x_min": 0.6869714856147766, - "y_max": 0.9744250178337097, - "y_min": 0.7232376933097839 - }, - "confidence": 0.952268660068512, - "label": "person", - "label_id": 1 - }, - "h": 109, - "region_id": 13814, - "roi_type": "person", - "w": 55, - "x": 528, - "y": 312 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7575156092643738, - "x_min": 0.6908835768699646, - "y_max": 0.9485967755317688, - "y_min": 0.7128697037696838 - }, - "confidence": 0.8796284198760986, - "label": "person", - "label_id": 1 - }, - "h": 102, - "region_id": 13815, - "roi_type": "person", - "w": 51, - "x": 531, - "y": 308 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7562522292137146, - "x_min": 0.6947104334831238, - "y_max": 0.8969831466674805, - "y_min": 0.7029379606246948 - }, - "confidence": 0.8928062319755554, - "label": "person", - "label_id": 1 - }, - "h": 84, - "region_id": 13816, - "roi_type": "person", - "w": 47, - "x": 534, - "y": 304 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7574296593666077, - "x_min": 0.6979045271873474, - "y_max": 0.8754802346229553, - "y_min": 0.6884984374046326 - }, - "confidence": 0.8720529675483704, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 13817, - "roi_type": "person", - "w": 46, - "x": 536, - "y": 297 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7628753781318665, - "x_min": 0.6962668299674988, - "y_max": 0.9012861251831055, - "y_min": 0.6672508716583252 - }, - "confidence": 0.6988999247550964, - "label": "person", - "label_id": 1 - }, - "h": 101, - "region_id": 13818, - "roi_type": "person", - "w": 51, - "x": 535, - "y": 288 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7642366886138916, - "x_min": 0.6945128440856934, - "y_max": 0.8976409435272217, - "y_min": 0.6511139869689941 - }, - "confidence": 0.6954096555709839, - "label": "person", - "label_id": 1 - }, - "h": 106, - "region_id": 13819, - "roi_type": "person", - "w": 54, - "x": 533, - "y": 281 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7641031742095947, - "x_min": 0.7028636932373047, - "y_max": 0.8516806960105896, - "y_min": 0.6483859419822693 - }, - "confidence": 0.6670737266540527, - "label": "person", - "label_id": 1 - }, - "h": 88, - "region_id": 13820, - "roi_type": "person", - "w": 47, - "x": 540, - "y": 280 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7670164108276367, - "x_min": 0.7064443826675415, - "y_max": 0.829826295375824, - "y_min": 0.6299616694450378 - }, - "confidence": 0.9295328259468079, - "label": "person", - "label_id": 1 - }, - "h": 86, - "region_id": 13821, - "roi_type": "person", - "w": 47, - "x": 543, - "y": 272 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7725509405136108, - "x_min": 0.7098292112350464, - "y_max": 0.8254445195198059, - "y_min": 0.6173177361488342 - }, - "confidence": 0.689612627029419, - "label": "person", - "label_id": 1 - }, - "h": 90, - "region_id": 13822, - "roi_type": "person", - "w": 48, - "x": 545, - "y": 267 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7741845846176147, - "x_min": 0.7090356349945068, - "y_max": 0.8218122124671936, - "y_min": 0.6104786992073059 - }, - "confidence": 0.7604824304580688, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 13823, - "roi_type": "person", - "w": 50, - "x": 545, - "y": 264 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7783714532852173, - "x_min": 0.7181830406188965, - "y_max": 0.7849859595298767, - "y_min": 0.5744112133979797 - }, - "confidence": 0.5027393102645874, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 13824, - "roi_type": "person", - "w": 46, - "x": 552, - "y": 248 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7834279537200928, - "x_min": 0.7257949113845825, - "y_max": 0.7589362263679504, - "y_min": 0.5519590973854065 - }, - "confidence": 0.7043126821517944, - "label": "person", - "label_id": 1 - }, - "h": 89, - "region_id": 13825, - "roi_type": "person", - "w": 44, - "x": 557, - "y": 238 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.78952956199646, - "x_min": 0.7326743602752686, - "y_max": 0.7261121869087219, - "y_min": 0.5483003258705139 - }, - "confidence": 0.9756479263305664, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 13826, - "roi_type": "person", - "w": 44, - "x": 563, - "y": 237 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7890371084213257, - "x_min": 0.737720251083374, - "y_max": 0.703130841255188, - "y_min": 0.5400574207305908 - }, - "confidence": 0.841511070728302, - "label": "person", - "label_id": 1 - }, - "h": 70, - "region_id": 13827, - "roi_type": "person", - "w": 39, - "x": 567, - "y": 233 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7952908873558044, - "x_min": 0.7402903437614441, - "y_max": 0.6921250820159912, - "y_min": 0.5216915607452393 - }, - "confidence": 0.7716287970542908, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 13828, - "roi_type": "person", - "w": 42, - "x": 569, - "y": 225 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8006463646888733, - "x_min": 0.746234118938446, - "y_max": 0.6880520582199097, - "y_min": 0.5218417644500732 - }, - "confidence": 0.8759839534759521, - "label": "person", - "label_id": 1 - }, - "h": 72, - "region_id": 13829, - "roi_type": "person", - "w": 42, - "x": 573, - "y": 225 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8098055720329285, - "x_min": 0.7457361817359924, - "y_max": 0.7030310034751892, - "y_min": 0.5026633143424988 - }, - "confidence": 0.9101055860519409, - "label": "person", - "label_id": 1 - }, - "h": 87, - "region_id": 13830, - "roi_type": "person", - "w": 49, - "x": 573, - "y": 217 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8131635785102844, - "x_min": 0.7560372948646545, - "y_max": 0.68419349193573, - "y_min": 0.4961233139038086 - }, - "confidence": 0.9086406826972961, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 13831, - "roi_type": "person", - "w": 44, - "x": 581, - "y": 214 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.823058545589447, - "x_min": 0.7637491822242737, - "y_max": 0.6855757236480713, - "y_min": 0.4885023832321167 - }, - "confidence": 0.824819803237915, - "label": "person", - "label_id": 1 - }, - "h": 85, - "region_id": 13834, - "roi_type": "person", - "w": 46, - "x": 587, - "y": 211 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8232851028442383, - "x_min": 0.760567307472229, - "y_max": 0.6924915909767151, - "y_min": 0.47507840394973755 - }, - "confidence": 0.6950206756591797, - "label": "person", - "label_id": 1 - }, - "h": 94, - "region_id": 13837, - "roi_type": "person", - "w": 48, - "x": 584, - "y": 205 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8322221040725708, - "x_min": 0.7602424621582031, - "y_max": 0.6941542625427246, - "y_min": 0.46584221720695496 - }, - "confidence": 0.586735725402832, - "label": "person", - "label_id": 1 - }, - "h": 99, - "region_id": 13838, - "roi_type": "person", - "w": 55, - "x": 584, - "y": 201 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8429373502731323, - "x_min": 0.793522834777832, - "y_max": 0.6419347524642944, - "y_min": 0.43809905648231506 - }, - "confidence": 0.9679206609725952, - "label": "person", - "label_id": 1 - }, - "h": 88, - "region_id": 13839, - "roi_type": "person", - "w": 38, - "x": 609, - "y": 189 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.849794328212738, - "x_min": 0.796667754650116, - "y_max": 0.615337610244751, - "y_min": 0.44303926825523376 - }, - "confidence": 0.8853123188018799, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 13840, - "roi_type": "person", - "w": 41, - "x": 612, - "y": 191 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8533491492271423, - "x_min": 0.8009874224662781, - "y_max": 0.6051763892173767, - "y_min": 0.4295733571052551 - }, - "confidence": 0.9033101797103882, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 13843, - "roi_type": "person", - "w": 40, - "x": 615, - "y": 186 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8604123592376709, - "x_min": 0.8060647249221802, - "y_max": 0.5924712419509888, - "y_min": 0.42701780796051025 - }, - "confidence": 0.8053343296051025, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 13845, - "roi_type": "person", - "w": 42, - "x": 619, - "y": 184 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8663100004196167, - "x_min": 0.8105943202972412, - "y_max": 0.5942341685295105, - "y_min": 0.42083391547203064 - }, - "confidence": 0.7699306607246399, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 13847, - "roi_type": "person", - "w": 43, - "x": 623, - "y": 182 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8744010329246521, - "x_min": 0.817695677280426, - "y_max": 0.5900759696960449, - "y_min": 0.41369643807411194 - }, - "confidence": 0.9554976224899292, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 13848, - "roi_type": "person", - "w": 44, - "x": 628, - "y": 179 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8855564594268799, - "x_min": 0.8264036178588867, - "y_max": 0.5860602259635925, - "y_min": 0.4029603898525238 - }, - "confidence": 0.8228963017463684, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 13850, - "roi_type": "person", - "w": 45, - "x": 635, - "y": 174 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8908534049987793, - "x_min": 0.8350781202316284, - "y_max": 0.5897727012634277, - "y_min": 0.3878403902053833 - }, - "confidence": 0.8011397123336792, - "label": "person", - "label_id": 1 - }, - "h": 87, - "region_id": 13851, - "roi_type": "person", - "w": 43, - "x": 641, - "y": 168 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9007775187492371, - "x_min": 0.8356189131736755, - "y_max": 0.5877959132194519, - "y_min": 0.3941260874271393 - }, - "confidence": 0.6489160656929016, - "label": "person", - "label_id": 1 - }, - "h": 84, - "region_id": 13852, - "roi_type": "person", - "w": 50, - "x": 642, - "y": 170 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9088490605354309, - "x_min": 0.8531065583229065, - "y_max": 0.5604839324951172, - "y_min": 0.37604784965515137 - }, - "confidence": 0.6436939239501953, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 13853, - "roi_type": "person", - "w": 43, - "x": 655, - "y": 162 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.91246098279953, - "x_min": 0.8664992451667786, - "y_max": 0.5441793203353882, - "y_min": 0.36725080013275146 - }, - "confidence": 0.8806079626083374, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 13854, - "roi_type": "person", - "w": 35, - "x": 665, - "y": 159 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9204215407371521, - "x_min": 0.8713714480400085, - "y_max": 0.5294153094291687, - "y_min": 0.3520965278148651 - }, - "confidence": 0.9779545664787292, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 13855, - "roi_type": "person", - "w": 38, - "x": 669, - "y": 152 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9224029779434204, - "x_min": 0.8775302171707153, - "y_max": 0.5218915343284607, - "y_min": 0.35059165954589844 - }, - "confidence": 0.9283974766731262, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 13856, - "roi_type": "person", - "w": 34, - "x": 674, - "y": 151 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9281563758850098, - "x_min": 0.87200927734375, - "y_max": 0.5194041728973389, - "y_min": 0.3446289896965027 - }, - "confidence": 0.7565158009529114, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 13857, - "roi_type": "person", - "w": 43, - "x": 670, - "y": 149 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.937407910823822, - "x_min": 0.8853235840797424, - "y_max": 0.5107858777046204, - "y_min": 0.34274011850357056 - }, - "confidence": 0.9505763053894043, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 13858, - "roi_type": "person", - "w": 40, - "x": 680, - "y": 148 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9449759125709534, - "x_min": 0.8897075057029724, - "y_max": 0.5037586688995361, - "y_min": 0.33645257353782654 - }, - "confidence": 0.9099643230438232, - "label": "person", - "label_id": 1 - }, - "h": 72, - "region_id": 13859, - "roi_type": "person", - "w": 42, - "x": 683, - "y": 145 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9549130201339722, - "x_min": 0.8982007503509521, - "y_max": 0.5104894042015076, - "y_min": 0.3242742419242859 - }, - "confidence": 0.7820350527763367, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 13860, - "roi_type": "person", - "w": 44, - "x": 690, - "y": 140 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9616369009017944, - "x_min": 0.9061300754547119, - "y_max": 0.5176384449005127, - "y_min": 0.32654044032096863 - }, - "confidence": 0.7777007818222046, - "label": "person", - "label_id": 1 - }, - "h": 83, - "region_id": 13861, - "roi_type": "person", - "w": 43, - "x": 696, - "y": 141 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9738940000534058, - "x_min": 0.9141021966934204, - "y_max": 0.49157702922821045, - "y_min": 0.3181222677230835 - }, - "confidence": 0.7904204726219177, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 13862, - "roi_type": "person", - "w": 46, - "x": 702, - "y": 137 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.975996196269989, - "x_min": 0.9256718754768372, - "y_max": 0.4855738580226898, - "y_min": 0.30408164858818054 - }, - "confidence": 0.735295832157135, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 13863, - "roi_type": "person", - "w": 39, - "x": 711, - "y": 131 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9818256497383118, - "x_min": 0.928584635257721, - "y_max": 0.4778040051460266, - "y_min": 0.29464685916900635 - }, - "confidence": 0.8346171975135803, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 13864, - "roi_type": "person", - "w": 41, - "x": 713, - "y": 127 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9829865097999573, - "x_min": 0.9321264624595642, - "y_max": 0.46189290285110474, - "y_min": 0.29097121953964233 - }, - "confidence": 0.9709597826004028, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 13865, - "roi_type": "person", - "w": 39, - "x": 716, - "y": 126 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9856051206588745, - "x_min": 0.9314626455307007, - "y_max": 0.4595508873462677, - "y_min": 0.2890259921550751 - }, - "confidence": 0.6953355073928833, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 13866, - "roi_type": "person", - "w": 42, - "x": 715, - "y": 125 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9974535703659058, - "x_min": 0.9289860725402832, - "y_max": 0.46979767084121704, - "y_min": 0.258903443813324 - }, - "confidence": 0.5784775018692017, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 13867, - "roi_type": "person", - "w": 53, - "x": 713, - "y": 112 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9965777397155762, - "x_min": 0.948677659034729, - "y_max": 0.4469355344772339, - "y_min": 0.26758038997650146 - }, - "confidence": 0.5522595643997192, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 13868, - "roi_type": "person", - "w": 37, - "x": 729, - "y": 116 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.11905023455619812, - "y_max": 0.9856860637664795, - "y_min": 0.019983291625976562 - }, - "confidence": 0.5811734199523926, - "label": "vehicle", - "label_id": 2 - }, - "h": 417, - "region_id": 13869, - "roi_type": "vehicle", - "w": 677, - "x": 91, - "y": 9 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 13916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3472718223929405, - "x_min": 0.12164782732725143, - "y_max": 1.0, - "y_min": 0.8393084406852722 - }, - "confidence": 0.6197931170463562, - "label": "vehicle", - "label_id": 2 - }, - "h": 69, - "region_id": 13870, - "roi_type": "vehicle", - "w": 173, - "x": 93, - "y": 363 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35296929627656937, - "x_min": 0.1214551106095314, - "y_max": 1.0, - "y_min": 0.8094812035560608 - }, - "confidence": 0.7172139883041382, - "label": "vehicle", - "label_id": 2 - }, - "h": 82, - "region_id": 13871, - "roi_type": "vehicle", - "w": 178, - "x": 93, - "y": 350 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35698967427015305, - "x_min": 0.1202729269862175, - "y_max": 0.9967044591903687, - "y_min": 0.783829927444458 - }, - "confidence": 0.824723482131958, - "label": "vehicle", - "label_id": 2 - }, - "h": 92, - "region_id": 13872, - "roi_type": "vehicle", - "w": 182, - "x": 92, - "y": 339 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35937565565109253, - "x_min": 0.11301195621490479, - "y_max": 0.9963881969451904, - "y_min": 0.7641627788543701 - }, - "confidence": 0.8237566351890564, - "label": "vehicle", - "label_id": 2 - }, - "h": 100, - "region_id": 13873, - "roi_type": "vehicle", - "w": 189, - "x": 87, - "y": 330 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3695478141307831, - "x_min": 0.11453893780708313, - "y_max": 1.0, - "y_min": 0.7280340790748596 - }, - "confidence": 0.7173949480056763, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 13874, - "roi_type": "vehicle", - "w": 196, - "x": 88, - "y": 315 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36808085441589355, - "x_min": 0.10083702206611633, - "y_max": 0.995965838432312, - "y_min": 0.7031351327896118 - }, - "confidence": 0.8457791209220886, - "label": "vehicle", - "label_id": 2 - }, - "h": 127, - "region_id": 13875, - "roi_type": "vehicle", - "w": 205, - "x": 77, - "y": 304 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37700892984867096, - "x_min": 0.10729123651981354, - "y_max": 0.9994960427284241, - "y_min": 0.6779964566230774 - }, - "confidence": 0.9278456568717957, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "region_id": 13876, - "roi_type": "vehicle", - "w": 207, - "x": 82, - "y": 293 - }, - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.1210508942604065, - "y_max": 0.988481342792511, - "y_min": 0.03122812509536743 - }, - "confidence": 0.649099588394165, - "label": "vehicle", - "label_id": 2 - }, - "h": 414, - "region_id": 13877, - "roi_type": "vehicle", - "w": 675, - "x": 93, - "y": 13 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3793325126171112, - "x_min": 0.10664263367652893, - "y_max": 1.0, - "y_min": 0.6494535803794861 - }, - "confidence": 0.9569634795188904, - "label": "vehicle", - "label_id": 2 - }, - "h": 151, - "region_id": 13878, - "roi_type": "vehicle", - "w": 209, - "x": 82, - "y": 281 - }, - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.12350085377693176, - "y_max": 0.9561609923839569, - "y_min": 0.03614029288291931 - }, - "confidence": 0.6475703120231628, - "label": "vehicle", - "label_id": 2 - }, - "h": 397, - "region_id": 13879, - "roi_type": "vehicle", - "w": 673, - "x": 95, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37901876866817474, - "x_min": 0.10554520785808563, - "y_max": 1.0, - "y_min": 0.6312699317932129 - }, - "confidence": 0.9906972646713257, - "label": "vehicle", - "label_id": 2 - }, - "h": 159, - "region_id": 13880, - "roi_type": "vehicle", - "w": 210, - "x": 81, - "y": 273 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37920157611370087, - "x_min": 0.11973921954631805, - "y_max": 0.9997225403785706, - "y_min": 0.6097801327705383 - }, - "confidence": 0.9947447776794434, - "label": "vehicle", - "label_id": 2 - }, - "h": 168, - "region_id": 13881, - "roi_type": "vehicle", - "w": 199, - "x": 92, - "y": 263 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3760889023542404, - "x_min": 0.11782972514629364, - "y_max": 0.9969019889831543, - "y_min": 0.5848079919815063 - }, - "confidence": 0.9949920773506165, - "label": "vehicle", - "label_id": 2 - }, - "h": 178, - "region_id": 13882, - "roi_type": "vehicle", - "w": 198, - "x": 90, - "y": 253 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3769964873790741, - "x_min": 0.11793923377990723, - "y_max": 0.9975458383560181, - "y_min": 0.5624510049819946 - }, - "confidence": 0.9885395169258118, - "label": "vehicle", - "label_id": 2 - }, - "h": 188, - "region_id": 13883, - "roi_type": "vehicle", - "w": 199, - "x": 91, - "y": 243 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37293994426727295, - "x_min": 0.1103672981262207, - "y_max": 1.0, - "y_min": 0.5396615862846375 - }, - "confidence": 0.9783483147621155, - "label": "vehicle", - "label_id": 2 - }, - "h": 199, - "region_id": 13884, - "roi_type": "vehicle", - "w": 202, - "x": 85, - "y": 233 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3659248948097229, - "x_min": 0.13214625418186188, - "y_max": 1.0, - "y_min": 0.5241051316261292 - }, - "confidence": 0.9772935509681702, - "label": "vehicle", - "label_id": 2 - }, - "h": 206, - "region_id": 13885, - "roi_type": "vehicle", - "w": 180, - "x": 101, - "y": 226 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36342599987983704, - "x_min": 0.13490864634513855, - "y_max": 1.0, - "y_min": 0.5041921138763428 - }, - "confidence": 0.9919346570968628, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "region_id": 13886, - "roi_type": "vehicle", - "w": 176, - "x": 104, - "y": 218 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9604577720165253, - "x_min": 0.14331480860710144, - "y_max": 0.8030674457550049, - "y_min": 0.04740440845489502 - }, - "confidence": 0.6498066186904907, - "label": "vehicle", - "label_id": 2 - }, - "h": 326, - "region_id": 13887, - "roi_type": "vehicle", - "w": 628, - "x": 110, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.355434775352478, - "x_min": 0.14201132953166962, - "y_max": 0.9914811849594116, - "y_min": 0.4964967966079712 - }, - "confidence": 0.9959778189659119, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "region_id": 13888, - "roi_type": "vehicle", - "w": 164, - "x": 109, - "y": 214 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35458171367645264, - "x_min": 0.14792513847351074, - "y_max": 0.9985901117324829, - "y_min": 0.4749159812927246 - }, - "confidence": 0.9977288842201233, - "label": "vehicle", - "label_id": 2 - }, - "h": 226, - "region_id": 13889, - "roi_type": "vehicle", - "w": 159, - "x": 114, - "y": 205 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9464903175830841, - "x_min": 0.3718316853046417, - "y_max": 0.8923681378364563, - "y_min": 0.04037797451019287 - }, - "confidence": 0.5506791472434998, - "label": "vehicle", - "label_id": 2 - }, - "h": 368, - "region_id": 13890, - "roi_type": "vehicle", - "w": 441, - "x": 286, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35628220438957214, - "x_min": 0.1539267599582672, - "y_max": 0.9833186864852905, - "y_min": 0.45039117336273193 - }, - "confidence": 0.994249701499939, - "label": "vehicle", - "label_id": 2 - }, - "h": 230, - "region_id": 13891, - "roi_type": "vehicle", - "w": 155, - "x": 118, - "y": 195 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3493105173110962, - "x_min": 0.15961898863315582, - "y_max": 0.9475721716880798, - "y_min": 0.4319261908531189 - }, - "confidence": 0.9976761937141418, - "label": "vehicle", - "label_id": 2 - }, - "h": 223, - "region_id": 13892, - "roi_type": "vehicle", - "w": 146, - "x": 123, - "y": 187 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9634909331798553, - "x_min": 0.355636328458786, - "y_max": 0.7470817863941193, - "y_min": 0.06608286499977112 - }, - "confidence": 0.7034505605697632, - "label": "vehicle", - "label_id": 2 - }, - "h": 294, - "region_id": 13893, - "roi_type": "vehicle", - "w": 467, - "x": 273, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3447082042694092, - "x_min": 0.16244018077850342, - "y_max": 0.9356728792190552, - "y_min": 0.42220282554626465 - }, - "confidence": 0.997654139995575, - "label": "vehicle", - "label_id": 2 - }, - "h": 222, - "region_id": 13894, - "roi_type": "vehicle", - "w": 140, - "x": 125, - "y": 182 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9825330674648285, - "x_min": 0.34150370955467224, - "y_max": 0.9223776459693909, - "y_min": 0.04890298843383789 - }, - "confidence": 0.5919749736785889, - "label": "vehicle", - "label_id": 2 - }, - "h": 377, - "region_id": 13895, - "roi_type": "vehicle", - "w": 492, - "x": 262, - "y": 21 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33891138434410095, - "x_min": 0.16517701745033264, - "y_max": 0.9076910316944122, - "y_min": 0.4019247591495514 - }, - "confidence": 0.9994926452636719, - "label": "vehicle", - "label_id": 2 - }, - "h": 218, - "region_id": 13896, - "roi_type": "vehicle", - "w": 133, - "x": 127, - "y": 174 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33601275086402893, - "x_min": 0.1654418408870697, - "y_max": 0.8818584084510803, - "y_min": 0.388450562953949 - }, - "confidence": 0.9987764954566956, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "region_id": 13897, - "roi_type": "vehicle", - "w": 131, - "x": 127, - "y": 168 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9590838253498077, - "x_min": 0.31477275490760803, - "y_max": 0.8576055765151978, - "y_min": 0.07268154621124268 - }, - "confidence": 0.5272356271743774, - "label": "vehicle", - "label_id": 2 - }, - "h": 339, - "region_id": 13898, - "roi_type": "vehicle", - "w": 495, - "x": 242, - "y": 31 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33232998847961426, - "x_min": 0.16263362765312195, - "y_max": 0.8597555160522461, - "y_min": 0.37261033058166504 - }, - "confidence": 0.9985215067863464, - "label": "vehicle", - "label_id": 2 - }, - "h": 210, - "region_id": 13899, - "roi_type": "vehicle", - "w": 130, - "x": 125, - "y": 161 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9746564626693726, - "x_min": 0.3364582061767578, - "y_max": 0.9104719460010529, - "y_min": 0.052422672510147095 - }, - "confidence": 0.5714556574821472, - "label": "vehicle", - "label_id": 2 - }, - "h": 371, - "region_id": 13900, - "roi_type": "vehicle", - "w": 490, - "x": 258, - "y": 23 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33004996180534363, - "x_min": 0.16184931993484497, - "y_max": 0.8313446044921875, - "y_min": 0.3544951379299164 - }, - "confidence": 0.9997923374176025, - "label": "vehicle", - "label_id": 2 - }, - "h": 206, - "region_id": 13901, - "roi_type": "vehicle", - "w": 129, - "x": 124, - "y": 153 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9590031504631042, - "x_min": 0.3254691958427429, - "y_max": 0.856944739818573, - "y_min": 0.06740474700927734 - }, - "confidence": 0.7004494667053223, - "label": "vehicle", - "label_id": 2 - }, - "h": 341, - "region_id": 13902, - "roi_type": "vehicle", - "w": 487, - "x": 250, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3289366066455841, - "x_min": 0.15743163228034973, - "y_max": 0.8062315583229065, - "y_min": 0.34386783838272095 - }, - "confidence": 0.9998531341552734, - "label": "vehicle", - "label_id": 2 - }, - "h": 200, - "region_id": 13903, - "roi_type": "vehicle", - "w": 132, - "x": 121, - "y": 149 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9643830358982086, - "x_min": 0.32466283440589905, - "y_max": 0.8281465172767639, - "y_min": 0.05045175552368164 - }, - "confidence": 0.7299041748046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 336, - "region_id": 13904, - "roi_type": "vehicle", - "w": 491, - "x": 249, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.32749858498573303, - "x_min": 0.15210941433906555, - "y_max": 0.783811092376709, - "y_min": 0.3270362615585327 - }, - "confidence": 0.9998413324356079, - "label": "vehicle", - "label_id": 2 - }, - "h": 197, - "region_id": 13905, - "roi_type": "vehicle", - "w": 135, - "x": 117, - "y": 141 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.962226927280426, - "x_min": 0.3427123427391052, - "y_max": 0.8725093007087708, - "y_min": 0.04009729623794556 - }, - "confidence": 0.5857329368591309, - "label": "vehicle", - "label_id": 2 - }, - "h": 360, - "region_id": 13906, - "roi_type": "vehicle", - "w": 476, - "x": 263, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3233611285686493, - "x_min": 0.14286422729492188, - "y_max": 0.7728332281112671, - "y_min": 0.3200984001159668 - }, - "confidence": 0.9999895095825195, - "label": "vehicle", - "label_id": 2 - }, - "h": 196, - "region_id": 13907, - "roi_type": "vehicle", - "w": 139, - "x": 110, - "y": 138 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9750473201274872, - "x_min": 0.29748544096946716, - "y_max": 0.8784019649028778, - "y_min": 0.026118487119674683 - }, - "confidence": 0.602796196937561, - "label": "vehicle", - "label_id": 2 - }, - "h": 368, - "region_id": 13908, - "roi_type": "vehicle", - "w": 520, - "x": 228, - "y": 11 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3201468586921692, - "x_min": 0.13641862571239471, - "y_max": 0.7574479579925537, - "y_min": 0.3098658323287964 - }, - "confidence": 0.9999890327453613, - "label": "vehicle", - "label_id": 2 - }, - "h": 193, - "region_id": 13909, - "roi_type": "vehicle", - "w": 141, - "x": 105, - "y": 134 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9672472178936005, - "x_min": 0.28611716628074646, - "y_max": 0.8357990384101868, - "y_min": 0.038514792919158936 - }, - "confidence": 0.7227252721786499, - "label": "vehicle", - "label_id": 2 - }, - "h": 344, - "region_id": 13910, - "roi_type": "vehicle", - "w": 523, - "x": 220, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31699714064598083, - "x_min": 0.13015073537826538, - "y_max": 0.7375568151473999, - "y_min": 0.29937541484832764 - }, - "confidence": 0.9999898672103882, - "label": "vehicle", - "label_id": 2 - }, - "h": 189, - "region_id": 13911, - "roi_type": "vehicle", - "w": 143, - "x": 100, - "y": 129 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9515461325645447, - "x_min": 0.3326759934425354, - "y_max": 0.8539522588253021, - "y_min": 0.03351983428001404 - }, - "confidence": 0.8081802129745483, - "label": "vehicle", - "label_id": 2 - }, - "h": 354, - "region_id": 13912, - "roi_type": "vehicle", - "w": 475, - "x": 255, - "y": 14 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31399673223495483, - "x_min": 0.11789155006408691, - "y_max": 0.721222996711731, - "y_min": 0.286960244178772 - }, - "confidence": 0.9999879598617554, - "label": "vehicle", - "label_id": 2 - }, - "h": 188, - "region_id": 13913, - "roi_type": "vehicle", - "w": 151, - "x": 91, - "y": 124 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9608649015426636, - "x_min": 0.32193267345428467, - "y_max": 0.8729467988014221, - "y_min": 0.03886634111404419 - }, - "confidence": 0.63844233751297, - "label": "vehicle", - "label_id": 2 - }, - "h": 360, - "region_id": 13914, - "roi_type": "vehicle", - "w": 491, - "x": 247, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31122130155563354, - "x_min": 0.10584880411624908, - "y_max": 0.7095153331756592, - "y_min": 0.2836596965789795 - }, - "confidence": 0.9999860525131226, - "label": "vehicle", - "label_id": 2 - }, - "h": 184, - "region_id": 13915, - "roi_type": "vehicle", - "w": 158, - "x": 81, - "y": 123 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9637044668197632, - "x_min": 0.32208240032196045, - "y_max": 0.8715700507164001, - "y_min": 0.0404171347618103 - }, - "confidence": 0.6496254205703735, - "label": "vehicle", - "label_id": 2 - }, - "h": 359, - "region_id": 13916, - "roi_type": "vehicle", - "w": 493, - "x": 247, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3070882558822632, - "x_min": 0.08848144114017487, - "y_max": 0.6941937208175659, - "y_min": 0.2768484652042389 - }, - "confidence": 0.9999517202377319, - "label": "vehicle", - "label_id": 2 - }, - "h": 180, - "region_id": 13917, - "roi_type": "vehicle", - "w": 168, - "x": 68, - "y": 120 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.955469936132431, - "x_min": 0.3402763307094574, - "y_max": 0.8379929959774017, - "y_min": 0.04827567934989929 - }, - "confidence": 0.7163965702056885, - "label": "vehicle", - "label_id": 2 - }, - "h": 341, - "region_id": 13918, - "roi_type": "vehicle", - "w": 472, - "x": 261, - "y": 21 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.302114337682724, - "x_min": 0.08180797100067139, - "y_max": 0.6738347411155701, - "y_min": 0.2771807909011841 - }, - "confidence": 0.9999845027923584, - "label": "vehicle", - "label_id": 2 - }, - "h": 171, - "region_id": 13919, - "roi_type": "vehicle", - "w": 169, - "x": 63, - "y": 120 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9660846292972565, - "x_min": 0.33971157670021057, - "y_max": 0.852560967206955, - "y_min": 0.06688031554222107 - }, - "confidence": 0.5413753986358643, - "label": "vehicle", - "label_id": 2 - }, - "h": 339, - "region_id": 13920, - "roi_type": "vehicle", - "w": 481, - "x": 261, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2942667528986931, - "x_min": 0.07385560125112534, - "y_max": 0.6565669178962708, - "y_min": 0.2726745009422302 - }, - "confidence": 0.9999916553497314, - "label": "vehicle", - "label_id": 2 - }, - "h": 166, - "region_id": 13921, - "roi_type": "vehicle", - "w": 169, - "x": 57, - "y": 118 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9926856160163879, - "x_min": 0.30496448278427124, - "y_max": 0.8486757576465607, - "y_min": 0.05000630021095276 - }, - "confidence": 0.5591950416564941, - "label": "vehicle", - "label_id": 2 - }, - "h": 345, - "region_id": 13922, - "roi_type": "vehicle", - "w": 528, - "x": 234, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.28687459975481033, - "x_min": 0.06621802598237991, - "y_max": 0.6433695554733276, - "y_min": 0.26548781991004944 - }, - "confidence": 0.9999983310699463, - "label": "vehicle", - "label_id": 2 - }, - "h": 163, - "region_id": 13923, - "roi_type": "vehicle", - "w": 169, - "x": 51, - "y": 115 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.28295156359672546, - "x_min": 0.055335789918899536, - "y_max": 0.6373208165168762, - "y_min": 0.26165658235549927 - }, - "confidence": 0.9999961853027344, - "label": "vehicle", - "label_id": 2 - }, - "h": 162, - "region_id": 13924, - "roi_type": "vehicle", - "w": 175, - "x": 42, - "y": 113 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9582647383213043, - "x_min": 0.35544517636299133, - "y_max": 0.7013534903526306, - "y_min": 0.06135082244873047 - }, - "confidence": 0.6528992056846619, - "label": "vehicle", - "label_id": 2 - }, - "h": 276, - "region_id": 13925, - "roi_type": "vehicle", - "w": 463, - "x": 273, - "y": 27 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27854788303375244, - "x_min": 0.044115856289863586, - "y_max": 0.62773197889328, - "y_min": 0.2605406641960144 - }, - "confidence": 0.999983549118042, - "label": "vehicle", - "label_id": 2 - }, - "h": 159, - "region_id": 13926, - "roi_type": "vehicle", - "w": 180, - "x": 34, - "y": 113 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27031126618385315, - "x_min": 0.03065595030784607, - "y_max": 0.6122254133224487, - "y_min": 0.2575317323207855 - }, - "confidence": 0.9999444484710693, - "label": "vehicle", - "label_id": 2 - }, - "h": 153, - "region_id": 13927, - "roi_type": "vehicle", - "w": 184, - "x": 24, - "y": 111 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2618172764778137, - "x_min": 0.019270360469818115, - "y_max": 0.6008049249649048, - "y_min": 0.2527608275413513 - }, - "confidence": 0.9999783039093018, - "label": "vehicle", - "label_id": 2 - }, - "h": 150, - "region_id": 13928, - "roi_type": "vehicle", - "w": 186, - "x": 15, - "y": 109 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2521120309829712, - "x_min": 0.006787523627281189, - "y_max": 0.5942617654800415, - "y_min": 0.25123628973960876 - }, - "confidence": 0.999976396560669, - "label": "vehicle", - "label_id": 2 - }, - "h": 148, - "region_id": 13929, - "roi_type": "vehicle", - "w": 188, - "x": 5, - "y": 109 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2455773651599884, - "x_min": 0.00385284423828125, - "y_max": 0.5852652788162231, - "y_min": 0.25117596983909607 - }, - "confidence": 0.999962568283081, - "label": "vehicle", - "label_id": 2 - }, - "h": 144, - "region_id": 13930, - "roi_type": "vehicle", - "w": 186, - "x": 3, - "y": 109 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23418444395065308, - "x_min": 0.0019001811742782593, - "y_max": 0.577120304107666, - "y_min": 0.24817219376564026 - }, - "confidence": 0.9999908208847046, - "label": "vehicle", - "label_id": 2 - }, - "h": 142, - "region_id": 13931, - "roi_type": "vehicle", - "w": 178, - "x": 1, - "y": 107 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.22408056259155273, - "x_min": 0.0006275475025177002, - "y_max": 0.5654963254928589, - "y_min": 0.2458529770374298 - }, - "confidence": 0.9999958276748657, - "label": "vehicle", - "label_id": 2 - }, - "h": 138, - "region_id": 13932, - "roi_type": "vehicle", - "w": 172, - "x": 0, - "y": 106 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9729532301425934, - "x_min": 0.39751580357551575, - "y_max": 0.7704445421695709, - "y_min": 0.06877961754798889 - }, - "confidence": 0.5025326609611511, - "label": "vehicle", - "label_id": 2 - }, - "h": 303, - "region_id": 13933, - "roi_type": "vehicle", - "w": 442, - "x": 305, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.21542105823755264, - "x_min": 0.0, - "y_max": 0.5575774908065796, - "y_min": 0.24282819032669067 - }, - "confidence": 0.9999918937683105, - "label": "vehicle", - "label_id": 2 - }, - "h": 136, - "region_id": 13934, - "roi_type": "vehicle", - "w": 165, - "x": 0, - "y": 105 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.97647425532341, - "x_min": 0.3866834342479706, - "y_max": 0.8177631497383118, - "y_min": 0.048350632190704346 - }, - "confidence": 0.5299614071846008, - "label": "vehicle", - "label_id": 2 - }, - "h": 332, - "region_id": 13935, - "roi_type": "vehicle", - "w": 453, - "x": 297, - "y": 21 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.20652520656585693, - "x_min": 0.0, - "y_max": 0.55234594643116, - "y_min": 0.23936541378498077 - }, - "confidence": 0.9999759197235107, - "label": "vehicle", - "label_id": 2 - }, - "h": 135, - "region_id": 13936, - "roi_type": "vehicle", - "w": 159, - "x": 0, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19814246892929077, - "x_min": 9.648501873016357e-05, - "y_max": 0.5438298135995865, - "y_min": 0.23729969561100006 - }, - "confidence": 0.99991774559021, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 13937, - "roi_type": "vehicle", - "w": 152, - "x": 0, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.18656963855028152, - "x_min": 0.0002608075737953186, - "y_max": 0.540632888674736, - "y_min": 0.2289218157529831 - }, - "confidence": 0.9998918771743774, - "label": "vehicle", - "label_id": 2 - }, - "h": 135, - "region_id": 13938, - "roi_type": "vehicle", - "w": 143, - "x": 0, - "y": 99 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.17477921396493912, - "x_min": 0.001994587481021881, - "y_max": 0.5303715914487839, - "y_min": 0.22543714940547943 - }, - "confidence": 0.9990342855453491, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 13939, - "roi_type": "vehicle", - "w": 133, - "x": 2, - "y": 97 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.16638841480016708, - "x_min": 0.0, - "y_max": 0.5288660526275635, - "y_min": 0.22173675894737244 - }, - "confidence": 0.9978118538856506, - "label": "vehicle", - "label_id": 2 - }, - "h": 133, - "region_id": 13940, - "roi_type": "vehicle", - "w": 128, - "x": 0, - "y": 96 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1586654856801033, - "x_min": 0.0, - "y_max": 0.5260069370269775, - "y_min": 0.22341087460517883 - }, - "confidence": 0.9969075322151184, - "label": "vehicle", - "label_id": 2 - }, - "h": 131, - "region_id": 13941, - "roi_type": "vehicle", - "w": 122, - "x": 0, - "y": 97 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1442473977804184, - "x_min": 0.00047084689140319824, - "y_max": 0.5235311985015869, - "y_min": 0.22360435128211975 - }, - "confidence": 0.9907392859458923, - "label": "vehicle", - "label_id": 2 - }, - "h": 130, - "region_id": 13942, - "roi_type": "vehicle", - "w": 110, - "x": 0, - "y": 97 - }, - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.11542829871177673, - "y_max": 0.9303571879863739, - "y_min": 0.03652963042259216 - }, - "confidence": 0.5644906163215637, - "label": "vehicle", - "label_id": 2 - }, - "h": 386, - "region_id": 13943, - "roi_type": "vehicle", - "w": 679, - "x": 89, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.13115223497152328, - "x_min": 0.0012656375765800476, - "y_max": 0.5229739397764206, - "y_min": 0.23199276626110077 - }, - "confidence": 0.8800619840621948, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 13944, - "roi_type": "vehicle", - "w": 100, - "x": 1, - "y": 100 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.12498541176319122, - "x_min": 0.0, - "y_max": 0.5163314789533615, - "y_min": 0.24239163100719452 - }, - "confidence": 0.7448753118515015, - "label": "vehicle", - "label_id": 2 - }, - "h": 118, - "region_id": 13945, - "roi_type": "vehicle", - "w": 96, - "x": 0, - "y": 105 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1116863377392292, - "x_min": 0.0006904341280460358, - "y_max": 0.5155525356531143, - "y_min": 0.24023355543613434 - }, - "confidence": 0.8874061703681946, - "label": "vehicle", - "label_id": 2 - }, - "h": 119, - "region_id": 13946, - "roi_type": "vehicle", - "w": 85, - "x": 1, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.09923025593161583, - "x_min": 0.0013335607945919037, - "y_max": 0.5189978927373886, - "y_min": 0.23733757436275482 - }, - "confidence": 0.684838056564331, - "label": "vehicle", - "label_id": 2 - }, - "h": 122, - "region_id": 13947, - "roi_type": "vehicle", - "w": 75, - "x": 1, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.08814658597111702, - "x_min": 0.0, - "y_max": 0.5184166431427002, - "y_min": 0.2375071942806244 - }, - "confidence": 0.5478510856628418, - "label": "vehicle", - "label_id": 2 - }, - "h": 121, - "region_id": 13948, - "roi_type": "vehicle", - "w": 68, - "x": 0, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07822690159082413, - "x_min": 0.0, - "y_max": 0.5102933645248413, - "y_min": 0.2398809790611267 - }, - "confidence": 0.7760463953018188, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 13949, - "roi_type": "vehicle", - "w": 60, - "x": 0, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06671494990587234, - "x_min": 0.0004887878894805908, - "y_max": 0.50636225938797, - "y_min": 0.24073129892349243 - }, - "confidence": 0.7211981415748596, - "label": "vehicle", - "label_id": 2 - }, - "h": 115, - "region_id": 13950, - "roi_type": "vehicle", - "w": 51, - "x": 0, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.05856432765722275, - "x_min": 0.0012591853737831116, - "y_max": 0.4997386932373047, - "y_min": 0.25012850761413574 - }, - "confidence": 0.7428327798843384, - "label": "vehicle", - "label_id": 2 - }, - "h": 108, - "region_id": 13951, - "roi_type": "vehicle", - "w": 44, - "x": 1, - "y": 108 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.04703953489661217, - "x_min": 0.002137359231710434, - "y_max": 0.4919123351573944, - "y_min": 0.27300938963890076 - }, - "confidence": 0.5740200281143188, - "label": "vehicle", - "label_id": 2 - }, - "h": 95, - "region_id": 13952, - "roi_type": "vehicle", - "w": 34, - "x": 2, - "y": 118 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.03855092264711857, - "x_min": 0.0, - "y_max": 0.48962903022766113, - "y_min": 0.2736285924911499 - }, - "confidence": 0.5253971219062805, - "label": "vehicle", - "label_id": 2 - }, - "h": 93, - "region_id": 13953, - "roi_type": "vehicle", - "w": 30, - "x": 0, - "y": 118 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9342348873615265, - "x_min": 0.04731431603431702, - "y_max": 0.9905672073364258, - "y_min": 0.005245804786682129 - }, - "confidence": 0.5478621125221252, - "label": "vehicle", - "label_id": 2 - }, - "h": 426, - "region_id": 13960, - "roi_type": "vehicle", - "w": 681, - "x": 36, - "y": 2 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9340740442276001, - "x_min": 0.056262075901031494, - "y_max": 0.9993153810501099, - "y_min": 0.0 - }, - "confidence": 0.5252725481987, - "label": "vehicle", - "label_id": 2 - }, - "h": 432, - "region_id": 13961, - "roi_type": "vehicle", - "w": 674, - "x": 43, - "y": 0 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9431893825531006, - "x_min": 0.05145764350891113, - "y_max": 0.9891360700130463, - "y_min": 0.0 - }, - "confidence": 0.560458779335022, - "label": "vehicle", - "label_id": 2 - }, - "h": 427, - "region_id": 13962, - "roi_type": "vehicle", - "w": 685, - "x": 40, - "y": 0 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9341995120048523, - "x_min": 0.04894113540649414, - "y_max": 0.9517969191074371, - "y_min": 0.0 - }, - "confidence": 0.5412801504135132, - "label": "vehicle", - "label_id": 2 - }, - "h": 411, - "region_id": 13963, - "roi_type": "vehicle", - "w": 680, - "x": 38, - "y": 0 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9681797027587891, - "x_min": 0.22439539432525635, - "y_max": 0.7959964275360107, - "y_min": 0.07999753952026367 - }, - "confidence": 0.6512488126754761, - "label": "vehicle", - "label_id": 2 - }, - "h": 309, - "region_id": 13964, - "roi_type": "vehicle", - "w": 571, - "x": 172, - "y": 35 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 27333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.11086565256118774, - "y_max": 0.9221712946891785, - "y_min": 0.02447277307510376 - }, - "confidence": 0.5428239703178406, - "label": "vehicle", - "label_id": 2 - }, - "h": 388, - "region_id": 13965, - "roi_type": "vehicle", - "w": 683, - "x": 85, - "y": 11 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 28166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9668239653110504, - "x_min": 0.040197521448135376, - "y_max": 1.0, - "y_min": 0.018689244985580444 - }, - "confidence": 0.5183936953544617, - "label": "vehicle", - "label_id": 2 - }, - "h": 424, - "region_id": 13968, - "roi_type": "vehicle", - "w": 712, - "x": 31, - "y": 8 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 28916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.05809926241636276, - "x_min": 0.0035657882690429688, - "y_max": 0.2681970000267029, - "y_min": 0.09560371935367584 - }, - "confidence": 0.7589448094367981, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 13976, - "roi_type": "person", - "w": 42, - "x": 3, - "y": 41 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06384254992008209, - "x_min": 0.007957037538290024, - "y_max": 0.2742376923561096, - "y_min": 0.10187298059463501 - }, - "confidence": 0.7985606789588928, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 13977, - "roi_type": "person", - "w": 43, - "x": 6, - "y": 44 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07437355630099773, - "x_min": 0.01538255624473095, - "y_max": 0.2672903910279274, - "y_min": 0.09030739217996597 - }, - "confidence": 0.8939831852912903, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 13978, - "roi_type": "person", - "w": 45, - "x": 12, - "y": 39 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06839273869991302, - "x_min": 0.022368106991052628, - "y_max": 0.2644655108451843, - "y_min": 0.09259636700153351 - }, - "confidence": 0.9461685419082642, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 13979, - "roi_type": "person", - "w": 35, - "x": 17, - "y": 40 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06265865825116634, - "x_min": 0.02845693938434124, - "y_max": 0.2631925344467163, - "y_min": 0.08769585192203522 - }, - "confidence": 0.7030318975448608, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 13980, - "roi_type": "person", - "w": 26, - "x": 22, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07015539705753326, - "x_min": 0.03897447884082794, - "y_max": 0.2708924040198326, - "y_min": 0.08729454129934311 - }, - "confidence": 0.8550820350646973, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 13981, - "roi_type": "person", - "w": 24, - "x": 30, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.08978046476840973, - "x_min": 0.04507404565811157, - "y_max": 0.26029661297798157, - "y_min": 0.08790373802185059 - }, - "confidence": 0.9772573709487915, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 13982, - "roi_type": "person", - "w": 34, - "x": 35, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.10240233689546585, - "x_min": 0.05025816708803177, - "y_max": 0.26179608702659607, - "y_min": 0.08916294574737549 - }, - "confidence": 0.9634844064712524, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 13983, - "roi_type": "person", - "w": 40, - "x": 39, - "y": 39 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11237835139036179, - "x_min": 0.0557107999920845, - "y_max": 0.265661358833313, - "y_min": 0.08681027591228485 - }, - "confidence": 0.9638312458992004, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 13984, - "roi_type": "person", - "w": 44, - "x": 43, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11509420722723007, - "x_min": 0.0598953440785408, - "y_max": 0.26093969494104385, - "y_min": 0.08726374059915543 - }, - "confidence": 0.958901584148407, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 13985, - "roi_type": "person", - "w": 42, - "x": 46, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.10801339894533157, - "x_min": 0.0689283236861229, - "y_max": 0.2573169767856598, - "y_min": 0.0888819694519043 - }, - "confidence": 0.7473646402359009, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 13986, - "roi_type": "person", - "w": 30, - "x": 53, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11594521254301071, - "x_min": 0.08451759070158005, - "y_max": 0.25982344150543213, - "y_min": 0.08372165262699127 - }, - "confidence": 0.9428697824478149, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 13987, - "roi_type": "person", - "w": 24, - "x": 65, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.14308199286460876, - "x_min": 0.08935531973838806, - "y_max": 0.25856080651283264, - "y_min": 0.08275482058525085 - }, - "confidence": 0.9797755479812622, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 13988, - "roi_type": "person", - "w": 41, - "x": 69, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15327730774879456, - "x_min": 0.09761050343513489, - "y_max": 0.25556156784296036, - "y_min": 0.08270100504159927 - }, - "confidence": 0.9193077683448792, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 13989, - "roi_type": "person", - "w": 43, - "x": 75, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15708929300308228, - "x_min": 0.097188800573349, - "y_max": 0.2538745403289795, - "y_min": 0.08122576773166656 - }, - "confidence": 0.9810741543769836, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 13990, - "roi_type": "person", - "w": 46, - "x": 75, - "y": 35 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15849241614341736, - "x_min": 0.10766854882240295, - "y_max": 0.25469762086868286, - "y_min": 0.07851286232471466 - }, - "confidence": 0.9863013029098511, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 13991, - "roi_type": "person", - "w": 39, - "x": 83, - "y": 34 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.14903458952903748, - "x_min": 0.11753658205270767, - "y_max": 0.2580204978585243, - "y_min": 0.07362670451402664 - }, - "confidence": 0.9098010659217834, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 13992, - "roi_type": "person", - "w": 24, - "x": 90, - "y": 32 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15783968567848206, - "x_min": 0.13124406337738037, - "y_max": 0.25078582763671875, - "y_min": 0.08267301321029663 - }, - "confidence": 0.5655190944671631, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 13993, - "roi_type": "person", - "w": 20, - "x": 101, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1712721735239029, - "x_min": 0.13269366323947906, - "y_max": 0.25339869409799576, - "y_min": 0.07122508436441422 - }, - "confidence": 0.9201222062110901, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 13994, - "roi_type": "person", - "w": 30, - "x": 102, - "y": 31 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1888122707605362, - "x_min": 0.1387019008398056, - "y_max": 0.2481667697429657, - "y_min": 0.06929010152816772 - }, - "confidence": 0.9727062582969666, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 13995, - "roi_type": "person", - "w": 38, - "x": 107, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19876965880393982, - "x_min": 0.14241483807563782, - "y_max": 0.24410223215818405, - "y_min": 0.0699552521109581 - }, - "confidence": 0.9352009892463684, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 13996, - "roi_type": "person", - "w": 43, - "x": 109, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19850021600723267, - "x_min": 0.14565402269363403, - "y_max": 0.24200069159269333, - "y_min": 0.06734245270490646 - }, - "confidence": 0.9604580402374268, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 13997, - "roi_type": "person", - "w": 41, - "x": 112, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19670461118221283, - "x_min": 0.15936703979969025, - "y_max": 0.24713709950447083, - "y_min": 0.06951305270195007 - }, - "confidence": 0.933894157409668, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 13998, - "roi_type": "person", - "w": 29, - "x": 122, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19646276533603668, - "x_min": 0.1669870764017105, - "y_max": 0.24654807150363922, - "y_min": 0.059695735573768616 - }, - "confidence": 0.8135933876037598, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 13999, - "roi_type": "person", - "w": 23, - "x": 128, - "y": 26 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.20714330673217773, - "x_min": 0.17688614130020142, - "y_max": 0.24033694714307785, - "y_min": 0.06553765386343002 - }, - "confidence": 0.8666304349899292, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 14000, - "roi_type": "person", - "w": 23, - "x": 136, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.22876504063606262, - "x_min": 0.17733925580978394, - "y_max": 0.2342597246170044, - "y_min": 0.0654514729976654 - }, - "confidence": 0.9463270306587219, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 14001, - "roi_type": "person", - "w": 39, - "x": 136, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23787564039230347, - "x_min": 0.18617352843284607, - "y_max": 0.23289955407381058, - "y_min": 0.0673377588391304 - }, - "confidence": 0.8577993512153625, - "label": "person", - "label_id": 1 - }, - "h": 72, - "region_id": 14002, - "roi_type": "person", - "w": 40, - "x": 143, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24495281279087067, - "x_min": 0.18914847075939178, - "y_max": 0.2286892682313919, - "y_min": 0.06330262124538422 - }, - "confidence": 0.9402493834495544, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 14003, - "roi_type": "person", - "w": 43, - "x": 145, - "y": 27 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24374517798423767, - "x_min": 0.19896605610847473, - "y_max": 0.22477786988019943, - "y_min": 0.06456565111875534 - }, - "confidence": 0.9167734384536743, - "label": "person", - "label_id": 1 - }, - "h": 69, - "region_id": 14004, - "roi_type": "person", - "w": 34, - "x": 153, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23920002579689026, - "x_min": 0.2088455855846405, - "y_max": 0.23159786313772202, - "y_min": 0.05086790770292282 - }, - "confidence": 0.7405908703804016, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 14005, - "roi_type": "person", - "w": 23, - "x": 160, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24580711126327515, - "x_min": 0.21504563093185425, - "y_max": 0.22459039092063904, - "y_min": 0.04561010003089905 - }, - "confidence": 0.8077870011329651, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 14006, - "roi_type": "person", - "w": 24, - "x": 165, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.258386492729187, - "x_min": 0.22124245762825012, - "y_max": 0.22196877747774124, - "y_min": 0.042702533304691315 - }, - "confidence": 0.9389501810073853, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 14007, - "roi_type": "person", - "w": 29, - "x": 170, - "y": 18 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2686212658882141, - "x_min": 0.22306442260742188, - "y_max": 0.22240334749221802, - "y_min": 0.03721362352371216 - }, - "confidence": 0.8532392978668213, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 14008, - "roi_type": "person", - "w": 35, - "x": 171, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27878496050834656, - "x_min": 0.2256825864315033, - "y_max": 0.21868885308504105, - "y_min": 0.043786562979221344 - }, - "confidence": 0.9401518106460571, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 14009, - "roi_type": "person", - "w": 41, - "x": 173, - "y": 19 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2782133221626282, - "x_min": 0.22981303930282593, - "y_max": 0.21300844848155975, - "y_min": 0.040484651923179626 - }, - "confidence": 0.8954005241394043, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 14010, - "roi_type": "person", - "w": 37, - "x": 176, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27863314747810364, - "x_min": 0.23958085477352142, - "y_max": 0.21157342195510864, - "y_min": 0.02666911482810974 - }, - "confidence": 0.5580121278762817, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 14011, - "roi_type": "person", - "w": 30, - "x": 184, - "y": 12 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.284572035074234, - "x_min": 0.2544802129268646, - "y_max": 0.21495238691568375, - "y_min": 0.026290155947208405 - }, - "confidence": 0.8008320927619934, - "label": "person", - "label_id": 1 - }, - "h": 82, - "region_id": 14012, - "roi_type": "person", - "w": 23, - "x": 195, - "y": 11 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.29074627161026, - "x_min": 0.2599877119064331, - "y_max": 0.20789271593093872, - "y_min": 0.022824183106422424 - }, - "confidence": 0.8385728001594543, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 14013, - "roi_type": "person", - "w": 24, - "x": 200, - "y": 10 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.30755069851875305, - "x_min": 0.265642374753952, - "y_max": 0.19290895015001297, - "y_min": 0.022242017090320587 - }, - "confidence": 0.9778807163238525, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 14014, - "roi_type": "person", - "w": 32, - "x": 204, - "y": 10 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31079021096229553, - "x_min": 0.2677251994609833, - "y_max": 0.19722387939691544, - "y_min": 0.023035742342472076 - }, - "confidence": 0.9654287695884705, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 14015, - "roi_type": "person", - "w": 33, - "x": 206, - "y": 10 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.2956322431564331, - "x_min": 0.10331849753856659, - "y_max": 1.0, - "y_min": 0.8515571355819702 - }, - "confidence": 0.761518120765686, - "label": "vehicle", - "label_id": 2 - }, - "h": 64, - "region_id": 14016, - "roi_type": "vehicle", - "w": 148, - "x": 79, - "y": 368 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31590598821640015, - "x_min": 0.27411168813705444, - "y_max": 0.18277175724506378, - "y_min": 0.019142642617225647 - }, - "confidence": 0.980678379535675, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 14017, - "roi_type": "person", - "w": 32, - "x": 211, - "y": 8 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3025353029370308, - "x_min": 0.0877365842461586, - "y_max": 1.0, - "y_min": 0.8262226581573486 - }, - "confidence": 0.9083923101425171, - "label": "vehicle", - "label_id": 2 - }, - "h": 75, - "region_id": 14018, - "roi_type": "vehicle", - "w": 165, - "x": 67, - "y": 357 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3163120746612549, - "x_min": 0.27949172258377075, - "y_max": 0.18241433054208755, - "y_min": 0.009636171162128448 - }, - "confidence": 0.8560532331466675, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 14019, - "roi_type": "person", - "w": 28, - "x": 215, - "y": 4 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.30715925246477127, - "x_min": 0.08984950929880142, - "y_max": 1.0, - "y_min": 0.7983192205429077 - }, - "confidence": 0.9688768982887268, - "label": "vehicle", - "label_id": 2 - }, - "h": 87, - "region_id": 14020, - "roi_type": "vehicle", - "w": 167, - "x": 69, - "y": 345 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31996291875839233, - "x_min": 0.28390347957611084, - "y_max": 0.175441712141037, - "y_min": 0.0025141090154647827 - }, - "confidence": 0.9317660927772522, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 14021, - "roi_type": "person", - "w": 28, - "x": 218, - "y": 1 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3178533688187599, - "x_min": 0.09327421337366104, - "y_max": 0.9961552023887634, - "y_min": 0.7738481163978577 - }, - "confidence": 0.9980049729347229, - "label": "vehicle", - "label_id": 2 - }, - "h": 96, - "region_id": 14022, - "roi_type": "vehicle", - "w": 172, - "x": 72, - "y": 334 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3244977593421936, - "x_min": 0.29137319326400757, - "y_max": 0.18117790669202805, - "y_min": 0.0 - }, - "confidence": 0.929945707321167, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 14023, - "roi_type": "person", - "w": 25, - "x": 224, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3211563229560852, - "x_min": 0.09341159462928772, - "y_max": 0.9977253675460815, - "y_min": 0.7558172941207886 - }, - "confidence": 0.9959222078323364, - "label": "vehicle", - "label_id": 2 - }, - "h": 105, - "region_id": 14024, - "roi_type": "vehicle", - "w": 175, - "x": 72, - "y": 327 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33760935068130493, - "x_min": 0.2969669699668884, - "y_max": 0.1680585891008377, - "y_min": 0.0 - }, - "confidence": 0.97437584400177, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 14025, - "roi_type": "person", - "w": 31, - "x": 228, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3252410367131233, - "x_min": 0.09379307180643082, - "y_max": 0.9987419843673706, - "y_min": 0.7281787395477295 - }, - "confidence": 0.9982355237007141, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 14026, - "roi_type": "vehicle", - "w": 178, - "x": 72, - "y": 315 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34123092889785767, - "x_min": 0.2997239828109741, - "y_max": 0.1591828465461731, - "y_min": 0.0 - }, - "confidence": 0.9657362103462219, - "label": "person", - "label_id": 1 - }, - "h": 69, - "region_id": 14027, - "roi_type": "person", - "w": 32, - "x": 230, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3318566679954529, - "x_min": 0.09386520087718964, - "y_max": 0.9967381954193115, - "y_min": 0.7049055099487305 - }, - "confidence": 0.9962294101715088, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 14028, - "roi_type": "vehicle", - "w": 183, - "x": 72, - "y": 305 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3466411232948303, - "x_min": 0.3028194308280945, - "y_max": 0.1562092900276184, - "y_min": 0.0 - }, - "confidence": 0.9846484661102295, - "label": "person", - "label_id": 1 - }, - "h": 67, - "region_id": 14029, - "roi_type": "person", - "w": 34, - "x": 233, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3395664915442467, - "x_min": 0.08993601053953171, - "y_max": 0.999647855758667, - "y_min": 0.6784218549728394 - }, - "confidence": 0.9955138564109802, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "region_id": 14030, - "roi_type": "vehicle", - "w": 192, - "x": 69, - "y": 293 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34522512555122375, - "x_min": 0.3090610206127167, - "y_max": 0.15079192072153091, - "y_min": 0.0 - }, - "confidence": 0.9445015788078308, - "label": "person", - "label_id": 1 - }, - "h": 65, - "region_id": 14031, - "roi_type": "person", - "w": 28, - "x": 237, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3419874310493469, - "x_min": 0.09411360323429108, - "y_max": 1.0, - "y_min": 0.6525993943214417 - }, - "confidence": 0.9987126588821411, - "label": "vehicle", - "label_id": 2 - }, - "h": 150, - "region_id": 14032, - "roi_type": "vehicle", - "w": 190, - "x": 72, - "y": 282 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3481338918209076, - "x_min": 0.3160833418369293, - "y_max": 0.14550426602363586, - "y_min": 0.0 - }, - "confidence": 0.9637501835823059, - "label": "person", - "label_id": 1 - }, - "h": 63, - "region_id": 14033, - "roi_type": "person", - "w": 25, - "x": 243, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.34435370564460754, - "x_min": 0.09984984993934631, - "y_max": 0.9990871548652649, - "y_min": 0.6355069279670715 - }, - "confidence": 0.9971873164176941, - "label": "vehicle", - "label_id": 2 - }, - "h": 157, - "region_id": 14034, - "roi_type": "vehicle", - "w": 188, - "x": 77, - "y": 275 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3530542850494385, - "x_min": 0.3201481103897095, - "y_max": 0.14842260628938675, - "y_min": 0.0 - }, - "confidence": 0.8752257227897644, - "label": "person", - "label_id": 1 - }, - "h": 64, - "region_id": 14035, - "roi_type": "person", - "w": 25, - "x": 246, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.34952497482299805, - "x_min": 0.1070859283208847, - "y_max": 1.0, - "y_min": 0.6191877722740173 - }, - "confidence": 0.998619794845581, - "label": "vehicle", - "label_id": 2 - }, - "h": 165, - "region_id": 14036, - "roi_type": "vehicle", - "w": 186, - "x": 82, - "y": 267 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35819557309150696, - "x_min": 0.3240784704685211, - "y_max": 0.1449350342154503, - "y_min": 0.0 - }, - "confidence": 0.7914342880249023, - "label": "person", - "label_id": 1 - }, - "h": 63, - "region_id": 14037, - "roi_type": "person", - "w": 26, - "x": 249, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3578672483563423, - "x_min": 0.11816415935754776, - "y_max": 0.9963030219078064, - "y_min": 0.5943846106529236 - }, - "confidence": 0.9954741597175598, - "label": "vehicle", - "label_id": 2 - }, - "h": 174, - "region_id": 14038, - "roi_type": "vehicle", - "w": 184, - "x": 91, - "y": 257 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36160674691200256, - "x_min": 0.3288991153240204, - "y_max": 0.14174090325832367, - "y_min": 0.0 - }, - "confidence": 0.6194031238555908, - "label": "person", - "label_id": 1 - }, - "h": 61, - "region_id": 14039, - "roi_type": "person", - "w": 25, - "x": 253, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.35685092210769653, - "x_min": 0.11790119111537933, - "y_max": 0.9961073994636536, - "y_min": 0.5718068480491638 - }, - "confidence": 0.9947428703308105, - "label": "vehicle", - "label_id": 2 - }, - "h": 183, - "region_id": 14040, - "roi_type": "vehicle", - "w": 184, - "x": 91, - "y": 247 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36447739601135254, - "x_min": 0.33208173513412476, - "y_max": 0.14312610030174255, - "y_min": 0.0 - }, - "confidence": 0.8804535269737244, - "label": "person", - "label_id": 1 - }, - "h": 62, - "region_id": 14041, - "roi_type": "person", - "w": 25, - "x": 255, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.36100971698760986, - "x_min": 0.10920840501785278, - "y_max": 1.0, - "y_min": 0.5514669418334961 - }, - "confidence": 0.9975083470344543, - "label": "vehicle", - "label_id": 2 - }, - "h": 194, - "region_id": 14042, - "roi_type": "vehicle", - "w": 193, - "x": 84, - "y": 238 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3689320683479309, - "x_min": 0.33504199981689453, - "y_max": 0.13094882667064667, - "y_min": 0.0 - }, - "confidence": 0.5245088934898376, - "label": "person", - "label_id": 1 - }, - "h": 57, - "region_id": 14043, - "roi_type": "person", - "w": 26, - "x": 257, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.36274439096450806, - "x_min": 0.11731889843940735, - "y_max": 1.0, - "y_min": 0.5336948037147522 - }, - "confidence": 0.9914769530296326, - "label": "vehicle", - "label_id": 2 - }, - "h": 201, - "region_id": 14044, - "roi_type": "vehicle", - "w": 188, - "x": 90, - "y": 231 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3659409210085869, - "x_min": 0.11780127137899399, - "y_max": 1.0, - "y_min": 0.5181496143341064 - }, - "confidence": 0.9818968772888184, - "label": "vehicle", - "label_id": 2 - }, - "h": 208, - "region_id": 14045, - "roi_type": "vehicle", - "w": 191, - "x": 90, - "y": 224 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3604143261909485, - "x_min": 0.1188543289899826, - "y_max": 1.0, - "y_min": 0.5062888860702515 - }, - "confidence": 0.9770739674568176, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "region_id": 14046, - "roi_type": "vehicle", - "w": 186, - "x": 91, - "y": 219 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35873663425445557, - "x_min": 0.12577956914901733, - "y_max": 1.0, - "y_min": 0.4875481128692627 - }, - "confidence": 0.9604201316833496, - "label": "vehicle", - "label_id": 2 - }, - "h": 221, - "region_id": 14047, - "roi_type": "vehicle", - "w": 179, - "x": 97, - "y": 211 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3681984841823578, - "x_min": 0.13242486119270325, - "y_max": 1.0, - "y_min": 0.4729745090007782 - }, - "confidence": 0.9679285883903503, - "label": "vehicle", - "label_id": 2 - }, - "h": 228, - "region_id": 14048, - "roi_type": "vehicle", - "w": 181, - "x": 102, - "y": 204 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37145906686782837, - "x_min": 0.13698600232601166, - "y_max": 0.9822669923305511, - "y_min": 0.45337817072868347 - }, - "confidence": 0.9909036755561829, - "label": "vehicle", - "label_id": 2 - }, - "h": 228, - "region_id": 14049, - "roi_type": "vehicle", - "w": 180, - "x": 105, - "y": 196 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3607511520385742, - "x_min": 0.14602141082286835, - "y_max": 0.9427909255027771, - "y_min": 0.442253053188324 - }, - "confidence": 0.9961795806884766, - "label": "vehicle", - "label_id": 2 - }, - "h": 216, - "region_id": 14050, - "roi_type": "vehicle", - "w": 165, - "x": 112, - "y": 191 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3665273189544678, - "x_min": 0.15879376232624054, - "y_max": 0.9357599914073944, - "y_min": 0.41560181975364685 - }, - "confidence": 0.9988160133361816, - "label": "vehicle", - "label_id": 2 - }, - "h": 225, - "region_id": 14051, - "roi_type": "vehicle", - "w": 160, - "x": 122, - "y": 180 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3651917576789856, - "x_min": 0.1624055653810501, - "y_max": 0.903063952922821, - "y_min": 0.3991294503211975 - }, - "confidence": 0.9996230602264404, - "label": "vehicle", - "label_id": 2 - }, - "h": 218, - "region_id": 14052, - "roi_type": "vehicle", - "w": 156, - "x": 125, - "y": 172 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3651777505874634, - "x_min": 0.17351631820201874, - "y_max": 0.8792468309402466, - "y_min": 0.38377344608306885 - }, - "confidence": 0.9997884631156921, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "region_id": 14053, - "roi_type": "vehicle", - "w": 147, - "x": 133, - "y": 166 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36106088757514954, - "x_min": 0.1790127456188202, - "y_max": 0.8557636737823486, - "y_min": 0.36366569995880127 - }, - "confidence": 0.9998449087142944, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "region_id": 14054, - "roi_type": "vehicle", - "w": 140, - "x": 137, - "y": 157 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3628588020801544, - "x_min": 0.18275150656700134, - "y_max": 0.8229827880859375, - "y_min": 0.342862993478775 - }, - "confidence": 0.9999336004257202, - "label": "vehicle", - "label_id": 2 - }, - "h": 207, - "region_id": 14055, - "roi_type": "vehicle", - "w": 138, - "x": 140, - "y": 148 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36020204424858093, - "x_min": 0.18906906247138977, - "y_max": 0.7855886220932007, - "y_min": 0.32251763343811035 - }, - "confidence": 0.9999699592590332, - "label": "vehicle", - "label_id": 2 - }, - "h": 200, - "region_id": 14056, - "roi_type": "vehicle", - "w": 131, - "x": 145, - "y": 139 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3588583171367645, - "x_min": 0.19048956036567688, - "y_max": 0.766708493232727, - "y_min": 0.31205347180366516 - }, - "confidence": 0.9999748468399048, - "label": "vehicle", - "label_id": 2 - }, - "h": 196, - "region_id": 14057, - "roi_type": "vehicle", - "w": 129, - "x": 146, - "y": 135 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3547809422016144, - "x_min": 0.19472238421440125, - "y_max": 0.7405029535293579, - "y_min": 0.29147493839263916 - }, - "confidence": 0.9999440908432007, - "label": "vehicle", - "label_id": 2 - }, - "h": 194, - "region_id": 14058, - "roi_type": "vehicle", - "w": 123, - "x": 150, - "y": 126 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34999334812164307, - "x_min": 0.19454032182693481, - "y_max": 0.7187595367431641, - "y_min": 0.2768002152442932 - }, - "confidence": 0.9998922348022461, - "label": "vehicle", - "label_id": 2 - }, - "h": 191, - "region_id": 14059, - "roi_type": "vehicle", - "w": 119, - "x": 149, - "y": 120 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34570854902267456, - "x_min": 0.20007966458797455, - "y_max": 0.6881219148635864, - "y_min": 0.2653038203716278 - }, - "confidence": 0.9998041391372681, - "label": "vehicle", - "label_id": 2 - }, - "h": 183, - "region_id": 14060, - "roi_type": "vehicle", - "w": 112, - "x": 154, - "y": 115 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3446750342845917, - "x_min": 0.19982752203941345, - "y_max": 0.6525393724441528, - "y_min": 0.2548128664493561 - }, - "confidence": 0.999861478805542, - "label": "vehicle", - "label_id": 2 - }, - "h": 172, - "region_id": 14061, - "roi_type": "vehicle", - "w": 111, - "x": 153, - "y": 110 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34181272983551025, - "x_min": 0.1947338581085205, - "y_max": 0.6376242786645889, - "y_min": 0.23916597664356232 - }, - "confidence": 0.9997870326042175, - "label": "vehicle", - "label_id": 2 - }, - "h": 172, - "region_id": 14062, - "roi_type": "vehicle", - "w": 113, - "x": 150, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.338864266872406, - "x_min": 0.19013750553131104, - "y_max": 0.6308777183294296, - "y_min": 0.22272001206874847 - }, - "confidence": 0.9997003674507141, - "label": "vehicle", - "label_id": 2 - }, - "h": 176, - "region_id": 14063, - "roi_type": "vehicle", - "w": 114, - "x": 146, - "y": 96 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3375055193901062, - "x_min": 0.1874047964811325, - "y_max": 0.5995769500732422, - "y_min": 0.206735759973526 - }, - "confidence": 0.9998912811279297, - "label": "vehicle", - "label_id": 2 - }, - "h": 170, - "region_id": 14064, - "roi_type": "vehicle", - "w": 115, - "x": 144, - "y": 89 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.331817626953125, - "x_min": 0.17809425294399261, - "y_max": 0.5778813362121582, - "y_min": 0.19000548124313354 - }, - "confidence": 0.999824047088623, - "label": "vehicle", - "label_id": 2 - }, - "h": 168, - "region_id": 14065, - "roi_type": "vehicle", - "w": 118, - "x": 137, - "y": 82 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3320658802986145, - "x_min": 0.1678294837474823, - "y_max": 0.5662894248962402, - "y_min": 0.1755218803882599 - }, - "confidence": 0.9969955682754517, - "label": "vehicle", - "label_id": 2 - }, - "h": 169, - "region_id": 14066, - "roi_type": "vehicle", - "w": 126, - "x": 129, - "y": 76 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33100438117980957, - "x_min": 0.1587739884853363, - "y_max": 0.5364056974649429, - "y_min": 0.16238094866275787 - }, - "confidence": 0.9998992681503296, - "label": "vehicle", - "label_id": 2 - }, - "h": 162, - "region_id": 14067, - "roi_type": "vehicle", - "w": 132, - "x": 122, - "y": 70 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.32596272230148315, - "x_min": 0.1472931057214737, - "y_max": 0.5152767449617386, - "y_min": 0.15732122957706451 - }, - "confidence": 0.9999929666519165, - "label": "vehicle", - "label_id": 2 - }, - "h": 155, - "region_id": 14068, - "roi_type": "vehicle", - "w": 137, - "x": 113, - "y": 68 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3235021233558655, - "x_min": 0.13618595898151398, - "y_max": 0.5010689049959183, - "y_min": 0.15680624544620514 - }, - "confidence": 0.999995231628418, - "label": "vehicle", - "label_id": 2 - }, - "h": 149, - "region_id": 14069, - "roi_type": "vehicle", - "w": 144, - "x": 105, - "y": 68 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31811433285474777, - "x_min": 0.12496491521596909, - "y_max": 0.48322826623916626, - "y_min": 0.14739632606506348 - }, - "confidence": 0.9999911785125732, - "label": "vehicle", - "label_id": 2 - }, - "h": 145, - "region_id": 14070, - "roi_type": "vehicle", - "w": 148, - "x": 96, - "y": 64 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3109372556209564, - "x_min": 0.10377120971679688, - "y_max": 0.46475066244602203, - "y_min": 0.1440376192331314 - }, - "confidence": 0.9999978542327881, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "region_id": 14071, - "roi_type": "vehicle", - "w": 159, - "x": 80, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3060433939099312, - "x_min": 0.08956293016672134, - "y_max": 0.45555512607097626, - "y_min": 0.13558463752269745 - }, - "confidence": 0.9999889135360718, - "label": "vehicle", - "label_id": 2 - }, - "h": 138, - "region_id": 14072, - "roi_type": "vehicle", - "w": 166, - "x": 69, - "y": 59 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.29430410265922546, - "x_min": 0.07462427020072937, - "y_max": 0.44256672263145447, - "y_min": 0.13647618889808655 - }, - "confidence": 0.9999735355377197, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 14073, - "roi_type": "vehicle", - "w": 169, - "x": 57, - "y": 59 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.28833312541246414, - "x_min": 0.06440762430429459, - "y_max": 0.42713572084903717, - "y_min": 0.13532604277133942 - }, - "confidence": 0.9999496936798096, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 14074, - "roi_type": "vehicle", - "w": 172, - "x": 49, - "y": 58 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.280603863298893, - "x_min": 0.046518273651599884, - "y_max": 0.41313253343105316, - "y_min": 0.13239775598049164 - }, - "confidence": 0.9999240636825562, - "label": "vehicle", - "label_id": 2 - }, - "h": 121, - "region_id": 14075, - "roi_type": "vehicle", - "w": 180, - "x": 36, - "y": 57 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2702536880970001, - "x_min": 0.03196057677268982, - "y_max": 0.40551865100860596, - "y_min": 0.13138282299041748 - }, - "confidence": 0.9999902248382568, - "label": "vehicle", - "label_id": 2 - }, - "h": 118, - "region_id": 14076, - "roi_type": "vehicle", - "w": 183, - "x": 25, - "y": 57 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.25744080543518066, - "x_min": 0.018124938011169434, - "y_max": 0.39813753962516785, - "y_min": 0.12768623232841492 - }, - "confidence": 0.9999737739562988, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 14077, - "roi_type": "vehicle", - "w": 184, - "x": 14, - "y": 55 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24728646874427795, - "x_min": 0.004216641187667847, - "y_max": 0.39358001947402954, - "y_min": 0.12342572212219238 - }, - "confidence": 0.999515175819397, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 14078, - "roi_type": "vehicle", - "w": 187, - "x": 3, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23507951200008392, - "x_min": 0.0055961161851882935, - "y_max": 0.3909709006547928, - "y_min": 0.12340493500232697 - }, - "confidence": 0.9983310103416443, - "label": "vehicle", - "label_id": 2 - }, - "h": 116, - "region_id": 14079, - "roi_type": "vehicle", - "w": 176, - "x": 4, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.22479691356420517, - "x_min": 0.001765422523021698, - "y_max": 0.3854464590549469, - "y_min": 0.1245778501033783 - }, - "confidence": 0.9997487664222717, - "label": "vehicle", - "label_id": 2 - }, - "h": 113, - "region_id": 14080, - "roi_type": "vehicle", - "w": 171, - "x": 1, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.21433763951063156, - "x_min": 0.001760147511959076, - "y_max": 0.37883220613002777, - "y_min": 0.12503556907176971 - }, - "confidence": 0.99918133020401, - "label": "vehicle", - "label_id": 2 - }, - "h": 110, - "region_id": 14081, - "roi_type": "vehicle", - "w": 163, - "x": 1, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.20309104770421982, - "x_min": 0.0008122846484184265, - "y_max": 0.37199289351701736, - "y_min": 0.12212664633989334 - }, - "confidence": 0.9997193217277527, - "label": "vehicle", - "label_id": 2 - }, - "h": 108, - "region_id": 14082, - "roi_type": "vehicle", - "w": 155, - "x": 1, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1847962811589241, - "x_min": 0.0, - "y_max": 0.36851051449775696, - "y_min": 0.1222873330116272 - }, - "confidence": 0.9995477795600891, - "label": "vehicle", - "label_id": 2 - }, - "h": 106, - "region_id": 14083, - "roi_type": "vehicle", - "w": 142, - "x": 0, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1737116202712059, - "x_min": 0.0, - "y_max": 0.36372971534729004, - "y_min": 0.11915414035320282 - }, - "confidence": 0.9950656890869141, - "label": "vehicle", - "label_id": 2 - }, - "h": 106, - "region_id": 14084, - "roi_type": "vehicle", - "w": 133, - "x": 0, - "y": 51 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.16038881987333298, - "x_min": 0.0, - "y_max": 0.3588944301009178, - "y_min": 0.12057249993085861 - }, - "confidence": 0.9822047352790833, - "label": "vehicle", - "label_id": 2 - }, - "h": 103, - "region_id": 14085, - "roi_type": "vehicle", - "w": 123, - "x": 0, - "y": 52 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.14810669422149658, - "x_min": 0.0, - "y_max": 0.35652364045381546, - "y_min": 0.12085313349962234 - }, - "confidence": 0.9530184268951416, - "label": "vehicle", - "label_id": 2 - }, - "h": 102, - "region_id": 14086, - "roi_type": "vehicle", - "w": 114, - "x": 0, - "y": 52 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.13574017584323883, - "x_min": 0.0, - "y_max": 0.3567160293459892, - "y_min": 0.12330564111471176 - }, - "confidence": 0.7856751084327698, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "region_id": 14087, - "roi_type": "vehicle", - "w": 104, - "x": 0, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11242121830582619, - "x_min": 0.0019208826124668121, - "y_max": 0.35550349950790405, - "y_min": 0.12604710459709167 - }, - "confidence": 0.6798889636993408, - "label": "vehicle", - "label_id": 2 - }, - "h": 99, - "region_id": 14088, - "roi_type": "vehicle", - "w": 85, - "x": 1, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.09885162860155106, - "x_min": 0.003643341362476349, - "y_max": 0.358278751373291, - "y_min": 0.1264287382364273 - }, - "confidence": 0.7773330807685852, - "label": "vehicle", - "label_id": 2 - }, - "h": 100, - "region_id": 14089, - "roi_type": "vehicle", - "w": 73, - "x": 3, - "y": 55 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.0878419429063797, - "x_min": 0.0017804652452468872, - "y_max": 0.3632156252861023, - "y_min": 0.1294865906238556 - }, - "confidence": 0.6258451342582703, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "region_id": 14090, - "roi_type": "vehicle", - "w": 66, - "x": 1, - "y": 56 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07318700104951859, - "x_min": 0.004130341112613678, - "y_max": 0.35117650032043457, - "y_min": 0.143472820520401 - }, - "confidence": 0.6314222812652588, - "label": "vehicle", - "label_id": 2 - }, - "h": 90, - "region_id": 14091, - "roi_type": "vehicle", - "w": 53, - "x": 3, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.0626695305109024, - "x_min": 0.0, - "y_max": 0.34957602620124817, - "y_min": 0.14383465051651 - }, - "confidence": 0.6896524429321289, - "label": "vehicle", - "label_id": 2 - }, - "h": 89, - "region_id": 14092, - "roi_type": "vehicle", - "w": 48, - "x": 0, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.04970441572368145, - "x_min": 0.0, - "y_max": 0.3423333764076233, - "y_min": 0.14351697266101837 - }, - "confidence": 0.6430792212486267, - "label": "vehicle", - "label_id": 2 - }, - "h": 86, - "region_id": 14093, - "roi_type": "vehicle", - "w": 38, - "x": 0, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49250000000 - } - ] -} \ No newline at end of file diff --git a/tests/test_cases/pipeline_execution/gpu/object_detection_gpu_FP32_gstreamer_pipelines/object_detection/person_vehicle_bike/pipeline.json b/tests/test_cases/pipeline_execution/gpu/object_detection_gpu_FP32_gstreamer_pipelines/object_detection/person_vehicle_bike/pipeline.json deleted file mode 100644 index 2fdcf6c..0000000 --- a/tests/test_cases/pipeline_execution/gpu/object_detection_gpu_FP32_gstreamer_pipelines/object_detection/person_vehicle_bike/pipeline.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "type": "GStreamer", - "template": ["uridecodebin name=source", - " ! gvadetect model={models[object_detection][person_vehicle_bike][FP32][network]} ", - " model-proc={models[object_detection][person_vehicle_bike][FP32][proc]} name=detection", - " ! gvametaconvert name=metaconvert ! gvametapublish name=destination", - " ! appsink name=appsink" - ], - "description": "Person Vehicle Bike Detection based on person-vehicle-bike-detection-crossroad-0078", - "parameters": { - "type": "object", - "properties": { - "detection-device": { - "element": { - "name": "detection", - "property": "device" - }, - "type": "string" - }, - "detection-model-instance-id": { - "element": { - "name": "detection", - "property": "model-instance-id" - }, - "type": "string" - }, - "inference-interval": { - "element": "detection", - "type": "integer" - }, - "threshold": { - "element": "detection", - "type": "number" - } - } - } -} diff --git a/tests/test_cases/pipeline_execution/gpu/object_detection_gpu_gstreamer.json b/tests/test_cases/pipeline_execution/gpu/object_detection_gpu_gstreamer.json deleted file mode 100644 index 3335394..0000000 --- a/tests/test_cases/pipeline_execution/gpu/object_detection_gpu_gstreamer.json +++ /dev/null @@ -1,7362 +0,0 @@ -{ - "options": {}, - "pipeline": { - "name": "object_detection", - "version": "person_vehicle_bike" - }, - "request": { - "source": { - "type": "uri", - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4" - }, - "destination": { - "type": "file", - "path": "/tmp/object_detection_gpu_results.json", - "format": "json-lines" - }, - "parameters": { - "detection-device": "GPU" - } - }, - "numerical_tolerance": 0.3, - "result": [ - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7450754046440125, - "x_min": 0.6731894612312317, - "y_max": 0.9991127848625183, - "y_min": 0.8780452609062195 - }, - "confidence": 0.541015625, - "label": "person", - "label_id": 1 - }, - "h": 52, - "region_id": 12320, - "roi_type": "person", - "w": 55, - "x": 517, - "y": 379 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7440981268882751, - "x_min": 0.6758646368980408, - "y_max": 1.0, - "y_min": 0.827924907207489 - }, - "confidence": 0.54345703125, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 12321, - "roi_type": "person", - "w": 52, - "x": 519, - "y": 358 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7466071248054504, - "x_min": 0.6823329329490662, - "y_max": 1.0, - "y_min": 0.8108165264129639 - }, - "confidence": 0.66796875, - "label": "person", - "label_id": 1 - }, - "h": 82, - "region_id": 12322, - "roi_type": "person", - "w": 49, - "x": 524, - "y": 350 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7479705214500427, - "x_min": 0.6836908459663391, - "y_max": 1.0, - "y_min": 0.7869881391525269 - }, - "confidence": 0.88037109375, - "label": "person", - "label_id": 1 - }, - "h": 92, - "region_id": 12323, - "roi_type": "person", - "w": 49, - "x": 525, - "y": 340 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7501941323280334, - "x_min": 0.683894693851471, - "y_max": 0.9971110224723816, - "y_min": 0.771379292011261 - }, - "confidence": 0.931640625, - "label": "person", - "label_id": 1 - }, - "h": 98, - "region_id": 12324, - "roi_type": "person", - "w": 51, - "x": 525, - "y": 333 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7552652359008789, - "x_min": 0.6827793121337891, - "y_max": 0.9931315779685974, - "y_min": 0.7555018067359924 - }, - "confidence": 0.9248046875, - "label": "person", - "label_id": 1 - }, - "h": 103, - "region_id": 12325, - "roi_type": "person", - "w": 56, - "x": 524, - "y": 326 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7565565705299377, - "x_min": 0.6830658316612244, - "y_max": 0.9888202548027039, - "y_min": 0.7450335621833801 - }, - "confidence": 0.94921875, - "label": "person", - "label_id": 1 - }, - "h": 105, - "region_id": 12327, - "roi_type": "person", - "w": 56, - "x": 525, - "y": 322 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7581809759140015, - "x_min": 0.6870932579040527, - "y_max": 0.9743094444274902, - "y_min": 0.723680853843689 - }, - "confidence": 0.9560546875, - "label": "person", - "label_id": 1 - }, - "h": 108, - "region_id": 12328, - "roi_type": "person", - "w": 55, - "x": 528, - "y": 313 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7575687766075134, - "x_min": 0.6909058690071106, - "y_max": 0.9489275217056274, - "y_min": 0.7130314111709595 - }, - "confidence": 0.87158203125, - "label": "person", - "label_id": 1 - }, - "h": 102, - "region_id": 12329, - "roi_type": "person", - "w": 51, - "x": 531, - "y": 308 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.756697416305542, - "x_min": 0.693425178527832, - "y_max": 0.9018371105194092, - "y_min": 0.7055492401123047 - }, - "confidence": 0.888671875, - "label": "person", - "label_id": 1 - }, - "h": 85, - "region_id": 12330, - "roi_type": "person", - "w": 49, - "x": 533, - "y": 305 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7573454976081848, - "x_min": 0.6979058384895325, - "y_max": 0.8756023645401001, - "y_min": 0.6885020732879639 - }, - "confidence": 0.8759765625, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 12331, - "roi_type": "person", - "w": 46, - "x": 536, - "y": 297 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.763081967830658, - "x_min": 0.6965207457542419, - "y_max": 0.9013386964797974, - "y_min": 0.6667746305465698 - }, - "confidence": 0.697265625, - "label": "person", - "label_id": 1 - }, - "h": 101, - "region_id": 12332, - "roi_type": "person", - "w": 51, - "x": 535, - "y": 288 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7638378739356995, - "x_min": 0.6945894360542297, - "y_max": 0.897483229637146, - "y_min": 0.6505343914031982 - }, - "confidence": 0.7373046875, - "label": "person", - "label_id": 1 - }, - "h": 107, - "region_id": 12333, - "roi_type": "person", - "w": 53, - "x": 533, - "y": 281 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7640742063522339, - "x_min": 0.7027362585067749, - "y_max": 0.8511595726013184, - "y_min": 0.6484842300415039 - }, - "confidence": 0.6669921875, - "label": "person", - "label_id": 1 - }, - "h": 88, - "region_id": 12334, - "roi_type": "person", - "w": 47, - "x": 540, - "y": 280 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7668865323066711, - "x_min": 0.7063930630683899, - "y_max": 0.830226719379425, - "y_min": 0.629843533039093 - }, - "confidence": 0.927734375, - "label": "person", - "label_id": 1 - }, - "h": 87, - "region_id": 12335, - "roi_type": "person", - "w": 46, - "x": 543, - "y": 272 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7724691033363342, - "x_min": 0.7098849415779114, - "y_max": 0.8254351615905762, - "y_min": 0.6172851324081421 - }, - "confidence": 0.693359375, - "label": "person", - "label_id": 1 - }, - "h": 90, - "region_id": 12336, - "roi_type": "person", - "w": 48, - "x": 545, - "y": 267 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7740265727043152, - "x_min": 0.7090769410133362, - "y_max": 0.82144695520401, - "y_min": 0.6101848483085632 - }, - "confidence": 0.75, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 12337, - "roi_type": "person", - "w": 50, - "x": 545, - "y": 264 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7839817404747009, - "x_min": 0.7257370352745056, - "y_max": 0.7586237192153931, - "y_min": 0.5558692216873169 - }, - "confidence": 0.71728515625, - "label": "person", - "label_id": 1 - }, - "h": 88, - "region_id": 12338, - "roi_type": "person", - "w": 45, - "x": 557, - "y": 240 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.78947514295578, - "x_min": 0.7327013611793518, - "y_max": 0.7261707782745361, - "y_min": 0.5484710931777954 - }, - "confidence": 0.97509765625, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 12339, - "roi_type": "person", - "w": 44, - "x": 563, - "y": 237 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7890066504478455, - "x_min": 0.7377496361732483, - "y_max": 0.7029215097427368, - "y_min": 0.5400267839431763 - }, - "confidence": 0.84326171875, - "label": "person", - "label_id": 1 - }, - "h": 70, - "region_id": 12340, - "roi_type": "person", - "w": 39, - "x": 567, - "y": 233 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7952556610107422, - "x_min": 0.7402281761169434, - "y_max": 0.6923619508743286, - "y_min": 0.5218515396118164 - }, - "confidence": 0.76513671875, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 12341, - "roi_type": "person", - "w": 42, - "x": 568, - "y": 225 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8006601333618164, - "x_min": 0.7462418079376221, - "y_max": 0.6883482336997986, - "y_min": 0.5218518376350403 - }, - "confidence": 0.87890625, - "label": "person", - "label_id": 1 - }, - "h": 72, - "region_id": 12342, - "roi_type": "person", - "w": 42, - "x": 573, - "y": 225 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8098742365837097, - "x_min": 0.7456627488136292, - "y_max": 0.7028436660766602, - "y_min": 0.5027613639831543 - }, - "confidence": 0.91259765625, - "label": "person", - "label_id": 1 - }, - "h": 86, - "region_id": 12343, - "roi_type": "person", - "w": 49, - "x": 573, - "y": 217 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8130742311477661, - "x_min": 0.7562228441238403, - "y_max": 0.6840891242027283, - "y_min": 0.49621087312698364 - }, - "confidence": 0.91357421875, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 12344, - "roi_type": "person", - "w": 44, - "x": 581, - "y": 214 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8229447603225708, - "x_min": 0.763748288154602, - "y_max": 0.6856093406677246, - "y_min": 0.4886976480484009 - }, - "confidence": 0.833984375, - "label": "person", - "label_id": 1 - }, - "h": 85, - "region_id": 12347, - "roi_type": "person", - "w": 45, - "x": 587, - "y": 211 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8231713771820068, - "x_min": 0.7604347467422485, - "y_max": 0.6921271681785583, - "y_min": 0.4757062494754791 - }, - "confidence": 0.68359375, - "label": "person", - "label_id": 1 - }, - "h": 93, - "region_id": 12350, - "roi_type": "person", - "w": 48, - "x": 584, - "y": 206 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8320498466491699, - "x_min": 0.7603206634521484, - "y_max": 0.6944458484649658, - "y_min": 0.46570658683776855 - }, - "confidence": 0.59033203125, - "label": "person", - "label_id": 1 - }, - "h": 99, - "region_id": 12351, - "roi_type": "person", - "w": 55, - "x": 584, - "y": 201 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8428041338920593, - "x_min": 0.7936063408851624, - "y_max": 0.6421533823013306, - "y_min": 0.43810799717903137 - }, - "confidence": 0.9658203125, - "label": "person", - "label_id": 1 - }, - "h": 88, - "region_id": 12352, - "roi_type": "person", - "w": 38, - "x": 609, - "y": 189 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8495814800262451, - "x_min": 0.7967391014099121, - "y_max": 0.6154407858848572, - "y_min": 0.44311457872390747 - }, - "confidence": 0.88671875, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 12353, - "roi_type": "person", - "w": 41, - "x": 612, - "y": 191 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8531036972999573, - "x_min": 0.8009379506111145, - "y_max": 0.605356752872467, - "y_min": 0.42972689867019653 - }, - "confidence": 0.90478515625, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 12356, - "roi_type": "person", - "w": 40, - "x": 615, - "y": 186 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8602517247200012, - "x_min": 0.8060665726661682, - "y_max": 0.5925722122192383, - "y_min": 0.4272420406341553 - }, - "confidence": 0.802734375, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 12358, - "roi_type": "person", - "w": 42, - "x": 619, - "y": 185 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8662797212600708, - "x_min": 0.8103095293045044, - "y_max": 0.5944654941558838, - "y_min": 0.4206693172454834 - }, - "confidence": 0.76953125, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 12360, - "roi_type": "person", - "w": 43, - "x": 622, - "y": 182 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8742167353630066, - "x_min": 0.817884624004364, - "y_max": 0.5900445580482483, - "y_min": 0.4136499762535095 - }, - "confidence": 0.95703125, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 12361, - "roi_type": "person", - "w": 43, - "x": 628, - "y": 179 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8853930830955505, - "x_min": 0.826438844203949, - "y_max": 0.586012601852417, - "y_min": 0.40271833539009094 - }, - "confidence": 0.8271484375, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 12363, - "roi_type": "person", - "w": 45, - "x": 635, - "y": 174 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8913269639015198, - "x_min": 0.834475576877594, - "y_max": 0.5893236994743347, - "y_min": 0.3930070996284485 - }, - "confidence": 0.7890625, - "label": "person", - "label_id": 1 - }, - "h": 85, - "region_id": 12364, - "roi_type": "person", - "w": 44, - "x": 641, - "y": 170 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9005622863769531, - "x_min": 0.8355872631072998, - "y_max": 0.587836503982544, - "y_min": 0.3939674496650696 - }, - "confidence": 0.65576171875, - "label": "person", - "label_id": 1 - }, - "h": 84, - "region_id": 12365, - "roi_type": "person", - "w": 50, - "x": 642, - "y": 170 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9087395668029785, - "x_min": 0.8530853986740112, - "y_max": 0.5614248514175415, - "y_min": 0.3760519027709961 - }, - "confidence": 0.62646484375, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 12366, - "roi_type": "person", - "w": 43, - "x": 655, - "y": 162 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9123356938362122, - "x_min": 0.8665536046028137, - "y_max": 0.5443816184997559, - "y_min": 0.3672276437282562 - }, - "confidence": 0.8828125, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 12367, - "roi_type": "person", - "w": 35, - "x": 666, - "y": 159 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9202427864074707, - "x_min": 0.8713085651397705, - "y_max": 0.5296249389648438, - "y_min": 0.3523065745830536 - }, - "confidence": 0.97705078125, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 12368, - "roi_type": "person", - "w": 38, - "x": 669, - "y": 152 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9222867488861084, - "x_min": 0.8776892423629761, - "y_max": 0.5221399664878845, - "y_min": 0.3504602313041687 - }, - "confidence": 0.92431640625, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 12369, - "roi_type": "person", - "w": 34, - "x": 674, - "y": 151 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9280626177787781, - "x_min": 0.872081458568573, - "y_max": 0.5193465352058411, - "y_min": 0.34443533420562744 - }, - "confidence": 0.7626953125, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 12370, - "roi_type": "person", - "w": 43, - "x": 670, - "y": 149 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9372737407684326, - "x_min": 0.8854783773422241, - "y_max": 0.5109970569610596, - "y_min": 0.34280145168304443 - }, - "confidence": 0.95166015625, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 12371, - "roi_type": "person", - "w": 40, - "x": 680, - "y": 148 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9448143243789673, - "x_min": 0.8897277116775513, - "y_max": 0.5036752820014954, - "y_min": 0.3363150954246521 - }, - "confidence": 0.9072265625, - "label": "person", - "label_id": 1 - }, - "h": 72, - "region_id": 12372, - "roi_type": "person", - "w": 42, - "x": 683, - "y": 145 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9548877477645874, - "x_min": 0.8982136249542236, - "y_max": 0.5104914307594299, - "y_min": 0.3243568241596222 - }, - "confidence": 0.771484375, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 12373, - "roi_type": "person", - "w": 44, - "x": 690, - "y": 140 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9616000652313232, - "x_min": 0.9061682224273682, - "y_max": 0.5174671411514282, - "y_min": 0.3264445662498474 - }, - "confidence": 0.77392578125, - "label": "person", - "label_id": 1 - }, - "h": 83, - "region_id": 12374, - "roi_type": "person", - "w": 43, - "x": 696, - "y": 141 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9738823771476746, - "x_min": 0.9143497347831726, - "y_max": 0.49129024147987366, - "y_min": 0.31767210364341736 - }, - "confidence": 0.7880859375, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 12375, - "roi_type": "person", - "w": 46, - "x": 702, - "y": 137 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9758822321891785, - "x_min": 0.9256947636604309, - "y_max": 0.4858596622943878, - "y_min": 0.30410680174827576 - }, - "confidence": 0.72509765625, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 12376, - "roi_type": "person", - "w": 39, - "x": 711, - "y": 131 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9817521572113037, - "x_min": 0.9286510944366455, - "y_max": 0.47783294320106506, - "y_min": 0.29440435767173767 - }, - "confidence": 0.82958984375, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 12377, - "roi_type": "person", - "w": 41, - "x": 713, - "y": 127 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9829116463661194, - "x_min": 0.9320533871650696, - "y_max": 0.4618929624557495, - "y_min": 0.2908490300178528 - }, - "confidence": 0.9697265625, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 12378, - "roi_type": "person", - "w": 39, - "x": 716, - "y": 126 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.985581636428833, - "x_min": 0.9315074682235718, - "y_max": 0.4598333239555359, - "y_min": 0.28892290592193604 - }, - "confidence": 0.681640625, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 12379, - "roi_type": "person", - "w": 42, - "x": 715, - "y": 125 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9978788495063782, - "x_min": 0.9291815161705017, - "y_max": 0.4698169529438019, - "y_min": 0.2596692740917206 - }, - "confidence": 0.5927734375, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 12380, - "roi_type": "person", - "w": 53, - "x": 714, - "y": 112 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9965602159500122, - "x_min": 0.9486868381500244, - "y_max": 0.44712570309638977, - "y_min": 0.2673933207988739 - }, - "confidence": 0.55322265625, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 12381, - "roi_type": "person", - "w": 37, - "x": 729, - "y": 116 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.11995124816894531, - "y_max": 0.9913916289806366, - "y_min": 0.016854017972946167 - }, - "confidence": 0.62158203125, - "label": "vehicle", - "label_id": 2 - }, - "h": 421, - "region_id": 12382, - "roi_type": "vehicle", - "w": 676, - "x": 92, - "y": 7 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 13916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34788548946380615, - "x_min": 0.12067420780658722, - "y_max": 1.0, - "y_min": 0.8388429880142212 - }, - "confidence": 0.59814453125, - "label": "vehicle", - "label_id": 2 - }, - "h": 70, - "region_id": 12383, - "roi_type": "vehicle", - "w": 174, - "x": 93, - "y": 362 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3533565625548363, - "x_min": 0.12123485654592514, - "y_max": 1.0, - "y_min": 0.8090957999229431 - }, - "confidence": 0.71826171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 82, - "region_id": 12384, - "roi_type": "vehicle", - "w": 178, - "x": 93, - "y": 350 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35722535848617554, - "x_min": 0.12032529711723328, - "y_max": 0.9970874786376953, - "y_min": 0.7843096256256104 - }, - "confidence": 0.80517578125, - "label": "vehicle", - "label_id": 2 - }, - "h": 92, - "region_id": 12385, - "roi_type": "vehicle", - "w": 182, - "x": 92, - "y": 339 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35971733182668686, - "x_min": 0.11328639835119247, - "y_max": 0.9965744614601135, - "y_min": 0.7635470032691956 - }, - "confidence": 0.79931640625, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "region_id": 12386, - "roi_type": "vehicle", - "w": 189, - "x": 87, - "y": 330 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3702913075685501, - "x_min": 0.11394597589969635, - "y_max": 1.0, - "y_min": 0.7276990413665771 - }, - "confidence": 0.7080078125, - "label": "vehicle", - "label_id": 2 - }, - "h": 118, - "region_id": 12387, - "roi_type": "vehicle", - "w": 197, - "x": 88, - "y": 314 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36841410398483276, - "x_min": 0.10085779428482056, - "y_max": 0.996000349521637, - "y_min": 0.7033589482307434 - }, - "confidence": 0.84619140625, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 12388, - "roi_type": "vehicle", - "w": 205, - "x": 77, - "y": 304 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37700408697128296, - "x_min": 0.10724449157714844, - "y_max": 0.9995347261428833, - "y_min": 0.6776673793792725 - }, - "confidence": 0.92333984375, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "region_id": 12389, - "roi_type": "vehicle", - "w": 207, - "x": 82, - "y": 293 - }, - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.12240788340568542, - "y_max": 0.9747185707092285, - "y_min": 0.03273570537567139 - }, - "confidence": 0.63232421875, - "label": "vehicle", - "label_id": 2 - }, - "h": 407, - "region_id": 12390, - "roi_type": "vehicle", - "w": 674, - "x": 94, - "y": 14 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3794129192829132, - "x_min": 0.10572710633277893, - "y_max": 1.0, - "y_min": 0.6497832536697388 - }, - "confidence": 0.955078125, - "label": "vehicle", - "label_id": 2 - }, - "h": 151, - "region_id": 12391, - "roi_type": "vehicle", - "w": 210, - "x": 81, - "y": 281 - }, - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.12235894799232483, - "y_max": 0.9642861187458038, - "y_min": 0.03327503800392151 - }, - "confidence": 0.63671875, - "label": "vehicle", - "label_id": 2 - }, - "h": 402, - "region_id": 12392, - "roi_type": "vehicle", - "w": 674, - "x": 94, - "y": 14 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37893153727054596, - "x_min": 0.10524572432041168, - "y_max": 1.0, - "y_min": 0.6315947771072388 - }, - "confidence": 0.990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 159, - "region_id": 12393, - "roi_type": "vehicle", - "w": 210, - "x": 81, - "y": 273 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37906306982040405, - "x_min": 0.11943095922470093, - "y_max": 0.9988926649093628, - "y_min": 0.6108778715133667 - }, - "confidence": 0.994140625, - "label": "vehicle", - "label_id": 2 - }, - "h": 168, - "region_id": 12394, - "roi_type": "vehicle", - "w": 199, - "x": 92, - "y": 264 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37611158192157745, - "x_min": 0.11804629862308502, - "y_max": 0.9963674545288086, - "y_min": 0.585686445236206 - }, - "confidence": 0.9951171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 177, - "region_id": 12395, - "roi_type": "vehicle", - "w": 198, - "x": 91, - "y": 253 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3770822137594223, - "x_min": 0.11729799211025238, - "y_max": 0.99732905626297, - "y_min": 0.5627850890159607 - }, - "confidence": 0.98828125, - "label": "vehicle", - "label_id": 2 - }, - "h": 188, - "region_id": 12396, - "roi_type": "vehicle", - "w": 200, - "x": 90, - "y": 243 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3729642927646637, - "x_min": 0.1085742712020874, - "y_max": 1.0, - "y_min": 0.5397972464561462 - }, - "confidence": 0.97802734375, - "label": "vehicle", - "label_id": 2 - }, - "h": 199, - "region_id": 12397, - "roi_type": "vehicle", - "w": 203, - "x": 83, - "y": 233 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3656986355781555, - "x_min": 0.13279204070568085, - "y_max": 1.0, - "y_min": 0.5242156386375427 - }, - "confidence": 0.97900390625, - "label": "vehicle", - "label_id": 2 - }, - "h": 206, - "region_id": 12398, - "roi_type": "vehicle", - "w": 179, - "x": 102, - "y": 226 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9005439579486847, - "x_min": 0.0947130024433136, - "y_max": 0.6981552839279175, - "y_min": 0.05118680000305176 - }, - "confidence": 0.53125, - "label": "vehicle", - "label_id": 2 - }, - "h": 279, - "region_id": 12399, - "roi_type": "vehicle", - "w": 619, - "x": 73, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36320242285728455, - "x_min": 0.13479956984519958, - "y_max": 1.0, - "y_min": 0.5036964416503906 - }, - "confidence": 0.9921875, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "region_id": 12400, - "roi_type": "vehicle", - "w": 175, - "x": 104, - "y": 218 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9596145153045654, - "x_min": 0.1480247974395752, - "y_max": 0.8022695779800415, - "y_min": 0.047685861587524414 - }, - "confidence": 0.662109375, - "label": "vehicle", - "label_id": 2 - }, - "h": 326, - "region_id": 12401, - "roi_type": "vehicle", - "w": 623, - "x": 114, - "y": 21 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35492169857025146, - "x_min": 0.14194001257419586, - "y_max": 0.9911630153656006, - "y_min": 0.4964284896850586 - }, - "confidence": 0.99609375, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "region_id": 12402, - "roi_type": "vehicle", - "w": 164, - "x": 109, - "y": 214 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3554447889328003, - "x_min": 0.1485300064086914, - "y_max": 0.9996136724948883, - "y_min": 0.47489133477211 - }, - "confidence": 0.998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 227, - "region_id": 12403, - "roi_type": "vehicle", - "w": 159, - "x": 114, - "y": 205 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9596475064754486, - "x_min": 0.3637692630290985, - "y_max": 0.9144225120544434, - "y_min": 0.03580266237258911 - }, - "confidence": 0.50537109375, - "label": "vehicle", - "label_id": 2 - }, - "h": 380, - "region_id": 12404, - "roi_type": "vehicle", - "w": 458, - "x": 279, - "y": 15 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3561684787273407, - "x_min": 0.1538877785205841, - "y_max": 0.9828415811061859, - "y_min": 0.45157262682914734 - }, - "confidence": 0.9951171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 230, - "region_id": 12405, - "roi_type": "vehicle", - "w": 155, - "x": 118, - "y": 195 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34915268421173096, - "x_min": 0.1601976752281189, - "y_max": 0.9477139413356781, - "y_min": 0.43223318457603455 - }, - "confidence": 0.9970703125, - "label": "vehicle", - "label_id": 2 - }, - "h": 223, - "region_id": 12406, - "roi_type": "vehicle", - "w": 145, - "x": 123, - "y": 187 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9622732400894165, - "x_min": 0.3467036485671997, - "y_max": 0.7548135221004486, - "y_min": 0.06216701865196228 - }, - "confidence": 0.76416015625, - "label": "vehicle", - "label_id": 2 - }, - "h": 299, - "region_id": 12407, - "roi_type": "vehicle", - "w": 473, - "x": 266, - "y": 27 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34494632482528687, - "x_min": 0.16223210096359253, - "y_max": 0.9361109733581543, - "y_min": 0.4226393699645996 - }, - "confidence": 0.998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 222, - "region_id": 12408, - "roi_type": "vehicle", - "w": 140, - "x": 125, - "y": 183 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9732775092124939, - "x_min": 0.3253013491630554, - "y_max": 0.9302563667297363, - "y_min": 0.05300796031951904 - }, - "confidence": 0.6083984375, - "label": "vehicle", - "label_id": 2 - }, - "h": 379, - "region_id": 12409, - "roi_type": "vehicle", - "w": 498, - "x": 250, - "y": 23 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3391859233379364, - "x_min": 0.1647346317768097, - "y_max": 0.9072514772415161, - "y_min": 0.4021332263946533 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 218, - "region_id": 12410, - "roi_type": "vehicle", - "w": 134, - "x": 127, - "y": 174 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9653114080429077, - "x_min": 0.3195772171020508, - "y_max": 0.9068852961063385, - "y_min": 0.05095675587654114 - }, - "confidence": 0.56103515625, - "label": "vehicle", - "label_id": 2 - }, - "h": 370, - "region_id": 12411, - "roi_type": "vehicle", - "w": 496, - "x": 245, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3360394239425659, - "x_min": 0.164894700050354, - "y_max": 0.8810743093490601, - "y_min": 0.38855671882629395 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "region_id": 12412, - "roi_type": "vehicle", - "w": 131, - "x": 127, - "y": 168 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9583485126495361, - "x_min": 0.3183259963989258, - "y_max": 0.836863249540329, - "y_min": 0.07228550314903259 - }, - "confidence": 0.6611328125, - "label": "vehicle", - "label_id": 2 - }, - "h": 330, - "region_id": 12413, - "roi_type": "vehicle", - "w": 492, - "x": 244, - "y": 31 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33219119906425476, - "x_min": 0.16244429349899292, - "y_max": 0.859308660030365, - "y_min": 0.3722662329673767 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 210, - "region_id": 12414, - "roi_type": "vehicle", - "w": 130, - "x": 125, - "y": 161 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.96105095744133, - "x_min": 0.31634053587913513, - "y_max": 0.9130281805992126, - "y_min": 0.06904906034469604 - }, - "confidence": 0.6064453125, - "label": "vehicle", - "label_id": 2 - }, - "h": 365, - "region_id": 12415, - "roi_type": "vehicle", - "w": 495, - "x": 243, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33003008365631104, - "x_min": 0.16216199100017548, - "y_max": 0.8308836817741394, - "y_min": 0.35496407747268677 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 206, - "region_id": 12416, - "roi_type": "vehicle", - "w": 129, - "x": 125, - "y": 153 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9567078053951263, - "x_min": 0.3253123462200165, - "y_max": 0.8802770972251892, - "y_min": 0.0708383321762085 - }, - "confidence": 0.6923828125, - "label": "vehicle", - "label_id": 2 - }, - "h": 350, - "region_id": 12417, - "roi_type": "vehicle", - "w": 485, - "x": 250, - "y": 31 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3288085162639618, - "x_min": 0.157329261302948, - "y_max": 0.8057076930999756, - "y_min": 0.3446691036224365 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 199, - "region_id": 12418, - "roi_type": "vehicle", - "w": 132, - "x": 121, - "y": 149 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.963686466217041, - "x_min": 0.3247877359390259, - "y_max": 0.8278923332691193, - "y_min": 0.052186518907547 - }, - "confidence": 0.75537109375, - "label": "vehicle", - "label_id": 2 - }, - "h": 335, - "region_id": 12419, - "roi_type": "vehicle", - "w": 491, - "x": 249, - "y": 23 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.325700581073761, - "x_min": 0.15155886113643646, - "y_max": 0.7916401624679565, - "y_min": 0.3304018974304199 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 199, - "region_id": 12420, - "roi_type": "vehicle", - "w": 134, - "x": 116, - "y": 143 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9605325162410736, - "x_min": 0.34267494082450867, - "y_max": 0.8595539331436157, - "y_min": 0.04185444116592407 - }, - "confidence": 0.60791015625, - "label": "vehicle", - "label_id": 2 - }, - "h": 353, - "region_id": 12421, - "roi_type": "vehicle", - "w": 475, - "x": 263, - "y": 18 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.32326173782348633, - "x_min": 0.1429257094860077, - "y_max": 0.7730258703231812, - "y_min": 0.31999945640563965 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 196, - "region_id": 12422, - "roi_type": "vehicle", - "w": 138, - "x": 110, - "y": 138 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9603236615657806, - "x_min": 0.343340128660202, - "y_max": 0.8690563440322876, - "y_min": 0.03262406587600708 - }, - "confidence": 0.6357421875, - "label": "vehicle", - "label_id": 2 - }, - "h": 361, - "region_id": 12423, - "roi_type": "vehicle", - "w": 474, - "x": 264, - "y": 14 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3207375407218933, - "x_min": 0.13676699995994568, - "y_max": 0.7576345205307007, - "y_min": 0.31319475173950195 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 192, - "region_id": 12424, - "roi_type": "vehicle", - "w": 141, - "x": 105, - "y": 135 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9543446004390717, - "x_min": 0.3145720660686493, - "y_max": 0.8108518123626709, - "y_min": 0.03726363182067871 - }, - "confidence": 0.82177734375, - "label": "vehicle", - "label_id": 2 - }, - "h": 334, - "region_id": 12425, - "roi_type": "vehicle", - "w": 491, - "x": 242, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3170391619205475, - "x_min": 0.12877821922302246, - "y_max": 0.7354335188865662, - "y_min": 0.30213361978530884 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 187, - "region_id": 12426, - "roi_type": "vehicle", - "w": 145, - "x": 99, - "y": 131 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9484927356243134, - "x_min": 0.32739946246147156, - "y_max": 0.7967373430728912, - "y_min": 0.03275647759437561 - }, - "confidence": 0.89990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 330, - "region_id": 12427, - "roi_type": "vehicle", - "w": 477, - "x": 251, - "y": 14 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3141186833381653, - "x_min": 0.11657941341400146, - "y_max": 0.7233425378799438, - "y_min": 0.29008495807647705 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 187, - "region_id": 12428, - "roi_type": "vehicle", - "w": 152, - "x": 90, - "y": 125 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.962075799703598, - "x_min": 0.31081756949424744, - "y_max": 0.8074585795402527, - "y_min": 0.043179333209991455 - }, - "confidence": 0.77880859375, - "label": "vehicle", - "label_id": 2 - }, - "h": 330, - "region_id": 12429, - "roi_type": "vehicle", - "w": 500, - "x": 239, - "y": 19 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31127429008483887, - "x_min": 0.10575759410858154, - "y_max": 0.7095938324928284, - "y_min": 0.2833430767059326 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 184, - "region_id": 12430, - "roi_type": "vehicle", - "w": 158, - "x": 81, - "y": 122 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9623641967773438, - "x_min": 0.32337188720703125, - "y_max": 0.8485720753669739, - "y_min": 0.04102778434753418 - }, - "confidence": 0.73828125, - "label": "vehicle", - "label_id": 2 - }, - "h": 349, - "region_id": 12431, - "roi_type": "vehicle", - "w": 491, - "x": 248, - "y": 18 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.30724579095840454, - "x_min": 0.0889257937669754, - "y_max": 0.6935571432113647, - "y_min": 0.27660852670669556 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 180, - "region_id": 12432, - "roi_type": "vehicle", - "w": 168, - "x": 68, - "y": 119 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9568454027175903, - "x_min": 0.3318895101547241, - "y_max": 0.8259652853012085, - "y_min": 0.046311259269714355 - }, - "confidence": 0.7607421875, - "label": "vehicle", - "label_id": 2 - }, - "h": 337, - "region_id": 12433, - "roi_type": "vehicle", - "w": 480, - "x": 255, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3028292879462242, - "x_min": 0.08205672353506088, - "y_max": 0.6734104156494141, - "y_min": 0.2817556858062744 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 169, - "region_id": 12434, - "roi_type": "vehicle", - "w": 170, - "x": 63, - "y": 122 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9649854302406311, - "x_min": 0.31925123929977417, - "y_max": 0.8659673929214478, - "y_min": 0.0621986985206604 - }, - "confidence": 0.54736328125, - "label": "vehicle", - "label_id": 2 - }, - "h": 347, - "region_id": 12435, - "roi_type": "vehicle", - "w": 496, - "x": 245, - "y": 27 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2942311242222786, - "x_min": 0.07399673014879227, - "y_max": 0.6569262742996216, - "y_min": 0.27245113253593445 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 166, - "region_id": 12436, - "roi_type": "vehicle", - "w": 169, - "x": 57, - "y": 118 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9777919352054596, - "x_min": 0.34445157647132874, - "y_max": 0.848713606595993, - "y_min": 0.045572489500045776 - }, - "confidence": 0.69873046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 347, - "region_id": 12437, - "roi_type": "vehicle", - "w": 486, - "x": 265, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2884630039334297, - "x_min": 0.06656671315431595, - "y_max": 0.6484526991844177, - "y_min": 0.264728307723999 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 166, - "region_id": 12438, - "roi_type": "vehicle", - "w": 170, - "x": 51, - "y": 114 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2830882668495178, - "x_min": 0.054641202092170715, - "y_max": 0.6378852725028992, - "y_min": 0.2628006339073181 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 162, - "region_id": 12439, - "roi_type": "vehicle", - "w": 175, - "x": 42, - "y": 114 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9622345864772797, - "x_min": 0.35567352175712585, - "y_max": 0.7274520099163055, - "y_min": 0.06999191641807556 - }, - "confidence": 0.529296875, - "label": "vehicle", - "label_id": 2 - }, - "h": 284, - "region_id": 12440, - "roi_type": "vehicle", - "w": 466, - "x": 273, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27765556424856186, - "x_min": 0.04351823776960373, - "y_max": 0.6269818544387817, - "y_min": 0.25980502367019653 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 159, - "region_id": 12441, - "roi_type": "vehicle", - "w": 180, - "x": 33, - "y": 112 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27031514048576355, - "x_min": 0.030673563480377197, - "y_max": 0.612331748008728, - "y_min": 0.2571866512298584 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 153, - "region_id": 12442, - "roi_type": "vehicle", - "w": 184, - "x": 24, - "y": 111 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2615850567817688, - "x_min": 0.019214048981666565, - "y_max": 0.6010944843292236, - "y_min": 0.2520679831504822 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 151, - "region_id": 12443, - "roi_type": "vehicle", - "w": 186, - "x": 15, - "y": 109 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9748682379722595, - "x_min": 0.3660525679588318, - "y_max": 0.9305697083473206, - "y_min": 0.0460972785949707 - }, - "confidence": 0.5625, - "label": "vehicle", - "label_id": 2 - }, - "h": 382, - "region_id": 12444, - "roi_type": "vehicle", - "w": 468, - "x": 281, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2566665932536125, - "x_min": 0.010110311210155487, - "y_max": 0.5950663089752197, - "y_min": 0.25599029660224915 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 146, - "region_id": 12445, - "roi_type": "vehicle", - "w": 189, - "x": 8, - "y": 111 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24547897279262543, - "x_min": 0.00378476083278656, - "y_max": 0.58565354347229, - "y_min": 0.250363290309906 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 145, - "region_id": 12446, - "roi_type": "vehicle", - "w": 186, - "x": 3, - "y": 108 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23500293493270874, - "x_min": 0.001883864402770996, - "y_max": 0.5771509259939194, - "y_min": 0.24766944348812103 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 142, - "region_id": 12447, - "roi_type": "vehicle", - "w": 179, - "x": 1, - "y": 107 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.22417304664850235, - "x_min": 0.0005508437752723694, - "y_max": 0.5657980293035507, - "y_min": 0.24598316848278046 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 138, - "region_id": 12448, - "roi_type": "vehicle", - "w": 172, - "x": 0, - "y": 106 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9669439494609833, - "x_min": 0.3940558135509491, - "y_max": 0.7534793317317963, - "y_min": 0.06528171896934509 - }, - "confidence": 0.61279296875, - "label": "vehicle", - "label_id": 2 - }, - "h": 297, - "region_id": 12449, - "roi_type": "vehicle", - "w": 440, - "x": 303, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.21810167282819748, - "x_min": 0.0, - "y_max": 0.5573959350585938, - "y_min": 0.2435314953327179 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 136, - "region_id": 12450, - "roi_type": "vehicle", - "w": 168, - "x": 0, - "y": 105 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9764391481876373, - "x_min": 0.3866957724094391, - "y_max": 0.7931325435638428, - "y_min": 0.039081573486328125 - }, - "confidence": 0.708984375, - "label": "vehicle", - "label_id": 2 - }, - "h": 326, - "region_id": 12451, - "roi_type": "vehicle", - "w": 453, - "x": 297, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.20639830827713013, - "x_min": 0.0010264068841934204, - "y_max": 0.5487916022539139, - "y_min": 0.24332047998905182 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 12452, - "roi_type": "vehicle", - "w": 158, - "x": 1, - "y": 105 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1992337852716446, - "x_min": 0.0004508793354034424, - "y_max": 0.5388166904449463, - "y_min": 0.24044927954673767 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 129, - "region_id": 12453, - "roi_type": "vehicle", - "w": 153, - "x": 0, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.18727533519268036, - "x_min": 0.0016330182552337646, - "y_max": 0.5345794409513474, - "y_min": 0.22854118049144745 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 12454, - "roi_type": "vehicle", - "w": 143, - "x": 1, - "y": 99 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.17466454952955246, - "x_min": 0.0019783303141593933, - "y_max": 0.530539870262146, - "y_min": 0.22426244616508484 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 12455, - "roi_type": "vehicle", - "w": 133, - "x": 2, - "y": 97 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.16492079943418503, - "x_min": 0.003018997609615326, - "y_max": 0.523313120007515, - "y_min": 0.22057349979877472 - }, - "confidence": 0.998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 131, - "region_id": 12456, - "roi_type": "vehicle", - "w": 124, - "x": 2, - "y": 95 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15884939581155777, - "x_min": 0.0, - "y_max": 0.5263099074363708, - "y_min": 0.2229311466217041 - }, - "confidence": 0.9970703125, - "label": "vehicle", - "label_id": 2 - }, - "h": 131, - "region_id": 12457, - "roi_type": "vehicle", - "w": 122, - "x": 0, - "y": 96 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1441451609134674, - "x_min": 0.000693395733833313, - "y_max": 0.5236131399869919, - "y_min": 0.2226388305425644 - }, - "confidence": 0.990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 130, - "region_id": 12458, - "roi_type": "vehicle", - "w": 110, - "x": 1, - "y": 96 - }, - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.11497771739959717, - "y_max": 0.9465397000312805, - "y_min": 0.03637963533401489 - }, - "confidence": 0.552734375, - "label": "vehicle", - "label_id": 2 - }, - "h": 393, - "region_id": 12459, - "roi_type": "vehicle", - "w": 680, - "x": 88, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1313403695821762, - "x_min": 0.0012536048889160156, - "y_max": 0.5229455083608627, - "y_min": 0.23211054503917694 - }, - "confidence": 0.8857421875, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 12460, - "roi_type": "vehicle", - "w": 100, - "x": 1, - "y": 100 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1251680999994278, - "x_min": 0.0, - "y_max": 0.5160009860992432, - "y_min": 0.24285933375358582 - }, - "confidence": 0.74755859375, - "label": "vehicle", - "label_id": 2 - }, - "h": 118, - "region_id": 12461, - "roi_type": "vehicle", - "w": 96, - "x": 0, - "y": 105 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11142117157578468, - "x_min": 0.0006205327808856964, - "y_max": 0.5151717662811279, - "y_min": 0.23993870615959167 - }, - "confidence": 0.88330078125, - "label": "vehicle", - "label_id": 2 - }, - "h": 119, - "region_id": 12462, - "roi_type": "vehicle", - "w": 85, - "x": 0, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.09933491796255112, - "x_min": 0.0014743134379386902, - "y_max": 0.518338680267334, - "y_min": 0.23731520771980286 - }, - "confidence": 0.6923828125, - "label": "vehicle", - "label_id": 2 - }, - "h": 121, - "region_id": 12463, - "roi_type": "vehicle", - "w": 75, - "x": 1, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.08814045041799545, - "x_min": 0.0, - "y_max": 0.5179922431707382, - "y_min": 0.2371600717306137 - }, - "confidence": 0.5166015625, - "label": "vehicle", - "label_id": 2 - }, - "h": 121, - "region_id": 12464, - "roi_type": "vehicle", - "w": 68, - "x": 0, - "y": 102 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.078303974121809, - "x_min": 0.0, - "y_max": 0.5105343610048294, - "y_min": 0.23882491886615753 - }, - "confidence": 0.74951171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 12465, - "roi_type": "vehicle", - "w": 60, - "x": 0, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06655463203787804, - "x_min": 0.0006585381925106049, - "y_max": 0.5064481496810913, - "y_min": 0.23939380049705505 - }, - "confidence": 0.6376953125, - "label": "vehicle", - "label_id": 2 - }, - "h": 115, - "region_id": 12466, - "roi_type": "vehicle", - "w": 51, - "x": 1, - "y": 103 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.0942881628870964, - "x_min": 0.04302658885717392, - "y_max": 0.6302101612091064, - "y_min": 0.5369205474853516 - }, - "confidence": 0.5048828125, - "label": "vehicle", - "label_id": 2 - }, - "h": 40, - "region_id": 12467, - "roi_type": "vehicle", - "w": 39, - "x": 33, - "y": 232 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.058643946424126625, - "x_min": 0.0012939441949129105, - "y_max": 0.4994227886199951, - "y_min": 0.24962610006332397 - }, - "confidence": 0.74755859375, - "label": "vehicle", - "label_id": 2 - }, - "h": 108, - "region_id": 12468, - "roi_type": "vehicle", - "w": 44, - "x": 1, - "y": 108 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.04710671491920948, - "x_min": 0.002159060910344124, - "y_max": 0.49160075187683105, - "y_min": 0.27301615476608276 - }, - "confidence": 0.580078125, - "label": "vehicle", - "label_id": 2 - }, - "h": 94, - "region_id": 12469, - "roi_type": "vehicle", - "w": 35, - "x": 2, - "y": 118 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.038663893938064575, - "x_min": 0.0, - "y_max": 0.4893234968185425, - "y_min": 0.2736009955406189 - }, - "confidence": 0.5234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 93, - "region_id": 12470, - "roi_type": "vehicle", - "w": 30, - "x": 0, - "y": 118 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9569013714790344, - "x_min": 0.2530626654624939, - "y_max": 0.7804694473743439, - "y_min": 0.08048084378242493 - }, - "confidence": 0.66357421875, - "label": "vehicle", - "label_id": 2 - }, - "h": 302, - "region_id": 12477, - "roi_type": "vehicle", - "w": 541, - "x": 194, - "y": 35 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 27333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.05796085111796856, - "x_min": 0.003526007756590843, - "y_max": 0.2683647871017456, - "y_min": 0.09554657340049744 - }, - "confidence": 0.7578125, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 12487, - "roi_type": "person", - "w": 42, - "x": 3, - "y": 41 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06379417888820171, - "x_min": 0.007910190150141716, - "y_max": 0.2743130400776863, - "y_min": 0.10185719281435013 - }, - "confidence": 0.80126953125, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 12488, - "roi_type": "person", - "w": 43, - "x": 6, - "y": 44 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07424172759056091, - "x_min": 0.015349648892879486, - "y_max": 0.2675032541155815, - "y_min": 0.09078633040189743 - }, - "confidence": 0.892578125, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 12489, - "roi_type": "person", - "w": 45, - "x": 12, - "y": 39 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06830157898366451, - "x_min": 0.022359145805239677, - "y_max": 0.26452428847551346, - "y_min": 0.09266514331102371 - }, - "confidence": 0.9462890625, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 12490, - "roi_type": "person", - "w": 35, - "x": 17, - "y": 40 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06263137422502041, - "x_min": 0.028442716225981712, - "y_max": 0.2630351260304451, - "y_min": 0.08788127452135086 - }, - "confidence": 0.70654296875, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 12491, - "roi_type": "person", - "w": 26, - "x": 22, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07015642523765564, - "x_min": 0.038890134543180466, - "y_max": 0.2707189917564392, - "y_min": 0.08740551769733429 - }, - "confidence": 0.85986328125, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 12492, - "roi_type": "person", - "w": 24, - "x": 30, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.08970045298337936, - "x_min": 0.045083530247211456, - "y_max": 0.2602956220507622, - "y_min": 0.08799969404935837 - }, - "confidence": 0.97607421875, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 12493, - "roi_type": "person", - "w": 34, - "x": 35, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.10221833735704422, - "x_min": 0.050295390188694, - "y_max": 0.26162880659103394, - "y_min": 0.08928240835666656 - }, - "confidence": 0.96240234375, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 12494, - "roi_type": "person", - "w": 40, - "x": 39, - "y": 39 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1124647855758667, - "x_min": 0.05559557303786278, - "y_max": 0.26580512523651123, - "y_min": 0.08706669509410858 - }, - "confidence": 0.96240234375, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 12495, - "roi_type": "person", - "w": 44, - "x": 43, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11494597047567368, - "x_min": 0.06002477556467056, - "y_max": 0.2610744759440422, - "y_min": 0.0874699279665947 - }, - "confidence": 0.95947265625, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 12496, - "roi_type": "person", - "w": 42, - "x": 46, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1076885536313057, - "x_min": 0.06897159665822983, - "y_max": 0.25734183192253113, - "y_min": 0.08855894207954407 - }, - "confidence": 0.75, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 12497, - "roi_type": "person", - "w": 30, - "x": 53, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11588124930858612, - "x_min": 0.0844779908657074, - "y_max": 0.25993383675813675, - "y_min": 0.08377892524003983 - }, - "confidence": 0.94384765625, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 12498, - "roi_type": "person", - "w": 24, - "x": 65, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.14279809594154358, - "x_min": 0.08925659954547882, - "y_max": 0.2586924508213997, - "y_min": 0.08260411769151688 - }, - "confidence": 0.98095703125, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 12499, - "roi_type": "person", - "w": 41, - "x": 69, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15317003428936005, - "x_min": 0.09756682813167572, - "y_max": 0.25573694705963135, - "y_min": 0.08256407082080841 - }, - "confidence": 0.9208984375, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 12500, - "roi_type": "person", - "w": 43, - "x": 75, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15702785551548004, - "x_min": 0.09714777767658234, - "y_max": 0.25397133082151413, - "y_min": 0.08110251277685165 - }, - "confidence": 0.98291015625, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 12501, - "roi_type": "person", - "w": 46, - "x": 75, - "y": 35 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15839335322380066, - "x_min": 0.10749229788780212, - "y_max": 0.2547931671142578, - "y_min": 0.07889387011528015 - }, - "confidence": 0.9873046875, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 12502, - "roi_type": "person", - "w": 39, - "x": 83, - "y": 34 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1491146832704544, - "x_min": 0.11746441572904587, - "y_max": 0.25783464312553406, - "y_min": 0.07373198866844177 - }, - "confidence": 0.91162109375, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 12503, - "roi_type": "person", - "w": 24, - "x": 90, - "y": 32 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15772441029548645, - "x_min": 0.13126039505004883, - "y_max": 0.2508736029267311, - "y_min": 0.08296392112970352 - }, - "confidence": 0.55517578125, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 12504, - "roi_type": "person", - "w": 20, - "x": 101, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.17117199301719666, - "x_min": 0.13278326392173767, - "y_max": 0.2538791224360466, - "y_min": 0.0712466761469841 - }, - "confidence": 0.921875, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 12505, - "roi_type": "person", - "w": 29, - "x": 102, - "y": 31 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1887526512145996, - "x_min": 0.13873153924942017, - "y_max": 0.24830224364995956, - "y_min": 0.06952892988920212 - }, - "confidence": 0.9716796875, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 12506, - "roi_type": "person", - "w": 38, - "x": 107, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.198638916015625, - "x_min": 0.1424277126789093, - "y_max": 0.24426036328077316, - "y_min": 0.06967847794294357 - }, - "confidence": 0.9326171875, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 12507, - "roi_type": "person", - "w": 43, - "x": 109, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19823414087295532, - "x_min": 0.14558222889900208, - "y_max": 0.24210044741630554, - "y_min": 0.06738212704658508 - }, - "confidence": 0.9580078125, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 12508, - "roi_type": "person", - "w": 40, - "x": 112, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19666728377342224, - "x_min": 0.15930649638175964, - "y_max": 0.24701160937547684, - "y_min": 0.06952521950006485 - }, - "confidence": 0.9384765625, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 12509, - "roi_type": "person", - "w": 29, - "x": 122, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19645187258720398, - "x_min": 0.16701623797416687, - "y_max": 0.2467137724161148, - "y_min": 0.05971263349056244 - }, - "confidence": 0.81396484375, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 12510, - "roi_type": "person", - "w": 23, - "x": 128, - "y": 26 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.20708149671554565, - "x_min": 0.17690825462341309, - "y_max": 0.24018753319978714, - "y_min": 0.06553960591554642 - }, - "confidence": 0.86181640625, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 12511, - "roi_type": "person", - "w": 23, - "x": 136, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.22888699173927307, - "x_min": 0.17742937803268433, - "y_max": 0.2344159260392189, - "y_min": 0.06553412228822708 - }, - "confidence": 0.9453125, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 12512, - "roi_type": "person", - "w": 40, - "x": 136, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23775845766067505, - "x_min": 0.1861700415611267, - "y_max": 0.2327612265944481, - "y_min": 0.0673552080988884 - }, - "confidence": 0.86279296875, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 12513, - "roi_type": "person", - "w": 40, - "x": 143, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24472364783287048, - "x_min": 0.18928638100624084, - "y_max": 0.22882839292287827, - "y_min": 0.06334161013364792 - }, - "confidence": 0.939453125, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 12514, - "roi_type": "person", - "w": 43, - "x": 145, - "y": 27 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24371737241744995, - "x_min": 0.19899338483810425, - "y_max": 0.22491950541734695, - "y_min": 0.06480459123849869 - }, - "confidence": 0.91650390625, - "label": "person", - "label_id": 1 - }, - "h": 69, - "region_id": 12515, - "roi_type": "person", - "w": 34, - "x": 153, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23920945823192596, - "x_min": 0.20880557596683502, - "y_max": 0.2312590777873993, - "y_min": 0.051177769899368286 - }, - "confidence": 0.7421875, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 12516, - "roi_type": "person", - "w": 23, - "x": 160, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24577099084854126, - "x_min": 0.21508976817131042, - "y_max": 0.22445382922887802, - "y_min": 0.04580488055944443 - }, - "confidence": 0.8076171875, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 12517, - "roi_type": "person", - "w": 24, - "x": 165, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2584080398082733, - "x_min": 0.2213379144668579, - "y_max": 0.22188827395439148, - "y_min": 0.04266056418418884 - }, - "confidence": 0.9384765625, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 12518, - "roi_type": "person", - "w": 28, - "x": 170, - "y": 18 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.26847225427627563, - "x_min": 0.22314880788326263, - "y_max": 0.22252074629068375, - "y_min": 0.03724823147058487 - }, - "confidence": 0.85595703125, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 12519, - "roi_type": "person", - "w": 35, - "x": 171, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27866482734680176, - "x_min": 0.22583787143230438, - "y_max": 0.21875855326652527, - "y_min": 0.04367309808731079 - }, - "confidence": 0.94140625, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 12520, - "roi_type": "person", - "w": 41, - "x": 173, - "y": 19 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27825289964675903, - "x_min": 0.22984372079372406, - "y_max": 0.2128024399280548, - "y_min": 0.04053172469139099 - }, - "confidence": 0.89990234375, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 12521, - "roi_type": "person", - "w": 37, - "x": 177, - "y": 18 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.278627872467041, - "x_min": 0.23964999616146088, - "y_max": 0.21169210225343704, - "y_min": 0.026805169880390167 - }, - "confidence": 0.56640625, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 12522, - "roi_type": "person", - "w": 30, - "x": 184, - "y": 12 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.28468194603919983, - "x_min": 0.2542703449726105, - "y_max": 0.2149207815527916, - "y_min": 0.02619936317205429 - }, - "confidence": 0.794921875, - "label": "person", - "label_id": 1 - }, - "h": 82, - "region_id": 12523, - "roi_type": "person", - "w": 23, - "x": 195, - "y": 11 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2908972501754761, - "x_min": 0.2598450779914856, - "y_max": 0.2079339250922203, - "y_min": 0.022825680673122406 - }, - "confidence": 0.8330078125, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 12524, - "roi_type": "person", - "w": 24, - "x": 200, - "y": 10 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.30745673179626465, - "x_min": 0.26573002338409424, - "y_max": 0.19293907284736633, - "y_min": 0.02228669822216034 - }, - "confidence": 0.97802734375, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 12525, - "roi_type": "person", - "w": 32, - "x": 204, - "y": 10 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3109080493450165, - "x_min": 0.26781293749809265, - "y_max": 0.19742047786712646, - "y_min": 0.023131072521209717 - }, - "confidence": 0.96533203125, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 12526, - "roi_type": "person", - "w": 33, - "x": 206, - "y": 10 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.2956489324569702, - "x_min": 0.10402004420757294, - "y_max": 1.0, - "y_min": 0.8513724207878113 - }, - "confidence": 0.779296875, - "label": "vehicle", - "label_id": 2 - }, - "h": 64, - "region_id": 12527, - "roi_type": "vehicle", - "w": 147, - "x": 80, - "y": 368 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3159233331680298, - "x_min": 0.27413952350616455, - "y_max": 0.1829414889216423, - "y_min": 0.019071929156780243 - }, - "confidence": 0.98193359375, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 12528, - "roi_type": "person", - "w": 32, - "x": 211, - "y": 8 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3024454191327095, - "x_min": 0.08785287290811539, - "y_max": 1.0, - "y_min": 0.826200008392334 - }, - "confidence": 0.90869140625, - "label": "vehicle", - "label_id": 2 - }, - "h": 75, - "region_id": 12529, - "roi_type": "vehicle", - "w": 165, - "x": 67, - "y": 357 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3163028359413147, - "x_min": 0.279521107673645, - "y_max": 0.18253225088119507, - "y_min": 0.009588927030563354 - }, - "confidence": 0.85546875, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 12530, - "roi_type": "person", - "w": 28, - "x": 215, - "y": 4 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3072689101099968, - "x_min": 0.08985143154859543, - "y_max": 1.0, - "y_min": 0.7982624173164368 - }, - "confidence": 0.9658203125, - "label": "vehicle", - "label_id": 2 - }, - "h": 87, - "region_id": 12531, - "roi_type": "vehicle", - "w": 167, - "x": 69, - "y": 345 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.32006755471229553, - "x_min": 0.2837705910205841, - "y_max": 0.17555156350135803, - "y_min": 0.0023487508296966553 - }, - "confidence": 0.931640625, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 12532, - "roi_type": "person", - "w": 28, - "x": 218, - "y": 1 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3180421218276024, - "x_min": 0.09333022683858871, - "y_max": 0.996577262878418, - "y_min": 0.7744814157485962 - }, - "confidence": 0.998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 96, - "region_id": 12533, - "roi_type": "vehicle", - "w": 173, - "x": 72, - "y": 335 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3245868682861328, - "x_min": 0.2912326455116272, - "y_max": 0.18103285878896713, - "y_min": 0.0 - }, - "confidence": 0.93017578125, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 12534, - "roi_type": "person", - "w": 26, - "x": 224, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3213460445404053, - "x_min": 0.09354156255722046, - "y_max": 0.997982382774353, - "y_min": 0.7562445402145386 - }, - "confidence": 0.99609375, - "label": "vehicle", - "label_id": 2 - }, - "h": 104, - "region_id": 12535, - "roi_type": "vehicle", - "w": 175, - "x": 72, - "y": 327 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3375798463821411, - "x_min": 0.29701799154281616, - "y_max": 0.1681172400712967, - "y_min": 0.0 - }, - "confidence": 0.97314453125, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 12536, - "roi_type": "person", - "w": 31, - "x": 228, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3254093825817108, - "x_min": 0.09381496906280518, - "y_max": 0.9986022710800171, - "y_min": 0.7277764081954956 - }, - "confidence": 0.998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 12537, - "roi_type": "vehicle", - "w": 178, - "x": 72, - "y": 314 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34107476472854614, - "x_min": 0.2997574806213379, - "y_max": 0.15931344777345657, - "y_min": 0.0 - }, - "confidence": 0.96435546875, - "label": "person", - "label_id": 1 - }, - "h": 69, - "region_id": 12538, - "roi_type": "person", - "w": 32, - "x": 230, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3319740891456604, - "x_min": 0.09414704144001007, - "y_max": 0.9966111779212952, - "y_min": 0.7045837044715881 - }, - "confidence": 0.99609375, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 12539, - "roi_type": "vehicle", - "w": 183, - "x": 72, - "y": 304 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34646058082580566, - "x_min": 0.3028937578201294, - "y_max": 0.156146802008152, - "y_min": 0.0 - }, - "confidence": 0.984375, - "label": "person", - "label_id": 1 - }, - "h": 67, - "region_id": 12540, - "roi_type": "person", - "w": 33, - "x": 233, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3392763137817383, - "x_min": 0.09022277593612671, - "y_max": 0.9994381070137024, - "y_min": 0.6786060929298401 - }, - "confidence": 0.99609375, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "region_id": 12541, - "roi_type": "vehicle", - "w": 191, - "x": 69, - "y": 293 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34512296319007874, - "x_min": 0.30911585688591003, - "y_max": 0.15079374611377716, - "y_min": 0.0 - }, - "confidence": 0.94384765625, - "label": "person", - "label_id": 1 - }, - "h": 65, - "region_id": 12542, - "roi_type": "person", - "w": 28, - "x": 237, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.34184062480926514, - "x_min": 0.09453167021274567, - "y_max": 1.0, - "y_min": 0.6524904370307922 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 150, - "region_id": 12543, - "roi_type": "vehicle", - "w": 190, - "x": 73, - "y": 282 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34818318486213684, - "x_min": 0.31593766808509827, - "y_max": 0.14530643820762634, - "y_min": 0.0 - }, - "confidence": 0.96337890625, - "label": "person", - "label_id": 1 - }, - "h": 63, - "region_id": 12544, - "roi_type": "person", - "w": 25, - "x": 243, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.34417855739593506, - "x_min": 0.09946362674236298, - "y_max": 0.999272882938385, - "y_min": 0.6353164315223694 - }, - "confidence": 0.998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 157, - "region_id": 12545, - "roi_type": "vehicle", - "w": 188, - "x": 76, - "y": 274 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35314884781837463, - "x_min": 0.32001474499702454, - "y_max": 0.14837931841611862, - "y_min": 0.0 - }, - "confidence": 0.87060546875, - "label": "person", - "label_id": 1 - }, - "h": 64, - "region_id": 12546, - "roi_type": "person", - "w": 25, - "x": 246, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3492073640227318, - "x_min": 0.10767313092947006, - "y_max": 1.0, - "y_min": 0.6190989017486572 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 165, - "region_id": 12547, - "roi_type": "vehicle", - "w": 185, - "x": 83, - "y": 267 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35834217071533203, - "x_min": 0.3240100145339966, - "y_max": 0.14449387788772583, - "y_min": 0.0 - }, - "confidence": 0.78515625, - "label": "person", - "label_id": 1 - }, - "h": 62, - "region_id": 12548, - "roi_type": "person", - "w": 26, - "x": 249, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3576863408088684, - "x_min": 0.11795952916145325, - "y_max": 0.9962477087974548, - "y_min": 0.5935474038124084 - }, - "confidence": 0.9951171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 174, - "region_id": 12549, - "roi_type": "vehicle", - "w": 184, - "x": 91, - "y": 256 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3616437613964081, - "x_min": 0.3287608325481415, - "y_max": 0.14139731973409653, - "y_min": 0.0 - }, - "confidence": 0.6171875, - "label": "person", - "label_id": 1 - }, - "h": 61, - "region_id": 12550, - "roi_type": "person", - "w": 25, - "x": 252, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3568938076496124, - "x_min": 0.1184740960597992, - "y_max": 0.9960288405418396, - "y_min": 0.5713207125663757 - }, - "confidence": 0.9951171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 183, - "region_id": 12551, - "roi_type": "vehicle", - "w": 183, - "x": 91, - "y": 247 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3645513355731964, - "x_min": 0.3319735825061798, - "y_max": 0.14285987615585327, - "y_min": 0.0 - }, - "confidence": 0.88134765625, - "label": "person", - "label_id": 1 - }, - "h": 62, - "region_id": 12552, - "roi_type": "person", - "w": 25, - "x": 255, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3612084537744522, - "x_min": 0.10926742851734161, - "y_max": 1.0, - "y_min": 0.5522088408470154 - }, - "confidence": 0.998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 193, - "region_id": 12553, - "roi_type": "vehicle", - "w": 193, - "x": 84, - "y": 239 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3690513074398041, - "x_min": 0.3348962962627411, - "y_max": 0.13076193630695343, - "y_min": 0.0 - }, - "confidence": 0.53564453125, - "label": "person", - "label_id": 1 - }, - "h": 56, - "region_id": 12554, - "roi_type": "person", - "w": 26, - "x": 257, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3626910224556923, - "x_min": 0.1165127232670784, - "y_max": 1.0, - "y_min": 0.5341740250587463 - }, - "confidence": 0.9921875, - "label": "vehicle", - "label_id": 2 - }, - "h": 201, - "region_id": 12555, - "roi_type": "vehicle", - "w": 189, - "x": 89, - "y": 231 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3653745725750923, - "x_min": 0.11738703399896622, - "y_max": 1.0, - "y_min": 0.5187159776687622 - }, - "confidence": 0.984375, - "label": "vehicle", - "label_id": 2 - }, - "h": 208, - "region_id": 12556, - "roi_type": "vehicle", - "w": 190, - "x": 90, - "y": 224 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35986167192459106, - "x_min": 0.11861021816730499, - "y_max": 1.0, - "y_min": 0.5067421197891235 - }, - "confidence": 0.97998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "region_id": 12557, - "roi_type": "vehicle", - "w": 185, - "x": 91, - "y": 219 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3583891987800598, - "x_min": 0.12578806281089783, - "y_max": 1.0, - "y_min": 0.48726680874824524 - }, - "confidence": 0.96142578125, - "label": "vehicle", - "label_id": 2 - }, - "h": 222, - "region_id": 12558, - "roi_type": "vehicle", - "w": 179, - "x": 97, - "y": 210 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36830934882164, - "x_min": 0.13284197449684143, - "y_max": 1.0, - "y_min": 0.4726431965827942 - }, - "confidence": 0.9716796875, - "label": "vehicle", - "label_id": 2 - }, - "h": 228, - "region_id": 12559, - "roi_type": "vehicle", - "w": 181, - "x": 102, - "y": 204 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3714140057563782, - "x_min": 0.1372305154800415, - "y_max": 0.9820627868175507, - "y_min": 0.45351001620292664 - }, - "confidence": 0.9912109375, - "label": "vehicle", - "label_id": 2 - }, - "h": 228, - "region_id": 12560, - "roi_type": "vehicle", - "w": 180, - "x": 105, - "y": 196 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3608435392379761, - "x_min": 0.14590299129486084, - "y_max": 0.9431758522987366, - "y_min": 0.4430229067802429 - }, - "confidence": 0.9970703125, - "label": "vehicle", - "label_id": 2 - }, - "h": 216, - "region_id": 12561, - "roi_type": "vehicle", - "w": 165, - "x": 112, - "y": 191 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3668741285800934, - "x_min": 0.15882495045661926, - "y_max": 0.9358053803443909, - "y_min": 0.41585129499435425 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 225, - "region_id": 12562, - "roi_type": "vehicle", - "w": 160, - "x": 122, - "y": 180 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3655020594596863, - "x_min": 0.1626676321029663, - "y_max": 0.903299480676651, - "y_min": 0.39908042550086975 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 218, - "region_id": 12563, - "roi_type": "vehicle", - "w": 156, - "x": 125, - "y": 172 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36492133140563965, - "x_min": 0.17409741878509521, - "y_max": 0.8789278864860535, - "y_min": 0.38409990072250366 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "region_id": 12564, - "roi_type": "vehicle", - "w": 147, - "x": 134, - "y": 166 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3610725998878479, - "x_min": 0.17910504341125488, - "y_max": 0.8557292222976685, - "y_min": 0.3645592927932739 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 212, - "region_id": 12565, - "roi_type": "vehicle", - "w": 140, - "x": 138, - "y": 157 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3623489737510681, - "x_min": 0.18269610404968262, - "y_max": 0.824630856513977, - "y_min": 0.34558507800102234 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 207, - "region_id": 12566, - "roi_type": "vehicle", - "w": 138, - "x": 140, - "y": 149 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36165374517440796, - "x_min": 0.18928389251232147, - "y_max": 0.7933508157730103, - "y_min": 0.32612988352775574 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 202, - "region_id": 12567, - "roi_type": "vehicle", - "w": 132, - "x": 145, - "y": 141 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3588729202747345, - "x_min": 0.1904868185520172, - "y_max": 0.7664351463317871, - "y_min": 0.3122572898864746 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 196, - "region_id": 12568, - "roi_type": "vehicle", - "w": 129, - "x": 146, - "y": 135 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35344889760017395, - "x_min": 0.1925678551197052, - "y_max": 0.7419216632843018, - "y_min": 0.29417183995246887 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 193, - "region_id": 12569, - "roi_type": "vehicle", - "w": 124, - "x": 148, - "y": 127 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34998437762260437, - "x_min": 0.19450798630714417, - "y_max": 0.7181348204612732, - "y_min": 0.2771528959274292 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 191, - "region_id": 12570, - "roi_type": "vehicle", - "w": 119, - "x": 149, - "y": 120 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3468645513057709, - "x_min": 0.20163050293922424, - "y_max": 0.6970539093017578, - "y_min": 0.26379626989364624 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 187, - "region_id": 12571, - "roi_type": "vehicle", - "w": 112, - "x": 155, - "y": 114 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3438488245010376, - "x_min": 0.19813984632492065, - "y_max": 0.6573256850242615, - "y_min": 0.25968676805496216 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 172, - "region_id": 12572, - "roi_type": "vehicle", - "w": 112, - "x": 152, - "y": 112 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34153616428375244, - "x_min": 0.19358372688293457, - "y_max": 0.6417610496282578, - "y_min": 0.24385033547878265 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 172, - "region_id": 12573, - "roi_type": "vehicle", - "w": 114, - "x": 149, - "y": 105 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33885127305984497, - "x_min": 0.19029003381729126, - "y_max": 0.6309741288423538, - "y_min": 0.2230658084154129 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 176, - "region_id": 12574, - "roi_type": "vehicle", - "w": 114, - "x": 146, - "y": 96 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3374425172805786, - "x_min": 0.18768715858459473, - "y_max": 0.5997136831283569, - "y_min": 0.2070835530757904 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 170, - "region_id": 12575, - "roi_type": "vehicle", - "w": 115, - "x": 144, - "y": 89 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3319251835346222, - "x_min": 0.17804953455924988, - "y_max": 0.5778214484453201, - "y_min": 0.1903323084115982 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 167, - "region_id": 12576, - "roi_type": "vehicle", - "w": 118, - "x": 137, - "y": 82 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3352878987789154, - "x_min": 0.16757449507713318, - "y_max": 0.562267541885376, - "y_min": 0.1759682595729828 - }, - "confidence": 0.9970703125, - "label": "vehicle", - "label_id": 2 - }, - "h": 167, - "region_id": 12577, - "roi_type": "vehicle", - "w": 129, - "x": 129, - "y": 76 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33062705397605896, - "x_min": 0.15925559401512146, - "y_max": 0.5358074903488159, - "y_min": 0.16202977299690247 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 161, - "region_id": 12578, - "roi_type": "vehicle", - "w": 132, - "x": 122, - "y": 70 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3260734975337982, - "x_min": 0.14722785353660583, - "y_max": 0.5155544728040695, - "y_min": 0.157257542014122 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 155, - "region_id": 12579, - "roi_type": "vehicle", - "w": 137, - "x": 113, - "y": 68 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3224096894264221, - "x_min": 0.13780492544174194, - "y_max": 0.501104936003685, - "y_min": 0.15674106776714325 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 149, - "region_id": 12580, - "roi_type": "vehicle", - "w": 142, - "x": 106, - "y": 68 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3169931545853615, - "x_min": 0.12483716756105423, - "y_max": 0.4827064722776413, - "y_min": 0.1493421047925949 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 144, - "region_id": 12581, - "roi_type": "vehicle", - "w": 148, - "x": 96, - "y": 65 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3122137784957886, - "x_min": 0.10267382860183716, - "y_max": 0.47069355845451355, - "y_min": 0.1459626853466034 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 140, - "region_id": 12582, - "roi_type": "vehicle", - "w": 161, - "x": 79, - "y": 63 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.30563071370124817, - "x_min": 0.08968502283096313, - "y_max": 0.4555247873067856, - "y_min": 0.1361779421567917 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 138, - "region_id": 12583, - "roi_type": "vehicle", - "w": 166, - "x": 69, - "y": 59 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2940587177872658, - "x_min": 0.07481119781732559, - "y_max": 0.44223855435848236, - "y_min": 0.13631980121135712 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 12584, - "roi_type": "vehicle", - "w": 168, - "x": 57, - "y": 59 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2887636423110962, - "x_min": 0.06353342533111572, - "y_max": 0.4263155907392502, - "y_min": 0.1369212120771408 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 125, - "region_id": 12585, - "roi_type": "vehicle", - "w": 173, - "x": 49, - "y": 59 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2807242274284363, - "x_min": 0.04622665047645569, - "y_max": 0.41277608275413513, - "y_min": 0.132420152425766 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 121, - "region_id": 12586, - "roi_type": "vehicle", - "w": 180, - "x": 36, - "y": 57 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2704925760626793, - "x_min": 0.032000623643398285, - "y_max": 0.4054313004016876, - "y_min": 0.131648451089859 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 118, - "region_id": 12587, - "roi_type": "vehicle", - "w": 183, - "x": 25, - "y": 57 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2576461434364319, - "x_min": 0.018010497093200684, - "y_max": 0.3983272910118103, - "y_min": 0.1276540756225586 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 12588, - "roi_type": "vehicle", - "w": 184, - "x": 14, - "y": 55 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24717597663402557, - "x_min": 0.004194930195808411, - "y_max": 0.3936364948749542, - "y_min": 0.12304255366325378 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 12589, - "roi_type": "vehicle", - "w": 187, - "x": 3, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23502223938703537, - "x_min": 0.005615077912807465, - "y_max": 0.39088256657123566, - "y_min": 0.12330974638462067 - }, - "confidence": 0.998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 116, - "region_id": 12590, - "roi_type": "vehicle", - "w": 176, - "x": 4, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.22485587745904922, - "x_min": 0.0017657950520515442, - "y_max": 0.3853496015071869, - "y_min": 0.1245599091053009 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 113, - "region_id": 12591, - "roi_type": "vehicle", - "w": 171, - "x": 1, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.21659931540489197, - "x_min": 0.0022316277027130127, - "y_max": 0.3794732093811035, - "y_min": 0.12392610311508179 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 110, - "region_id": 12592, - "roi_type": "vehicle", - "w": 165, - "x": 2, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2029200717806816, - "x_min": 0.0007590577006340027, - "y_max": 0.37220699340105057, - "y_min": 0.12221232801675797 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 108, - "region_id": 12593, - "roi_type": "vehicle", - "w": 155, - "x": 1, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.18482676148414612, - "x_min": 0.0, - "y_max": 0.36792203038930893, - "y_min": 0.12216844409704208 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 106, - "region_id": 12594, - "roi_type": "vehicle", - "w": 142, - "x": 0, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1738429069519043, - "x_min": 0.0, - "y_max": 0.3633963465690613, - "y_min": 0.11975441873073578 - }, - "confidence": 0.9951171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 105, - "region_id": 12595, - "roi_type": "vehicle", - "w": 134, - "x": 0, - "y": 52 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.16032805293798447, - "x_min": 0.0, - "y_max": 0.358875572681427, - "y_min": 0.12134051322937012 - }, - "confidence": 0.98388671875, - "label": "vehicle", - "label_id": 2 - }, - "h": 103, - "region_id": 12596, - "roi_type": "vehicle", - "w": 123, - "x": 0, - "y": 52 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1480599343776703, - "x_min": 2.3692846298217773e-06, - "y_max": 0.3564804494380951, - "y_min": 0.1216433048248291 - }, - "confidence": 0.95703125, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "region_id": 12597, - "roi_type": "vehicle", - "w": 114, - "x": 0, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.13580363243818283, - "x_min": 0.0, - "y_max": 0.3569759950041771, - "y_min": 0.12307702749967575 - }, - "confidence": 0.794921875, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "region_id": 12598, - "roi_type": "vehicle", - "w": 104, - "x": 0, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11234281957149506, - "x_min": 0.0019840747117996216, - "y_max": 0.3554091155529022, - "y_min": 0.12587442994117737 - }, - "confidence": 0.6865234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 99, - "region_id": 12599, - "roi_type": "vehicle", - "w": 85, - "x": 2, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.09860633686184883, - "x_min": 0.003699634224176407, - "y_max": 0.3584703207015991, - "y_min": 0.1261626034975052 - }, - "confidence": 0.7734375, - "label": "vehicle", - "label_id": 2 - }, - "h": 100, - "region_id": 12600, - "roi_type": "vehicle", - "w": 73, - "x": 3, - "y": 55 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.0877152867615223, - "x_min": 0.0017236806452274323, - "y_max": 0.3632138967514038, - "y_min": 0.12957501411437988 - }, - "confidence": 0.6171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "region_id": 12601, - "roi_type": "vehicle", - "w": 66, - "x": 1, - "y": 56 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07340044155716896, - "x_min": 0.004111398011445999, - "y_max": 0.3508581221103668, - "y_min": 0.14412924647331238 - }, - "confidence": 0.65478515625, - "label": "vehicle", - "label_id": 2 - }, - "h": 89, - "region_id": 12602, - "roi_type": "vehicle", - "w": 53, - "x": 3, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06271997094154358, - "x_min": 0.0, - "y_max": 0.3495235741138458, - "y_min": 0.14369750022888184 - }, - "confidence": 0.68505859375, - "label": "vehicle", - "label_id": 2 - }, - "h": 89, - "region_id": 12603, - "roi_type": "vehicle", - "w": 48, - "x": 0, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.049724431708455086, - "x_min": 0.0, - "y_max": 0.34245553612709045, - "y_min": 0.14341771602630615 - }, - "confidence": 0.63525390625, - "label": "vehicle", - "label_id": 2 - }, - "h": 86, - "region_id": 12604, - "roi_type": "vehicle", - "w": 38, - "x": 0, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49250000000 - } - ] -} \ No newline at end of file diff --git a/tests/test_cases/pipeline_execution/gpu/object_tracking_gpu_gstreamer.json b/tests/test_cases/pipeline_execution/gpu/object_tracking_gpu_gstreamer.json deleted file mode 100644 index 07bab44..0000000 --- a/tests/test_cases/pipeline_execution/gpu/object_tracking_gpu_gstreamer.json +++ /dev/null @@ -1,10089 +0,0 @@ -{ - "options": {}, - "pipeline": { - "name": "object_tracking", - "version": "person_vehicle_bike" - }, - "request": { - "source": { - "type": "uri", - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4" - }, - "destination": { - "type": "file", - "path": "/tmp/object_tracking_gpu_results.json", - "format": "json-lines" - }, - "parameters": { - "detection-device": "GPU", - "classification-device": "GPU", - "detection-model-instance-id": "gpu_tracking_detection", - "classification-model-instance-id": "gpu_tracking_classification" - } - }, - "numerical_tolerance": 0.3, - "result": [ - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7450754046440125, - "x_min": 0.6731894612312317, - "y_max": 0.9991127848625183, - "y_min": 0.8780452609062195 - }, - "confidence": 0.541015625, - "label": "person", - "label_id": 1 - }, - "h": 52, - "id": 1, - "region_id": 15808, - "roi_type": "person", - "w": 55, - "x": 517, - "y": 379 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7440981268882751, - "x_min": 0.6758646368980408, - "y_max": 1.0, - "y_min": 0.827924907207489 - }, - "confidence": 0.54345703125, - "label": "person", - "label_id": 1 - }, - "h": 74, - "id": 2, - "region_id": 15809, - "roi_type": "person", - "w": 52, - "x": 519, - "y": 358 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7466071248054504, - "x_min": 0.6823329329490662, - "y_max": 1.0, - "y_min": 0.8108165264129639 - }, - "confidence": 0.66796875, - "label": "person", - "label_id": 1 - }, - "h": 82, - "id": 2, - "region_id": 15810, - "roi_type": "person", - "w": 49, - "x": 524, - "y": 350 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7479705214500427, - "x_min": 0.6836908459663391, - "y_max": 1.0, - "y_min": 0.7869881391525269 - }, - "confidence": 0.88037109375, - "label": "person", - "label_id": 1 - }, - "h": 92, - "id": 2, - "region_id": 15811, - "roi_type": "person", - "w": 49, - "x": 525, - "y": 340 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7501941323280334, - "x_min": 0.683894693851471, - "y_max": 0.9971110224723816, - "y_min": 0.771379292011261 - }, - "confidence": 0.931640625, - "label": "person", - "label_id": 1 - }, - "h": 98, - "id": 2, - "region_id": 15812, - "roi_type": "person", - "w": 51, - "x": 525, - "y": 333 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7552652359008789, - "x_min": 0.6827793121337891, - "y_max": 0.9931315779685974, - "y_min": 0.7555018067359924 - }, - "confidence": 0.9248046875, - "label": "person", - "label_id": 1 - }, - "h": 103, - "id": 2, - "region_id": 15813, - "roi_type": "person", - "w": 56, - "x": 524, - "y": 326 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7565565705299377, - "x_min": 0.6830658316612244, - "y_max": 0.9888202548027039, - "y_min": 0.7450335621833801 - }, - "confidence": 0.94921875, - "label": "person", - "label_id": 1 - }, - "h": 105, - "id": 2, - "region_id": 15815, - "roi_type": "person", - "w": 56, - "x": 525, - "y": 322 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7581809759140015, - "x_min": 0.6870932579040527, - "y_max": 0.9743094444274902, - "y_min": 0.723680853843689 - }, - "confidence": 0.9560546875, - "label": "person", - "label_id": 1 - }, - "h": 108, - "id": 2, - "region_id": 15816, - "roi_type": "person", - "w": 55, - "x": 528, - "y": 313 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7575687766075134, - "x_min": 0.6909058690071106, - "y_max": 0.9489275217056274, - "y_min": 0.7130314111709595 - }, - "confidence": 0.87158203125, - "label": "person", - "label_id": 1 - }, - "h": 102, - "id": 2, - "region_id": 15817, - "roi_type": "person", - "w": 51, - "x": 531, - "y": 308 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.756697416305542, - "x_min": 0.693425178527832, - "y_max": 0.9018371105194092, - "y_min": 0.7055492401123047 - }, - "confidence": 0.888671875, - "label": "person", - "label_id": 1 - }, - "h": 85, - "id": 2, - "region_id": 15818, - "roi_type": "person", - "w": 49, - "x": 533, - "y": 305 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7573454976081848, - "x_min": 0.6979058384895325, - "y_max": 0.8756023645401001, - "y_min": 0.6885020732879639 - }, - "confidence": 0.8759765625, - "label": "person", - "label_id": 1 - }, - "h": 81, - "id": 2, - "region_id": 15819, - "roi_type": "person", - "w": 46, - "x": 536, - "y": 297 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.763081967830658, - "x_min": 0.6965207457542419, - "y_max": 0.9013386964797974, - "y_min": 0.6667746305465698 - }, - "confidence": 0.697265625, - "label": "person", - "label_id": 1 - }, - "h": 101, - "id": 2, - "region_id": 15820, - "roi_type": "person", - "w": 51, - "x": 535, - "y": 288 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7638378739356995, - "x_min": 0.6945894360542297, - "y_max": 0.897483229637146, - "y_min": 0.6505343914031982 - }, - "confidence": 0.7373046875, - "label": "person", - "label_id": 1 - }, - "h": 107, - "id": 2, - "region_id": 15821, - "roi_type": "person", - "w": 53, - "x": 533, - "y": 281 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7640742063522339, - "x_min": 0.7027362585067749, - "y_max": 0.8511595726013184, - "y_min": 0.6484842300415039 - }, - "confidence": 0.6669921875, - "label": "person", - "label_id": 1 - }, - "h": 88, - "id": 2, - "region_id": 15822, - "roi_type": "person", - "w": 47, - "x": 540, - "y": 280 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7668865323066711, - "x_min": 0.7063930630683899, - "y_max": 0.830226719379425, - "y_min": 0.629843533039093 - }, - "confidence": 0.927734375, - "label": "person", - "label_id": 1 - }, - "h": 87, - "id": 2, - "region_id": 15823, - "roi_type": "person", - "w": 46, - "x": 543, - "y": 272 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7724691033363342, - "x_min": 0.7098849415779114, - "y_max": 0.8254351615905762, - "y_min": 0.6172851324081421 - }, - "confidence": 0.693359375, - "label": "person", - "label_id": 1 - }, - "h": 90, - "id": 2, - "region_id": 15824, - "roi_type": "person", - "w": 48, - "x": 545, - "y": 267 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7740265727043152, - "x_min": 0.7090769410133362, - "y_max": 0.82144695520401, - "y_min": 0.6101848483085632 - }, - "confidence": 0.75, - "label": "person", - "label_id": 1 - }, - "h": 91, - "id": 2, - "region_id": 15825, - "roi_type": "person", - "w": 50, - "x": 545, - "y": 264 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7839817404747009, - "x_min": 0.7257370352745056, - "y_max": 0.7586237192153931, - "y_min": 0.5558692216873169 - }, - "confidence": 0.71728515625, - "label": "person", - "label_id": 1 - }, - "h": 88, - "id": 2, - "region_id": 15826, - "roi_type": "person", - "w": 45, - "x": 557, - "y": 240 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.78947514295578, - "x_min": 0.7327013611793518, - "y_max": 0.7261707782745361, - "y_min": 0.5484710931777954 - }, - "confidence": 0.97509765625, - "label": "person", - "label_id": 1 - }, - "h": 77, - "id": 2, - "region_id": 15827, - "roi_type": "person", - "w": 44, - "x": 563, - "y": 237 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7890066504478455, - "x_min": 0.7377496361732483, - "y_max": 0.7029215097427368, - "y_min": 0.5400267839431763 - }, - "confidence": 0.84326171875, - "label": "person", - "label_id": 1 - }, - "h": 70, - "id": 2, - "region_id": 15828, - "roi_type": "person", - "w": 39, - "x": 567, - "y": 233 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7952556610107422, - "x_min": 0.7402281761169434, - "y_max": 0.6923619508743286, - "y_min": 0.5218515396118164 - }, - "confidence": 0.76513671875, - "label": "person", - "label_id": 1 - }, - "h": 74, - "id": 2, - "region_id": 15829, - "roi_type": "person", - "w": 42, - "x": 568, - "y": 225 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8006601333618164, - "x_min": 0.7462418079376221, - "y_max": 0.6883482336997986, - "y_min": 0.5218518376350403 - }, - "confidence": 0.87890625, - "label": "person", - "label_id": 1 - }, - "h": 72, - "id": 2, - "region_id": 15830, - "roi_type": "person", - "w": 42, - "x": 573, - "y": 225 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8098742365837097, - "x_min": 0.7456627488136292, - "y_max": 0.7028436660766602, - "y_min": 0.5027613639831543 - }, - "confidence": 0.91259765625, - "label": "person", - "label_id": 1 - }, - "h": 86, - "id": 2, - "region_id": 15831, - "roi_type": "person", - "w": 49, - "x": 573, - "y": 217 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8130742311477661, - "x_min": 0.7562228441238403, - "y_max": 0.6840891242027283, - "y_min": 0.49621087312698364 - }, - "confidence": 0.91357421875, - "label": "person", - "label_id": 1 - }, - "h": 81, - "id": 2, - "region_id": 15832, - "roi_type": "person", - "w": 44, - "x": 581, - "y": 214 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8229447603225708, - "x_min": 0.763748288154602, - "y_max": 0.6856093406677246, - "y_min": 0.4886976480484009 - }, - "confidence": 0.833984375, - "label": "person", - "label_id": 1 - }, - "h": 85, - "id": 2, - "region_id": 15835, - "roi_type": "person", - "w": 45, - "x": 587, - "y": 211 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8231713771820068, - "x_min": 0.7604347467422485, - "y_max": 0.6921271681785583, - "y_min": 0.4757062494754791 - }, - "confidence": 0.68359375, - "label": "person", - "label_id": 1 - }, - "h": 93, - "id": 2, - "region_id": 15838, - "roi_type": "person", - "w": 48, - "x": 584, - "y": 206 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8320498466491699, - "x_min": 0.7603206634521484, - "y_max": 0.6944458484649658, - "y_min": 0.46570658683776855 - }, - "confidence": 0.59033203125, - "label": "person", - "label_id": 1 - }, - "h": 99, - "id": 2, - "region_id": 15839, - "roi_type": "person", - "w": 55, - "x": 584, - "y": 201 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8428041338920593, - "x_min": 0.7936063408851624, - "y_max": 0.6421533823013306, - "y_min": 0.43810799717903137 - }, - "confidence": 0.9658203125, - "label": "person", - "label_id": 1 - }, - "h": 88, - "id": 2, - "region_id": 15840, - "roi_type": "person", - "w": 38, - "x": 609, - "y": 189 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8495814800262451, - "x_min": 0.7967391014099121, - "y_max": 0.6154407858848572, - "y_min": 0.44311457872390747 - }, - "confidence": 0.88671875, - "label": "person", - "label_id": 1 - }, - "h": 74, - "id": 2, - "region_id": 15841, - "roi_type": "person", - "w": 41, - "x": 612, - "y": 191 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8531036972999573, - "x_min": 0.8009379506111145, - "y_max": 0.605356752872467, - "y_min": 0.42972689867019653 - }, - "confidence": 0.90478515625, - "label": "person", - "label_id": 1 - }, - "h": 76, - "id": 2, - "region_id": 15844, - "roi_type": "person", - "w": 40, - "x": 615, - "y": 186 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8602517247200012, - "x_min": 0.8060665726661682, - "y_max": 0.5925722122192383, - "y_min": 0.4272420406341553 - }, - "confidence": 0.802734375, - "label": "person", - "label_id": 1 - }, - "h": 71, - "id": 2, - "region_id": 15846, - "roi_type": "person", - "w": 42, - "x": 619, - "y": 185 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8662797212600708, - "x_min": 0.8103095293045044, - "y_max": 0.5944654941558838, - "y_min": 0.4206693172454834 - }, - "confidence": 0.76953125, - "label": "person", - "label_id": 1 - }, - "h": 75, - "id": 2, - "region_id": 15848, - "roi_type": "person", - "w": 43, - "x": 622, - "y": 182 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8742167353630066, - "x_min": 0.817884624004364, - "y_max": 0.5900445580482483, - "y_min": 0.4136499762535095 - }, - "confidence": 0.95703125, - "label": "person", - "label_id": 1 - }, - "h": 76, - "id": 2, - "region_id": 15849, - "roi_type": "person", - "w": 43, - "x": 628, - "y": 179 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8853930830955505, - "x_min": 0.826438844203949, - "y_max": 0.586012601852417, - "y_min": 0.40271833539009094 - }, - "confidence": 0.8271484375, - "label": "person", - "label_id": 1 - }, - "h": 79, - "id": 2, - "region_id": 15851, - "roi_type": "person", - "w": 45, - "x": 635, - "y": 174 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8913269639015198, - "x_min": 0.834475576877594, - "y_max": 0.5893236994743347, - "y_min": 0.3930070996284485 - }, - "confidence": 0.7890625, - "label": "person", - "label_id": 1 - }, - "h": 85, - "id": 2, - "region_id": 15852, - "roi_type": "person", - "w": 44, - "x": 641, - "y": 170 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9005622863769531, - "x_min": 0.8355872631072998, - "y_max": 0.587836503982544, - "y_min": 0.3939674496650696 - }, - "confidence": 0.65576171875, - "label": "person", - "label_id": 1 - }, - "h": 84, - "id": 2, - "region_id": 15853, - "roi_type": "person", - "w": 50, - "x": 642, - "y": 170 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9087395668029785, - "x_min": 0.8530853986740112, - "y_max": 0.5614248514175415, - "y_min": 0.3760519027709961 - }, - "confidence": 0.62646484375, - "label": "person", - "label_id": 1 - }, - "h": 80, - "id": 2, - "region_id": 15854, - "roi_type": "person", - "w": 43, - "x": 655, - "y": 162 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9123356938362122, - "x_min": 0.8665536046028137, - "y_max": 0.5443816184997559, - "y_min": 0.3672276437282562 - }, - "confidence": 0.8828125, - "label": "person", - "label_id": 1 - }, - "h": 77, - "id": 2, - "region_id": 15855, - "roi_type": "person", - "w": 35, - "x": 666, - "y": 159 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9202427864074707, - "x_min": 0.8713085651397705, - "y_max": 0.5296249389648438, - "y_min": 0.3523065745830536 - }, - "confidence": 0.97705078125, - "label": "person", - "label_id": 1 - }, - "h": 77, - "id": 2, - "region_id": 15856, - "roi_type": "person", - "w": 38, - "x": 669, - "y": 152 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9222867488861084, - "x_min": 0.8776892423629761, - "y_max": 0.5221399664878845, - "y_min": 0.3504602313041687 - }, - "confidence": 0.92431640625, - "label": "person", - "label_id": 1 - }, - "h": 74, - "id": 2, - "region_id": 15857, - "roi_type": "person", - "w": 34, - "x": 674, - "y": 151 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9280626177787781, - "x_min": 0.872081458568573, - "y_max": 0.5193465352058411, - "y_min": 0.34443533420562744 - }, - "confidence": 0.7626953125, - "label": "person", - "label_id": 1 - }, - "h": 76, - "id": 2, - "region_id": 15858, - "roi_type": "person", - "w": 43, - "x": 670, - "y": 149 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9372737407684326, - "x_min": 0.8854783773422241, - "y_max": 0.5109970569610596, - "y_min": 0.34280145168304443 - }, - "confidence": 0.95166015625, - "label": "person", - "label_id": 1 - }, - "h": 73, - "id": 2, - "region_id": 15859, - "roi_type": "person", - "w": 40, - "x": 680, - "y": 148 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9448143243789673, - "x_min": 0.8897277116775513, - "y_max": 0.5036752820014954, - "y_min": 0.3363150954246521 - }, - "confidence": 0.9072265625, - "label": "person", - "label_id": 1 - }, - "h": 72, - "id": 2, - "region_id": 15860, - "roi_type": "person", - "w": 42, - "x": 683, - "y": 145 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9548877477645874, - "x_min": 0.8982136249542236, - "y_max": 0.5104914307594299, - "y_min": 0.3243568241596222 - }, - "confidence": 0.771484375, - "label": "person", - "label_id": 1 - }, - "h": 80, - "id": 2, - "region_id": 15861, - "roi_type": "person", - "w": 44, - "x": 690, - "y": 140 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9616000652313232, - "x_min": 0.9061682224273682, - "y_max": 0.5174671411514282, - "y_min": 0.3264445662498474 - }, - "confidence": 0.77392578125, - "label": "person", - "label_id": 1 - }, - "h": 83, - "id": 2, - "region_id": 15862, - "roi_type": "person", - "w": 43, - "x": 696, - "y": 141 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9738823771476746, - "x_min": 0.9143497347831726, - "y_max": 0.49129024147987366, - "y_min": 0.31767210364341736 - }, - "confidence": 0.7880859375, - "label": "person", - "label_id": 1 - }, - "h": 75, - "id": 2, - "region_id": 15863, - "roi_type": "person", - "w": 46, - "x": 702, - "y": 137 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9758822321891785, - "x_min": 0.9256947636604309, - "y_max": 0.4858596622943878, - "y_min": 0.30410680174827576 - }, - "confidence": 0.72509765625, - "label": "person", - "label_id": 1 - }, - "h": 79, - "id": 2, - "region_id": 15864, - "roi_type": "person", - "w": 39, - "x": 711, - "y": 131 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9817521572113037, - "x_min": 0.9286510944366455, - "y_max": 0.47783294320106506, - "y_min": 0.29440435767173767 - }, - "confidence": 0.82958984375, - "label": "person", - "label_id": 1 - }, - "h": 79, - "id": 2, - "region_id": 15865, - "roi_type": "person", - "w": 41, - "x": 713, - "y": 127 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9829116463661194, - "x_min": 0.9320533871650696, - "y_max": 0.4618929624557495, - "y_min": 0.2908490300178528 - }, - "confidence": 0.9697265625, - "label": "person", - "label_id": 1 - }, - "h": 74, - "id": 2, - "region_id": 15866, - "roi_type": "person", - "w": 39, - "x": 716, - "y": 126 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.985581636428833, - "x_min": 0.9315074682235718, - "y_max": 0.4598333239555359, - "y_min": 0.28892290592193604 - }, - "confidence": 0.681640625, - "label": "person", - "label_id": 1 - }, - "h": 74, - "id": 2, - "region_id": 15867, - "roi_type": "person", - "w": 42, - "x": 715, - "y": 125 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9978788495063782, - "x_min": 0.9291815161705017, - "y_max": 0.4698169529438019, - "y_min": 0.2596692740917206 - }, - "confidence": 0.5927734375, - "label": "person", - "label_id": 1 - }, - "h": 91, - "id": 2, - "region_id": 15868, - "roi_type": "person", - "w": 53, - "x": 714, - "y": 112 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9965602159500122, - "x_min": 0.9486868381500244, - "y_max": 0.44712570309638977, - "y_min": 0.2673933207988739 - }, - "confidence": 0.55322265625, - "label": "person", - "label_id": 1 - }, - "h": 78, - "id": 2, - "region_id": 15869, - "roi_type": "person", - "w": 37, - "x": 729, - "y": 116 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.703125, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.11995124816894531, - "y_max": 0.9913916289806366, - "y_min": 0.016854017972946167 - }, - "confidence": 0.62158203125, - "label": "vehicle", - "label_id": 2 - }, - "h": 421, - "id": 3, - "region_id": 15870, - "roi_type": "vehicle", - "type": { - "confidence": 0.97705078125, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 676, - "x": 92, - "y": 7 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 13916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34788548946380615, - "x_min": 0.12067420780658722, - "y_max": 1.0, - "y_min": 0.8388429880142212 - }, - "confidence": 0.59814453125, - "label": "vehicle", - "label_id": 2 - }, - "h": 70, - "id": 4, - "region_id": 15871, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 174, - "x": 93, - "y": 362 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3533565625548363, - "x_min": 0.12123485654592514, - "y_max": 1.0, - "y_min": 0.8090957999229431 - }, - "confidence": 0.71826171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 82, - "id": 4, - "region_id": 15872, - "roi_type": "vehicle", - "type": { - "confidence": 0.98193359375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 178, - "x": 93, - "y": 350 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35722535848617554, - "x_min": 0.12032529711723328, - "y_max": 0.9970874786376953, - "y_min": 0.7843096256256104 - }, - "confidence": 0.80517578125, - "label": "vehicle", - "label_id": 2 - }, - "h": 92, - "id": 4, - "region_id": 15873, - "roi_type": "vehicle", - "type": { - "confidence": 0.75390625, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 182, - "x": 92, - "y": 339 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35971733182668686, - "x_min": 0.11328639835119247, - "y_max": 0.9965744614601135, - "y_min": 0.7635470032691956 - }, - "confidence": 0.79931640625, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "id": 4, - "region_id": 15874, - "roi_type": "vehicle", - "type": { - "confidence": 0.9931640625, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 189, - "x": 87, - "y": 330 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3702913075685501, - "x_min": 0.11394597589969635, - "y_max": 1.0, - "y_min": 0.7276990413665771 - }, - "confidence": 0.7080078125, - "label": "vehicle", - "label_id": 2 - }, - "h": 118, - "id": 4, - "region_id": 15875, - "roi_type": "vehicle", - "type": { - "confidence": 0.658203125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 197, - "x": 88, - "y": 314 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9990234375, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36841410398483276, - "x_min": 0.10085779428482056, - "y_max": 0.996000349521637, - "y_min": 0.7033589482307434 - }, - "confidence": 0.84619140625, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "id": 4, - "region_id": 15876, - "roi_type": "vehicle", - "type": { - "confidence": 0.8291015625, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 205, - "x": 77, - "y": 304 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9990234375, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.37700408697128296, - "x_min": 0.10724449157714844, - "y_max": 0.9995347261428833, - "y_min": 0.6776673793792725 - }, - "confidence": 0.92333984375, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "id": 4, - "region_id": 15877, - "roi_type": "vehicle", - "type": { - "confidence": 0.99609375, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 207, - "x": 82, - "y": 293 - }, - { - "color": { - "confidence": 0.5615234375, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.12240788340568542, - "y_max": 0.9747185707092285, - "y_min": 0.03273570537567139 - }, - "confidence": 0.63232421875, - "label": "vehicle", - "label_id": 2 - }, - "h": 407, - "id": 5, - "region_id": 15878, - "roi_type": "vehicle", - "type": { - "confidence": 0.947265625, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 674, - "x": 94, - "y": 14 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.998046875, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3794129192829132, - "x_min": 0.10572710633277893, - "y_max": 1.0, - "y_min": 0.6497832536697388 - }, - "confidence": 0.955078125, - "label": "vehicle", - "label_id": 2 - }, - "h": 151, - "id": 4, - "region_id": 15879, - "roi_type": "vehicle", - "type": { - "confidence": 0.9931640625, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 210, - "x": 81, - "y": 281 - }, - { - "color": { - "confidence": 0.64111328125, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.12235894799232483, - "y_max": 0.9642861187458038, - "y_min": 0.03327503800392151 - }, - "confidence": 0.63671875, - "label": "vehicle", - "label_id": 2 - }, - "h": 402, - "id": 5, - "region_id": 15880, - "roi_type": "vehicle", - "type": { - "confidence": 0.9931640625, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 674, - "x": 94, - "y": 14 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.37893153727054596, - "x_min": 0.10524572432041168, - "y_max": 1.0, - "y_min": 0.6315947771072388 - }, - "confidence": 0.990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 159, - "id": 4, - "region_id": 15881, - "roi_type": "vehicle", - "type": { - "confidence": 0.998046875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 210, - "x": 81, - "y": 273 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.37906306982040405, - "x_min": 0.11943095922470093, - "y_max": 0.9988926649093628, - "y_min": 0.6108778715133667 - }, - "confidence": 0.994140625, - "label": "vehicle", - "label_id": 2 - }, - "h": 168, - "id": 4, - "region_id": 15882, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 199, - "x": 92, - "y": 264 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.37611158192157745, - "x_min": 0.11804629862308502, - "y_max": 0.9963674545288086, - "y_min": 0.585686445236206 - }, - "confidence": 0.9951171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 177, - "id": 4, - "region_id": 15883, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 198, - "x": 91, - "y": 253 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3770822137594223, - "x_min": 0.11729799211025238, - "y_max": 0.99732905626297, - "y_min": 0.5627850890159607 - }, - "confidence": 0.98828125, - "label": "vehicle", - "label_id": 2 - }, - "h": 188, - "id": 4, - "region_id": 15884, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 200, - "x": 90, - "y": 243 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3729642927646637, - "x_min": 0.1085742712020874, - "y_max": 1.0, - "y_min": 0.5397972464561462 - }, - "confidence": 0.97802734375, - "label": "vehicle", - "label_id": 2 - }, - "h": 199, - "id": 4, - "region_id": 15885, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 203, - "x": 83, - "y": 233 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3656986355781555, - "x_min": 0.13279204070568085, - "y_max": 1.0, - "y_min": 0.5242156386375427 - }, - "confidence": 0.97900390625, - "label": "vehicle", - "label_id": 2 - }, - "h": 206, - "id": 4, - "region_id": 15886, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 179, - "x": 102, - "y": 226 - }, - { - "color": { - "confidence": 0.4248046875, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9005439579486847, - "x_min": 0.0947130024433136, - "y_max": 0.6981552839279175, - "y_min": 0.05118680000305176 - }, - "confidence": 0.53125, - "label": "vehicle", - "label_id": 2 - }, - "h": 279, - "id": 6, - "region_id": 15887, - "roi_type": "vehicle", - "type": { - "confidence": 0.79931640625, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 619, - "x": 73, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36320242285728455, - "x_min": 0.13479956984519958, - "y_max": 1.0, - "y_min": 0.5036964416503906 - }, - "confidence": 0.9921875, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "id": 4, - "region_id": 15888, - "roi_type": "vehicle", - "type": { - "confidence": 0.9931640625, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 175, - "x": 104, - "y": 218 - }, - { - "color": { - "confidence": 0.568359375, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9596145153045654, - "x_min": 0.1480247974395752, - "y_max": 0.8022695779800415, - "y_min": 0.047685861587524414 - }, - "confidence": 0.662109375, - "label": "vehicle", - "label_id": 2 - }, - "h": 326, - "id": 6, - "region_id": 15889, - "roi_type": "vehicle", - "type": { - "confidence": 0.9658203125, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 623, - "x": 114, - "y": 21 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35492169857025146, - "x_min": 0.14194001257419586, - "y_max": 0.9911630153656006, - "y_min": 0.4964284896850586 - }, - "confidence": 0.99609375, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "id": 4, - "region_id": 15890, - "roi_type": "vehicle", - "type": { - "confidence": 0.986328125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 164, - "x": 109, - "y": 214 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3554447889328003, - "x_min": 0.1485300064086914, - "y_max": 0.9996136724948883, - "y_min": 0.47489133477211 - }, - "confidence": 0.998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 227, - "id": 4, - "region_id": 15891, - "roi_type": "vehicle", - "type": { - "confidence": 0.98095703125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 159, - "x": 114, - "y": 205 - }, - { - "color": { - "confidence": 0.6923828125, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9596475064754486, - "x_min": 0.3637692630290985, - "y_max": 0.9144225120544434, - "y_min": 0.03580266237258911 - }, - "confidence": 0.50537109375, - "label": "vehicle", - "label_id": 2 - }, - "h": 380, - "id": 7, - "region_id": 15892, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 458, - "x": 279, - "y": 15 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3561684787273407, - "x_min": 0.1538877785205841, - "y_max": 0.9828415811061859, - "y_min": 0.45157262682914734 - }, - "confidence": 0.9951171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 230, - "id": 4, - "region_id": 15893, - "roi_type": "vehicle", - "type": { - "confidence": 0.998046875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 155, - "x": 118, - "y": 195 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34915268421173096, - "x_min": 0.1601976752281189, - "y_max": 0.9477139413356781, - "y_min": 0.43223318457603455 - }, - "confidence": 0.9970703125, - "label": "vehicle", - "label_id": 2 - }, - "h": 223, - "id": 4, - "region_id": 15894, - "roi_type": "vehicle", - "type": { - "confidence": 0.984375, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 145, - "x": 123, - "y": 187 - }, - { - "color": { - "confidence": 0.517578125, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9622732400894165, - "x_min": 0.3467036485671997, - "y_max": 0.7548135221004486, - "y_min": 0.06216701865196228 - }, - "confidence": 0.76416015625, - "label": "vehicle", - "label_id": 2 - }, - "h": 299, - "id": 8, - "region_id": 15895, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 473, - "x": 266, - "y": 27 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34494632482528687, - "x_min": 0.16223210096359253, - "y_max": 0.9361109733581543, - "y_min": 0.4226393699645996 - }, - "confidence": 0.998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 222, - "id": 4, - "region_id": 15896, - "roi_type": "vehicle", - "type": { - "confidence": 0.966796875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 140, - "x": 125, - "y": 183 - }, - { - "color": { - "confidence": 0.57763671875, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9732775092124939, - "x_min": 0.3253013491630554, - "y_max": 0.9302563667297363, - "y_min": 0.05300796031951904 - }, - "confidence": 0.6083984375, - "label": "vehicle", - "label_id": 2 - }, - "h": 379, - "id": 8, - "region_id": 15897, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 498, - "x": 250, - "y": 23 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3391859233379364, - "x_min": 0.1647346317768097, - "y_max": 0.9072514772415161, - "y_min": 0.4021332263946533 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 218, - "id": 4, - "region_id": 15898, - "roi_type": "vehicle", - "type": { - "confidence": 0.75244140625, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 134, - "x": 127, - "y": 174 - }, - { - "color": { - "confidence": 0.432373046875, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9653114080429077, - "x_min": 0.3195772171020508, - "y_max": 0.9068852961063385, - "y_min": 0.05095675587654114 - }, - "confidence": 0.56103515625, - "label": "vehicle", - "label_id": 2 - }, - "h": 370, - "id": 8, - "region_id": 15899, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 496, - "x": 245, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3360394239425659, - "x_min": 0.164894700050354, - "y_max": 0.8810743093490601, - "y_min": 0.38855671882629395 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "id": 4, - "region_id": 15900, - "roi_type": "vehicle", - "type": { - "confidence": 0.8857421875, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 131, - "x": 127, - "y": 168 - }, - { - "color": { - "confidence": 0.38818359375, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9583485126495361, - "x_min": 0.3183259963989258, - "y_max": 0.836863249540329, - "y_min": 0.07228550314903259 - }, - "confidence": 0.6611328125, - "label": "vehicle", - "label_id": 2 - }, - "h": 330, - "id": 8, - "region_id": 15901, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 492, - "x": 244, - "y": 31 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.33219119906425476, - "x_min": 0.16244429349899292, - "y_max": 0.859308660030365, - "y_min": 0.3722662329673767 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 210, - "id": 4, - "region_id": 15902, - "roi_type": "vehicle", - "type": { - "confidence": 0.98388671875, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 130, - "x": 125, - "y": 161 - }, - { - "color": { - "confidence": 0.43359375, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.96105095744133, - "x_min": 0.31634053587913513, - "y_max": 0.9130281805992126, - "y_min": 0.06904906034469604 - }, - "confidence": 0.6064453125, - "label": "vehicle", - "label_id": 2 - }, - "h": 365, - "id": 8, - "region_id": 15903, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 495, - "x": 243, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.33003008365631104, - "x_min": 0.16216199100017548, - "y_max": 0.8308836817741394, - "y_min": 0.35496407747268677 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 206, - "id": 4, - "region_id": 15904, - "roi_type": "vehicle", - "type": { - "confidence": 0.98828125, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 129, - "x": 125, - "y": 153 - }, - { - "color": { - "confidence": 0.623046875, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9567078053951263, - "x_min": 0.3253123462200165, - "y_max": 0.8802770972251892, - "y_min": 0.0708383321762085 - }, - "confidence": 0.6923828125, - "label": "vehicle", - "label_id": 2 - }, - "h": 350, - "id": 8, - "region_id": 15905, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 485, - "x": 250, - "y": 31 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3288085162639618, - "x_min": 0.157329261302948, - "y_max": 0.8057076930999756, - "y_min": 0.3446691036224365 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 199, - "id": 4, - "region_id": 15906, - "roi_type": "vehicle", - "type": { - "confidence": 0.9873046875, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 132, - "x": 121, - "y": 149 - }, - { - "color": { - "confidence": 0.365234375, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.963686466217041, - "x_min": 0.3247877359390259, - "y_max": 0.8278923332691193, - "y_min": 0.052186518907547 - }, - "confidence": 0.75537109375, - "label": "vehicle", - "label_id": 2 - }, - "h": 335, - "id": 8, - "region_id": 15907, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 491, - "x": 249, - "y": 23 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.325700581073761, - "x_min": 0.15155886113643646, - "y_max": 0.7916401624679565, - "y_min": 0.3304018974304199 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 199, - "id": 4, - "region_id": 15908, - "roi_type": "vehicle", - "type": { - "confidence": 0.9921875, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 134, - "x": 116, - "y": 143 - }, - { - "color": { - "confidence": 0.64501953125, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9605325162410736, - "x_min": 0.34267494082450867, - "y_max": 0.8595539331436157, - "y_min": 0.04185444116592407 - }, - "confidence": 0.60791015625, - "label": "vehicle", - "label_id": 2 - }, - "h": 353, - "id": 8, - "region_id": 15909, - "roi_type": "vehicle", - "type": { - "confidence": 0.998046875, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 475, - "x": 263, - "y": 18 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.32326173782348633, - "x_min": 0.1429257094860077, - "y_max": 0.7730258703231812, - "y_min": 0.31999945640563965 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 196, - "id": 4, - "region_id": 15910, - "roi_type": "vehicle", - "type": { - "confidence": 0.9970703125, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 138, - "x": 110, - "y": 138 - }, - { - "color": { - "confidence": 0.4951171875, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9603236615657806, - "x_min": 0.343340128660202, - "y_max": 0.8690563440322876, - "y_min": 0.03262406587600708 - }, - "confidence": 0.6357421875, - "label": "vehicle", - "label_id": 2 - }, - "h": 361, - "id": 8, - "region_id": 15911, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 474, - "x": 264, - "y": 14 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3207375407218933, - "x_min": 0.13676699995994568, - "y_max": 0.7576345205307007, - "y_min": 0.31319475173950195 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 192, - "id": 4, - "region_id": 15912, - "roi_type": "vehicle", - "type": { - "confidence": 0.9921875, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 141, - "x": 105, - "y": 135 - }, - { - "color": { - "confidence": 0.393798828125, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9543446004390717, - "x_min": 0.3145720660686493, - "y_max": 0.8108518123626709, - "y_min": 0.03726363182067871 - }, - "confidence": 0.82177734375, - "label": "vehicle", - "label_id": 2 - }, - "h": 334, - "id": 8, - "region_id": 15913, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 491, - "x": 242, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3170391619205475, - "x_min": 0.12877821922302246, - "y_max": 0.7354335188865662, - "y_min": 0.30213361978530884 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 187, - "id": 4, - "region_id": 15914, - "roi_type": "vehicle", - "type": { - "confidence": 0.9052734375, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 145, - "x": 99, - "y": 131 - }, - { - "color": { - "confidence": 0.41064453125, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9484927356243134, - "x_min": 0.32739946246147156, - "y_max": 0.7967373430728912, - "y_min": 0.03275647759437561 - }, - "confidence": 0.89990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 330, - "id": 8, - "region_id": 15915, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 477, - "x": 251, - "y": 14 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3141186833381653, - "x_min": 0.11657941341400146, - "y_max": 0.7233425378799438, - "y_min": 0.29008495807647705 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 187, - "id": 4, - "region_id": 15916, - "roi_type": "vehicle", - "type": { - "confidence": 0.64892578125, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 152, - "x": 90, - "y": 125 - }, - { - "color": { - "confidence": 0.490478515625, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.962075799703598, - "x_min": 0.31081756949424744, - "y_max": 0.8074585795402527, - "y_min": 0.043179333209991455 - }, - "confidence": 0.77880859375, - "label": "vehicle", - "label_id": 2 - }, - "h": 330, - "id": 8, - "region_id": 15917, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 500, - "x": 239, - "y": 19 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.31127429008483887, - "x_min": 0.10575759410858154, - "y_max": 0.7095938324928284, - "y_min": 0.2833430767059326 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 184, - "id": 4, - "region_id": 15918, - "roi_type": "vehicle", - "type": { - "confidence": 0.7021484375, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 158, - "x": 81, - "y": 122 - }, - { - "color": { - "confidence": 0.68017578125, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9623641967773438, - "x_min": 0.32337188720703125, - "y_max": 0.8485720753669739, - "y_min": 0.04102778434753418 - }, - "confidence": 0.73828125, - "label": "vehicle", - "label_id": 2 - }, - "h": 349, - "id": 8, - "region_id": 15919, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 491, - "x": 248, - "y": 18 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.30724579095840454, - "x_min": 0.0889257937669754, - "y_max": 0.6935571432113647, - "y_min": 0.27660852670669556 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 180, - "id": 4, - "region_id": 15920, - "roi_type": "vehicle", - "type": { - "confidence": 0.60791015625, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 168, - "x": 68, - "y": 119 - }, - { - "color": { - "confidence": 0.70703125, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9568454027175903, - "x_min": 0.3318895101547241, - "y_max": 0.8259652853012085, - "y_min": 0.046311259269714355 - }, - "confidence": 0.7607421875, - "label": "vehicle", - "label_id": 2 - }, - "h": 337, - "id": 8, - "region_id": 15921, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 480, - "x": 255, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3028292879462242, - "x_min": 0.08205672353506088, - "y_max": 0.6734104156494141, - "y_min": 0.2817556858062744 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 169, - "id": 4, - "region_id": 15922, - "roi_type": "vehicle", - "type": { - "confidence": 0.70361328125, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 170, - "x": 63, - "y": 122 - }, - { - "color": { - "confidence": 0.669921875, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9649854302406311, - "x_min": 0.31925123929977417, - "y_max": 0.8659673929214478, - "y_min": 0.0621986985206604 - }, - "confidence": 0.54736328125, - "label": "vehicle", - "label_id": 2 - }, - "h": 347, - "id": 8, - "region_id": 15923, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 496, - "x": 245, - "y": 27 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2942311242222786, - "x_min": 0.07399673014879227, - "y_max": 0.6569262742996216, - "y_min": 0.27245113253593445 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 166, - "id": 4, - "region_id": 15924, - "roi_type": "vehicle", - "type": { - "confidence": 0.9853515625, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 169, - "x": 57, - "y": 118 - }, - { - "color": { - "confidence": 0.69482421875, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9777919352054596, - "x_min": 0.34445157647132874, - "y_max": 0.848713606595993, - "y_min": 0.045572489500045776 - }, - "confidence": 0.69873046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 347, - "id": 8, - "region_id": 15925, - "roi_type": "vehicle", - "type": { - "confidence": 0.99609375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 486, - "x": 265, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2884630039334297, - "x_min": 0.06656671315431595, - "y_max": 0.6484526991844177, - "y_min": 0.264728307723999 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 166, - "id": 4, - "region_id": 15926, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 170, - "x": 51, - "y": 114 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2830882668495178, - "x_min": 0.054641202092170715, - "y_max": 0.6378852725028992, - "y_min": 0.2628006339073181 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 162, - "id": 4, - "region_id": 15927, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 175, - "x": 42, - "y": 114 - }, - { - "color": { - "confidence": 0.5537109375, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9622345864772797, - "x_min": 0.35567352175712585, - "y_max": 0.7274520099163055, - "y_min": 0.06999191641807556 - }, - "confidence": 0.529296875, - "label": "vehicle", - "label_id": 2 - }, - "h": 284, - "id": 8, - "region_id": 15928, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 466, - "x": 273, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.27765556424856186, - "x_min": 0.04351823776960373, - "y_max": 0.6269818544387817, - "y_min": 0.25980502367019653 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 159, - "id": 4, - "region_id": 15929, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 180, - "x": 33, - "y": 112 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.27031514048576355, - "x_min": 0.030673563480377197, - "y_max": 0.612331748008728, - "y_min": 0.2571866512298584 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 153, - "id": 4, - "region_id": 15930, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 184, - "x": 24, - "y": 111 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2615850567817688, - "x_min": 0.019214048981666565, - "y_max": 0.6010944843292236, - "y_min": 0.2520679831504822 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 151, - "id": 4, - "region_id": 15931, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 186, - "x": 15, - "y": 109 - }, - { - "color": { - "confidence": 0.572265625, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9748682379722595, - "x_min": 0.3660525679588318, - "y_max": 0.9305697083473206, - "y_min": 0.0460972785949707 - }, - "confidence": 0.5625, - "label": "vehicle", - "label_id": 2 - }, - "h": 382, - "id": 8, - "region_id": 15932, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 468, - "x": 281, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2566665932536125, - "x_min": 0.010110311210155487, - "y_max": 0.5950663089752197, - "y_min": 0.25599029660224915 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 146, - "id": 4, - "region_id": 15933, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 189, - "x": 8, - "y": 111 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.24547897279262543, - "x_min": 0.00378476083278656, - "y_max": 0.58565354347229, - "y_min": 0.250363290309906 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 145, - "id": 4, - "region_id": 15934, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 186, - "x": 3, - "y": 108 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.23500293493270874, - "x_min": 0.001883864402770996, - "y_max": 0.5771509259939194, - "y_min": 0.24766944348812103 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 142, - "id": 4, - "region_id": 15935, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 179, - "x": 1, - "y": 107 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.22417304664850235, - "x_min": 0.0005508437752723694, - "y_max": 0.5657980293035507, - "y_min": 0.24598316848278046 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 138, - "id": 4, - "region_id": 15936, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 172, - "x": 0, - "y": 106 - }, - { - "color": { - "confidence": 0.61083984375, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9669439494609833, - "x_min": 0.3940558135509491, - "y_max": 0.7534793317317963, - "y_min": 0.06528171896934509 - }, - "confidence": 0.61279296875, - "label": "vehicle", - "label_id": 2 - }, - "h": 297, - "id": 8, - "region_id": 15937, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 440, - "x": 303, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.21810167282819748, - "x_min": 0.0, - "y_max": 0.5573959350585938, - "y_min": 0.2435314953327179 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 136, - "id": 4, - "region_id": 15938, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 168, - "x": 0, - "y": 105 - }, - { - "color": { - "confidence": 0.4599609375, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9764391481876373, - "x_min": 0.3866957724094391, - "y_max": 0.7931325435638428, - "y_min": 0.039081573486328125 - }, - "confidence": 0.708984375, - "label": "vehicle", - "label_id": 2 - }, - "h": 326, - "id": 8, - "region_id": 15939, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 453, - "x": 297, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.20639830827713013, - "x_min": 0.0010264068841934204, - "y_max": 0.5487916022539139, - "y_min": 0.24332047998905182 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "id": 4, - "region_id": 15940, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 158, - "x": 1, - "y": 105 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.1992337852716446, - "x_min": 0.0004508793354034424, - "y_max": 0.5388166904449463, - "y_min": 0.24044927954673767 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 129, - "id": 4, - "region_id": 15941, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 153, - "x": 0, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.18727533519268036, - "x_min": 0.0016330182552337646, - "y_max": 0.5345794409513474, - "y_min": 0.22854118049144745 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "id": 4, - "region_id": 15942, - "roi_type": "vehicle", - "type": { - "confidence": 0.9912109375, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 143, - "x": 1, - "y": 99 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.17466454952955246, - "x_min": 0.0019783303141593933, - "y_max": 0.530539870262146, - "y_min": 0.22426244616508484 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "id": 4, - "region_id": 15943, - "roi_type": "vehicle", - "type": { - "confidence": 0.9912109375, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 133, - "x": 2, - "y": 97 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.16492079943418503, - "x_min": 0.003018997609615326, - "y_max": 0.523313120007515, - "y_min": 0.22057349979877472 - }, - "confidence": 0.998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 131, - "id": 4, - "region_id": 15944, - "roi_type": "vehicle", - "type": { - "confidence": 0.9892578125, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 124, - "x": 2, - "y": 95 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.15884939581155777, - "x_min": 0.0, - "y_max": 0.5263099074363708, - "y_min": 0.2229311466217041 - }, - "confidence": 0.9970703125, - "label": "vehicle", - "label_id": 2 - }, - "h": 131, - "id": 4, - "region_id": 15945, - "roi_type": "vehicle", - "type": { - "confidence": 0.87890625, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 122, - "x": 0, - "y": 96 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.1441451609134674, - "x_min": 0.000693395733833313, - "y_max": 0.5236131399869919, - "y_min": 0.2226388305425644 - }, - "confidence": 0.990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 130, - "id": 4, - "region_id": 15946, - "roi_type": "vehicle", - "type": { - "confidence": 0.9716796875, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 110, - "x": 1, - "y": 96 - }, - { - "color": { - "confidence": 0.90869140625, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.11497771739959717, - "y_max": 0.9465397000312805, - "y_min": 0.03637963533401489 - }, - "confidence": 0.552734375, - "label": "vehicle", - "label_id": 2 - }, - "h": 393, - "id": 8, - "region_id": 15947, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 680, - "x": 88, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.1313403695821762, - "x_min": 0.0012536048889160156, - "y_max": 0.5229455083608627, - "y_min": 0.23211054503917694 - }, - "confidence": 0.8857421875, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "id": 4, - "region_id": 15948, - "roi_type": "vehicle", - "type": { - "confidence": 0.626953125, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 100, - "x": 1, - "y": 100 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.1251680999994278, - "x_min": 0.0, - "y_max": 0.5160009860992432, - "y_min": 0.24285933375358582 - }, - "confidence": 0.74755859375, - "label": "vehicle", - "label_id": 2 - }, - "h": 118, - "id": 4, - "region_id": 15949, - "roi_type": "vehicle", - "type": { - "confidence": 0.80517578125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 96, - "x": 0, - "y": 105 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.11142117157578468, - "x_min": 0.0006205327808856964, - "y_max": 0.5151717662811279, - "y_min": 0.23993870615959167 - }, - "confidence": 0.88330078125, - "label": "vehicle", - "label_id": 2 - }, - "h": 119, - "id": 4, - "region_id": 15950, - "roi_type": "vehicle", - "type": { - "confidence": 0.94287109375, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 85, - "x": 0, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.09933491796255112, - "x_min": 0.0014743134379386902, - "y_max": 0.518338680267334, - "y_min": 0.23731520771980286 - }, - "confidence": 0.6923828125, - "label": "vehicle", - "label_id": 2 - }, - "h": 121, - "id": 4, - "region_id": 15951, - "roi_type": "vehicle", - "type": { - "confidence": 0.916015625, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 75, - "x": 1, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.08814045041799545, - "x_min": 0.0, - "y_max": 0.5179922431707382, - "y_min": 0.2371600717306137 - }, - "confidence": 0.5166015625, - "label": "vehicle", - "label_id": 2 - }, - "h": 121, - "id": 4, - "region_id": 15952, - "roi_type": "vehicle", - "type": { - "confidence": 0.8642578125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 68, - "x": 0, - "y": 102 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.078303974121809, - "x_min": 0.0, - "y_max": 0.5105343610048294, - "y_min": 0.23882491886615753 - }, - "confidence": 0.74951171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "id": 4, - "region_id": 15953, - "roi_type": "vehicle", - "type": { - "confidence": 0.97705078125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 60, - "x": 0, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.06655463203787804, - "x_min": 0.0006585381925106049, - "y_max": 0.5064481496810913, - "y_min": 0.23939380049705505 - }, - "confidence": 0.6376953125, - "label": "vehicle", - "label_id": 2 - }, - "h": 115, - "id": 4, - "region_id": 15954, - "roi_type": "vehicle", - "type": { - "confidence": 0.89990234375, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 51, - "x": 1, - "y": 103 - }, - { - "color": { - "confidence": 0.60400390625, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.0942881628870964, - "x_min": 0.04302658885717392, - "y_max": 0.6302101612091064, - "y_min": 0.5369205474853516 - }, - "confidence": 0.5048828125, - "label": "vehicle", - "label_id": 2 - }, - "h": 40, - "id": 9, - "region_id": 15955, - "roi_type": "vehicle", - "type": { - "confidence": 0.9912109375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 39, - "x": 33, - "y": 232 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.058643946424126625, - "x_min": 0.0012939441949129105, - "y_max": 0.4994227886199951, - "y_min": 0.24962610006332397 - }, - "confidence": 0.74755859375, - "label": "vehicle", - "label_id": 2 - }, - "h": 108, - "id": 4, - "region_id": 15956, - "roi_type": "vehicle", - "type": { - "confidence": 0.65380859375, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 44, - "x": 1, - "y": 108 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.04710671491920948, - "x_min": 0.002159060910344124, - "y_max": 0.49160075187683105, - "y_min": 0.27301615476608276 - }, - "confidence": 0.580078125, - "label": "vehicle", - "label_id": 2 - }, - "h": 94, - "id": 4, - "region_id": 15957, - "roi_type": "vehicle", - "type": { - "confidence": 0.7900390625, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 35, - "x": 2, - "y": 118 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.038663893938064575, - "x_min": 0.0, - "y_max": 0.4893234968185425, - "y_min": 0.2736009955406189 - }, - "confidence": 0.5234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 93, - "id": 4, - "region_id": 15958, - "roi_type": "vehicle", - "type": { - "confidence": 0.54638671875, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 30, - "x": 0, - "y": 118 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.6533203125, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9569013714790344, - "x_min": 0.2530626654624939, - "y_max": 0.7804694473743439, - "y_min": 0.08048084378242493 - }, - "confidence": 0.66357421875, - "label": "vehicle", - "label_id": 2 - }, - "h": 302, - "id": 10, - "region_id": 15965, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 541, - "x": 194, - "y": 35 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 27333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.05796085111796856, - "x_min": 0.003526007756590843, - "y_max": 0.2683647871017456, - "y_min": 0.09554657340049744 - }, - "confidence": 0.7578125, - "label": "person", - "label_id": 1 - }, - "h": 75, - "id": 11, - "region_id": 15975, - "roi_type": "person", - "w": 42, - "x": 3, - "y": 41 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06379417888820171, - "x_min": 0.007910190150141716, - "y_max": 0.2743130400776863, - "y_min": 0.10185719281435013 - }, - "confidence": 0.80126953125, - "label": "person", - "label_id": 1 - }, - "h": 75, - "id": 11, - "region_id": 15976, - "roi_type": "person", - "w": 43, - "x": 6, - "y": 44 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07424172759056091, - "x_min": 0.015349648892879486, - "y_max": 0.2675032541155815, - "y_min": 0.09078633040189743 - }, - "confidence": 0.892578125, - "label": "person", - "label_id": 1 - }, - "h": 76, - "id": 11, - "region_id": 15977, - "roi_type": "person", - "w": 45, - "x": 12, - "y": 39 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06830157898366451, - "x_min": 0.022359145805239677, - "y_max": 0.26452428847551346, - "y_min": 0.09266514331102371 - }, - "confidence": 0.9462890625, - "label": "person", - "label_id": 1 - }, - "h": 74, - "id": 11, - "region_id": 15978, - "roi_type": "person", - "w": 35, - "x": 17, - "y": 40 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06263137422502041, - "x_min": 0.028442716225981712, - "y_max": 0.2630351260304451, - "y_min": 0.08788127452135086 - }, - "confidence": 0.70654296875, - "label": "person", - "label_id": 1 - }, - "h": 76, - "id": 11, - "region_id": 15979, - "roi_type": "person", - "w": 26, - "x": 22, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07015642523765564, - "x_min": 0.038890134543180466, - "y_max": 0.2707189917564392, - "y_min": 0.08740551769733429 - }, - "confidence": 0.85986328125, - "label": "person", - "label_id": 1 - }, - "h": 79, - "id": 11, - "region_id": 15980, - "roi_type": "person", - "w": 24, - "x": 30, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.08970045298337936, - "x_min": 0.045083530247211456, - "y_max": 0.2602956220507622, - "y_min": 0.08799969404935837 - }, - "confidence": 0.97607421875, - "label": "person", - "label_id": 1 - }, - "h": 74, - "id": 11, - "region_id": 15981, - "roi_type": "person", - "w": 34, - "x": 35, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.10221833735704422, - "x_min": 0.050295390188694, - "y_max": 0.26162880659103394, - "y_min": 0.08928240835666656 - }, - "confidence": 0.96240234375, - "label": "person", - "label_id": 1 - }, - "h": 74, - "id": 11, - "region_id": 15982, - "roi_type": "person", - "w": 40, - "x": 39, - "y": 39 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1124647855758667, - "x_min": 0.05559557303786278, - "y_max": 0.26580512523651123, - "y_min": 0.08706669509410858 - }, - "confidence": 0.96240234375, - "label": "person", - "label_id": 1 - }, - "h": 77, - "id": 11, - "region_id": 15983, - "roi_type": "person", - "w": 44, - "x": 43, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11494597047567368, - "x_min": 0.06002477556467056, - "y_max": 0.2610744759440422, - "y_min": 0.0874699279665947 - }, - "confidence": 0.95947265625, - "label": "person", - "label_id": 1 - }, - "h": 75, - "id": 11, - "region_id": 15984, - "roi_type": "person", - "w": 42, - "x": 46, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1076885536313057, - "x_min": 0.06897159665822983, - "y_max": 0.25734183192253113, - "y_min": 0.08855894207954407 - }, - "confidence": 0.75, - "label": "person", - "label_id": 1 - }, - "h": 73, - "id": 11, - "region_id": 15985, - "roi_type": "person", - "w": 30, - "x": 53, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11588124930858612, - "x_min": 0.0844779908657074, - "y_max": 0.25993383675813675, - "y_min": 0.08377892524003983 - }, - "confidence": 0.94384765625, - "label": "person", - "label_id": 1 - }, - "h": 76, - "id": 11, - "region_id": 15986, - "roi_type": "person", - "w": 24, - "x": 65, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.14279809594154358, - "x_min": 0.08925659954547882, - "y_max": 0.2586924508213997, - "y_min": 0.08260411769151688 - }, - "confidence": 0.98095703125, - "label": "person", - "label_id": 1 - }, - "h": 76, - "id": 11, - "region_id": 15987, - "roi_type": "person", - "w": 41, - "x": 69, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15317003428936005, - "x_min": 0.09756682813167572, - "y_max": 0.25573694705963135, - "y_min": 0.08256407082080841 - }, - "confidence": 0.9208984375, - "label": "person", - "label_id": 1 - }, - "h": 75, - "id": 11, - "region_id": 15988, - "roi_type": "person", - "w": 43, - "x": 75, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15702785551548004, - "x_min": 0.09714777767658234, - "y_max": 0.25397133082151413, - "y_min": 0.08110251277685165 - }, - "confidence": 0.98291015625, - "label": "person", - "label_id": 1 - }, - "h": 75, - "id": 11, - "region_id": 15989, - "roi_type": "person", - "w": 46, - "x": 75, - "y": 35 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15839335322380066, - "x_min": 0.10749229788780212, - "y_max": 0.2547931671142578, - "y_min": 0.07889387011528015 - }, - "confidence": 0.9873046875, - "label": "person", - "label_id": 1 - }, - "h": 76, - "id": 11, - "region_id": 15990, - "roi_type": "person", - "w": 39, - "x": 83, - "y": 34 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1491146832704544, - "x_min": 0.11746441572904587, - "y_max": 0.25783464312553406, - "y_min": 0.07373198866844177 - }, - "confidence": 0.91162109375, - "label": "person", - "label_id": 1 - }, - "h": 80, - "id": 11, - "region_id": 15991, - "roi_type": "person", - "w": 24, - "x": 90, - "y": 32 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15772441029548645, - "x_min": 0.13126039505004883, - "y_max": 0.2508736029267311, - "y_min": 0.08296392112970352 - }, - "confidence": 0.55517578125, - "label": "person", - "label_id": 1 - }, - "h": 73, - "id": 11, - "region_id": 15992, - "roi_type": "person", - "w": 20, - "x": 101, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.17117199301719666, - "x_min": 0.13278326392173767, - "y_max": 0.2538791224360466, - "y_min": 0.0712466761469841 - }, - "confidence": 0.921875, - "label": "person", - "label_id": 1 - }, - "h": 79, - "id": 11, - "region_id": 15993, - "roi_type": "person", - "w": 29, - "x": 102, - "y": 31 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1887526512145996, - "x_min": 0.13873153924942017, - "y_max": 0.24830224364995956, - "y_min": 0.06952892988920212 - }, - "confidence": 0.9716796875, - "label": "person", - "label_id": 1 - }, - "h": 77, - "id": 11, - "region_id": 15994, - "roi_type": "person", - "w": 38, - "x": 107, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.198638916015625, - "x_min": 0.1424277126789093, - "y_max": 0.24426036328077316, - "y_min": 0.06967847794294357 - }, - "confidence": 0.9326171875, - "label": "person", - "label_id": 1 - }, - "h": 75, - "id": 11, - "region_id": 15995, - "roi_type": "person", - "w": 43, - "x": 109, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19823414087295532, - "x_min": 0.14558222889900208, - "y_max": 0.24210044741630554, - "y_min": 0.06738212704658508 - }, - "confidence": 0.9580078125, - "label": "person", - "label_id": 1 - }, - "h": 75, - "id": 11, - "region_id": 15996, - "roi_type": "person", - "w": 40, - "x": 112, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19666728377342224, - "x_min": 0.15930649638175964, - "y_max": 0.24701160937547684, - "y_min": 0.06952521950006485 - }, - "confidence": 0.9384765625, - "label": "person", - "label_id": 1 - }, - "h": 77, - "id": 11, - "region_id": 15997, - "roi_type": "person", - "w": 29, - "x": 122, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19645187258720398, - "x_min": 0.16701623797416687, - "y_max": 0.2467137724161148, - "y_min": 0.05971263349056244 - }, - "confidence": 0.81396484375, - "label": "person", - "label_id": 1 - }, - "h": 81, - "id": 11, - "region_id": 15998, - "roi_type": "person", - "w": 23, - "x": 128, - "y": 26 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.20708149671554565, - "x_min": 0.17690825462341309, - "y_max": 0.24018753319978714, - "y_min": 0.06553960591554642 - }, - "confidence": 0.86181640625, - "label": "person", - "label_id": 1 - }, - "h": 75, - "id": 11, - "region_id": 15999, - "roi_type": "person", - "w": 23, - "x": 136, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.22888699173927307, - "x_min": 0.17742937803268433, - "y_max": 0.2344159260392189, - "y_min": 0.06553412228822708 - }, - "confidence": 0.9453125, - "label": "person", - "label_id": 1 - }, - "h": 73, - "id": 11, - "region_id": 16000, - "roi_type": "person", - "w": 40, - "x": 136, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23775845766067505, - "x_min": 0.1861700415611267, - "y_max": 0.2327612265944481, - "y_min": 0.0673552080988884 - }, - "confidence": 0.86279296875, - "label": "person", - "label_id": 1 - }, - "h": 71, - "id": 11, - "region_id": 16001, - "roi_type": "person", - "w": 40, - "x": 143, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24472364783287048, - "x_min": 0.18928638100624084, - "y_max": 0.22882839292287827, - "y_min": 0.06334161013364792 - }, - "confidence": 0.939453125, - "label": "person", - "label_id": 1 - }, - "h": 71, - "id": 11, - "region_id": 16002, - "roi_type": "person", - "w": 43, - "x": 145, - "y": 27 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24371737241744995, - "x_min": 0.19899338483810425, - "y_max": 0.22491950541734695, - "y_min": 0.06480459123849869 - }, - "confidence": 0.91650390625, - "label": "person", - "label_id": 1 - }, - "h": 69, - "id": 11, - "region_id": 16003, - "roi_type": "person", - "w": 34, - "x": 153, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23920945823192596, - "x_min": 0.20880557596683502, - "y_max": 0.2312590777873993, - "y_min": 0.051177769899368286 - }, - "confidence": 0.7421875, - "label": "person", - "label_id": 1 - }, - "h": 78, - "id": 11, - "region_id": 16004, - "roi_type": "person", - "w": 23, - "x": 160, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24577099084854126, - "x_min": 0.21508976817131042, - "y_max": 0.22445382922887802, - "y_min": 0.04580488055944443 - }, - "confidence": 0.8076171875, - "label": "person", - "label_id": 1 - }, - "h": 77, - "id": 11, - "region_id": 16005, - "roi_type": "person", - "w": 24, - "x": 165, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2584080398082733, - "x_min": 0.2213379144668579, - "y_max": 0.22188827395439148, - "y_min": 0.04266056418418884 - }, - "confidence": 0.9384765625, - "label": "person", - "label_id": 1 - }, - "h": 77, - "id": 11, - "region_id": 16006, - "roi_type": "person", - "w": 28, - "x": 170, - "y": 18 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.26847225427627563, - "x_min": 0.22314880788326263, - "y_max": 0.22252074629068375, - "y_min": 0.03724823147058487 - }, - "confidence": 0.85595703125, - "label": "person", - "label_id": 1 - }, - "h": 80, - "id": 11, - "region_id": 16007, - "roi_type": "person", - "w": 35, - "x": 171, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27866482734680176, - "x_min": 0.22583787143230438, - "y_max": 0.21875855326652527, - "y_min": 0.04367309808731079 - }, - "confidence": 0.94140625, - "label": "person", - "label_id": 1 - }, - "h": 76, - "id": 11, - "region_id": 16008, - "roi_type": "person", - "w": 41, - "x": 173, - "y": 19 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27825289964675903, - "x_min": 0.22984372079372406, - "y_max": 0.2128024399280548, - "y_min": 0.04053172469139099 - }, - "confidence": 0.89990234375, - "label": "person", - "label_id": 1 - }, - "h": 74, - "id": 11, - "region_id": 16009, - "roi_type": "person", - "w": 37, - "x": 177, - "y": 18 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.278627872467041, - "x_min": 0.23964999616146088, - "y_max": 0.21169210225343704, - "y_min": 0.026805169880390167 - }, - "confidence": 0.56640625, - "label": "person", - "label_id": 1 - }, - "h": 80, - "id": 11, - "region_id": 16010, - "roi_type": "person", - "w": 30, - "x": 184, - "y": 12 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.28468194603919983, - "x_min": 0.2542703449726105, - "y_max": 0.2149207815527916, - "y_min": 0.02619936317205429 - }, - "confidence": 0.794921875, - "label": "person", - "label_id": 1 - }, - "h": 82, - "id": 11, - "region_id": 16011, - "roi_type": "person", - "w": 23, - "x": 195, - "y": 11 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2908972501754761, - "x_min": 0.2598450779914856, - "y_max": 0.2079339250922203, - "y_min": 0.022825680673122406 - }, - "confidence": 0.8330078125, - "label": "person", - "label_id": 1 - }, - "h": 80, - "id": 11, - "region_id": 16012, - "roi_type": "person", - "w": 24, - "x": 200, - "y": 10 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.30745673179626465, - "x_min": 0.26573002338409424, - "y_max": 0.19293907284736633, - "y_min": 0.02228669822216034 - }, - "confidence": 0.97802734375, - "label": "person", - "label_id": 1 - }, - "h": 74, - "id": 11, - "region_id": 16013, - "roi_type": "person", - "w": 32, - "x": 204, - "y": 10 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3109080493450165, - "x_min": 0.26781293749809265, - "y_max": 0.19742047786712646, - "y_min": 0.023131072521209717 - }, - "confidence": 0.96533203125, - "label": "person", - "label_id": 1 - }, - "h": 75, - "id": 11, - "region_id": 16014, - "roi_type": "person", - "w": 33, - "x": 206, - "y": 10 - }, - { - "color": { - "confidence": 0.74267578125, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2956489324569702, - "x_min": 0.10402004420757294, - "y_max": 1.0, - "y_min": 0.8513724207878113 - }, - "confidence": 0.779296875, - "label": "vehicle", - "label_id": 2 - }, - "h": 64, - "id": 12, - "region_id": 16015, - "roi_type": "vehicle", - "type": { - "confidence": 0.576171875, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 147, - "x": 80, - "y": 368 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3159233331680298, - "x_min": 0.27413952350616455, - "y_max": 0.1829414889216423, - "y_min": 0.019071929156780243 - }, - "confidence": 0.98193359375, - "label": "person", - "label_id": 1 - }, - "h": 71, - "id": 11, - "region_id": 16016, - "roi_type": "person", - "w": 32, - "x": 211, - "y": 8 - }, - { - "color": { - "confidence": 0.966796875, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3024454191327095, - "x_min": 0.08785287290811539, - "y_max": 1.0, - "y_min": 0.826200008392334 - }, - "confidence": 0.90869140625, - "label": "vehicle", - "label_id": 2 - }, - "h": 75, - "id": 12, - "region_id": 16017, - "roi_type": "vehicle", - "type": { - "confidence": 0.71630859375, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 165, - "x": 67, - "y": 357 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3163028359413147, - "x_min": 0.279521107673645, - "y_max": 0.18253225088119507, - "y_min": 0.009588927030563354 - }, - "confidence": 0.85546875, - "label": "person", - "label_id": 1 - }, - "h": 75, - "id": 11, - "region_id": 16018, - "roi_type": "person", - "w": 28, - "x": 215, - "y": 4 - }, - { - "color": { - "confidence": 0.966796875, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3072689101099968, - "x_min": 0.08985143154859543, - "y_max": 1.0, - "y_min": 0.7982624173164368 - }, - "confidence": 0.9658203125, - "label": "vehicle", - "label_id": 2 - }, - "h": 87, - "id": 12, - "region_id": 16019, - "roi_type": "vehicle", - "type": { - "confidence": 0.86328125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 167, - "x": 69, - "y": 345 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.32006755471229553, - "x_min": 0.2837705910205841, - "y_max": 0.17555156350135803, - "y_min": 0.0023487508296966553 - }, - "confidence": 0.931640625, - "label": "person", - "label_id": 1 - }, - "h": 75, - "id": 11, - "region_id": 16020, - "roi_type": "person", - "w": 28, - "x": 218, - "y": 1 - }, - { - "color": { - "confidence": 0.998046875, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3180421218276024, - "x_min": 0.09333022683858871, - "y_max": 0.996577262878418, - "y_min": 0.7744814157485962 - }, - "confidence": 0.998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 96, - "id": 12, - "region_id": 16021, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990234375, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 173, - "x": 72, - "y": 335 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3245868682861328, - "x_min": 0.2912326455116272, - "y_max": 0.18103285878896713, - "y_min": 0.0 - }, - "confidence": 0.93017578125, - "label": "person", - "label_id": 1 - }, - "h": 78, - "id": 11, - "region_id": 16022, - "roi_type": "person", - "w": 26, - "x": 224, - "y": 0 - }, - { - "color": { - "confidence": 0.9853515625, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3213460445404053, - "x_min": 0.09354156255722046, - "y_max": 0.997982382774353, - "y_min": 0.7562445402145386 - }, - "confidence": 0.99609375, - "label": "vehicle", - "label_id": 2 - }, - "h": 104, - "id": 12, - "region_id": 16023, - "roi_type": "vehicle", - "type": { - "confidence": 0.99609375, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 175, - "x": 72, - "y": 327 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3375798463821411, - "x_min": 0.29701799154281616, - "y_max": 0.1681172400712967, - "y_min": 0.0 - }, - "confidence": 0.97314453125, - "label": "person", - "label_id": 1 - }, - "h": 73, - "id": 11, - "region_id": 16024, - "roi_type": "person", - "w": 31, - "x": 228, - "y": 0 - }, - { - "color": { - "confidence": 0.95361328125, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3254093825817108, - "x_min": 0.09381496906280518, - "y_max": 0.9986022710800171, - "y_min": 0.7277764081954956 - }, - "confidence": 0.998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "id": 12, - "region_id": 16025, - "roi_type": "vehicle", - "type": { - "confidence": 0.99609375, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 178, - "x": 72, - "y": 314 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34107476472854614, - "x_min": 0.2997574806213379, - "y_max": 0.15931344777345657, - "y_min": 0.0 - }, - "confidence": 0.96435546875, - "label": "person", - "label_id": 1 - }, - "h": 69, - "id": 11, - "region_id": 16026, - "roi_type": "person", - "w": 32, - "x": 230, - "y": 0 - }, - { - "color": { - "confidence": 0.9921875, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3319740891456604, - "x_min": 0.09414704144001007, - "y_max": 0.9966111779212952, - "y_min": 0.7045837044715881 - }, - "confidence": 0.99609375, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "id": 12, - "region_id": 16027, - "roi_type": "vehicle", - "type": { - "confidence": 0.9931640625, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 183, - "x": 72, - "y": 304 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34646058082580566, - "x_min": 0.3028937578201294, - "y_max": 0.156146802008152, - "y_min": 0.0 - }, - "confidence": 0.984375, - "label": "person", - "label_id": 1 - }, - "h": 67, - "id": 11, - "region_id": 16028, - "roi_type": "person", - "w": 33, - "x": 233, - "y": 0 - }, - { - "color": { - "confidence": 0.9853515625, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3392763137817383, - "x_min": 0.09022277593612671, - "y_max": 0.9994381070137024, - "y_min": 0.6786060929298401 - }, - "confidence": 0.99609375, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "id": 12, - "region_id": 16029, - "roi_type": "vehicle", - "type": { - "confidence": 0.9912109375, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 191, - "x": 69, - "y": 293 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34512296319007874, - "x_min": 0.30911585688591003, - "y_max": 0.15079374611377716, - "y_min": 0.0 - }, - "confidence": 0.94384765625, - "label": "person", - "label_id": 1 - }, - "h": 65, - "id": 11, - "region_id": 16030, - "roi_type": "person", - "w": 28, - "x": 237, - "y": 0 - }, - { - "color": { - "confidence": 0.94384765625, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34184062480926514, - "x_min": 0.09453167021274567, - "y_max": 1.0, - "y_min": 0.6524904370307922 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 150, - "id": 12, - "region_id": 16031, - "roi_type": "vehicle", - "type": { - "confidence": 0.97607421875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 190, - "x": 73, - "y": 282 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34818318486213684, - "x_min": 0.31593766808509827, - "y_max": 0.14530643820762634, - "y_min": 0.0 - }, - "confidence": 0.96337890625, - "label": "person", - "label_id": 1 - }, - "h": 63, - "id": 11, - "region_id": 16032, - "roi_type": "person", - "w": 25, - "x": 243, - "y": 0 - }, - { - "color": { - "confidence": 0.81591796875, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34417855739593506, - "x_min": 0.09946362674236298, - "y_max": 0.999272882938385, - "y_min": 0.6353164315223694 - }, - "confidence": 0.998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 157, - "id": 12, - "region_id": 16033, - "roi_type": "vehicle", - "type": { - "confidence": 0.986328125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 188, - "x": 76, - "y": 274 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35314884781837463, - "x_min": 0.32001474499702454, - "y_max": 0.14837931841611862, - "y_min": 0.0 - }, - "confidence": 0.87060546875, - "label": "person", - "label_id": 1 - }, - "h": 64, - "id": 11, - "region_id": 16034, - "roi_type": "person", - "w": 25, - "x": 246, - "y": 0 - }, - { - "color": { - "confidence": 0.51708984375, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3492073640227318, - "x_min": 0.10767313092947006, - "y_max": 1.0, - "y_min": 0.6190989017486572 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 165, - "id": 12, - "region_id": 16035, - "roi_type": "vehicle", - "type": { - "confidence": 0.994140625, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 185, - "x": 83, - "y": 267 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35834217071533203, - "x_min": 0.3240100145339966, - "y_max": 0.14449387788772583, - "y_min": 0.0 - }, - "confidence": 0.78515625, - "label": "person", - "label_id": 1 - }, - "h": 62, - "id": 11, - "region_id": 16036, - "roi_type": "person", - "w": 26, - "x": 249, - "y": 0 - }, - { - "color": { - "confidence": 0.888671875, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3576863408088684, - "x_min": 0.11795952916145325, - "y_max": 0.9962477087974548, - "y_min": 0.5935474038124084 - }, - "confidence": 0.9951171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 174, - "id": 12, - "region_id": 16037, - "roi_type": "vehicle", - "type": { - "confidence": 0.96435546875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 184, - "x": 91, - "y": 256 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3616437613964081, - "x_min": 0.3287608325481415, - "y_max": 0.14139731973409653, - "y_min": 0.0 - }, - "confidence": 0.6171875, - "label": "person", - "label_id": 1 - }, - "h": 61, - "id": 11, - "region_id": 16038, - "roi_type": "person", - "w": 25, - "x": 252, - "y": 0 - }, - { - "color": { - "confidence": 0.802734375, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3568938076496124, - "x_min": 0.1184740960597992, - "y_max": 0.9960288405418396, - "y_min": 0.5713207125663757 - }, - "confidence": 0.9951171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 183, - "id": 12, - "region_id": 16039, - "roi_type": "vehicle", - "type": { - "confidence": 0.98388671875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 183, - "x": 91, - "y": 247 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3645513355731964, - "x_min": 0.3319735825061798, - "y_max": 0.14285987615585327, - "y_min": 0.0 - }, - "confidence": 0.88134765625, - "label": "person", - "label_id": 1 - }, - "h": 62, - "id": 11, - "region_id": 16040, - "roi_type": "person", - "w": 25, - "x": 255, - "y": 0 - }, - { - "color": { - "confidence": 0.56787109375, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3612084537744522, - "x_min": 0.10926742851734161, - "y_max": 1.0, - "y_min": 0.5522088408470154 - }, - "confidence": 0.998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 193, - "id": 12, - "region_id": 16041, - "roi_type": "vehicle", - "type": { - "confidence": 0.9970703125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 193, - "x": 84, - "y": 239 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3690513074398041, - "x_min": 0.3348962962627411, - "y_max": 0.13076193630695343, - "y_min": 0.0 - }, - "confidence": 0.53564453125, - "label": "person", - "label_id": 1 - }, - "h": 56, - "id": 11, - "region_id": 16042, - "roi_type": "person", - "w": 26, - "x": 257, - "y": 0 - }, - { - "color": { - "confidence": 0.74072265625, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3626910224556923, - "x_min": 0.1165127232670784, - "y_max": 1.0, - "y_min": 0.5341740250587463 - }, - "confidence": 0.9921875, - "label": "vehicle", - "label_id": 2 - }, - "h": 201, - "id": 12, - "region_id": 16043, - "roi_type": "vehicle", - "type": { - "confidence": 0.98291015625, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 189, - "x": 89, - "y": 231 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.72607421875, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3653745725750923, - "x_min": 0.11738703399896622, - "y_max": 1.0, - "y_min": 0.5187159776687622 - }, - "confidence": 0.984375, - "label": "vehicle", - "label_id": 2 - }, - "h": 208, - "id": 12, - "region_id": 16044, - "roi_type": "vehicle", - "type": { - "confidence": 0.9931640625, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 190, - "x": 90, - "y": 224 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.779296875, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35986167192459106, - "x_min": 0.11861021816730499, - "y_max": 1.0, - "y_min": 0.5067421197891235 - }, - "confidence": 0.97998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "id": 12, - "region_id": 16045, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 185, - "x": 91, - "y": 219 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9013671875, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3583891987800598, - "x_min": 0.12578806281089783, - "y_max": 1.0, - "y_min": 0.48726680874824524 - }, - "confidence": 0.96142578125, - "label": "vehicle", - "label_id": 2 - }, - "h": 222, - "id": 12, - "region_id": 16046, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 179, - "x": 97, - "y": 210 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.93359375, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36830934882164, - "x_min": 0.13284197449684143, - "y_max": 1.0, - "y_min": 0.4726431965827942 - }, - "confidence": 0.9716796875, - "label": "vehicle", - "label_id": 2 - }, - "h": 228, - "id": 12, - "region_id": 16047, - "roi_type": "vehicle", - "type": { - "confidence": 0.939453125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 181, - "x": 102, - "y": 204 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.97607421875, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3714140057563782, - "x_min": 0.1372305154800415, - "y_max": 0.9820627868175507, - "y_min": 0.45351001620292664 - }, - "confidence": 0.9912109375, - "label": "vehicle", - "label_id": 2 - }, - "h": 228, - "id": 12, - "region_id": 16048, - "roi_type": "vehicle", - "type": { - "confidence": 0.814453125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 180, - "x": 105, - "y": 196 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.99609375, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3608435392379761, - "x_min": 0.14590299129486084, - "y_max": 0.9431758522987366, - "y_min": 0.4430229067802429 - }, - "confidence": 0.9970703125, - "label": "vehicle", - "label_id": 2 - }, - "h": 216, - "id": 12, - "region_id": 16049, - "roi_type": "vehicle", - "type": { - "confidence": 0.9921875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 165, - "x": 112, - "y": 191 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.97705078125, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3668741285800934, - "x_min": 0.15882495045661926, - "y_max": 0.9358053803443909, - "y_min": 0.41585129499435425 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 225, - "id": 12, - "region_id": 16050, - "roi_type": "vehicle", - "type": { - "confidence": 0.6064453125, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 160, - "x": 122, - "y": 180 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9931640625, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3655020594596863, - "x_min": 0.1626676321029663, - "y_max": 0.903299480676651, - "y_min": 0.39908042550086975 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 218, - "id": 12, - "region_id": 16051, - "roi_type": "vehicle", - "type": { - "confidence": 0.57861328125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 156, - "x": 125, - "y": 172 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9951171875, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36492133140563965, - "x_min": 0.17409741878509521, - "y_max": 0.8789278864860535, - "y_min": 0.38409990072250366 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "id": 12, - "region_id": 16052, - "roi_type": "vehicle", - "type": { - "confidence": 0.5400390625, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 147, - "x": 134, - "y": 166 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.998046875, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3610725998878479, - "x_min": 0.17910504341125488, - "y_max": 0.8557292222976685, - "y_min": 0.3645592927932739 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 212, - "id": 12, - "region_id": 16053, - "roi_type": "vehicle", - "type": { - "confidence": 0.489990234375, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 140, - "x": 138, - "y": 157 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3623489737510681, - "x_min": 0.18269610404968262, - "y_max": 0.824630856513977, - "y_min": 0.34558507800102234 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 207, - "id": 12, - "region_id": 16054, - "roi_type": "vehicle", - "type": { - "confidence": 0.74267578125, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 138, - "x": 140, - "y": 149 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36165374517440796, - "x_min": 0.18928389251232147, - "y_max": 0.7933508157730103, - "y_min": 0.32612988352775574 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 202, - "id": 12, - "region_id": 16055, - "roi_type": "vehicle", - "type": { - "confidence": 0.72314453125, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 132, - "x": 145, - "y": 141 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3588729202747345, - "x_min": 0.1904868185520172, - "y_max": 0.7664351463317871, - "y_min": 0.3122572898864746 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 196, - "id": 12, - "region_id": 16056, - "roi_type": "vehicle", - "type": { - "confidence": 0.66845703125, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 129, - "x": 146, - "y": 135 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35344889760017395, - "x_min": 0.1925678551197052, - "y_max": 0.7419216632843018, - "y_min": 0.29417183995246887 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 193, - "id": 12, - "region_id": 16057, - "roi_type": "vehicle", - "type": { - "confidence": 0.72216796875, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 124, - "x": 148, - "y": 127 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9716796875, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34998437762260437, - "x_min": 0.19450798630714417, - "y_max": 0.7181348204612732, - "y_min": 0.2771528959274292 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 191, - "id": 12, - "region_id": 16058, - "roi_type": "vehicle", - "type": { - "confidence": 0.90869140625, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 119, - "x": 149, - "y": 120 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.97802734375, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3468645513057709, - "x_min": 0.20163050293922424, - "y_max": 0.6970539093017578, - "y_min": 0.26379626989364624 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 187, - "id": 12, - "region_id": 16059, - "roi_type": "vehicle", - "type": { - "confidence": 0.9140625, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 112, - "x": 155, - "y": 114 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.79248046875, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3438488245010376, - "x_min": 0.19813984632492065, - "y_max": 0.6573256850242615, - "y_min": 0.25968676805496216 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 172, - "id": 12, - "region_id": 16060, - "roi_type": "vehicle", - "type": { - "confidence": 0.6416015625, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 112, - "x": 152, - "y": 112 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.96337890625, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34153616428375244, - "x_min": 0.19358372688293457, - "y_max": 0.6417610496282578, - "y_min": 0.24385033547878265 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 172, - "id": 12, - "region_id": 16061, - "roi_type": "vehicle", - "type": { - "confidence": 0.568359375, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 114, - "x": 149, - "y": 105 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.94921875, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.33885127305984497, - "x_min": 0.19029003381729126, - "y_max": 0.6309741288423538, - "y_min": 0.2230658084154129 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 176, - "id": 12, - "region_id": 16062, - "roi_type": "vehicle", - "type": { - "confidence": 0.544921875, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 114, - "x": 146, - "y": 96 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.96533203125, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3374425172805786, - "x_min": 0.18768715858459473, - "y_max": 0.5997136831283569, - "y_min": 0.2070835530757904 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 170, - "id": 12, - "region_id": 16063, - "roi_type": "vehicle", - "type": { - "confidence": 0.650390625, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 115, - "x": 144, - "y": 89 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8125, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3319251835346222, - "x_min": 0.17804953455924988, - "y_max": 0.5778214484453201, - "y_min": 0.1903323084115982 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 167, - "id": 12, - "region_id": 16064, - "roi_type": "vehicle", - "type": { - "confidence": 0.79931640625, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 118, - "x": 137, - "y": 82 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.701171875, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3352878987789154, - "x_min": 0.16757449507713318, - "y_max": 0.562267541885376, - "y_min": 0.1759682595729828 - }, - "confidence": 0.9970703125, - "label": "vehicle", - "label_id": 2 - }, - "h": 167, - "id": 12, - "region_id": 16065, - "roi_type": "vehicle", - "type": { - "confidence": 0.79931640625, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 129, - "x": 129, - "y": 76 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.794921875, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.33062705397605896, - "x_min": 0.15925559401512146, - "y_max": 0.5358074903488159, - "y_min": 0.16202977299690247 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 161, - "id": 12, - "region_id": 16066, - "roi_type": "vehicle", - "type": { - "confidence": 0.9892578125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 132, - "x": 122, - "y": 70 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.740234375, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3260734975337982, - "x_min": 0.14722785353660583, - "y_max": 0.5155544728040695, - "y_min": 0.157257542014122 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 155, - "id": 12, - "region_id": 16067, - "roi_type": "vehicle", - "type": { - "confidence": 0.90283203125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 137, - "x": 113, - "y": 68 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.85107421875, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3224096894264221, - "x_min": 0.13780492544174194, - "y_max": 0.501104936003685, - "y_min": 0.15674106776714325 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 149, - "id": 12, - "region_id": 16068, - "roi_type": "vehicle", - "type": { - "confidence": 0.97412109375, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 142, - "x": 106, - "y": 68 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.525390625, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3169931545853615, - "x_min": 0.12483716756105423, - "y_max": 0.4827064722776413, - "y_min": 0.1493421047925949 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 144, - "id": 12, - "region_id": 16069, - "roi_type": "vehicle", - "type": { - "confidence": 0.98388671875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 148, - "x": 96, - "y": 65 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.50244140625, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3122137784957886, - "x_min": 0.10267382860183716, - "y_max": 0.47069355845451355, - "y_min": 0.1459626853466034 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 140, - "id": 12, - "region_id": 16070, - "roi_type": "vehicle", - "type": { - "confidence": 0.89892578125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 161, - "x": 79, - "y": 63 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.5439453125, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.30563071370124817, - "x_min": 0.08968502283096313, - "y_max": 0.4555247873067856, - "y_min": 0.1361779421567917 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 138, - "id": 12, - "region_id": 16071, - "roi_type": "vehicle", - "type": { - "confidence": 0.65185546875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 166, - "x": 69, - "y": 59 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.83203125, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2940587177872658, - "x_min": 0.07481119781732559, - "y_max": 0.44223855435848236, - "y_min": 0.13631980121135712 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "id": 12, - "region_id": 16072, - "roi_type": "vehicle", - "type": { - "confidence": 0.85498046875, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 168, - "x": 57, - "y": 59 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.650390625, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2887636423110962, - "x_min": 0.06353342533111572, - "y_max": 0.4263155907392502, - "y_min": 0.1369212120771408 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 125, - "id": 12, - "region_id": 16073, - "roi_type": "vehicle", - "type": { - "confidence": 0.955078125, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 173, - "x": 49, - "y": 59 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.916015625, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2807242274284363, - "x_min": 0.04622665047645569, - "y_max": 0.41277608275413513, - "y_min": 0.132420152425766 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 121, - "id": 12, - "region_id": 16074, - "roi_type": "vehicle", - "type": { - "confidence": 0.9384765625, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 180, - "x": 36, - "y": 57 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9462890625, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2704925760626793, - "x_min": 0.032000623643398285, - "y_max": 0.4054313004016876, - "y_min": 0.131648451089859 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 118, - "id": 12, - "region_id": 16075, - "roi_type": "vehicle", - "type": { - "confidence": 0.94189453125, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 183, - "x": 25, - "y": 57 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2576461434364319, - "x_min": 0.018010497093200684, - "y_max": 0.3983272910118103, - "y_min": 0.1276540756225586 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "id": 12, - "region_id": 16076, - "roi_type": "vehicle", - "type": { - "confidence": 0.88818359375, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 184, - "x": 14, - "y": 55 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.24717597663402557, - "x_min": 0.004194930195808411, - "y_max": 0.3936364948749542, - "y_min": 0.12304255366325378 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "id": 12, - "region_id": 16077, - "roi_type": "vehicle", - "type": { - "confidence": 0.72802734375, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 187, - "x": 3, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9951171875, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.23502223938703537, - "x_min": 0.005615077912807465, - "y_max": 0.39088256657123566, - "y_min": 0.12330974638462067 - }, - "confidence": 0.998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 116, - "id": 12, - "region_id": 16078, - "roi_type": "vehicle", - "type": { - "confidence": 0.955078125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 176, - "x": 4, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9990234375, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.22485587745904922, - "x_min": 0.0017657950520515442, - "y_max": 0.3853496015071869, - "y_min": 0.1245599091053009 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 113, - "id": 12, - "region_id": 16079, - "roi_type": "vehicle", - "type": { - "confidence": 0.96435546875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 171, - "x": 1, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9990234375, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.21659931540489197, - "x_min": 0.0022316277027130127, - "y_max": 0.3794732093811035, - "y_min": 0.12392610311508179 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 110, - "id": 12, - "region_id": 16080, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 165, - "x": 2, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2029200717806816, - "x_min": 0.0007590577006340027, - "y_max": 0.37220699340105057, - "y_min": 0.12221232801675797 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 108, - "id": 12, - "region_id": 16081, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 155, - "x": 1, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.18482676148414612, - "x_min": 0.0, - "y_max": 0.36792203038930893, - "y_min": 0.12216844409704208 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 106, - "id": 12, - "region_id": 16082, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 142, - "x": 0, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.1738429069519043, - "x_min": 0.0, - "y_max": 0.3633963465690613, - "y_min": 0.11975441873073578 - }, - "confidence": 0.9951171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 105, - "id": 12, - "region_id": 16083, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 134, - "x": 0, - "y": 52 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.16032805293798447, - "x_min": 0.0, - "y_max": 0.358875572681427, - "y_min": 0.12134051322937012 - }, - "confidence": 0.98388671875, - "label": "vehicle", - "label_id": 2 - }, - "h": 103, - "id": 12, - "region_id": 16084, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 123, - "x": 0, - "y": 52 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.1480599343776703, - "x_min": 2.3692846298217773e-06, - "y_max": 0.3564804494380951, - "y_min": 0.1216433048248291 - }, - "confidence": 0.95703125, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "id": 12, - "region_id": 16085, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 114, - "x": 0, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9990234375, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.13580363243818283, - "x_min": 0.0, - "y_max": 0.3569759950041771, - "y_min": 0.12307702749967575 - }, - "confidence": 0.794921875, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "id": 12, - "region_id": 16086, - "roi_type": "vehicle", - "type": { - "confidence": 1.0, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 104, - "x": 0, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.990234375, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.11234281957149506, - "x_min": 0.0019840747117996216, - "y_max": 0.3554091155529022, - "y_min": 0.12587442994117737 - }, - "confidence": 0.6865234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 99, - "id": 12, - "region_id": 16087, - "roi_type": "vehicle", - "type": { - "confidence": 0.99609375, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 85, - "x": 2, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9453125, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.09860633686184883, - "x_min": 0.003699634224176407, - "y_max": 0.3584703207015991, - "y_min": 0.1261626034975052 - }, - "confidence": 0.7734375, - "label": "vehicle", - "label_id": 2 - }, - "h": 100, - "id": 12, - "region_id": 16088, - "roi_type": "vehicle", - "type": { - "confidence": 0.9892578125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 73, - "x": 3, - "y": 55 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.40576171875, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.0877152867615223, - "x_min": 0.0017236806452274323, - "y_max": 0.3632138967514038, - "y_min": 0.12957501411437988 - }, - "confidence": 0.6171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "id": 12, - "region_id": 16089, - "roi_type": "vehicle", - "type": { - "confidence": 0.93701171875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 66, - "x": 1, - "y": 56 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9248046875, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.07340044155716896, - "x_min": 0.004111398011445999, - "y_max": 0.3508581221103668, - "y_min": 0.14412924647331238 - }, - "confidence": 0.65478515625, - "label": "vehicle", - "label_id": 2 - }, - "h": 89, - "id": 12, - "region_id": 16090, - "roi_type": "vehicle", - "type": { - "confidence": 0.73193359375, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 53, - "x": 3, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.95068359375, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.06271997094154358, - "x_min": 0.0, - "y_max": 0.3495235741138458, - "y_min": 0.14369750022888184 - }, - "confidence": 0.68505859375, - "label": "vehicle", - "label_id": 2 - }, - "h": 89, - "id": 12, - "region_id": 16091, - "roi_type": "vehicle", - "type": { - "confidence": 0.82666015625, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 48, - "x": 0, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.71826171875, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.049724431708455086, - "x_min": 0.0, - "y_max": 0.34245553612709045, - "y_min": 0.14341771602630615 - }, - "confidence": 0.63525390625, - "label": "vehicle", - "label_id": 2 - }, - "h": 86, - "id": 12, - "region_id": 16092, - "roi_type": "vehicle", - "type": { - "confidence": 0.91748046875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 38, - "x": 0, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49250000000 - } - ] -} \ No newline at end of file diff --git a/tests/test_cases/pipeline_execution/myriad/object_detection_myriad_gstreamer.json b/tests/test_cases/pipeline_execution/myriad/object_detection_myriad_gstreamer.json deleted file mode 100644 index 18d52d6..0000000 --- a/tests/test_cases/pipeline_execution/myriad/object_detection_myriad_gstreamer.json +++ /dev/null @@ -1,7086 +0,0 @@ -{ - "options": {}, - "pipeline": { - "name": "object_detection", - "version": "person_vehicle_bike" - }, - "request": { - "source": { - "type": "uri", - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4" - }, - "destination": { - "type": "file", - "path": "/tmp/object_detection_myriad_results.json", - "format": "json-lines" - }, - "parameters": { - "detection-device": "MYRIAD", - "detection-model-instance-id": "" - } - }, - "numerical_tolerance": 0.3, - "result": [ - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7451171875, - "x_min": 0.6728515625, - "y_max": 0.9990234375, - "y_min": 0.8779296875 - }, - "confidence": 0.52685546875, - "label": "person", - "label_id": 1 - }, - "h": 52, - "roi_type": "person", - "w": 56, - "x": 517, - "y": 379 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.74462890625, - "x_min": 0.67626953125, - "y_max": 1.0, - "y_min": 0.82763671875 - }, - "confidence": 0.54833984375, - "label": "person", - "label_id": 1 - }, - "h": 74, - "roi_type": "person", - "w": 53, - "x": 519, - "y": 358 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.74658203125, - "x_min": 0.68212890625, - "y_max": 1.0, - "y_min": 0.81005859375 - }, - "confidence": 0.63427734375, - "label": "person", - "label_id": 1 - }, - "h": 82, - "roi_type": "person", - "w": 50, - "x": 524, - "y": 350 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.748046875, - "x_min": 0.68359375, - "y_max": 1.0, - "y_min": 0.7861328125 - }, - "confidence": 0.87744140625, - "label": "person", - "label_id": 1 - }, - "h": 92, - "roi_type": "person", - "w": 50, - "x": 525, - "y": 340 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.75048828125, - "x_min": 0.68408203125, - "y_max": 0.9970703125, - "y_min": 0.7705078125 - }, - "confidence": 0.919921875, - "label": "person", - "label_id": 1 - }, - "h": 98, - "roi_type": "person", - "w": 51, - "x": 525, - "y": 333 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.755859375, - "x_min": 0.6826171875, - "y_max": 0.9931640625, - "y_min": 0.7548828125 - }, - "confidence": 0.9111328125, - "label": "person", - "label_id": 1 - }, - "h": 103, - "roi_type": "person", - "w": 56, - "x": 524, - "y": 326 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7568359375, - "x_min": 0.68359375, - "y_max": 0.9892578125, - "y_min": 0.7451171875 - }, - "confidence": 0.9384765625, - "label": "person", - "label_id": 1 - }, - "h": 105, - "roi_type": "person", - "w": 56, - "x": 525, - "y": 322 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.75830078125, - "x_min": 0.68701171875, - "y_max": 0.974609375, - "y_min": 0.72265625 - }, - "confidence": 0.94970703125, - "label": "person", - "label_id": 1 - }, - "h": 109, - "roi_type": "person", - "w": 55, - "x": 528, - "y": 312 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.75732421875, - "x_min": 0.69091796875, - "y_max": 0.94873046875, - "y_min": 0.71240234375 - }, - "confidence": 0.869140625, - "label": "person", - "label_id": 1 - }, - "h": 102, - "roi_type": "person", - "w": 51, - "x": 531, - "y": 308 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.75634765625, - "x_min": 0.69482421875, - "y_max": 0.89697265625, - "y_min": 0.70263671875 - }, - "confidence": 0.8857421875, - "label": "person", - "label_id": 1 - }, - "h": 84, - "roi_type": "person", - "w": 47, - "x": 534, - "y": 304 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.75732421875, - "x_min": 0.69775390625, - "y_max": 0.8759765625, - "y_min": 0.6884765625 - }, - "confidence": 0.861328125, - "label": "person", - "label_id": 1 - }, - "h": 81, - "roi_type": "person", - "w": 46, - "x": 536, - "y": 297 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7626953125, - "x_min": 0.6962890625, - "y_max": 0.90185546875, - "y_min": 0.66748046875 - }, - "confidence": 0.69970703125, - "label": "person", - "label_id": 1 - }, - "h": 101, - "roi_type": "person", - "w": 51, - "x": 535, - "y": 288 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.763671875, - "x_min": 0.6943359375, - "y_max": 0.89697265625, - "y_min": 0.65087890625 - }, - "confidence": 0.69189453125, - "label": "person", - "label_id": 1 - }, - "h": 106, - "roi_type": "person", - "w": 53, - "x": 533, - "y": 281 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.763671875, - "x_min": 0.703125, - "y_max": 0.8515625, - "y_min": 0.6484375 - }, - "confidence": 0.65576171875, - "label": "person", - "label_id": 1 - }, - "h": 88, - "roi_type": "person", - "w": 47, - "x": 540, - "y": 280 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.76708984375, - "x_min": 0.70654296875, - "y_max": 0.830078125, - "y_min": 0.6298828125 - }, - "confidence": 0.92333984375, - "label": "person", - "label_id": 1 - }, - "h": 86, - "roi_type": "person", - "w": 47, - "x": 543, - "y": 272 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7724609375, - "x_min": 0.7099609375, - "y_max": 0.826171875, - "y_min": 0.6171875 - }, - "confidence": 0.67919921875, - "label": "person", - "label_id": 1 - }, - "h": 90, - "roi_type": "person", - "w": 48, - "x": 545, - "y": 267 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7744140625, - "x_min": 0.708984375, - "y_max": 0.822265625, - "y_min": 0.6103515625 - }, - "confidence": 0.73876953125, - "label": "person", - "label_id": 1 - }, - "h": 92, - "roi_type": "person", - "w": 50, - "x": 545, - "y": 264 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7841796875, - "x_min": 0.7255859375, - "y_max": 0.7587890625, - "y_min": 0.5556640625 - }, - "confidence": 0.68798828125, - "label": "person", - "label_id": 1 - }, - "h": 88, - "roi_type": "person", - "w": 45, - "x": 557, - "y": 240 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.78955078125, - "x_min": 0.73291015625, - "y_max": 0.72607421875, - "y_min": 0.54833984375 - }, - "confidence": 0.97412109375, - "label": "person", - "label_id": 1 - }, - "h": 77, - "roi_type": "person", - "w": 44, - "x": 563, - "y": 237 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.78857421875, - "x_min": 0.73779296875, - "y_max": 0.703125, - "y_min": 0.5400390625 - }, - "confidence": 0.8330078125, - "label": "person", - "label_id": 1 - }, - "h": 70, - "roi_type": "person", - "w": 39, - "x": 567, - "y": 233 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7939453125, - "x_min": 0.7421875, - "y_max": 0.6904296875, - "y_min": 0.51953125 - }, - "confidence": 0.76025390625, - "label": "person", - "label_id": 1 - }, - "h": 74, - "roi_type": "person", - "w": 40, - "x": 570, - "y": 224 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.80078125, - "x_min": 0.74609375, - "y_max": 0.6884765625, - "y_min": 0.521484375 - }, - "confidence": 0.8701171875, - "label": "person", - "label_id": 1 - }, - "h": 72, - "roi_type": "person", - "w": 42, - "x": 573, - "y": 225 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8095703125, - "x_min": 0.74609375, - "y_max": 0.703125, - "y_min": 0.501953125 - }, - "confidence": 0.9091796875, - "label": "person", - "label_id": 1 - }, - "h": 87, - "roi_type": "person", - "w": 49, - "x": 573, - "y": 217 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.81298828125, - "x_min": 0.75634765625, - "y_max": 0.6845703125, - "y_min": 0.49609375 - }, - "confidence": 0.8984375, - "label": "person", - "label_id": 1 - }, - "h": 81, - "roi_type": "person", - "w": 44, - "x": 581, - "y": 214 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8232421875, - "x_min": 0.763671875, - "y_max": 0.68603515625, - "y_min": 0.48876953125 - }, - "confidence": 0.80517578125, - "label": "person", - "label_id": 1 - }, - "h": 85, - "roi_type": "person", - "w": 46, - "x": 587, - "y": 211 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8232421875, - "x_min": 0.7607421875, - "y_max": 0.69287109375, - "y_min": 0.474853515625 - }, - "confidence": 0.69140625, - "label": "person", - "label_id": 1 - }, - "h": 94, - "roi_type": "person", - "w": 48, - "x": 584, - "y": 205 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.83203125, - "x_min": 0.759765625, - "y_max": 0.6943359375, - "y_min": 0.4658203125 - }, - "confidence": 0.58837890625, - "label": "person", - "label_id": 1 - }, - "h": 99, - "roi_type": "person", - "w": 56, - "x": 584, - "y": 201 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8427734375, - "x_min": 0.7939453125, - "y_max": 0.64208984375, - "y_min": 0.438232421875 - }, - "confidence": 0.96533203125, - "label": "person", - "label_id": 1 - }, - "h": 88, - "roi_type": "person", - "w": 38, - "x": 610, - "y": 189 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.849609375, - "x_min": 0.796875, - "y_max": 0.61572265625, - "y_min": 0.44287109375 - }, - "confidence": 0.87451171875, - "label": "person", - "label_id": 1 - }, - "h": 75, - "roi_type": "person", - "w": 41, - "x": 612, - "y": 191 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.853515625, - "x_min": 0.80078125, - "y_max": 0.60546875, - "y_min": 0.4296875 - }, - "confidence": 0.8984375, - "label": "person", - "label_id": 1 - }, - "h": 76, - "roi_type": "person", - "w": 41, - "x": 615, - "y": 186 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.85986328125, - "x_min": 0.80615234375, - "y_max": 0.5927734375, - "y_min": 0.4267578125 - }, - "confidence": 0.7919921875, - "label": "person", - "label_id": 1 - }, - "h": 72, - "roi_type": "person", - "w": 41, - "x": 619, - "y": 184 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8662109375, - "x_min": 0.810546875, - "y_max": 0.59423828125, - "y_min": 0.42041015625 - }, - "confidence": 0.7646484375, - "label": "person", - "label_id": 1 - }, - "h": 75, - "roi_type": "person", - "w": 43, - "x": 623, - "y": 182 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.87451171875, - "x_min": 0.81787109375, - "y_max": 0.59033203125, - "y_min": 0.41357421875 - }, - "confidence": 0.95263671875, - "label": "person", - "label_id": 1 - }, - "h": 76, - "roi_type": "person", - "w": 44, - "x": 628, - "y": 179 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.88525390625, - "x_min": 0.82666015625, - "y_max": 0.58642578125, - "y_min": 0.40283203125 - }, - "confidence": 0.81201171875, - "label": "person", - "label_id": 1 - }, - "h": 79, - "roi_type": "person", - "w": 45, - "x": 635, - "y": 174 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.890625, - "x_min": 0.8349609375, - "y_max": 0.58984375, - "y_min": 0.3876953125 - }, - "confidence": 0.78662109375, - "label": "person", - "label_id": 1 - }, - "h": 87, - "roi_type": "person", - "w": 43, - "x": 641, - "y": 167 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.900390625, - "x_min": 0.8359375, - "y_max": 0.587890625, - "y_min": 0.39404296875 - }, - "confidence": 0.63818359375, - "label": "person", - "label_id": 1 - }, - "h": 84, - "roi_type": "person", - "w": 50, - "x": 642, - "y": 170 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.90869140625, - "x_min": 0.85302734375, - "y_max": 0.56103515625, - "y_min": 0.3759765625 - }, - "confidence": 0.625, - "label": "person", - "label_id": 1 - }, - "h": 80, - "roi_type": "person", - "w": 43, - "x": 655, - "y": 162 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.91259765625, - "x_min": 0.86669921875, - "y_max": 0.54443359375, - "y_min": 0.3671875 - }, - "confidence": 0.86865234375, - "label": "person", - "label_id": 1 - }, - "h": 77, - "roi_type": "person", - "w": 35, - "x": 666, - "y": 159 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.92041015625, - "x_min": 0.87158203125, - "y_max": 0.529296875, - "y_min": 0.351806640625 - }, - "confidence": 0.97509765625, - "label": "person", - "label_id": 1 - }, - "h": 77, - "roi_type": "person", - "w": 38, - "x": 669, - "y": 152 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.92236328125, - "x_min": 0.87744140625, - "y_max": 0.52197265625, - "y_min": 0.3505859375 - }, - "confidence": 0.92431640625, - "label": "person", - "label_id": 1 - }, - "h": 74, - "roi_type": "person", - "w": 35, - "x": 674, - "y": 151 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.927734375, - "x_min": 0.8720703125, - "y_max": 0.51953125, - "y_min": 0.34423828125 - }, - "confidence": 0.74072265625, - "label": "person", - "label_id": 1 - }, - "h": 76, - "roi_type": "person", - "w": 43, - "x": 670, - "y": 149 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9375, - "x_min": 0.8857421875, - "y_max": 0.5107421875, - "y_min": 0.342529296875 - }, - "confidence": 0.947265625, - "label": "person", - "label_id": 1 - }, - "h": 73, - "roi_type": "person", - "w": 40, - "x": 680, - "y": 148 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.94482421875, - "x_min": 0.89013671875, - "y_max": 0.50390625, - "y_min": 0.33642578125 - }, - "confidence": 0.90478515625, - "label": "person", - "label_id": 1 - }, - "h": 72, - "roi_type": "person", - "w": 42, - "x": 684, - "y": 145 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.955078125, - "x_min": 0.8984375, - "y_max": 0.5107421875, - "y_min": 0.32421875 - }, - "confidence": 0.7705078125, - "label": "person", - "label_id": 1 - }, - "h": 81, - "roi_type": "person", - "w": 44, - "x": 690, - "y": 140 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.96142578125, - "x_min": 0.90576171875, - "y_max": 0.51806640625, - "y_min": 0.326416015625 - }, - "confidence": 0.7509765625, - "label": "person", - "label_id": 1 - }, - "h": 83, - "roi_type": "person", - "w": 43, - "x": 696, - "y": 141 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9736328125, - "x_min": 0.9140625, - "y_max": 0.491943359375, - "y_min": 0.318115234375 - }, - "confidence": 0.77099609375, - "label": "person", - "label_id": 1 - }, - "h": 75, - "roi_type": "person", - "w": 46, - "x": 702, - "y": 137 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9755859375, - "x_min": 0.92578125, - "y_max": 0.48583984375, - "y_min": 0.30419921875 - }, - "confidence": 0.72314453125, - "label": "person", - "label_id": 1 - }, - "h": 78, - "roi_type": "person", - "w": 38, - "x": 711, - "y": 131 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9814453125, - "x_min": 0.9287109375, - "y_max": 0.478271484375, - "y_min": 0.294677734375 - }, - "confidence": 0.8154296875, - "label": "person", - "label_id": 1 - }, - "h": 79, - "roi_type": "person", - "w": 41, - "x": 713, - "y": 127 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.98291015625, - "x_min": 0.93212890625, - "y_max": 0.462158203125, - "y_min": 0.290771484375 - }, - "confidence": 0.9677734375, - "label": "person", - "label_id": 1 - }, - "h": 74, - "roi_type": "person", - "w": 39, - "x": 716, - "y": 126 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9853515625, - "x_min": 0.931640625, - "y_max": 0.459716796875, - "y_min": 0.288818359375 - }, - "confidence": 0.67333984375, - "label": "person", - "label_id": 1 - }, - "h": 74, - "roi_type": "person", - "w": 41, - "x": 716, - "y": 125 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.998046875, - "x_min": 0.9287109375, - "y_max": 0.47021484375, - "y_min": 0.2587890625 - }, - "confidence": 0.56396484375, - "label": "person", - "label_id": 1 - }, - "h": 91, - "roi_type": "person", - "w": 53, - "x": 713, - "y": 112 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.99658203125, - "x_min": 0.94873046875, - "y_max": 0.447265625, - "y_min": 0.267578125 - }, - "confidence": 0.53173828125, - "label": "person", - "label_id": 1 - }, - "h": 78, - "roi_type": "person", - "w": 37, - "x": 729, - "y": 116 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.11865234375, - "y_max": 0.982421875, - "y_min": 0.021728515625 - }, - "confidence": 0.55078125, - "label": "vehicle", - "label_id": 2 - }, - "h": 415, - "roi_type": "vehicle", - "w": 677, - "x": 91, - "y": 9 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 13916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.347412109375, - "x_min": 0.12109375, - "y_max": 1.0, - "y_min": 0.83837890625 - }, - "confidence": 0.61962890625, - "label": "vehicle", - "label_id": 2 - }, - "h": 70, - "roi_type": "vehicle", - "w": 174, - "x": 93, - "y": 362 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35302734375, - "x_min": 0.1212158203125, - "y_max": 1.0, - "y_min": 0.8095703125 - }, - "confidence": 0.7138671875, - "label": "vehicle", - "label_id": 2 - }, - "h": 82, - "roi_type": "vehicle", - "w": 178, - "x": 93, - "y": 350 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35693359375, - "x_min": 0.12030029296875, - "y_max": 0.99658203125, - "y_min": 0.78369140625 - }, - "confidence": 0.8271484375, - "label": "vehicle", - "label_id": 2 - }, - "h": 92, - "roi_type": "vehicle", - "w": 182, - "x": 92, - "y": 339 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.359375, - "x_min": 0.11309814453125, - "y_max": 0.99658203125, - "y_min": 0.76416015625 - }, - "confidence": 0.8212890625, - "label": "vehicle", - "label_id": 2 - }, - "h": 100, - "roi_type": "vehicle", - "w": 189, - "x": 87, - "y": 330 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.369140625, - "x_min": 0.114501953125, - "y_max": 1.0, - "y_min": 0.728515625 - }, - "confidence": 0.7041015625, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "roi_type": "vehicle", - "w": 196, - "x": 88, - "y": 315 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36767578125, - "x_min": 0.1015625, - "y_max": 0.99609375, - "y_min": 0.703125 - }, - "confidence": 0.83984375, - "label": "vehicle", - "label_id": 2 - }, - "h": 127, - "roi_type": "vehicle", - "w": 204, - "x": 78, - "y": 304 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37646484375, - "x_min": 0.1077880859375, - "y_max": 1.0, - "y_min": 0.6787109375 - }, - "confidence": 0.92236328125, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "roi_type": "vehicle", - "w": 206, - "x": 83, - "y": 293 - }, - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.122314453125, - "y_max": 1.0, - "y_min": 0.028076171875 - }, - "confidence": 0.59619140625, - "label": "vehicle", - "label_id": 2 - }, - "h": 420, - "roi_type": "vehicle", - "w": 674, - "x": 94, - "y": 12 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.378662109375, - "x_min": 0.10693359375, - "y_max": 1.0, - "y_min": 0.64990234375 - }, - "confidence": 0.95947265625, - "label": "vehicle", - "label_id": 2 - }, - "h": 151, - "roi_type": "vehicle", - "w": 209, - "x": 82, - "y": 281 - }, - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.127685546875, - "y_max": 0.9677734375, - "y_min": 0.032470703125 - }, - "confidence": 0.6328125, - "label": "vehicle", - "label_id": 2 - }, - "h": 404, - "roi_type": "vehicle", - "w": 670, - "x": 98, - "y": 14 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37841796875, - "x_min": 0.1058349609375, - "y_max": 1.0, - "y_min": 0.63134765625 - }, - "confidence": 0.990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 159, - "roi_type": "vehicle", - "w": 209, - "x": 81, - "y": 273 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.378662109375, - "x_min": 0.119384765625, - "y_max": 0.99951171875, - "y_min": 0.60888671875 - }, - "confidence": 0.994140625, - "label": "vehicle", - "label_id": 2 - }, - "h": 169, - "roi_type": "vehicle", - "w": 199, - "x": 92, - "y": 263 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3759765625, - "x_min": 0.117431640625, - "y_max": 0.9970703125, - "y_min": 0.583984375 - }, - "confidence": 0.994140625, - "label": "vehicle", - "label_id": 2 - }, - "h": 178, - "roi_type": "vehicle", - "w": 199, - "x": 90, - "y": 252 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.376953125, - "x_min": 0.1175537109375, - "y_max": 0.99755859375, - "y_min": 0.56201171875 - }, - "confidence": 0.9873046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 188, - "roi_type": "vehicle", - "w": 199, - "x": 90, - "y": 243 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37255859375, - "x_min": 0.1109619140625, - "y_max": 1.0, - "y_min": 0.54150390625 - }, - "confidence": 0.97705078125, - "label": "vehicle", - "label_id": 2 - }, - "h": 198, - "roi_type": "vehicle", - "w": 201, - "x": 85, - "y": 234 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36572265625, - "x_min": 0.1318359375, - "y_max": 1.0, - "y_min": 0.52490234375 - }, - "confidence": 0.97607421875, - "label": "vehicle", - "label_id": 2 - }, - "h": 205, - "roi_type": "vehicle", - "w": 180, - "x": 101, - "y": 227 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36376953125, - "x_min": 0.1346435546875, - "y_max": 1.0, - "y_min": 0.50390625 - }, - "confidence": 0.990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "roi_type": "vehicle", - "w": 176, - "x": 103, - "y": 218 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.96875, - "x_min": 0.145751953125, - "y_max": 0.82373046875, - "y_min": 0.044921875 - }, - "confidence": 0.6494140625, - "label": "vehicle", - "label_id": 2 - }, - "h": 336, - "roi_type": "vehicle", - "w": 632, - "x": 112, - "y": 19 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.357177734375, - "x_min": 0.143310546875, - "y_max": 0.9970703125, - "y_min": 0.4951171875 - }, - "confidence": 0.9951171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 217, - "roi_type": "vehicle", - "w": 164, - "x": 110, - "y": 214 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3544921875, - "x_min": 0.1474609375, - "y_max": 0.99853515625, - "y_min": 0.47509765625 - }, - "confidence": 0.9970703125, - "label": "vehicle", - "label_id": 2 - }, - "h": 226, - "roi_type": "vehicle", - "w": 159, - "x": 113, - "y": 205 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9453125, - "x_min": 0.369873046875, - "y_max": 0.8935546875, - "y_min": 0.0439453125 - }, - "confidence": 0.52587890625, - "label": "vehicle", - "label_id": 2 - }, - "h": 367, - "roi_type": "vehicle", - "w": 442, - "x": 284, - "y": 19 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.356689453125, - "x_min": 0.153564453125, - "y_max": 0.984375, - "y_min": 0.450439453125 - }, - "confidence": 0.9931640625, - "label": "vehicle", - "label_id": 2 - }, - "h": 231, - "roi_type": "vehicle", - "w": 156, - "x": 118, - "y": 195 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.349609375, - "x_min": 0.1593017578125, - "y_max": 0.9482421875, - "y_min": 0.431884765625 - }, - "confidence": 0.9970703125, - "label": "vehicle", - "label_id": 2 - }, - "h": 223, - "roi_type": "vehicle", - "w": 146, - "x": 122, - "y": 187 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9755859375, - "x_min": 0.332275390625, - "y_max": 0.81884765625, - "y_min": 0.060546875 - }, - "confidence": 0.580078125, - "label": "vehicle", - "label_id": 2 - }, - "h": 328, - "roi_type": "vehicle", - "w": 494, - "x": 255, - "y": 26 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.344970703125, - "x_min": 0.161865234375, - "y_max": 0.935546875, - "y_min": 0.421630859375 - }, - "confidence": 0.9970703125, - "label": "vehicle", - "label_id": 2 - }, - "h": 222, - "roi_type": "vehicle", - "w": 141, - "x": 124, - "y": 182 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.97802734375, - "x_min": 0.32177734375, - "y_max": 0.9384765625, - "y_min": 0.0517578125 - }, - "confidence": 0.52197265625, - "label": "vehicle", - "label_id": 2 - }, - "h": 383, - "roi_type": "vehicle", - "w": 504, - "x": 247, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3388671875, - "x_min": 0.1650390625, - "y_max": 0.9072265625, - "y_min": 0.402099609375 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 218, - "roi_type": "vehicle", - "w": 134, - "x": 127, - "y": 174 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33642578125, - "x_min": 0.1651611328125, - "y_max": 0.8818359375, - "y_min": 0.388427734375 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "roi_type": "vehicle", - "w": 132, - "x": 127, - "y": 168 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33251953125, - "x_min": 0.162353515625, - "y_max": 0.85986328125, - "y_min": 0.37255859375 - }, - "confidence": 0.998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 211, - "roi_type": "vehicle", - "w": 131, - "x": 125, - "y": 161 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.330078125, - "x_min": 0.16162109375, - "y_max": 0.8310546875, - "y_min": 0.3544921875 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 206, - "roi_type": "vehicle", - "w": 129, - "x": 124, - "y": 153 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.96484375, - "x_min": 0.322998046875, - "y_max": 0.86328125, - "y_min": 0.069580078125 - }, - "confidence": 0.62841796875, - "label": "vehicle", - "label_id": 2 - }, - "h": 343, - "roi_type": "vehicle", - "w": 493, - "x": 248, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3291015625, - "x_min": 0.156982421875, - "y_max": 0.80615234375, - "y_min": 0.34423828125 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 200, - "roi_type": "vehicle", - "w": 132, - "x": 121, - "y": 149 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.96484375, - "x_min": 0.321044921875, - "y_max": 0.8115234375, - "y_min": 0.054443359375 - }, - "confidence": 0.7060546875, - "label": "vehicle", - "label_id": 2 - }, - "h": 327, - "roi_type": "vehicle", - "w": 494, - "x": 247, - "y": 24 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.325927734375, - "x_min": 0.1513671875, - "y_max": 0.7919921875, - "y_min": 0.330078125 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 200, - "roi_type": "vehicle", - "w": 134, - "x": 116, - "y": 143 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.962890625, - "x_min": 0.339599609375, - "y_max": 0.865234375, - "y_min": 0.04052734375 - }, - "confidence": 0.5419921875, - "label": "vehicle", - "label_id": 2 - }, - "h": 356, - "roi_type": "vehicle", - "w": 479, - "x": 261, - "y": 18 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3232421875, - "x_min": 0.142822265625, - "y_max": 0.7724609375, - "y_min": 0.320068359375 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 195, - "roi_type": "vehicle", - "w": 139, - "x": 110, - "y": 138 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9755859375, - "x_min": 0.294189453125, - "y_max": 0.87841796875, - "y_min": 0.02587890625 - }, - "confidence": 0.6025390625, - "label": "vehicle", - "label_id": 2 - }, - "h": 368, - "roi_type": "vehicle", - "w": 523, - "x": 226, - "y": 11 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3203125, - "x_min": 0.136474609375, - "y_max": 0.75732421875, - "y_min": 0.31298828125 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 192, - "roi_type": "vehicle", - "w": 141, - "x": 105, - "y": 135 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.96728515625, - "x_min": 0.28564453125, - "y_max": 0.83349609375, - "y_min": 0.03857421875 - }, - "confidence": 0.72998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 343, - "roi_type": "vehicle", - "w": 524, - "x": 219, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31689453125, - "x_min": 0.12890625, - "y_max": 0.7353515625, - "y_min": 0.3017578125 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 187, - "roi_type": "vehicle", - "w": 144, - "x": 99, - "y": 130 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9521484375, - "x_min": 0.332275390625, - "y_max": 0.859375, - "y_min": 0.03466796875 - }, - "confidence": 0.7685546875, - "label": "vehicle", - "label_id": 2 - }, - "h": 356, - "roi_type": "vehicle", - "w": 476, - "x": 255, - "y": 15 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3134765625, - "x_min": 0.1165771484375, - "y_max": 0.72314453125, - "y_min": 0.28955078125 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 187, - "roi_type": "vehicle", - "w": 151, - "x": 90, - "y": 125 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.978515625, - "x_min": 0.283447265625, - "y_max": 0.8564453125, - "y_min": 0.048583984375 - }, - "confidence": 0.5615234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 349, - "roi_type": "vehicle", - "w": 534, - "x": 218, - "y": 21 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.311279296875, - "x_min": 0.105712890625, - "y_max": 0.708984375, - "y_min": 0.28369140625 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 184, - "roi_type": "vehicle", - "w": 158, - "x": 81, - "y": 123 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9775390625, - "x_min": 0.2822265625, - "y_max": 0.85888671875, - "y_min": 0.04541015625 - }, - "confidence": 0.59814453125, - "label": "vehicle", - "label_id": 2 - }, - "h": 351, - "roi_type": "vehicle", - "w": 534, - "x": 217, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.30712890625, - "x_min": 0.08837890625, - "y_max": 0.69384765625, - "y_min": 0.27685546875 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 180, - "roi_type": "vehicle", - "w": 168, - "x": 68, - "y": 120 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9580078125, - "x_min": 0.3330078125, - "y_max": 0.8408203125, - "y_min": 0.04931640625 - }, - "confidence": 0.6494140625, - "label": "vehicle", - "label_id": 2 - }, - "h": 342, - "roi_type": "vehicle", - "w": 480, - "x": 256, - "y": 21 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.302490234375, - "x_min": 0.08172607421875, - "y_max": 0.67333984375, - "y_min": 0.28173828125 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 169, - "roi_type": "vehicle", - "w": 170, - "x": 63, - "y": 122 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.294189453125, - "x_min": 0.07354736328125, - "y_max": 0.65673828125, - "y_min": 0.2724609375 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 166, - "roi_type": "vehicle", - "w": 169, - "x": 56, - "y": 118 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.99609375, - "x_min": 0.3037109375, - "y_max": 0.85400390625, - "y_min": 0.05029296875 - }, - "confidence": 0.50244140625, - "label": "vehicle", - "label_id": 2 - }, - "h": 347, - "roi_type": "vehicle", - "w": 532, - "x": 233, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.288330078125, - "x_min": 0.06658935546875, - "y_max": 0.6484375, - "y_min": 0.26416015625 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 166, - "roi_type": "vehicle", - "w": 170, - "x": 51, - "y": 114 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.282958984375, - "x_min": 0.05487060546875, - "y_max": 0.6376953125, - "y_min": 0.262939453125 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 162, - "roi_type": "vehicle", - "w": 175, - "x": 42, - "y": 114 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.96337890625, - "x_min": 0.34521484375, - "y_max": 0.7236328125, - "y_min": 0.067138671875 - }, - "confidence": 0.52783203125, - "label": "vehicle", - "label_id": 2 - }, - "h": 284, - "roi_type": "vehicle", - "w": 475, - "x": 265, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27734375, - "x_min": 0.04376220703125, - "y_max": 0.626953125, - "y_min": 0.26025390625 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 158, - "roi_type": "vehicle", - "w": 179, - "x": 34, - "y": 112 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27001953125, - "x_min": 0.03076171875, - "y_max": 0.6123046875, - "y_min": 0.257568359375 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 153, - "roi_type": "vehicle", - "w": 184, - "x": 24, - "y": 111 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.26171875, - "x_min": 0.019287109375, - "y_max": 0.6005859375, - "y_min": 0.25244140625 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 150, - "roi_type": "vehicle", - "w": 186, - "x": 15, - "y": 109 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.256103515625, - "x_min": 0.00994873046875, - "y_max": 0.59521484375, - "y_min": 0.25634765625 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 146, - "roi_type": "vehicle", - "w": 189, - "x": 8, - "y": 111 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.245361328125, - "x_min": 0.00384521484375, - "y_max": 0.58544921875, - "y_min": 0.2509765625 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 144, - "roi_type": "vehicle", - "w": 185, - "x": 3, - "y": 108 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23388671875, - "x_min": 0.00189208984375, - "y_max": 0.5771484375, - "y_min": 0.248046875 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 142, - "roi_type": "vehicle", - "w": 178, - "x": 1, - "y": 107 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2237548828125, - "x_min": 0.0006103515625, - "y_max": 0.5654296875, - "y_min": 0.2457275390625 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 138, - "roi_type": "vehicle", - "w": 171, - "x": 0, - "y": 106 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.21905517578125, - "x_min": 0.0, - "y_max": 0.5576171875, - "y_min": 0.2432861328125 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 136, - "roi_type": "vehicle", - "w": 168, - "x": 0, - "y": 105 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2091064453125, - "x_min": 0.0, - "y_max": 0.55126953125, - "y_min": 0.23828125 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 135, - "roi_type": "vehicle", - "w": 161, - "x": 0, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.198974609375, - "x_min": 0.00054931640625, - "y_max": 0.5390625, - "y_min": 0.2393798828125 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 129, - "roi_type": "vehicle", - "w": 152, - "x": 0, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.187255859375, - "x_min": 0.0015869140625, - "y_max": 0.5341796875, - "y_min": 0.229736328125 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "roi_type": "vehicle", - "w": 143, - "x": 1, - "y": 99 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.175048828125, - "x_min": 0.001953125, - "y_max": 0.5302734375, - "y_min": 0.225341796875 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "roi_type": "vehicle", - "w": 133, - "x": 2, - "y": 97 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.165283203125, - "x_min": 0.00299072265625, - "y_max": 0.5234375, - "y_min": 0.22021484375 - }, - "confidence": 0.9970703125, - "label": "vehicle", - "label_id": 2 - }, - "h": 131, - "roi_type": "vehicle", - "w": 125, - "x": 2, - "y": 95 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.160888671875, - "x_min": 0.0, - "y_max": 0.52587890625, - "y_min": 0.2235107421875 - }, - "confidence": 0.9970703125, - "label": "vehicle", - "label_id": 2 - }, - "h": 131, - "roi_type": "vehicle", - "w": 124, - "x": 0, - "y": 97 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.144287109375, - "x_min": 0.00067138671875, - "y_max": 0.5234375, - "y_min": 0.2239990234375 - }, - "confidence": 0.990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 129, - "roi_type": "vehicle", - "w": 110, - "x": 1, - "y": 97 - }, - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.116943359375, - "y_max": 0.939453125, - "y_min": 0.034423828125 - }, - "confidence": 0.5283203125, - "label": "vehicle", - "label_id": 2 - }, - "h": 391, - "roi_type": "vehicle", - "w": 678, - "x": 90, - "y": 15 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.13134765625, - "x_min": 0.00140380859375, - "y_max": 0.52294921875, - "y_min": 0.2322998046875 - }, - "confidence": 0.87890625, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "roi_type": "vehicle", - "w": 100, - "x": 1, - "y": 100 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.125579833984375, - "x_min": 0.0, - "y_max": 0.5166015625, - "y_min": 0.2423095703125 - }, - "confidence": 0.7421875, - "label": "vehicle", - "label_id": 2 - }, - "h": 118, - "roi_type": "vehicle", - "w": 96, - "x": 0, - "y": 105 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11181640625, - "x_min": 0.00054931640625, - "y_max": 0.515625, - "y_min": 0.240234375 - }, - "confidence": 0.888671875, - "label": "vehicle", - "label_id": 2 - }, - "h": 119, - "roi_type": "vehicle", - "w": 85, - "x": 0, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.0992431640625, - "x_min": 0.0010986328125, - "y_max": 0.51953125, - "y_min": 0.2374267578125 - }, - "confidence": 0.66552734375, - "label": "vehicle", - "label_id": 2 - }, - "h": 122, - "roi_type": "vehicle", - "w": 75, - "x": 1, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.08819580078125, - "x_min": 0.0, - "y_max": 0.5185546875, - "y_min": 0.23779296875 - }, - "confidence": 0.5205078125, - "label": "vehicle", - "label_id": 2 - }, - "h": 121, - "roi_type": "vehicle", - "w": 68, - "x": 0, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.078643798828125, - "x_min": 0.0, - "y_max": 0.51025390625, - "y_min": 0.2401123046875 - }, - "confidence": 0.7578125, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "roi_type": "vehicle", - "w": 60, - "x": 0, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.0667724609375, - "x_min": 0.000457763671875, - "y_max": 0.5068359375, - "y_min": 0.2403564453125 - }, - "confidence": 0.70263671875, - "label": "vehicle", - "label_id": 2 - }, - "h": 115, - "roi_type": "vehicle", - "w": 51, - "x": 0, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.058685302734375, - "x_min": 0.001190185546875, - "y_max": 0.499755859375, - "y_min": 0.250244140625 - }, - "confidence": 0.75, - "label": "vehicle", - "label_id": 2 - }, - "h": 108, - "roi_type": "vehicle", - "w": 44, - "x": 1, - "y": 108 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.047119140625, - "x_min": 0.00213623046875, - "y_max": 0.49169921875, - "y_min": 0.2724609375 - }, - "confidence": 0.55908203125, - "label": "vehicle", - "label_id": 2 - }, - "h": 95, - "roi_type": "vehicle", - "w": 35, - "x": 2, - "y": 118 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.0392913818359375, - "x_min": 0.0, - "y_max": 0.48974609375, - "y_min": 0.2734375 - }, - "confidence": 0.5205078125, - "label": "vehicle", - "label_id": 2 - }, - "h": 93, - "roi_type": "vehicle", - "w": 30, - "x": 0, - "y": 118 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.93310546875, - "x_min": 0.048828125, - "y_max": 0.9892578125, - "y_min": 0.005859375 - }, - "confidence": 0.5087890625, - "label": "vehicle", - "label_id": 2 - }, - "h": 425, - "roi_type": "vehicle", - "w": 679, - "x": 38, - "y": 3 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.93310546875, - "x_min": 0.056640625, - "y_max": 1.0, - "y_min": 0.0 - }, - "confidence": 0.50341796875, - "label": "vehicle", - "label_id": 2 - }, - "h": 432, - "roi_type": "vehicle", - "w": 673, - "x": 44, - "y": 0 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9375, - "x_min": 0.05126953125, - "y_max": 0.9921875, - "y_min": 0.0 - }, - "confidence": 0.53515625, - "label": "vehicle", - "label_id": 2 - }, - "h": 429, - "roi_type": "vehicle", - "w": 681, - "x": 39, - "y": 0 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.931640625, - "x_min": 0.05078125, - "y_max": 0.964599609375, - "y_min": 0.0 - }, - "confidence": 0.5419921875, - "label": "vehicle", - "label_id": 2 - }, - "h": 417, - "roi_type": "vehicle", - "w": 677, - "x": 39, - "y": 0 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9658203125, - "x_min": 0.214111328125, - "y_max": 0.8134765625, - "y_min": 0.083251953125 - }, - "confidence": 0.57958984375, - "label": "vehicle", - "label_id": 2 - }, - "h": 315, - "roi_type": "vehicle", - "w": 577, - "x": 164, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 27333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.1103515625, - "y_max": 0.9326171875, - "y_min": 0.022705078125 - }, - "confidence": 0.5087890625, - "label": "vehicle", - "label_id": 2 - }, - "h": 393, - "roi_type": "vehicle", - "w": 683, - "x": 85, - "y": 10 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 28166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.05792236328125, - "x_min": 0.003509521484375, - "y_max": 0.268310546875, - "y_min": 0.095458984375 - }, - "confidence": 0.74658203125, - "label": "person", - "label_id": 1 - }, - "h": 75, - "roi_type": "person", - "w": 42, - "x": 3, - "y": 41 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.0638427734375, - "x_min": 0.0077972412109375, - "y_max": 0.274169921875, - "y_min": 0.10150146484375 - }, - "confidence": 0.78515625, - "label": "person", - "label_id": 1 - }, - "h": 75, - "roi_type": "person", - "w": 43, - "x": 6, - "y": 44 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07415771484375, - "x_min": 0.0153045654296875, - "y_max": 0.267578125, - "y_min": 0.0902099609375 - }, - "confidence": 0.88720703125, - "label": "person", - "label_id": 1 - }, - "h": 77, - "roi_type": "person", - "w": 45, - "x": 12, - "y": 39 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.0682373046875, - "x_min": 0.0222625732421875, - "y_max": 0.2646484375, - "y_min": 0.09259033203125 - }, - "confidence": 0.94189453125, - "label": "person", - "label_id": 1 - }, - "h": 74, - "roi_type": "person", - "w": 35, - "x": 17, - "y": 40 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.0626220703125, - "x_min": 0.0283355712890625, - "y_max": 0.263427734375, - "y_min": 0.087646484375 - }, - "confidence": 0.69091796875, - "label": "person", - "label_id": 1 - }, - "h": 76, - "roi_type": "person", - "w": 26, - "x": 22, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.070068359375, - "x_min": 0.0389404296875, - "y_max": 0.270751953125, - "y_min": 0.08740234375 - }, - "confidence": 0.845703125, - "label": "person", - "label_id": 1 - }, - "h": 79, - "roi_type": "person", - "w": 24, - "x": 30, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.08966064453125, - "x_min": 0.04498291015625, - "y_max": 0.260498046875, - "y_min": 0.08770751953125 - }, - "confidence": 0.97509765625, - "label": "person", - "label_id": 1 - }, - "h": 75, - "roi_type": "person", - "w": 34, - "x": 35, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.102294921875, - "x_min": 0.0501708984375, - "y_max": 0.26171875, - "y_min": 0.0889892578125 - }, - "confidence": 0.95947265625, - "label": "person", - "label_id": 1 - }, - "h": 75, - "roi_type": "person", - "w": 40, - "x": 39, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1121826171875, - "x_min": 0.055633544921875, - "y_max": 0.265625, - "y_min": 0.0867919921875 - }, - "confidence": 0.96142578125, - "label": "person", - "label_id": 1 - }, - "h": 77, - "roi_type": "person", - "w": 43, - "x": 43, - "y": 37 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.114990234375, - "x_min": 0.059844970703125, - "y_max": 0.26123046875, - "y_min": 0.087158203125 - }, - "confidence": 0.955078125, - "label": "person", - "label_id": 1 - }, - "h": 75, - "roi_type": "person", - "w": 42, - "x": 46, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.10797119140625, - "x_min": 0.06890869140625, - "y_max": 0.257568359375, - "y_min": 0.08868408203125 - }, - "confidence": 0.73291015625, - "label": "person", - "label_id": 1 - }, - "h": 73, - "roi_type": "person", - "w": 30, - "x": 53, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11590576171875, - "x_min": 0.08453369140625, - "y_max": 0.259765625, - "y_min": 0.08392333984375 - }, - "confidence": 0.9384765625, - "label": "person", - "label_id": 1 - }, - "h": 76, - "roi_type": "person", - "w": 24, - "x": 65, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1419677734375, - "x_min": 0.089599609375, - "y_max": 0.258544921875, - "y_min": 0.08099365234375 - }, - "confidence": 0.97802734375, - "label": "person", - "label_id": 1 - }, - "h": 77, - "roi_type": "person", - "w": 40, - "x": 69, - "y": 35 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1531982421875, - "x_min": 0.09759521484375, - "y_max": 0.255615234375, - "y_min": 0.082275390625 - }, - "confidence": 0.9111328125, - "label": "person", - "label_id": 1 - }, - "h": 75, - "roi_type": "person", - "w": 43, - "x": 75, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1571044921875, - "x_min": 0.0972900390625, - "y_max": 0.254150390625, - "y_min": 0.081298828125 - }, - "confidence": 0.97998046875, - "label": "person", - "label_id": 1 - }, - "h": 75, - "roi_type": "person", - "w": 46, - "x": 75, - "y": 35 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.158447265625, - "x_min": 0.10760498046875, - "y_max": 0.254638671875, - "y_min": 0.07830810546875 - }, - "confidence": 0.984375, - "label": "person", - "label_id": 1 - }, - "h": 76, - "roi_type": "person", - "w": 39, - "x": 83, - "y": 34 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1490478515625, - "x_min": 0.1175537109375, - "y_max": 0.258056640625, - "y_min": 0.07354736328125 - }, - "confidence": 0.90283203125, - "label": "person", - "label_id": 1 - }, - "h": 80, - "roi_type": "person", - "w": 24, - "x": 90, - "y": 32 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1578369140625, - "x_min": 0.1312255859375, - "y_max": 0.2509765625, - "y_min": 0.0828857421875 - }, - "confidence": 0.56201171875, - "label": "person", - "label_id": 1 - }, - "h": 73, - "roi_type": "person", - "w": 20, - "x": 101, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.170654296875, - "x_min": 0.131591796875, - "y_max": 0.259765625, - "y_min": 0.0693359375 - }, - "confidence": 0.91357421875, - "label": "person", - "label_id": 1 - }, - "h": 82, - "roi_type": "person", - "w": 30, - "x": 101, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.188720703125, - "x_min": 0.138671875, - "y_max": 0.24853515625, - "y_min": 0.06915283203125 - }, - "confidence": 0.9697265625, - "label": "person", - "label_id": 1 - }, - "h": 77, - "roi_type": "person", - "w": 38, - "x": 107, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.198486328125, - "x_min": 0.142333984375, - "y_max": 0.2442626953125, - "y_min": 0.0697021484375 - }, - "confidence": 0.93017578125, - "label": "person", - "label_id": 1 - }, - "h": 75, - "roi_type": "person", - "w": 43, - "x": 109, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1983642578125, - "x_min": 0.1458740234375, - "y_max": 0.2420654296875, - "y_min": 0.0672607421875 - }, - "confidence": 0.95703125, - "label": "person", - "label_id": 1 - }, - "h": 76, - "roi_type": "person", - "w": 40, - "x": 112, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1966552734375, - "x_min": 0.1595458984375, - "y_max": 0.247314453125, - "y_min": 0.06939697265625 - }, - "confidence": 0.92333984375, - "label": "person", - "label_id": 1 - }, - "h": 77, - "roi_type": "person", - "w": 29, - "x": 123, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1964111328125, - "x_min": 0.1671142578125, - "y_max": 0.24658203125, - "y_min": 0.05987548828125 - }, - "confidence": 0.80126953125, - "label": "person", - "label_id": 1 - }, - "h": 81, - "roi_type": "person", - "w": 23, - "x": 128, - "y": 26 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.20703125, - "x_min": 0.177001953125, - "y_max": 0.240478515625, - "y_min": 0.06573486328125 - }, - "confidence": 0.85693359375, - "label": "person", - "label_id": 1 - }, - "h": 75, - "roi_type": "person", - "w": 23, - "x": 136, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2286376953125, - "x_min": 0.1773681640625, - "y_max": 0.234619140625, - "y_min": 0.06536865234375 - }, - "confidence": 0.9404296875, - "label": "person", - "label_id": 1 - }, - "h": 73, - "roi_type": "person", - "w": 39, - "x": 136, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2376708984375, - "x_min": 0.1861572265625, - "y_max": 0.233154296875, - "y_min": 0.06732177734375 - }, - "confidence": 0.8447265625, - "label": "person", - "label_id": 1 - }, - "h": 72, - "roi_type": "person", - "w": 40, - "x": 143, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2447509765625, - "x_min": 0.1890869140625, - "y_max": 0.2288818359375, - "y_min": 0.0631103515625 - }, - "confidence": 0.93701171875, - "label": "person", - "label_id": 1 - }, - "h": 72, - "roi_type": "person", - "w": 43, - "x": 145, - "y": 27 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24365234375, - "x_min": 0.198974609375, - "y_max": 0.22509765625, - "y_min": 0.06451416015625 - }, - "confidence": 0.91162109375, - "label": "person", - "label_id": 1 - }, - "h": 69, - "roi_type": "person", - "w": 34, - "x": 153, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2391357421875, - "x_min": 0.2088623046875, - "y_max": 0.231689453125, - "y_min": 0.051025390625 - }, - "confidence": 0.72900390625, - "label": "person", - "label_id": 1 - }, - "h": 78, - "roi_type": "person", - "w": 23, - "x": 160, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.245849609375, - "x_min": 0.215087890625, - "y_max": 0.2244873046875, - "y_min": 0.0457763671875 - }, - "confidence": 0.79736328125, - "label": "person", - "label_id": 1 - }, - "h": 77, - "roi_type": "person", - "w": 24, - "x": 165, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.25830078125, - "x_min": 0.2213134765625, - "y_max": 0.2220458984375, - "y_min": 0.0426025390625 - }, - "confidence": 0.9326171875, - "label": "person", - "label_id": 1 - }, - "h": 78, - "roi_type": "person", - "w": 28, - "x": 170, - "y": 18 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2685546875, - "x_min": 0.2230224609375, - "y_max": 0.222412109375, - "y_min": 0.03704833984375 - }, - "confidence": 0.84130859375, - "label": "person", - "label_id": 1 - }, - "h": 80, - "roi_type": "person", - "w": 35, - "x": 171, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27880859375, - "x_min": 0.2257080078125, - "y_max": 0.21875, - "y_min": 0.04364013671875 - }, - "confidence": 0.93408203125, - "label": "person", - "label_id": 1 - }, - "h": 76, - "roi_type": "person", - "w": 41, - "x": 173, - "y": 19 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2783203125, - "x_min": 0.22998046875, - "y_max": 0.213134765625, - "y_min": 0.040283203125 - }, - "confidence": 0.88720703125, - "label": "person", - "label_id": 1 - }, - "h": 75, - "roi_type": "person", - "w": 37, - "x": 177, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.278564453125, - "x_min": 0.239501953125, - "y_max": 0.21142578125, - "y_min": 0.02642822265625 - }, - "confidence": 0.5390625, - "label": "person", - "label_id": 1 - }, - "h": 80, - "roi_type": "person", - "w": 30, - "x": 184, - "y": 11 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.28466796875, - "x_min": 0.25439453125, - "y_max": 0.21484375, - "y_min": 0.02642822265625 - }, - "confidence": 0.79296875, - "label": "person", - "label_id": 1 - }, - "h": 81, - "roi_type": "person", - "w": 23, - "x": 195, - "y": 11 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.290771484375, - "x_min": 0.260009765625, - "y_max": 0.207763671875, - "y_min": 0.02301025390625 - }, - "confidence": 0.83251953125, - "label": "person", - "label_id": 1 - }, - "h": 80, - "roi_type": "person", - "w": 24, - "x": 200, - "y": 10 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3076171875, - "x_min": 0.265625, - "y_max": 0.193115234375, - "y_min": 0.022216796875 - }, - "confidence": 0.97509765625, - "label": "person", - "label_id": 1 - }, - "h": 74, - "roi_type": "person", - "w": 32, - "x": 204, - "y": 10 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.310791015625, - "x_min": 0.267822265625, - "y_max": 0.197265625, - "y_min": 0.02288818359375 - }, - "confidence": 0.96240234375, - "label": "person", - "label_id": 1 - }, - "h": 75, - "roi_type": "person", - "w": 33, - "x": 206, - "y": 10 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.2958984375, - "x_min": 0.10296630859375, - "y_max": 1.0, - "y_min": 0.85107421875 - }, - "confidence": 0.75537109375, - "label": "vehicle", - "label_id": 2 - }, - "h": 64, - "roi_type": "vehicle", - "w": 148, - "x": 79, - "y": 368 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.315673828125, - "x_min": 0.274169921875, - "y_max": 0.182861328125, - "y_min": 0.01904296875 - }, - "confidence": 0.97900390625, - "label": "person", - "label_id": 1 - }, - "h": 71, - "roi_type": "person", - "w": 32, - "x": 211, - "y": 8 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.302734375, - "x_min": 0.08807373046875, - "y_max": 1.0, - "y_min": 0.82666015625 - }, - "confidence": 0.9072265625, - "label": "vehicle", - "label_id": 2 - }, - "h": 75, - "roi_type": "vehicle", - "w": 165, - "x": 68, - "y": 357 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.316162109375, - "x_min": 0.279541015625, - "y_max": 0.1826171875, - "y_min": 0.00958251953125 - }, - "confidence": 0.84716796875, - "label": "person", - "label_id": 1 - }, - "h": 75, - "roi_type": "person", - "w": 28, - "x": 215, - "y": 4 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.30712890625, - "x_min": 0.08984375, - "y_max": 1.0, - "y_min": 0.79833984375 - }, - "confidence": 0.9677734375, - "label": "vehicle", - "label_id": 2 - }, - "h": 87, - "roi_type": "vehicle", - "w": 167, - "x": 69, - "y": 345 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.320068359375, - "x_min": 0.283935546875, - "y_max": 0.175537109375, - "y_min": 0.00274658203125 - }, - "confidence": 0.92919921875, - "label": "person", - "label_id": 1 - }, - "h": 75, - "roi_type": "person", - "w": 28, - "x": 218, - "y": 1 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.31787109375, - "x_min": 0.09320068359375, - "y_max": 0.99658203125, - "y_min": 0.77392578125 - }, - "confidence": 0.998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 96, - "roi_type": "vehicle", - "w": 173, - "x": 72, - "y": 334 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.324462890625, - "x_min": 0.291259765625, - "y_max": 0.18792724609375, - "y_min": 0.0 - }, - "confidence": 0.9248046875, - "label": "person", - "label_id": 1 - }, - "h": 81, - "roi_type": "person", - "w": 26, - "x": 224, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3212890625, - "x_min": 0.09326171875, - "y_max": 0.998046875, - "y_min": 0.755859375 - }, - "confidence": 0.9951171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 105, - "roi_type": "vehicle", - "w": 175, - "x": 72, - "y": 327 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33740234375, - "x_min": 0.296875, - "y_max": 0.16876220703125, - "y_min": 0.0 - }, - "confidence": 0.9716796875, - "label": "person", - "label_id": 1 - }, - "h": 73, - "roi_type": "person", - "w": 31, - "x": 228, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.325439453125, - "x_min": 0.09375, - "y_max": 0.99853515625, - "y_min": 0.72802734375 - }, - "confidence": 0.998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "roi_type": "vehicle", - "w": 178, - "x": 72, - "y": 315 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.341064453125, - "x_min": 0.299560546875, - "y_max": 0.1600341796875, - "y_min": 0.0 - }, - "confidence": 0.96240234375, - "label": "person", - "label_id": 1 - }, - "h": 69, - "roi_type": "person", - "w": 32, - "x": 230, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.331787109375, - "x_min": 0.09368896484375, - "y_max": 0.99609375, - "y_min": 0.705078125 - }, - "confidence": 0.99609375, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "roi_type": "vehicle", - "w": 183, - "x": 72, - "y": 305 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.346435546875, - "x_min": 0.302978515625, - "y_max": 0.1580810546875, - "y_min": 0.0 - }, - "confidence": 0.98388671875, - "label": "person", - "label_id": 1 - }, - "h": 68, - "roi_type": "person", - "w": 33, - "x": 233, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.33935546875, - "x_min": 0.09014892578125, - "y_max": 1.0, - "y_min": 0.6787109375 - }, - "confidence": 0.99609375, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "roi_type": "vehicle", - "w": 191, - "x": 69, - "y": 293 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34521484375, - "x_min": 0.30908203125, - "y_max": 0.15625, - "y_min": 0.0 - }, - "confidence": 0.94140625, - "label": "person", - "label_id": 1 - }, - "h": 68, - "roi_type": "person", - "w": 28, - "x": 237, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.341796875, - "x_min": 0.09429931640625, - "y_max": 1.0, - "y_min": 0.65283203125 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 150, - "roi_type": "vehicle", - "w": 190, - "x": 72, - "y": 282 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34814453125, - "x_min": 0.31591796875, - "y_max": 0.148193359375, - "y_min": 0.0 - }, - "confidence": 0.96142578125, - "label": "person", - "label_id": 1 - }, - "h": 64, - "roi_type": "person", - "w": 25, - "x": 243, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.34423828125, - "x_min": 0.099609375, - "y_max": 0.9990234375, - "y_min": 0.6357421875 - }, - "confidence": 0.9970703125, - "label": "vehicle", - "label_id": 2 - }, - "h": 157, - "roi_type": "vehicle", - "w": 188, - "x": 77, - "y": 275 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.353271484375, - "x_min": 0.320068359375, - "y_max": 0.1541748046875, - "y_min": 0.0 - }, - "confidence": 0.87060546875, - "label": "person", - "label_id": 1 - }, - "h": 67, - "roi_type": "person", - "w": 26, - "x": 246, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.349609375, - "x_min": 0.10687255859375, - "y_max": 1.0, - "y_min": 0.619140625 - }, - "confidence": 0.998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 165, - "roi_type": "vehicle", - "w": 186, - "x": 82, - "y": 267 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.358154296875, - "x_min": 0.323974609375, - "y_max": 0.14739990234375, - "y_min": 0.0 - }, - "confidence": 0.78125, - "label": "person", - "label_id": 1 - }, - "h": 64, - "roi_type": "person", - "w": 26, - "x": 249, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.35791015625, - "x_min": 0.1181640625, - "y_max": 0.99609375, - "y_min": 0.59375 - }, - "confidence": 0.99609375, - "label": "vehicle", - "label_id": 2 - }, - "h": 174, - "roi_type": "vehicle", - "w": 184, - "x": 91, - "y": 257 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.361572265625, - "x_min": 0.328857421875, - "y_max": 0.1484375, - "y_min": 0.0 - }, - "confidence": 0.611328125, - "label": "person", - "label_id": 1 - }, - "h": 64, - "roi_type": "person", - "w": 25, - "x": 253, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.35693359375, - "x_min": 0.11773681640625, - "y_max": 0.99609375, - "y_min": 0.5712890625 - }, - "confidence": 0.9951171875, - "label": "vehicle", - "label_id": 2 - }, - "h": 184, - "roi_type": "vehicle", - "w": 184, - "x": 90, - "y": 247 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36474609375, - "x_min": 0.33203125, - "y_max": 0.14874267578125, - "y_min": 0.0 - }, - "confidence": 0.87353515625, - "label": "person", - "label_id": 1 - }, - "h": 64, - "roi_type": "person", - "w": 25, - "x": 255, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.361083984375, - "x_min": 0.10888671875, - "y_max": 1.0, - "y_min": 0.55224609375 - }, - "confidence": 0.9970703125, - "label": "vehicle", - "label_id": 2 - }, - "h": 193, - "roi_type": "vehicle", - "w": 194, - "x": 84, - "y": 239 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.369140625, - "x_min": 0.3349609375, - "y_max": 0.13677978515625, - "y_min": 0.0 - }, - "confidence": 0.50732421875, - "label": "person", - "label_id": 1 - }, - "h": 59, - "roi_type": "person", - "w": 26, - "x": 257, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.362548828125, - "x_min": 0.11737060546875, - "y_max": 1.0, - "y_min": 0.5341796875 - }, - "confidence": 0.9912109375, - "label": "vehicle", - "label_id": 2 - }, - "h": 201, - "roi_type": "vehicle", - "w": 188, - "x": 90, - "y": 231 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.365234375, - "x_min": 0.1156005859375, - "y_max": 1.0, - "y_min": 0.51953125 - }, - "confidence": 0.98095703125, - "label": "vehicle", - "label_id": 2 - }, - "h": 208, - "roi_type": "vehicle", - "w": 192, - "x": 89, - "y": 224 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3603515625, - "x_min": 0.1187744140625, - "y_max": 1.0, - "y_min": 0.50634765625 - }, - "confidence": 0.97314453125, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "roi_type": "vehicle", - "w": 186, - "x": 91, - "y": 219 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.358642578125, - "x_min": 0.12548828125, - "y_max": 1.0, - "y_min": 0.488037109375 - }, - "confidence": 0.9541015625, - "label": "vehicle", - "label_id": 2 - }, - "h": 221, - "roi_type": "vehicle", - "w": 179, - "x": 96, - "y": 211 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.367919921875, - "x_min": 0.132080078125, - "y_max": 1.0, - "y_min": 0.472900390625 - }, - "confidence": 0.96435546875, - "label": "vehicle", - "label_id": 2 - }, - "h": 228, - "roi_type": "vehicle", - "w": 181, - "x": 101, - "y": 204 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37158203125, - "x_min": 0.13671875, - "y_max": 0.982421875, - "y_min": 0.453125 - }, - "confidence": 0.9892578125, - "label": "vehicle", - "label_id": 2 - }, - "h": 229, - "roi_type": "vehicle", - "w": 180, - "x": 105, - "y": 196 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36181640625, - "x_min": 0.14599609375, - "y_max": 0.943359375, - "y_min": 0.4423828125 - }, - "confidence": 0.99609375, - "label": "vehicle", - "label_id": 2 - }, - "h": 216, - "roi_type": "vehicle", - "w": 166, - "x": 112, - "y": 191 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.366455078125, - "x_min": 0.158447265625, - "y_max": 0.93603515625, - "y_min": 0.41552734375 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 225, - "roi_type": "vehicle", - "w": 160, - "x": 122, - "y": 180 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.365478515625, - "x_min": 0.162353515625, - "y_max": 0.9033203125, - "y_min": 0.398681640625 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 218, - "roi_type": "vehicle", - "w": 156, - "x": 125, - "y": 172 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36572265625, - "x_min": 0.1734619140625, - "y_max": 0.87890625, - "y_min": 0.3837890625 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "roi_type": "vehicle", - "w": 148, - "x": 133, - "y": 166 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.361572265625, - "x_min": 0.178955078125, - "y_max": 0.85498046875, - "y_min": 0.36376953125 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 212, - "roi_type": "vehicle", - "w": 140, - "x": 137, - "y": 157 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.362548828125, - "x_min": 0.182373046875, - "y_max": 0.82470703125, - "y_min": 0.34521484375 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 207, - "roi_type": "vehicle", - "w": 138, - "x": 140, - "y": 149 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36181640625, - "x_min": 0.18896484375, - "y_max": 0.79345703125, - "y_min": 0.32568359375 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 202, - "roi_type": "vehicle", - "w": 133, - "x": 145, - "y": 141 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.359130859375, - "x_min": 0.190185546875, - "y_max": 0.7666015625, - "y_min": 0.312255859375 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 196, - "roi_type": "vehicle", - "w": 130, - "x": 146, - "y": 135 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.353759765625, - "x_min": 0.192138671875, - "y_max": 0.7412109375, - "y_min": 0.2939453125 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 193, - "roi_type": "vehicle", - "w": 124, - "x": 148, - "y": 127 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35009765625, - "x_min": 0.1943359375, - "y_max": 0.71875, - "y_min": 0.27685546875 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 191, - "roi_type": "vehicle", - "w": 120, - "x": 149, - "y": 120 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34716796875, - "x_min": 0.201171875, - "y_max": 0.697265625, - "y_min": 0.263671875 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 187, - "roi_type": "vehicle", - "w": 112, - "x": 155, - "y": 114 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.343994140625, - "x_min": 0.197998046875, - "y_max": 0.658203125, - "y_min": 0.25927734375 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 172, - "roi_type": "vehicle", - "w": 112, - "x": 152, - "y": 112 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.341552734375, - "x_min": 0.193603515625, - "y_max": 0.642578125, - "y_min": 0.243408203125 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 172, - "roi_type": "vehicle", - "w": 114, - "x": 149, - "y": 105 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3388671875, - "x_min": 0.18994140625, - "y_max": 0.630859375, - "y_min": 0.2225341796875 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 176, - "roi_type": "vehicle", - "w": 114, - "x": 146, - "y": 96 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.337646484375, - "x_min": 0.187255859375, - "y_max": 0.599609375, - "y_min": 0.2069091796875 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 170, - "roi_type": "vehicle", - "w": 116, - "x": 144, - "y": 89 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.331787109375, - "x_min": 0.177978515625, - "y_max": 0.578125, - "y_min": 0.190185546875 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 168, - "roi_type": "vehicle", - "w": 118, - "x": 137, - "y": 82 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33544921875, - "x_min": 0.1678466796875, - "y_max": 0.56298828125, - "y_min": 0.17626953125 - }, - "confidence": 0.9970703125, - "label": "vehicle", - "label_id": 2 - }, - "h": 167, - "roi_type": "vehicle", - "w": 129, - "x": 129, - "y": 76 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33056640625, - "x_min": 0.1580810546875, - "y_max": 0.5361328125, - "y_min": 0.162841796875 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 161, - "roi_type": "vehicle", - "w": 132, - "x": 121, - "y": 70 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.32568359375, - "x_min": 0.146728515625, - "y_max": 0.515625, - "y_min": 0.1572265625 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 155, - "roi_type": "vehicle", - "w": 137, - "x": 113, - "y": 68 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.322265625, - "x_min": 0.1376953125, - "y_max": 0.50146484375, - "y_min": 0.15673828125 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 149, - "roi_type": "vehicle", - "w": 142, - "x": 106, - "y": 68 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31689453125, - "x_min": 0.1246337890625, - "y_max": 0.482421875, - "y_min": 0.1490478515625 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 144, - "roi_type": "vehicle", - "w": 148, - "x": 96, - "y": 64 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.312255859375, - "x_min": 0.10247802734375, - "y_max": 0.470703125, - "y_min": 0.1456298828125 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 140, - "roi_type": "vehicle", - "w": 161, - "x": 79, - "y": 63 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.30615234375, - "x_min": 0.0894775390625, - "y_max": 0.45556640625, - "y_min": 0.1356201171875 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 138, - "roi_type": "vehicle", - "w": 166, - "x": 69, - "y": 59 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2939453125, - "x_min": 0.07452392578125, - "y_max": 0.442626953125, - "y_min": 0.136474609375 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "roi_type": "vehicle", - "w": 169, - "x": 57, - "y": 59 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.288818359375, - "x_min": 0.063232421875, - "y_max": 0.4267578125, - "y_min": 0.13671875 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 125, - "roi_type": "vehicle", - "w": 173, - "x": 49, - "y": 59 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.280517578125, - "x_min": 0.04644775390625, - "y_max": 0.4130859375, - "y_min": 0.1324462890625 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 121, - "roi_type": "vehicle", - "w": 180, - "x": 36, - "y": 57 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.270263671875, - "x_min": 0.03173828125, - "y_max": 0.4052734375, - "y_min": 0.1312255859375 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 118, - "roi_type": "vehicle", - "w": 183, - "x": 24, - "y": 57 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.257568359375, - "x_min": 0.01788330078125, - "y_max": 0.398193359375, - "y_min": 0.127685546875 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "roi_type": "vehicle", - "w": 184, - "x": 14, - "y": 55 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2474365234375, - "x_min": 0.0042724609375, - "y_max": 0.3935546875, - "y_min": 0.1234130859375 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "roi_type": "vehicle", - "w": 187, - "x": 3, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23486328125, - "x_min": 0.00555419921875, - "y_max": 0.39111328125, - "y_min": 0.1231689453125 - }, - "confidence": 0.998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 116, - "roi_type": "vehicle", - "w": 176, - "x": 4, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2247314453125, - "x_min": 0.001708984375, - "y_max": 0.385498046875, - "y_min": 0.124267578125 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 113, - "roi_type": "vehicle", - "w": 171, - "x": 1, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2164306640625, - "x_min": 0.002197265625, - "y_max": 0.37939453125, - "y_min": 0.12353515625 - }, - "confidence": 0.9990234375, - "label": "vehicle", - "label_id": 2 - }, - "h": 111, - "roi_type": "vehicle", - "w": 165, - "x": 2, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.203125, - "x_min": 0.00079345703125, - "y_max": 0.3720703125, - "y_min": 0.1219482421875 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 108, - "roi_type": "vehicle", - "w": 155, - "x": 1, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1854248046875, - "x_min": 0.0, - "y_max": 0.36865234375, - "y_min": 0.1224365234375 - }, - "confidence": 1.0, - "label": "vehicle", - "label_id": 2 - }, - "h": 106, - "roi_type": "vehicle", - "w": 142, - "x": 0, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.17523193359375, - "x_min": 0.0, - "y_max": 0.36376953125, - "y_min": 0.119140625 - }, - "confidence": 0.994140625, - "label": "vehicle", - "label_id": 2 - }, - "h": 106, - "roi_type": "vehicle", - "w": 135, - "x": 0, - "y": 51 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.16094970703125, - "x_min": 0.0, - "y_max": 0.359130859375, - "y_min": 0.120361328125 - }, - "confidence": 0.97998046875, - "label": "vehicle", - "label_id": 2 - }, - "h": 103, - "roi_type": "vehicle", - "w": 124, - "x": 0, - "y": 52 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1480712890625, - "x_min": 0.0, - "y_max": 0.35693359375, - "y_min": 0.1207275390625 - }, - "confidence": 0.9462890625, - "label": "vehicle", - "label_id": 2 - }, - "h": 102, - "roi_type": "vehicle", - "w": 114, - "x": 0, - "y": 52 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.13604736328125, - "x_min": 0.0, - "y_max": 0.35693359375, - "y_min": 0.12353515625 - }, - "confidence": 0.76513671875, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "roi_type": "vehicle", - "w": 104, - "x": 0, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.112548828125, - "x_min": 0.001739501953125, - "y_max": 0.35546875, - "y_min": 0.126220703125 - }, - "confidence": 0.67138671875, - "label": "vehicle", - "label_id": 2 - }, - "h": 99, - "roi_type": "vehicle", - "w": 85, - "x": 1, - "y": 55 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.0989990234375, - "x_min": 0.003448486328125, - "y_max": 0.3583984375, - "y_min": 0.1268310546875 - }, - "confidence": 0.77099609375, - "label": "vehicle", - "label_id": 2 - }, - "h": 100, - "roi_type": "vehicle", - "w": 73, - "x": 3, - "y": 55 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.087646484375, - "x_min": 0.001617431640625, - "y_max": 0.363525390625, - "y_min": 0.130126953125 - }, - "confidence": 0.61376953125, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "roi_type": "vehicle", - "w": 66, - "x": 1, - "y": 56 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.0732421875, - "x_min": 0.004058837890625, - "y_max": 0.3515625, - "y_min": 0.1435546875 - }, - "confidence": 0.60888671875, - "label": "vehicle", - "label_id": 2 - }, - "h": 90, - "roi_type": "vehicle", - "w": 53, - "x": 3, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.068572998046875, - "x_min": 0.0, - "y_max": 0.349609375, - "y_min": 0.1435546875 - }, - "confidence": 0.67333984375, - "label": "vehicle", - "label_id": 2 - }, - "h": 89, - "roi_type": "vehicle", - "w": 53, - "x": 0, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.050567626953125, - "x_min": 0.0, - "y_max": 0.34228515625, - "y_min": 0.143310546875 - }, - "confidence": 0.62841796875, - "label": "vehicle", - "label_id": 2 - }, - "h": 86, - "roi_type": "vehicle", - "w": 39, - "x": 0, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49250000000 - } - ] -} \ No newline at end of file diff --git a/tests/test_cases/pipeline_instances/cpu/object_detection_person_vehicle_bike_six_pipelines_cpu_gstreamer.json b/tests/test_cases/pipeline_instances/cpu/object_detection_person_vehicle_bike_six_pipelines_cpu_gstreamer.json deleted file mode 100644 index 0a93c3a..0000000 --- a/tests/test_cases/pipeline_instances/cpu/object_detection_person_vehicle_bike_six_pipelines_cpu_gstreamer.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "options": {}, - "pipelines": [ - { - "name": "object_detection", - "version": "person_vehicle_bike", - "request": { - "source": { - "type": "uri", - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4" - }, - "destination": { - "metadata" : { - "type": "file", - "path": "/dev/null" - } - }, - "parameters": { - "detection-device": "CPU", - "detection-model-instance-id":"object_detection_person_vehicle_bike_six_pipelines_cpu_gstreamer" - } - } - } - ], - "start_delay": 5, - "abort_delay": 5, - "iterations": 6 -} diff --git a/tests/test_cases/pipeline_instances/cpu/test_all_pipelines_cpu_gstreamer.json b/tests/test_cases/pipeline_instances/cpu/test_all_pipelines_cpu_gstreamer.json deleted file mode 100644 index 238ac8c..0000000 --- a/tests/test_cases/pipeline_instances/cpu/test_all_pipelines_cpu_gstreamer.json +++ /dev/null @@ -1,191 +0,0 @@ -{ - "options": {}, - "pipelines": [ - { - "name": "object_detection", - "version": "person_vehicle_bike", - "request": { - "source": { - "type": "uri", - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4" - }, - "destination": { - "metadata" : { - "type": "file", - "path": "/dev/null" - } - }, - "parameters": { - "detection-device": "CPU" - } - } - }, - { - "name": "object_detection", - "version": "person", - "request": { - "source": { - "type": "uri", - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4" - }, - "destination": { - "metadata" : { - "type": "file", - "path": "/dev/null" - } - }, - "parameters": { - "detection-device": "CPU" - } - } - }, - { - "name": "object_detection", - "version": "vehicle", - "request": { - "source": { - "type": "uri", - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4" - }, - "destination": { - "metadata" : { - "type": "file", - "path": "/dev/null" - } - }, - "parameters": { - "detection-device": "CPU" - } - } - }, - { - "name": "object_detection", - "version": "object_zone_count", - "request": { - "source": { - "type": "uri", - "uri": "https://github.com/intel-iot-devkit/sample-videos/blob/master/people-detection.mp4?raw=true" - }, - "destination": { - "metadata" : { - "type": "file", - "path": "/dev/null" - } - }, - "parameters": { - "detection-device": "CPU", - "object-zone-count-config": { - "zones": [ - { - "name": "Zone1", - "polygon": [[0.01,0.10],[0.005,0.53],[0.11,0.53],[0.095,0.10]] - }, - { - "name": "Zone2", - "polygon": [[0.14,0.20],[0.18,0.67],[0.35,0.67],[0.26,0.20]] - }, - { - "name": "Zone3", - "polygon": [[0.40,0.30],[0.50,0.83],[0.85,0.83],[0.57,0.30]] - } - ] - } - } - } - }, - { - "name": "audio_detection", - "version": "environment", - "request": { - "source": { - "type": "uri", - "uri": "file:///home/pipeline-server/tests/media/how_are_you_doing.wav" - }, - "destination": { - "metadata" : { - "type": "file", - "path": "/dev/null" - } - }, - "parameters": { - "detection-device": "CPU" - } - } - }, - { - "name": "object_classification", - "version": "vehicle_attributes", - "request": { - "source": { - "type": "uri", - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4" - }, - "destination": { - "metadata" : { - "type": "file", - "path": "/dev/null" - } - }, - "parameters": { - "detection-device": "CPU" - } - } - }, - { - "name": "object_tracking", - "version": "person_vehicle_bike", - "request": { - "source": { - "type": "uri", - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4" - }, - "destination": { - "metadata" : { - "type": "file", - "path": "/dev/null" - } - }, - "parameters": { - "detection-device": "CPU" - } - } - }, - { - "name": "object_tracking", - "version": "object_line_crossing", - "request": { - "source": { - "type": "uri", - "uri": "https://github.com/intel-iot-devkit/sample-videos/blob/master/people-detection.mp4?raw=true" - }, - "destination": { - "metadata" : { - "type": "file", - "path": "/dev/null" - } - }, - "parameters": { - "detection-device": "CPU", - "object-line-crossing-config": { - "lines": [ - { - "name": "hallway_right", - "line": [[0.9,0.8],[0.8,0.45]] - }, - { - "name": "hallway_left", - "line": [[0.15,0.45],[0.05,0.75]] - }, - { - "name": "hallway_bottom", - "line": [[0.1,0.9],[0.8,0.9]] - } - ] - } - } - } - } - ], - "start_delay": 5, - "abort_delay": 10 -} diff --git a/tests/test_cases/pipeline_instances/gpu/object_detection_person_vehicle_bike_six_pipelines_gpu_gstreamer.json b/tests/test_cases/pipeline_instances/gpu/object_detection_person_vehicle_bike_six_pipelines_gpu_gstreamer.json deleted file mode 100644 index 697ec18..0000000 --- a/tests/test_cases/pipeline_instances/gpu/object_detection_person_vehicle_bike_six_pipelines_gpu_gstreamer.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "options": {}, - "pipelines": [ - { - "name": "object_detection", - "version": "person_vehicle_bike", - "request": { - "source": { - "type": "uri", - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4" - }, - "destination": { - "metadata" : { - "type": "file", - "path": "/dev/null" - } - }, - "parameters": { - "detection-device": "GPU", - "detection-model-instance-id":"object_detection_person_vehicle_bike_six_pipelines_gpu_gstreamer" - } - } - } - ], - "start_delay": 60, - "abort_delay": 5, - "iterations": 6 -} diff --git a/tests/test_cases/pipeline_instances/gpu/test_all_pipelines_gpu_gstreamer.json b/tests/test_cases/pipeline_instances/gpu/test_all_pipelines_gpu_gstreamer.json deleted file mode 100644 index ade7afe..0000000 --- a/tests/test_cases/pipeline_instances/gpu/test_all_pipelines_gpu_gstreamer.json +++ /dev/null @@ -1,192 +0,0 @@ -{ - "options": {}, - "pipelines": [ - { - "name": "object_detection", - "version": "person_vehicle_bike", - "request": { - "source": { - "type": "uri", - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4" - }, - "destination": { - "metadata" : { - "type": "file", - "path": "/dev/null" - } - }, - "parameters": { - "detection-device": "GPU" - } - } - }, - { - "name": "object_detection", - "version": "person", - "request": { - "source": { - "type": "uri", - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4" - }, - "destination": { - "metadata" : { - "type": "file", - "path": "/dev/null" - } - }, - "parameters": { - "detection-device": "GPU" - } - } - }, - { - "name": "object_detection", - "version": "vehicle", - "request": { - "source": { - "type": "uri", - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4" - }, - "destination": { - "metadata" : { - "type": "file", - "path": "/dev/null" - } - }, - "parameters": { - "detection-device": "GPU" - } - } - }, - { - "name": "object_detection", - "version": "object_zone_count", - "request": { - "source": { - "type": "uri", - "uri": "https://github.com/intel-iot-devkit/sample-videos/blob/master/people-detection.mp4?raw=true" - }, - "destination": { - "metadata" : { - "type": "file", - "path": "/dev/null" - } - }, - "parameters": { - "detection-device": "GPU", - "object-zone-count-config": { - "zones": [ - { - "name": "Zone1", - "polygon": [[0.01,0.10],[0.005,0.53],[0.11,0.53],[0.095,0.10]] - }, - { - "name": "Zone2", - "polygon": [[0.14,0.20],[0.18,0.67],[0.35,0.67],[0.26,0.20]] - }, - { - "name": "Zone3", - "polygon": [[0.40,0.30],[0.50,0.83],[0.85,0.83],[0.57,0.30]] - } - ] - } - } - } - }, - { - "name": "audio_detection", - "version": "environment", - "request": { - "source": { - "type": "uri", - "uri": "file:///home/pipeline-server/tests/media/how_are_you_doing.wav" - }, - "destination": { - "metadata" : { - "type": "file", - "path": "/dev/null" - } - }, - "parameters": { - "detection-device": "GPU" - } - } - }, - { - "name": "object_classification", - "version": "vehicle_attributes", - "request": { - "source": { - "type": "uri", - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4" - }, - "destination": { - "metadata" : { - "type": "file", - "path": "/dev/null" - } - }, - "parameters": { - "detection-device": "GPU", - "classification-device": "GPU" - } - } - }, - { - "name": "object_tracking", - "version": "person_vehicle_bike", - "request": { - "source": { - "type": "uri", - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4" - }, - "destination": { - "metadata" : { - "type": "file", - "path": "/dev/null" - } - }, - "parameters": { - "detection-device": "GPU" - } - } - }, - { - "name": "object_tracking", - "version": "object_line_crossing", - "request": { - "source": { - "type": "uri", - "uri": "https://github.com/intel-iot-devkit/sample-videos/blob/master/people-detection.mp4?raw=true" - }, - "destination": { - "metadata" : { - "type": "file", - "path": "/dev/null" - } - }, - "parameters": { - "detection-device": "GPU", - "object-line-crossing-config": { - "lines": [ - { - "name": "hallway_right", - "line": [[0.9,0.8],[0.8,0.45]] - }, - { - "name": "hallway_left", - "line": [[0.15,0.45],[0.05,0.75]] - }, - { - "name": "hallway_bottom", - "line": [[0.1,0.9],[0.8,0.9]] - } - ] - } - } - } - } - ], - "start_delay": 60, - "abort_delay": 5 -} diff --git a/tests/test_cases/pipeline_performance/cpu/rest_object_detection.json b/tests/test_cases/pipeline_performance/cpu/rest_object_detection.json deleted file mode 100644 index 7801152..0000000 --- a/tests/test_cases/pipeline_performance/cpu/rest_object_detection.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "path": "pipelines/object_detection/person_vehicle_bike", - "request" : { - "source": { - "uri": "file:///home/pipeline-server/tests/media/store-aisle-detection.mp4", - "type": "uri" - }, - "destination": { - "type": "file", - "path": "/dev/null", - "format": "json-lines" - } - }, - "iterations": 10, - "fps_percentage_diff_limit": 5, - "gst_launch_string": "gst-launch-1.0 urisourcebin uri=file:///home/pipeline-server/tests/media/store-aisle-detection.mp4 ! decodebin ! gvadetect model=/home/pipeline-server/models/object_detection/person_vehicle_bike/FP32/person-vehicle-bike-detection-crossroad-0078.xml model-proc=/home/pipeline-server/models/object_detection/person_vehicle_bike/person-vehicle-bike-detection-crossroad-0078.json ! gvametaconvert ! gvametapublish file-path=/dev/null ! gvafpscounter ! fakesink" -} diff --git a/tests/test_cases/pipeline_stability/cpu/stability_audio_detection_gstreamer.json b/tests/test_cases/pipeline_stability/cpu/stability_audio_detection_gstreamer.json deleted file mode 100644 index 3b39365..0000000 --- a/tests/test_cases/pipeline_stability/cpu/stability_audio_detection_gstreamer.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "options": {}, - "pipeline": { - "name": "audio_detection", - "version": "environment" - }, - "request": { - "source": { - "type": "gst", - "element": "multifilesrc", - "postproc": "wavparse ignore-length=1", - "properties": { - "location": "/home/pipeline-server/tests/media/how_are_you_doing.wav", - "loop": true - } - }, - "destination": { - "type": "file", - "path": "/dev/null", - "format": "json-lines" - } - }, - "stability_duration": 10800, - "relaunch_on_complete": false, - "numerical_tolerance": 0.2 -} diff --git a/tests/test_cases/pipeline_stability/cpu/stability_audio_detection_many_gstreamer.json b/tests/test_cases/pipeline_stability/cpu/stability_audio_detection_many_gstreamer.json deleted file mode 100644 index f85c5cc..0000000 --- a/tests/test_cases/pipeline_stability/cpu/stability_audio_detection_many_gstreamer.json +++ /dev/null @@ -1,309 +0,0 @@ -{ - "options": {}, - "pipeline": { - "name": "audio_detection", - "version": "environment" - }, - "request": { - "source": { - "type": "uri", - "uri": "file:///home/pipeline-server/tests/media/how_are_you_doing.wav" - }, - "destination": { - "type": "file", - "path": "/tmp/audio_detection_results.json", - "format": "json-lines" - } - }, - "stability_duration": 10800, - "relaunch_on_complete": true, - "numerical_tolerance": 0.2, - "result": [ - { - "channels": 1, - "events": [ - { - "detection": { - "confidence": 0.7, - "label": "Can opening", - "label_id": 35, - "segment": { - "end_timestamp": 1000000000, - "start_timestamp": 0 - } - }, - "end_timestamp": 1000000000, - "event_type": "Can opening", - "start_timestamp": 0 - } - ], - "rate": 16000, - "source": "file:///home/pipeline-server/tests/media/how_are_you_doing.wav", - "tags": {} - }, - { - "channels": 1, - "events": [ - { - "detection": { - "confidence": 0.67, - "label": "Cow", - "label_id": 4, - "segment": { - "end_timestamp": 1200000000, - "start_timestamp": 200000000 - } - }, - "end_timestamp": 1200000000, - "event_type": "Cow", - "start_timestamp": 200000000 - } - ], - "rate": 16000, - "source": "file:///home/pipeline-server/tests/media/how_are_you_doing.wav", - "tags": {} - }, - { - "channels": 1, - "events": [ - { - "detection": { - "confidence": 0.99, - "label": "Speech", - "label_id": 53, - "segment": { - "end_timestamp": 1400000000, - "start_timestamp": 400000000 - } - }, - "end_timestamp": 1400000000, - "event_type": "Speech", - "start_timestamp": 400000000 - } - ], - "rate": 16000, - "source": "file:///home/pipeline-server/tests/media/how_are_you_doing.wav", - "tags": {} - }, - { - "channels": 1, - "events": [ - { - "detection": { - "confidence": 1.0, - "label": "Speech", - "label_id": 53, - "segment": { - "end_timestamp": 1600000000, - "start_timestamp": 600000000 - } - }, - "end_timestamp": 1600000000, - "event_type": "Speech", - "start_timestamp": 600000000 - } - ], - "rate": 16000, - "source": "file:///home/pipeline-server/tests/media/how_are_you_doing.wav", - "tags": {} - }, - { - "channels": 1, - "events": [ - { - "detection": { - "confidence": 1.0, - "label": "Speech", - "label_id": 53, - "segment": { - "end_timestamp": 1800000000, - "start_timestamp": 800000000 - } - }, - "end_timestamp": 1800000000, - "event_type": "Speech", - "start_timestamp": 800000000 - } - ], - "rate": 16000, - "source": "file:///home/pipeline-server/tests/media/how_are_you_doing.wav", - "tags": {} - }, - { - "channels": 1, - "events": [ - { - "detection": { - "confidence": 1.0, - "label": "Speech", - "label_id": 53, - "segment": { - "end_timestamp": 2000000000, - "start_timestamp": 1000000000 - } - }, - "end_timestamp": 2000000000, - "event_type": "Speech", - "start_timestamp": 1000000000 - } - ], - "rate": 16000, - "source": "file:///home/pipeline-server/tests/media/how_are_you_doing.wav", - "tags": {} - }, - { - "channels": 1, - "events": [ - { - "detection": { - "confidence": 1.0, - "label": "Speech", - "label_id": 53, - "segment": { - "end_timestamp": 2200000000, - "start_timestamp": 1200000000 - } - }, - "end_timestamp": 2200000000, - "event_type": "Speech", - "start_timestamp": 1200000000 - } - ], - "rate": 16000, - "source": "file:///home/pipeline-server/tests/media/how_are_you_doing.wav", - "tags": {} - }, - { - "channels": 1, - "events": [ - { - "detection": { - "confidence": 1.0, - "label": "Speech", - "label_id": 53, - "segment": { - "end_timestamp": 2400000000, - "start_timestamp": 1400000000 - } - }, - "end_timestamp": 2400000000, - "event_type": "Speech", - "start_timestamp": 1400000000 - } - ], - "rate": 16000, - "source": "file:///home/pipeline-server/tests/media/how_are_you_doing.wav", - "tags": {} - }, - { - "channels": 1, - "events": [ - { - "detection": { - "confidence": 1.0, - "label": "Speech", - "label_id": 53, - "segment": { - "end_timestamp": 2600000000, - "start_timestamp": 1600000000 - } - }, - "end_timestamp": 2600000000, - "event_type": "Speech", - "start_timestamp": 1600000000 - } - ], - "rate": 16000, - "source": "file:///home/pipeline-server/tests/media/how_are_you_doing.wav", - "tags": {} - }, - { - "channels": 1, - "events": [ - { - "detection": { - "confidence": 1.0, - "label": "Speech", - "label_id": 53, - "segment": { - "end_timestamp": 2800000000, - "start_timestamp": 1800000000 - } - }, - "end_timestamp": 2800000000, - "event_type": "Speech", - "start_timestamp": 1800000000 - } - ], - "rate": 16000, - "source": "file:///home/pipeline-server/tests/media/how_are_you_doing.wav", - "tags": {} - }, - { - "channels": 1, - "events": [ - { - "detection": { - "confidence": 1.0, - "label": "Speech", - "label_id": 53, - "segment": { - "end_timestamp": 3000000000, - "start_timestamp": 2000000000 - } - }, - "end_timestamp": 3000000000, - "event_type": "Speech", - "start_timestamp": 2000000000 - } - ], - "rate": 16000, - "source": "file:///home/pipeline-server/tests/media/how_are_you_doing.wav", - "tags": {} - }, - { - "channels": 1, - "events": [ - { - "detection": { - "confidence": 0.99, - "label": "Speech", - "label_id": 53, - "segment": { - "end_timestamp": 3200000000, - "start_timestamp": 2200000000 - } - }, - "end_timestamp": 3200000000, - "event_type": "Speech", - "start_timestamp": 2200000000 - } - ], - "rate": 16000, - "source": "file:///home/pipeline-server/tests/media/how_are_you_doing.wav", - "tags": {} - }, - { - "channels": 1, - "events": [ - { - "detection": { - "confidence": 0.99, - "label": "Speech", - "label_id": 53, - "segment": { - "end_timestamp": 3400000000, - "start_timestamp": 2400000000 - } - }, - "end_timestamp": 3400000000, - "event_type": "Speech", - "start_timestamp": 2400000000 - } - ], - "rate": 16000, - "source": "file:///home/pipeline-server/tests/media/how_are_you_doing.wav", - "tags": {} - } - ] -} \ No newline at end of file diff --git a/tests/test_cases/pipeline_stability/cpu/stability_emotion_recognition_many_ffmpeg.json b/tests/test_cases/pipeline_stability/cpu/stability_emotion_recognition_many_ffmpeg.json deleted file mode 100644 index 5723761..0000000 --- a/tests/test_cases/pipeline_stability/cpu/stability_emotion_recognition_many_ffmpeg.json +++ /dev/null @@ -1,78764 +0,0 @@ -{ - "options": {}, - "pipeline": { - "name": "emotion_recognition", - "version": 1 - }, - "request": { - "source": { - "type": "uri", - "uri": "file:///home/pipeline-server/samples/classroom.mp4" - }, - "destination": { - "type": "file", - "path": "/tmp/emotion_recognition_results.json", - "format": "json-lines" - } - }, - "stability_duration": 10800, - "relaunch_on_complete": true, - "numerical_tolerance": 0.2, - "result": [ - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 0, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6412968039512634, - "y_min": 0.5694648027420044, - "x_max": 0.6788294911384583, - "y_max": 0.6525497436523438 - }, - "confidence": 0.9999645948410034, - "label_id": 1 - }, - "h": 90, - "w": 72, - "x": 1231, - "y": 615 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13364143669605255, - "y_min": 0.5634274482727051, - "x_max": 0.1723073273897171, - "y_max": 0.6356501579284668 - }, - "confidence": 0.5075588822364807, - "label_id": 1 - }, - "h": 78, - "w": 74, - "x": 257, - "y": 609 - } - ], - "tensors": [ - { - "confidence": 0.9999645948410034, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.12319017946720123, - 0.1651959866285324, - 0.06992017477750778, - 0.008009198121726513, - 0.6336843967437744 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5075588822364807, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3002123534679413, - 0.016683991998434067, - 0.1549466848373413, - 0.00511789508163929, - 0.5230391621589661 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 33333248, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6411512494087219, - "y_min": 0.5697174072265625, - "x_max": 0.6789702773094177, - "y_max": 0.6517136096954346 - }, - "confidence": 0.9999722242355347, - "label_id": 1 - }, - "h": 89, - "w": 73, - "x": 1231, - "y": 615 - } - ], - "tensors": [ - { - "confidence": 0.9999722242355347, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09476670622825623, - 0.27669647336006165, - 0.06121734902262688, - 0.008807641454041004, - 0.5585119128227234 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 66666496, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6412199139595032, - "y_min": 0.5697042942047119, - "x_max": 0.6790085434913635, - "y_max": 0.6515480279922485 - }, - "confidence": 0.9999730587005615, - "label_id": 1 - }, - "h": 89, - "w": 73, - "x": 1231, - "y": 615 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13580425083637238, - "y_min": 0.5544706583023071, - "x_max": 0.1738824099302292, - "y_max": 0.6327389478683472 - }, - "confidence": 0.5266309380531311, - "label_id": 1 - }, - "h": 84, - "w": 73, - "x": 261, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9999730587005615, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09993087500333786, - 0.36703139543533325, - 0.056555185467004776, - 0.008542444556951523, - 0.4679401218891144 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5266309380531311, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2948246896266937, - 0.00950733944773674, - 0.12838535010814667, - 0.004998601973056793, - 0.5622841119766235 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 99999744, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6412595510482788, - "y_min": 0.5698590278625488, - "x_max": 0.6790896654129028, - "y_max": 0.6512271165847778 - }, - "confidence": 0.9999768733978271, - "label_id": 1 - }, - "h": 88, - "w": 73, - "x": 1231, - "y": 615 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13684213161468506, - "y_min": 0.5551536679267883, - "x_max": 0.1748257279396057, - "y_max": 0.6329370141029358 - }, - "confidence": 0.56205153465271, - "label_id": 1 - }, - "h": 84, - "w": 73, - "x": 263, - "y": 600 - } - ], - "tensors": [ - { - "confidence": 0.9999768733978271, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.11740413308143616, - 0.49269533157348633, - 0.045440673828125, - 0.00923553854227066, - 0.3352243900299072 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.56205153465271, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2560845911502838, - 0.008486981503665447, - 0.14228342473506927, - 0.003458294551819563, - 0.5896866917610168 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 133332992, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.641176700592041, - "y_min": 0.5699548125267029, - "x_max": 0.6792415380477905, - "y_max": 0.6510177254676819 - }, - "confidence": 0.9999804496765137, - "label_id": 1 - }, - "h": 87, - "w": 73, - "x": 1231, - "y": 616 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1375310719013214, - "y_min": 0.5555132031440735, - "x_max": 0.17566514015197754, - "y_max": 0.6328585743904114 - }, - "confidence": 0.5669082999229431, - "label_id": 1 - }, - "h": 83, - "w": 73, - "x": 264, - "y": 600 - } - ], - "tensors": [ - { - "confidence": 0.9999804496765137, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.06932168453931808, - 0.4733951985836029, - 0.07149181514978409, - 0.006632730830460787, - 0.379158616065979 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5669082999229431, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2511152923107147, - 0.008548074401915073, - 0.16454005241394043, - 0.003896421054378152, - 0.5719001889228821 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 166666240, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6412996053695679, - "y_min": 0.5700562596321106, - "x_max": 0.6791977882385254, - "y_max": 0.6506091952323914 - }, - "confidence": 0.999976396560669, - "label_id": 1 - }, - "h": 87, - "w": 73, - "x": 1231, - "y": 616 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13749653100967407, - "y_min": 0.5557567477226257, - "x_max": 0.17584219574928284, - "y_max": 0.6332045197486877 - }, - "confidence": 0.5942716598510742, - "label_id": 1 - }, - "h": 84, - "w": 74, - "x": 264, - "y": 600 - } - ], - "tensors": [ - { - "confidence": 0.999976396560669, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.06080123409628868, - 0.511208176612854, - 0.06831725686788559, - 0.006998446304351091, - 0.3526749312877655 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5942716598510742, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.26817190647125244, - 0.00800487119704485, - 0.17576298117637634, - 0.004221099894493818, - 0.5438390970230103 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 199999488, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6412631273269653, - "y_min": 0.5699810981750488, - "x_max": 0.6792240142822266, - "y_max": 0.6505907773971558 - }, - "confidence": 0.9999765157699585, - "label_id": 1 - }, - "h": 87, - "w": 73, - "x": 1231, - "y": 616 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1377561092376709, - "y_min": 0.5559017062187195, - "x_max": 0.17581707239151, - "y_max": 0.6323694586753845 - }, - "confidence": 0.5578989386558533, - "label_id": 1 - }, - "h": 83, - "w": 74, - "x": 264, - "y": 600 - } - ], - "tensors": [ - { - "confidence": 0.9999765157699585, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.05596078187227249, - 0.5455052852630615, - 0.0654057040810585, - 0.006687495391815901, - 0.3264407217502594 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5578989386558533, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.32656803727149963, - 0.010763793252408504, - 0.1447240114212036, - 0.004653676878660917, - 0.5132904648780823 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 233332736, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6411565542221069, - "y_min": 0.570034921169281, - "x_max": 0.678870677947998, - "y_max": 0.650773823261261 - }, - "confidence": 0.9999591112136841, - "label_id": 1 - }, - "h": 87, - "w": 72, - "x": 1231, - "y": 616 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13766591250896454, - "y_min": 0.5554504990577698, - "x_max": 0.17606450617313385, - "y_max": 0.632808268070221 - }, - "confidence": 0.5822762250900269, - "label_id": 1 - }, - "h": 83, - "w": 74, - "x": 264, - "y": 600 - } - ], - "tensors": [ - { - "confidence": 0.9999591112136841, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.06462795287370682, - 0.48927733302116394, - 0.08943969011306763, - 0.008030404336750507, - 0.3486245572566986 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5822762250900269, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.29410651326179504, - 0.007224725559353828, - 0.14407847821712494, - 0.0031990613788366318, - 0.5513911843299866 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 266665984, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6408575773239136, - "y_min": 0.5692929029464722, - "x_max": 0.6783617734909058, - "y_max": 0.6511465311050415 - }, - "confidence": 0.999934196472168, - "label_id": 1 - }, - "h": 88, - "w": 72, - "x": 1230, - "y": 615 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13737480342388153, - "y_min": 0.5550581812858582, - "x_max": 0.17612262070178986, - "y_max": 0.6335609555244446 - }, - "confidence": 0.5685104727745056, - "label_id": 1 - }, - "h": 85, - "w": 74, - "x": 264, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.999934196472168, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09688720852136612, - 0.5528073310852051, - 0.056399229913949966, - 0.011086860671639442, - 0.2828194499015808 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5685104727745056, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2388954609632492, - 0.006951880641281605, - 0.16047914326190948, - 0.002235219581052661, - 0.591438353061676 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 299999232, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6408713459968567, - "y_min": 0.5692755579948425, - "x_max": 0.678365170955658, - "y_max": 0.6506558060646057 - }, - "confidence": 0.9999140501022339, - "label_id": 1 - }, - "h": 88, - "w": 72, - "x": 1230, - "y": 615 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13730193674564362, - "y_min": 0.5547615885734558, - "x_max": 0.1763569563627243, - "y_max": 0.6344477534294128 - }, - "confidence": 0.5760226845741272, - "label_id": 1 - }, - "h": 86, - "w": 75, - "x": 264, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9999140501022339, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.07601393014192581, - 0.5494315028190613, - 0.06178562343120575, - 0.010974552482366562, - 0.3017943799495697 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5760226845741272, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.24955986440181732, - 0.006589876022189856, - 0.1533903330564499, - 0.002466815523803234, - 0.5879932045936584 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 333332480, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6407347917556763, - "y_min": 0.5694766640663147, - "x_max": 0.6782580614089966, - "y_max": 0.6509694457054138 - }, - "confidence": 0.9999071359634399, - "label_id": 1 - }, - "h": 88, - "w": 72, - "x": 1230, - "y": 615 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13717661798000336, - "y_min": 0.5544568300247192, - "x_max": 0.17683343589305878, - "y_max": 0.6357804536819458 - }, - "confidence": 0.5716720223426819, - "label_id": 1 - }, - "h": 88, - "w": 77, - "x": 263, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9999071359634399, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.06014002114534378, - 0.6292464137077332, - 0.05188773572444916, - 0.010140739381313324, - 0.24858513474464417 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5716720223426819, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.29322582483291626, - 0.01026241946965456, - 0.16398577392101288, - 0.004642535001039505, - 0.5278834700584412 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 366665728, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6405088305473328, - "y_min": 0.5689634680747986, - "x_max": 0.6781840920448303, - "y_max": 0.650962769985199 - }, - "confidence": 0.9998830556869507, - "label_id": 1 - }, - "h": 89, - "w": 72, - "x": 1230, - "y": 614 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13736090064048767, - "y_min": 0.5541353225708008, - "x_max": 0.17668095231056213, - "y_max": 0.6366373300552368 - }, - "confidence": 0.5865276455879211, - "label_id": 1 - }, - "h": 90, - "w": 75, - "x": 264, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9998830556869507, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.053054019808769226, - 0.6010914444923401, - 0.05187845975160599, - 0.010107254609465599, - 0.28386884927749634 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5865276455879211, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.28838226199150085, - 0.009539183229207993, - 0.14973360300064087, - 0.00533274095505476, - 0.547012209892273 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 399998976, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6401205658912659, - "y_min": 0.5694944262504578, - "x_max": 0.6779670119285583, - "y_max": 0.6518989205360413 - }, - "confidence": 0.9998315572738647, - "label_id": 1 - }, - "h": 89, - "w": 73, - "x": 1229, - "y": 615 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13732288777828217, - "y_min": 0.5535547733306885, - "x_max": 0.17683599889278412, - "y_max": 0.6385407447814941 - }, - "confidence": 0.5883995890617371, - "label_id": 1 - }, - "h": 92, - "w": 76, - "x": 264, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9998315572738647, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.047455839812755585, - 0.5589654445648193, - 0.06852234899997711, - 0.006568790413439274, - 0.31848761439323425 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5883995890617371, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2294900119304657, - 0.007170759607106447, - 0.16652336716651917, - 0.007046767044812441, - 0.5897690653800964 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 433332224, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6400229334831238, - "y_min": 0.5691395998001099, - "x_max": 0.6778344511985779, - "y_max": 0.6516546010971069 - }, - "confidence": 0.9997658133506775, - "label_id": 1 - }, - "h": 89, - "w": 72, - "x": 1229, - "y": 615 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1372942477464676, - "y_min": 0.5537349581718445, - "x_max": 0.17683850228786469, - "y_max": 0.638186514377594 - }, - "confidence": 0.5956234931945801, - "label_id": 1 - }, - "h": 91, - "w": 76, - "x": 264, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9997658133506775, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.06157585605978966, - 0.589150071144104, - 0.06857116520404816, - 0.005087380297482014, - 0.2756154537200928 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5956234931945801, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.25456130504608154, - 0.007737122941762209, - 0.1608775109052658, - 0.007857349701225758, - 0.5689667463302612 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 466665472, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6397178769111633, - "y_min": 0.5689195394515991, - "x_max": 0.6776127219200134, - "y_max": 0.6520148515701294 - }, - "confidence": 0.9997555613517761, - "label_id": 1 - }, - "h": 90, - "w": 73, - "x": 1228, - "y": 614 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13748031854629517, - "y_min": 0.5540299415588379, - "x_max": 0.17694833874702454, - "y_max": 0.6386620998382568 - }, - "confidence": 0.5697470307350159, - "label_id": 1 - }, - "h": 92, - "w": 76, - "x": 264, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9997555613517761, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.06269396096467972, - 0.5996915102005005, - 0.06859683245420456, - 0.007908143103122711, - 0.26110953092575073 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5697470307350159, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.24595513939857483, - 0.007230586837977171, - 0.1753086894750595, - 0.006098196841776371, - 0.565407395362854 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 499998720, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.63954097032547, - "y_min": 0.5689296126365662, - "x_max": 0.6774386763572693, - "y_max": 0.6522640585899353 - }, - "confidence": 0.9997164607048035, - "label_id": 1 - }, - "h": 90, - "w": 73, - "x": 1228, - "y": 614 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.137651264667511, - "y_min": 0.5539517998695374, - "x_max": 0.1774144172668457, - "y_max": 0.6385499835014343 - }, - "confidence": 0.5344288945198059, - "label_id": 1 - }, - "h": 92, - "w": 77, - "x": 264, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9997164607048035, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.06405416876077652, - 0.6104480028152466, - 0.0589931383728981, - 0.00661648903042078, - 0.259888231754303 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5344288945198059, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3016205132007599, - 0.012075085192918777, - 0.19134829938411713, - 0.006275168154388666, - 0.4886808693408966 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 533331968, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6393157243728638, - "y_min": 0.5687540769577026, - "x_max": 0.6773360967636108, - "y_max": 0.6524851322174072 - }, - "confidence": 0.9996709823608398, - "label_id": 1 - }, - "h": 91, - "w": 73, - "x": 1227, - "y": 614 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1375407874584198, - "y_min": 0.5541338920593262, - "x_max": 0.17751356959342957, - "y_max": 0.63777756690979 - }, - "confidence": 0.5222451090812683, - "label_id": 1 - }, - "h": 91, - "w": 77, - "x": 264, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9996709823608398, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.061407752335071564, - 0.6328418850898743, - 0.06624618172645569, - 0.006476445123553276, - 0.23302769660949707 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5222451090812683, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2634456157684326, - 0.006851217709481716, - 0.1837293803691864, - 0.009517072699964046, - 0.5364567637443542 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 566665216, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.638988196849823, - "y_min": 0.5691242814064026, - "x_max": 0.6773303151130676, - "y_max": 0.6533293128013611 - }, - "confidence": 0.9996821880340576, - "label_id": 1 - }, - "h": 91, - "w": 73, - "x": 1227, - "y": 615 - } - ], - "tensors": [ - { - "confidence": 0.9996821880340576, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.06579310446977615, - 0.5328019261360168, - 0.10028987377882004, - 0.006788233295083046, - 0.29432687163352966 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 599998464, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6389088034629822, - "y_min": 0.5689743161201477, - "x_max": 0.6772947907447815, - "y_max": 0.6532993912696838 - }, - "confidence": 0.9996401071548462, - "label_id": 1 - }, - "h": 92, - "w": 73, - "x": 1227, - "y": 614 - } - ], - "tensors": [ - { - "confidence": 0.9996401071548462, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.0604705810546875, - 0.5290471315383911, - 0.10050265491008759, - 0.00909441988915205, - 0.30088523030281067 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 633331712, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6387729644775391, - "y_min": 0.5690249800682068, - "x_max": 0.6773384809494019, - "y_max": 0.6536583304405212 - }, - "confidence": 0.9996762275695801, - "label_id": 1 - }, - "h": 91, - "w": 74, - "x": 1226, - "y": 615 - } - ], - "tensors": [ - { - "confidence": 0.9996762275695801, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.05367569625377655, - 0.6089356541633606, - 0.09091707319021225, - 0.006734243128448725, - 0.23973728716373444 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 666664960, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6388152837753296, - "y_min": 0.5698225498199463, - "x_max": 0.6773309707641602, - "y_max": 0.6543303728103638 - }, - "confidence": 0.9997027516365051, - "label_id": 1 - }, - "h": 92, - "w": 73, - "x": 1227, - "y": 615 - } - ], - "tensors": [ - { - "confidence": 0.9997027516365051, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.042812421917915344, - 0.6789587736129761, - 0.08255472034215927, - 0.004894970916211605, - 0.19077907502651215 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 699998208, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6385239362716675, - "y_min": 0.5694783926010132, - "x_max": 0.6772700548171997, - "y_max": 0.6545463800430298 - }, - "confidence": 0.9996026158332825, - "label_id": 1 - }, - "h": 92, - "w": 74, - "x": 1226, - "y": 615 - } - ], - "tensors": [ - { - "confidence": 0.9996026158332825, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.05379173159599304, - 0.5737855434417725, - 0.09502022713422775, - 0.008252796716988087, - 0.26914969086647034 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 733331456, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6386552453041077, - "y_min": 0.5699109435081482, - "x_max": 0.6774354577064514, - "y_max": 0.6541087031364441 - }, - "confidence": 0.9996305704116821, - "label_id": 1 - }, - "h": 90, - "w": 75, - "x": 1226, - "y": 616 - } - ], - "tensors": [ - { - "confidence": 0.9996305704116821, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.048554886132478714, - 0.5868767499923706, - 0.08556421101093292, - 0.008526978082954884, - 0.2704771161079407 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 766664704, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6377725005149841, - "y_min": 0.5706781148910522, - "x_max": 0.6774527430534363, - "y_max": 0.6547877788543701 - }, - "confidence": 0.9997525811195374, - "label_id": 1 - }, - "h": 91, - "w": 76, - "x": 1225, - "y": 616 - } - ], - "tensors": [ - { - "confidence": 0.9997525811195374, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.04829789325594902, - 0.560978889465332, - 0.09117648750543594, - 0.006639817729592323, - 0.29290688037872314 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 799997952, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6375781297683716, - "y_min": 0.5705780982971191, - "x_max": 0.6771112680435181, - "y_max": 0.6544487476348877 - }, - "confidence": 0.9996844530105591, - "label_id": 1 - }, - "h": 91, - "w": 76, - "x": 1224, - "y": 616 - } - ], - "tensors": [ - { - "confidence": 0.9996844530105591, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.03873133659362793, - 0.5500537157058716, - 0.0890822559595108, - 0.004322300665080547, - 0.3178102970123291 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 833331200, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6374301910400391, - "y_min": 0.5709944367408752, - "x_max": 0.6769723892211914, - "y_max": 0.6546173691749573 - }, - "confidence": 0.9999054670333862, - "label_id": 1 - }, - "h": 90, - "w": 76, - "x": 1224, - "y": 617 - } - ], - "tensors": [ - { - "confidence": 0.9999054670333862, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.05393543094396591, - 0.5807980298995972, - 0.07377002388238907, - 0.0052932207472622395, - 0.2862033247947693 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 866664448, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6346307992935181, - "y_min": 0.574015736579895, - "x_max": 0.6726008653640747, - "y_max": 0.6544005870819092 - }, - "confidence": 0.9920228719711304, - "label_id": 1 - }, - "h": 87, - "w": 73, - "x": 1218, - "y": 620 - } - ], - "tensors": [ - { - "confidence": 0.9920228719711304, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.12135785073041916, - 0.551408588886261, - 0.12017922103404999, - 0.005897729657590389, - 0.2011566311120987 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 899997696, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6360359787940979, - "y_min": 0.5738763213157654, - "x_max": 0.6736878752708435, - "y_max": 0.6535921692848206 - }, - "confidence": 0.9974478483200073, - "label_id": 1 - }, - "h": 86, - "w": 72, - "x": 1221, - "y": 620 - } - ], - "tensors": [ - { - "confidence": 0.9974478483200073, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.062441132962703705, - 0.47613751888275146, - 0.1289157122373581, - 0.002915231278166175, - 0.329590380191803 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 933330944, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6348536014556885, - "y_min": 0.5727424621582031, - "x_max": 0.6732203960418701, - "y_max": 0.6539628505706787 - }, - "confidence": 0.9955086708068848, - "label_id": 1 - }, - "h": 87, - "w": 74, - "x": 1219, - "y": 619 - } - ], - "tensors": [ - { - "confidence": 0.9955086708068848, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.10799233615398407, - 0.7805868983268738, - 0.03971279039978981, - 0.0016076627653092146, - 0.07010029256343842 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 966664192, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6336044669151306, - "y_min": 0.5735451579093933, - "x_max": 0.6728563904762268, - "y_max": 0.6553450226783752 - }, - "confidence": 0.9932686686515808, - "label_id": 1 - }, - "h": 89, - "w": 75, - "x": 1217, - "y": 619 - } - ], - "tensors": [ - { - "confidence": 0.9932686686515808, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.10918072611093521, - 0.6650184392929077, - 0.0674554854631424, - 0.004243039060384035, - 0.15410223603248596 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 999997440, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6330422759056091, - "y_min": 0.5762927532196045, - "x_max": 0.6721875071525574, - "y_max": 0.6550306081771851 - }, - "confidence": 0.9835832715034485, - "label_id": 1 - }, - "h": 85, - "w": 76, - "x": 1215, - "y": 622 - } - ], - "tensors": [ - { - "confidence": 0.9835832715034485, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1574338674545288, - 0.6410708427429199, - 0.11068110913038254, - 0.0035724511835724115, - 0.08724165707826614 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 1033330688, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6314465999603271, - "y_min": 0.5735246539115906, - "x_max": 0.6717088222503662, - "y_max": 0.6558312773704529 - }, - "confidence": 0.9838465452194214, - "label_id": 1 - }, - "h": 89, - "w": 78, - "x": 1212, - "y": 619 - } - ], - "tensors": [ - { - "confidence": 0.9838465452194214, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.15559396147727966, - 0.7102171182632446, - 0.04629651829600334, - 0.009467781521379948, - 0.07842455804347992 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 1066663936, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6326057314872742, - "y_min": 0.5740045309066772, - "x_max": 0.6717508435249329, - "y_max": 0.6520813703536987 - }, - "confidence": 0.9908044338226318, - "label_id": 1 - }, - "h": 84, - "w": 75, - "x": 1215, - "y": 620 - } - ], - "tensors": [ - { - "confidence": 0.9908044338226318, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1733086109161377, - 0.7052244544029236, - 0.05640735104680061, - 0.007103537209331989, - 0.05795608088374138 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 1099997184, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6313168406486511, - "y_min": 0.576482355594635, - "x_max": 0.6704501509666443, - "y_max": 0.6542320847511292 - }, - "confidence": 0.9762944579124451, - "label_id": 1 - }, - "h": 84, - "w": 75, - "x": 1212, - "y": 623 - } - ], - "tensors": [ - { - "confidence": 0.9762944579124451, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.35472503304481506, - 0.2747686207294464, - 0.1671113669872284, - 0.017478669062256813, - 0.18591627478599548 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 1133330432, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6304397583007812, - "y_min": 0.5786623358726501, - "x_max": 0.6706228256225586, - "y_max": 0.6543505787849426 - }, - "confidence": 0.9757080674171448, - "label_id": 1 - }, - "h": 82, - "w": 78, - "x": 1210, - "y": 625 - } - ], - "tensors": [ - { - "confidence": 0.9757080674171448, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3122253119945526, - 0.1213269904255867, - 0.17469309270381927, - 0.013151658698916435, - 0.3786029815673828 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 1166663680, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6303203105926514, - "y_min": 0.578369677066803, - "x_max": 0.6703592538833618, - "y_max": 0.6537354588508606 - }, - "confidence": 0.9737010598182678, - "label_id": 1 - }, - "h": 81, - "w": 77, - "x": 1210, - "y": 625 - } - ], - "tensors": [ - { - "confidence": 0.9737010598182678, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3706253170967102, - 0.10767857730388641, - 0.19480420649051666, - 0.010126612149178982, - 0.31676527857780457 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 1199996928, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6299538612365723, - "y_min": 0.5841320753097534, - "x_max": 0.6692662239074707, - "y_max": 0.6572033166885376 - }, - "confidence": 0.9236344695091248, - "label_id": 1 - }, - "h": 79, - "w": 75, - "x": 1210, - "y": 631 - } - ], - "tensors": [ - { - "confidence": 0.9236344695091248, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2330685406923294, - 0.05679820477962494, - 0.2586590647697449, - 0.0033853694330900908, - 0.4480888843536377 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 1233330176, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6279871463775635, - "y_min": 0.5814316868782043, - "x_max": 0.6695560216903687, - "y_max": 0.6576206088066101 - }, - "confidence": 0.934546709060669, - "label_id": 1 - }, - "h": 82, - "w": 80, - "x": 1206, - "y": 628 - } - ], - "tensors": [ - { - "confidence": 0.934546709060669, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.33396467566490173, - 0.07930051535367966, - 0.22087502479553223, - 0.0071859839372336864, - 0.35867375135421753 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 1266663424, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6272029876708984, - "y_min": 0.5837988257408142, - "x_max": 0.6695128679275513, - "y_max": 0.6592119336128235 - }, - "confidence": 0.881503164768219, - "label_id": 1 - }, - "h": 81, - "w": 81, - "x": 1204, - "y": 631 - } - ], - "tensors": [ - { - "confidence": 0.881503164768219, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.24047254025936127, - 0.05949258431792259, - 0.23027339577674866, - 0.006297176703810692, - 0.46346428990364075 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 1299996672, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6274287700653076, - "y_min": 0.5842032432556152, - "x_max": 0.6693719625473022, - "y_max": 0.6592587232589722 - }, - "confidence": 0.8444755673408508, - "label_id": 1 - }, - "h": 81, - "w": 80, - "x": 1205, - "y": 631 - } - ], - "tensors": [ - { - "confidence": 0.8444755673408508, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2712080776691437, - 0.05784272402524948, - 0.14892101287841797, - 0.009287901222705841, - 0.5127403736114502 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 1333329920, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6266545653343201, - "y_min": 0.5842537879943848, - "x_max": 0.668851912021637, - "y_max": 0.657381534576416 - }, - "confidence": 0.719048798084259, - "label_id": 1 - }, - "h": 79, - "w": 81, - "x": 1203, - "y": 631 - } - ], - "tensors": [ - { - "confidence": 0.719048798084259, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.346087783575058, - 0.09806375950574875, - 0.1621999740600586, - 0.016308046877384186, - 0.3773404359817505 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 1366663168, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6266569495201111, - "y_min": 0.5853215456008911, - "x_max": 0.6679831147193909, - "y_max": 0.6562520265579224 - }, - "confidence": 0.6731869578361511, - "label_id": 1 - }, - "h": 77, - "w": 80, - "x": 1203, - "y": 632 - } - ], - "tensors": [ - { - "confidence": 0.6731869578361511, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3712998032569885, - 0.10716178268194199, - 0.14053402841091156, - 0.010618926957249641, - 0.37038540840148926 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 1399996416, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6262624859809875, - "y_min": 0.5851157903671265, - "x_max": 0.6686118245124817, - "y_max": 0.6581164598464966 - }, - "confidence": 0.7264052033424377, - "label_id": 1 - }, - "h": 79, - "w": 82, - "x": 1202, - "y": 632 - } - ], - "tensors": [ - { - "confidence": 0.7264052033424377, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.29168999195098877, - 0.1108088493347168, - 0.18145546317100525, - 0.013536213897168636, - 0.402509480714798 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 1433329664, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6264486312866211, - "y_min": 0.5848478078842163, - "x_max": 0.6687029600143433, - "y_max": 0.6583185195922852 - }, - "confidence": 0.7637073397636414, - "label_id": 1 - }, - "h": 79, - "w": 81, - "x": 1203, - "y": 632 - } - ], - "tensors": [ - { - "confidence": 0.7637073397636414, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2764836847782135, - 0.1185721606016159, - 0.18424364924430847, - 0.013909530825912952, - 0.4067910611629486 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 1466662912, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6268789768218994, - "y_min": 0.5847449898719788, - "x_max": 0.6687995195388794, - "y_max": 0.6587422490119934 - }, - "confidence": 0.7926822900772095, - "label_id": 1 - }, - "h": 79, - "w": 80, - "x": 1204, - "y": 632 - } - ], - "tensors": [ - { - "confidence": 0.7926822900772095, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.25355738401412964, - 0.0952221229672432, - 0.15783853828907013, - 0.012430047616362572, - 0.4809519052505493 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 1499996160, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6268783807754517, - "y_min": 0.5842359066009521, - "x_max": 0.6694391965866089, - "y_max": 0.659578800201416 - }, - "confidence": 0.8452792167663574, - "label_id": 1 - }, - "h": 81, - "w": 81, - "x": 1204, - "y": 631 - } - ], - "tensors": [ - { - "confidence": 0.8452792167663574, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.26454466581344604, - 0.10945740342140198, - 0.13345254957675934, - 0.011312748305499554, - 0.481232613325119 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 1533329408, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.627058744430542, - "y_min": 0.5837717652320862, - "x_max": 0.6697618961334229, - "y_max": 0.6601998209953308 - }, - "confidence": 0.8739551305770874, - "label_id": 1 - }, - "h": 83, - "w": 82, - "x": 1204, - "y": 630 - } - ], - "tensors": [ - { - "confidence": 0.8739551305770874, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.26097023487091064, - 0.06351044028997421, - 0.13825051486492157, - 0.007435861509293318, - 0.5298329591751099 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 1566662656, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6274639964103699, - "y_min": 0.5831140279769897, - "x_max": 0.6695844531059265, - "y_max": 0.6596033573150635 - }, - "confidence": 0.8878817558288574, - "label_id": 1 - }, - "h": 82, - "w": 81, - "x": 1205, - "y": 630 - } - ], - "tensors": [ - { - "confidence": 0.8878817558288574, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3023195266723633, - 0.10054641962051392, - 0.1629229187965393, - 0.007308271713554859, - 0.4269029200077057 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 1599995904, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6277740597724915, - "y_min": 0.5833694338798523, - "x_max": 0.6696751713752747, - "y_max": 0.6593853831291199 - }, - "confidence": 0.8956043720245361, - "label_id": 1 - }, - "h": 82, - "w": 81, - "x": 1205, - "y": 630 - } - ], - "tensors": [ - { - "confidence": 0.8956043720245361, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3027491569519043, - 0.1422412246465683, - 0.16788654029369354, - 0.00918167270720005, - 0.377941370010376 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 1633329152, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6277949213981628, - "y_min": 0.5827810764312744, - "x_max": 0.6698219180107117, - "y_max": 0.6595711708068848 - }, - "confidence": 0.9145687222480774, - "label_id": 1 - }, - "h": 83, - "w": 81, - "x": 1205, - "y": 629 - } - ], - "tensors": [ - { - "confidence": 0.9145687222480774, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3083273470401764, - 0.11891477555036545, - 0.1692878156900406, - 0.008987538516521454, - 0.3944825530052185 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 1666662400, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6275660991668701, - "y_min": 0.5822703242301941, - "x_max": 0.6699351072311401, - "y_max": 0.6593597531318665 - }, - "confidence": 0.9283925890922546, - "label_id": 1 - }, - "h": 83, - "w": 81, - "x": 1205, - "y": 629 - } - ], - "tensors": [ - { - "confidence": 0.9283925890922546, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2967453598976135, - 0.11566515266895294, - 0.1738688051700592, - 0.009043828584253788, - 0.4046769142150879 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 1699995648, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6276372671127319, - "y_min": 0.5828554630279541, - "x_max": 0.6701865196228027, - "y_max": 0.6600931882858276 - }, - "confidence": 0.9332579970359802, - "label_id": 1 - }, - "h": 84, - "w": 82, - "x": 1205, - "y": 629 - } - ], - "tensors": [ - { - "confidence": 0.9332579970359802, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.30322396755218506, - 0.10132749378681183, - 0.1618855744600296, - 0.007599659264087677, - 0.425963431596756 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 1733328896, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.627723217010498, - "y_min": 0.5825151205062866, - "x_max": 0.6704643964767456, - "y_max": 0.6597691774368286 - }, - "confidence": 0.9464370012283325, - "label_id": 1 - }, - "h": 84, - "w": 82, - "x": 1205, - "y": 629 - } - ], - "tensors": [ - { - "confidence": 0.9464370012283325, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3313136398792267, - 0.10860910266637802, - 0.14707496762275696, - 0.008768795989453793, - 0.40423354506492615 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 1766662144, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6273893117904663, - "y_min": 0.5823960304260254, - "x_max": 0.6704140901565552, - "y_max": 0.6597303152084351 - }, - "confidence": 0.9401161074638367, - "label_id": 1 - }, - "h": 84, - "w": 82, - "x": 1205, - "y": 629 - } - ], - "tensors": [ - { - "confidence": 0.9401161074638367, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.32191669940948486, - 0.12591144442558289, - 0.13369013369083405, - 0.008267354220151901, - 0.4102143943309784 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 1799995392, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6277232766151428, - "y_min": 0.582125723361969, - "x_max": 0.6704331040382385, - "y_max": 0.6592985987663269 - }, - "confidence": 0.9436529278755188, - "label_id": 1 - }, - "h": 83, - "w": 82, - "x": 1205, - "y": 629 - } - ], - "tensors": [ - { - "confidence": 0.9436529278755188, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3529239296913147, - 0.1593838334083557, - 0.12062078714370728, - 0.012270529754459858, - 0.35480087995529175 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 1833328640, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6279771327972412, - "y_min": 0.582300066947937, - "x_max": 0.670174241065979, - "y_max": 0.6590703725814819 - }, - "confidence": 0.9439488649368286, - "label_id": 1 - }, - "h": 83, - "w": 81, - "x": 1206, - "y": 629 - } - ], - "tensors": [ - { - "confidence": 0.9439488649368286, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3392573595046997, - 0.16735045611858368, - 0.12759560346603394, - 0.009992331266403198, - 0.3558042347431183 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 1866661888, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.628198504447937, - "y_min": 0.5821323990821838, - "x_max": 0.6703411340713501, - "y_max": 0.6590302586555481 - }, - "confidence": 0.9545205235481262, - "label_id": 1 - }, - "h": 83, - "w": 81, - "x": 1206, - "y": 629 - } - ], - "tensors": [ - { - "confidence": 0.9545205235481262, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.34196963906288147, - 0.19233810901641846, - 0.11494555324316025, - 0.008392130956053734, - 0.34235453605651855 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 1899995136, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.628122866153717, - "y_min": 0.5822247266769409, - "x_max": 0.6695012450218201, - "y_max": 0.6588355302810669 - }, - "confidence": 0.9223888516426086, - "label_id": 1 - }, - "h": 83, - "w": 79, - "x": 1206, - "y": 629 - } - ], - "tensors": [ - { - "confidence": 0.9223888516426086, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.24598141014575958, - 0.27071890234947205, - 0.1361503005027771, - 0.009332343935966492, - 0.3378169536590576 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 1933328384, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6292092800140381, - "y_min": 0.5801748037338257, - "x_max": 0.6710602045059204, - "y_max": 0.6569972038269043 - }, - "confidence": 0.9787864685058594, - "label_id": 1 - }, - "h": 83, - "w": 80, - "x": 1208, - "y": 627 - } - ], - "tensors": [ - { - "confidence": 0.9787864685058594, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3132374584674835, - 0.2934531271457672, - 0.09802704304456711, - 0.024962708353996277, - 0.2703196108341217 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 1966661632, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6294510960578918, - "y_min": 0.5791688561439514, - "x_max": 0.6709210276603699, - "y_max": 0.6600622534751892 - }, - "confidence": 0.9707183241844177, - "label_id": 1 - }, - "h": 87, - "w": 79, - "x": 1209, - "y": 626 - } - ], - "tensors": [ - { - "confidence": 0.9707183241844177, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.25588229298591614, - 0.3450014889240265, - 0.12199530005455017, - 0.007695731241255999, - 0.2694251835346222 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 1999994880, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6304479837417603, - "y_min": 0.5777509212493896, - "x_max": 0.67277991771698, - "y_max": 0.6620419025421143 - }, - "confidence": 0.9819445610046387, - "label_id": 1 - }, - "h": 91, - "w": 82, - "x": 1210, - "y": 624 - } - ], - "tensors": [ - { - "confidence": 0.9819445610046387, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.28489455580711365, - 0.4418579339981079, - 0.12497933954000473, - 0.007394033949822187, - 0.14087414741516113 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 2033328128, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6311723589897156, - "y_min": 0.581269383430481, - "x_max": 0.670667827129364, - "y_max": 0.6594283580780029 - }, - "confidence": 0.9697900414466858, - "label_id": 1 - }, - "h": 84, - "w": 76, - "x": 1212, - "y": 628 - } - ], - "tensors": [ - { - "confidence": 0.9697900414466858, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.08312421292066574, - 0.8618962168693542, - 0.025472646579146385, - 0.0034290598705410957, - 0.026077929884195328 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 2066661376, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6318475604057312, - "y_min": 0.5772507786750793, - "x_max": 0.6736653447151184, - "y_max": 0.6635789275169373 - }, - "confidence": 0.9907436966896057, - "label_id": 1 - }, - "h": 94, - "w": 80, - "x": 1213, - "y": 623 - } - ], - "tensors": [ - { - "confidence": 0.9907436966896057, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1106991171836853, - 0.7743998765945435, - 0.036153003573417664, - 0.003734573954716325, - 0.07501353323459625 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 2099994624, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6328823566436768, - "y_min": 0.5810948610305786, - "x_max": 0.6733114719390869, - "y_max": 0.6625659465789795 - }, - "confidence": 0.98870450258255, - "label_id": 1 - }, - "h": 88, - "w": 78, - "x": 1215, - "y": 628 - } - ], - "tensors": [ - { - "confidence": 0.98870450258255, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.057806771248579025, - 0.8816025257110596, - 0.015877872705459595, - 0.002830247860401869, - 0.041882675141096115 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 2133327872, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6344932913780212, - "y_min": 0.582048237323761, - "x_max": 0.6748895049095154, - "y_max": 0.6627001166343689 - }, - "confidence": 0.9960301518440247, - "label_id": 1 - }, - "h": 87, - "w": 78, - "x": 1218, - "y": 629 - } - ], - "tensors": [ - { - "confidence": 0.9960301518440247, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.05188879743218422, - 0.8989073634147644, - 0.0112916836515069, - 0.0025012032128870487, - 0.03541100025177002 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 2166661120, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6351280808448792, - "y_min": 0.5806317925453186, - "x_max": 0.6759718060493469, - "y_max": 0.661749541759491 - }, - "confidence": 0.999660849571228, - "label_id": 1 - }, - "h": 88, - "w": 79, - "x": 1219, - "y": 627 - } - ], - "tensors": [ - { - "confidence": 0.999660849571228, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.04999341815710068, - 0.8421483039855957, - 0.02237829752266407, - 0.0030237422324717045, - 0.0824563056230545 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 2199994368, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6348555684089661, - "y_min": 0.5811688899993896, - "x_max": 0.6752915978431702, - "y_max": 0.6631231307983398 - }, - "confidence": 0.9985253214836121, - "label_id": 1 - }, - "h": 88, - "w": 78, - "x": 1219, - "y": 628 - } - ], - "tensors": [ - { - "confidence": 0.9985253214836121, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.06045509874820709, - 0.8102680444717407, - 0.024988017976284027, - 0.0026981292758136988, - 0.1015908420085907 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 2233327616, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6352688670158386, - "y_min": 0.5811547040939331, - "x_max": 0.6760061383247375, - "y_max": 0.6621100902557373 - }, - "confidence": 0.9996408224105835, - "label_id": 1 - }, - "h": 87, - "w": 78, - "x": 1220, - "y": 628 - } - ], - "tensors": [ - { - "confidence": 0.9996408224105835, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.03725065663456917, - 0.8542969226837158, - 0.02162395976483822, - 0.0014250585809350014, - 0.08540339022874832 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 2266660864, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6361430287361145, - "y_min": 0.5831511616706848, - "x_max": 0.6764786839485168, - "y_max": 0.6617223620414734 - }, - "confidence": 0.9989941716194153, - "label_id": 1 - }, - "h": 85, - "w": 78, - "x": 1221, - "y": 630 - } - ], - "tensors": [ - { - "confidence": 0.9989941716194153, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.020380888134241104, - 0.9303896427154541, - 0.013622562400996685, - 0.0013178589288145304, - 0.03428903594613075 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 2299994112, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6364232301712036, - "y_min": 0.5812000036239624, - "x_max": 0.6769860982894897, - "y_max": 0.6609516143798828 - }, - "confidence": 0.9994862079620361, - "label_id": 1 - }, - "h": 86, - "w": 78, - "x": 1222, - "y": 628 - } - ], - "tensors": [ - { - "confidence": 0.9994862079620361, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.027963608503341675, - 0.8951337933540344, - 0.017752962186932564, - 0.0023448632564395666, - 0.05680476129055023 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 2333327360, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6370947957038879, - "y_min": 0.5811408162117004, - "x_max": 0.6772781014442444, - "y_max": 0.6588384509086609 - }, - "confidence": 0.9998995065689087, - "label_id": 1 - }, - "h": 84, - "w": 77, - "x": 1223, - "y": 628 - } - ], - "tensors": [ - { - "confidence": 0.9998995065689087, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.03810948133468628, - 0.8255041837692261, - 0.04629863426089287, - 0.0038946939166635275, - 0.08619304746389389 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 2366660608, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6361680030822754, - "y_min": 0.5815790295600891, - "x_max": 0.6779576539993286, - "y_max": 0.6590304970741272 - }, - "confidence": 0.999594509601593, - "label_id": 1 - }, - "h": 84, - "w": 81, - "x": 1221, - "y": 628 - } - ], - "tensors": [ - { - "confidence": 0.999594509601593, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.046902578324079514, - 0.744563639163971, - 0.07652018219232559, - 0.009661481715738773, - 0.12235201895236969 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 2399993856, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6364614963531494, - "y_min": 0.5824974179267883, - "x_max": 0.6781903505325317, - "y_max": 0.6606521010398865 - }, - "confidence": 0.9998276233673096, - "label_id": 1 - }, - "h": 85, - "w": 80, - "x": 1222, - "y": 629 - } - ], - "tensors": [ - { - "confidence": 0.9998276233673096, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.04583953320980072, - 0.6586048603057861, - 0.17535673081874847, - 0.004954083357006311, - 0.11524471640586853 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 2433327104, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6386532187461853, - "y_min": 0.5847721695899963, - "x_max": 0.6783179640769958, - "y_max": 0.6637130379676819 - }, - "confidence": 0.9998794794082642, - "label_id": 1 - }, - "h": 85, - "w": 76, - "x": 1226, - "y": 632 - } - ], - "tensors": [ - { - "confidence": 0.9998794794082642, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.06618937849998474, - 0.5439879894256592, - 0.25480878353118896, - 0.0037341611459851265, - 0.13127973675727844 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 2466660352, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6382970809936523, - "y_min": 0.5853340029716492, - "x_max": 0.6788969039916992, - "y_max": 0.6665824055671692 - }, - "confidence": 0.999852180480957, - "label_id": 1 - }, - "h": 88, - "w": 77, - "x": 1226, - "y": 632 - } - ], - "tensors": [ - { - "confidence": 0.999852180480957, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09960932284593582, - 0.44431272149086, - 0.2282978892326355, - 0.006242167204618454, - 0.22153790295124054 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 2499993600, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6390398740768433, - "y_min": 0.5852050185203552, - "x_max": 0.6793875694274902, - "y_max": 0.6669678092002869 - }, - "confidence": 0.9998486042022705, - "label_id": 1 - }, - "h": 88, - "w": 77, - "x": 1227, - "y": 632 - } - ], - "tensors": [ - { - "confidence": 0.9998486042022705, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.0936710312962532, - 0.4482974410057068, - 0.2598550617694855, - 0.005202491767704487, - 0.19297394156455994 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 2533326848, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6401495337486267, - "y_min": 0.5857749581336975, - "x_max": 0.6809143424034119, - "y_max": 0.6661853194236755 - }, - "confidence": 0.9999421834945679, - "label_id": 1 - }, - "h": 86, - "w": 78, - "x": 1229, - "y": 633 - } - ], - "tensors": [ - { - "confidence": 0.9999421834945679, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.08510977029800415, - 0.5466897487640381, - 0.21356305480003357, - 0.00742190470919013, - 0.14721548557281494 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 2566660096, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6397422552108765, - "y_min": 0.5859129428863525, - "x_max": 0.6801786422729492, - "y_max": 0.6663151979446411 - }, - "confidence": 0.9999083280563354, - "label_id": 1 - }, - "h": 87, - "w": 78, - "x": 1228, - "y": 633 - } - ], - "tensors": [ - { - "confidence": 0.9999083280563354, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.10492058098316193, - 0.3782016932964325, - 0.22588761150836945, - 0.007482385262846947, - 0.2835078239440918 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 2599993344, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6386065483093262, - "y_min": 0.5863975882530212, - "x_max": 0.6796530485153198, - "y_max": 0.6669967770576477 - }, - "confidence": 0.9998571872711182, - "label_id": 1 - }, - "h": 87, - "w": 79, - "x": 1226, - "y": 633 - } - ], - "tensors": [ - { - "confidence": 0.9998571872711182, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.14672785997390747, - 0.35682135820388794, - 0.19585250318050385, - 0.006580871529877186, - 0.2940174341201782 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 2633326592, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6388516426086426, - "y_min": 0.5871315002441406, - "x_max": 0.6804559230804443, - "y_max": 0.6675862073898315 - }, - "confidence": 0.9998785257339478, - "label_id": 1 - }, - "h": 87, - "w": 79, - "x": 1227, - "y": 634 - } - ], - "tensors": [ - { - "confidence": 0.9998785257339478, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.13150258362293243, - 0.4938241243362427, - 0.1660883128643036, - 0.004963396582752466, - 0.20362165570259094 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 2666659840, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6397268772125244, - "y_min": 0.5870478749275208, - "x_max": 0.6818739175796509, - "y_max": 0.6674043536186218 - }, - "confidence": 0.9999450445175171, - "label_id": 1 - }, - "h": 87, - "w": 81, - "x": 1228, - "y": 634 - } - ], - "tensors": [ - { - "confidence": 0.9999450445175171, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.0964260920882225, - 0.4857998490333557, - 0.18180601298809052, - 0.004775598645210266, - 0.23119239509105682 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 2699993088, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.640898585319519, - "y_min": 0.587007462978363, - "x_max": 0.6820986270904541, - "y_max": 0.6668751835823059 - }, - "confidence": 0.9999748468399048, - "label_id": 1 - }, - "h": 86, - "w": 79, - "x": 1231, - "y": 634 - } - ], - "tensors": [ - { - "confidence": 0.9999748468399048, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.0972234457731247, - 0.4784770607948303, - 0.15327295660972595, - 0.004575985483825207, - 0.26645055413246155 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 2733326336, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6407279372215271, - "y_min": 0.5871186256408691, - "x_max": 0.6824546456336975, - "y_max": 0.6666961908340454 - }, - "confidence": 0.9999772310256958, - "label_id": 1 - }, - "h": 86, - "w": 80, - "x": 1230, - "y": 634 - } - ], - "tensors": [ - { - "confidence": 0.9999772310256958, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09672439843416214, - 0.5910893678665161, - 0.14391720294952393, - 0.003586369100958109, - 0.16468262672424316 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 2766659584, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6422773599624634, - "y_min": 0.5850827097892761, - "x_max": 0.6834241151809692, - "y_max": 0.6659817099571228 - }, - "confidence": 0.9999431371688843, - "label_id": 1 - }, - "h": 87, - "w": 79, - "x": 1233, - "y": 632 - } - ], - "tensors": [ - { - "confidence": 0.9999431371688843, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09233427792787552, - 0.40641406178474426, - 0.16529569029808044, - 0.005567088257521391, - 0.33038878440856934 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 2799992832, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6438108086585999, - "y_min": 0.586165726184845, - "x_max": 0.6841621994972229, - "y_max": 0.6684649586677551 - }, - "confidence": 0.9997355341911316, - "label_id": 1 - }, - "h": 89, - "w": 78, - "x": 1236, - "y": 633 - } - ], - "tensors": [ - { - "confidence": 0.9997355341911316, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.05521861091256142, - 0.7740508913993835, - 0.05896322801709175, - 0.003930967301130295, - 0.10783635824918747 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 2833326080, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6452568769454956, - "y_min": 0.584517240524292, - "x_max": 0.6865600347518921, - "y_max": 0.6668877601623535 - }, - "confidence": 0.9999971389770508, - "label_id": 1 - }, - "h": 89, - "w": 79, - "x": 1239, - "y": 631 - } - ], - "tensors": [ - { - "confidence": 0.9999971389770508, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.0749361515045166, - 0.6141720414161682, - 0.07025782018899918, - 0.005285357125103474, - 0.23534853756427765 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 2866659328, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6460346579551697, - "y_min": 0.5807833075523376, - "x_max": 0.6878750920295715, - "y_max": 0.6635974049568176 - }, - "confidence": 0.9999876022338867, - "label_id": 1 - }, - "h": 90, - "w": 81, - "x": 1240, - "y": 627 - } - ], - "tensors": [ - { - "confidence": 0.9999876022338867, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.07269475609064102, - 0.6255737543106079, - 0.07012186199426651, - 0.011492226272821426, - 0.22011731564998627 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 2899992576, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6461431384086609, - "y_min": 0.5796650648117065, - "x_max": 0.6885899901390076, - "y_max": 0.664017915725708 - }, - "confidence": 0.9999852180480957, - "label_id": 1 - }, - "h": 91, - "w": 81, - "x": 1241, - "y": 626 - } - ], - "tensors": [ - { - "confidence": 0.9999852180480957, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09399529546499252, - 0.5659316778182983, - 0.10952091962099075, - 0.008438652381300926, - 0.2221134752035141 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 2933325824, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6469211578369141, - "y_min": 0.5804842710494995, - "x_max": 0.6911165714263916, - "y_max": 0.6628422737121582 - }, - "confidence": 0.9999969005584717, - "label_id": 1 - }, - "h": 89, - "w": 85, - "x": 1242, - "y": 627 - } - ], - "tensors": [ - { - "confidence": 0.9999969005584717, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.10142797231674194, - 0.47701123356819153, - 0.10296326130628586, - 0.015498682856559753, - 0.3030988276004791 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 2966659072, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6456277966499329, - "y_min": 0.579686164855957, - "x_max": 0.6907923817634583, - "y_max": 0.6621648073196411 - }, - "confidence": 0.9999982118606567, - "label_id": 1 - }, - "h": 89, - "w": 86, - "x": 1240, - "y": 626 - } - ], - "tensors": [ - { - "confidence": 0.9999982118606567, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1268337517976761, - 0.6007111072540283, - 0.10571271926164627, - 0.011440026573836803, - 0.15530231595039368 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 2999992320, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6477844715118408, - "y_min": 0.572959303855896, - "x_max": 0.6932690143585205, - "y_max": 0.6583009958267212 - }, - "confidence": 0.999993085861206, - "label_id": 1 - }, - "h": 92, - "w": 87, - "x": 1244, - "y": 619 - } - ], - "tensors": [ - { - "confidence": 0.999993085861206, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.07291077822446823, - 0.546120822429657, - 0.09210477024316788, - 0.011174783110618591, - 0.27768880128860474 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 3033325568, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6480449438095093, - "y_min": 0.5713220834732056, - "x_max": 0.6929225921630859, - "y_max": 0.6581387519836426 - }, - "confidence": 0.9999978542327881, - "label_id": 1 - }, - "h": 94, - "w": 86, - "x": 1244, - "y": 617 - } - ], - "tensors": [ - { - "confidence": 0.9999978542327881, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09124238789081573, - 0.6557807326316833, - 0.078380286693573, - 0.008498171344399452, - 0.16609838604927063 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 3066658816, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.650510847568512, - "y_min": 0.5668115615844727, - "x_max": 0.6948050856590271, - "y_max": 0.6535027027130127 - }, - "confidence": 0.9999990463256836, - "label_id": 1 - }, - "h": 94, - "w": 85, - "x": 1249, - "y": 612 - } - ], - "tensors": [ - { - "confidence": 0.9999990463256836, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09683907777070999, - 0.6005169749259949, - 0.09205979108810425, - 0.009182018227875233, - 0.2014022022485733 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 3099992064, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6519988179206848, - "y_min": 0.5618206262588501, - "x_max": 0.694286048412323, - "y_max": 0.6470110416412354 - }, - "confidence": 0.9999438524246216, - "label_id": 1 - }, - "h": 92, - "w": 81, - "x": 1252, - "y": 607 - } - ], - "tensors": [ - { - "confidence": 0.9999438524246216, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.06105943024158478, - 0.7353503108024597, - 0.05623795464634895, - 0.008240018039941788, - 0.13911230862140656 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 3133325312, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6513948440551758, - "y_min": 0.5580136775970459, - "x_max": 0.6930668354034424, - "y_max": 0.6405948400497437 - }, - "confidence": 0.9986230134963989, - "label_id": 1 - }, - "h": 89, - "w": 80, - "x": 1251, - "y": 603 - } - ], - "tensors": [ - { - "confidence": 0.9986230134963989, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.15347672998905182, - 0.6541466116905212, - 0.06300012767314911, - 0.011428860016167164, - 0.11794765293598175 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 3166658560, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6529971957206726, - "y_min": 0.5501925349235535, - "x_max": 0.6936654448509216, - "y_max": 0.6320151686668396 - }, - "confidence": 0.9398614168167114, - "label_id": 1 - }, - "h": 89, - "w": 78, - "x": 1254, - "y": 594 - } - ], - "tensors": [ - { - "confidence": 0.9398614168167114, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09167099744081497, - 0.6834302544593811, - 0.07066914439201355, - 0.011757799424231052, - 0.14247184991836548 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 3199991808, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6547002196311951, - "y_min": 0.5390720367431641, - "x_max": 0.6947478652000427, - "y_max": 0.6268323659896851 - }, - "confidence": 0.9156943559646606, - "label_id": 1 - }, - "h": 95, - "w": 77, - "x": 1257, - "y": 582 - } - ], - "tensors": [ - { - "confidence": 0.9156943559646606, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.15954770147800446, - 0.35620903968811035, - 0.1305128037929535, - 0.017808444797992706, - 0.335921972990036 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 3233325056, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6535251140594482, - "y_min": 0.5319717526435852, - "x_max": 0.6946139335632324, - "y_max": 0.6204124093055725 - }, - "confidence": 0.9995757937431335, - "label_id": 1 - }, - "h": 95, - "w": 79, - "x": 1255, - "y": 575 - } - ], - "tensors": [ - { - "confidence": 0.9995757937431335, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.17430530488491058, - 0.19302257895469666, - 0.2671651840209961, - 0.011563222855329514, - 0.35394367575645447 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 3266658304, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6553384065628052, - "y_min": 0.5206604599952698, - "x_max": 0.6949449777603149, - "y_max": 0.6087846159934998 - }, - "confidence": 0.9999474287033081, - "label_id": 1 - }, - "h": 95, - "w": 76, - "x": 1258, - "y": 562 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.2714182734489441, - "y_min": 0.47818830609321594, - "x_max": 0.29956310987472534, - "y_max": 0.5343794822692871 - }, - "confidence": 0.5325085520744324, - "label_id": 1 - }, - "h": 61, - "w": 54, - "x": 521, - "y": 516 - } - ], - "tensors": [ - { - "confidence": 0.9999474287033081, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.15516339242458344, - 0.270912766456604, - 0.197629913687706, - 0.027887394651770592, - 0.34840652346611023 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5325085520744324, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5033932328224182, - 0.17986218631267548, - 0.15013909339904785, - 0.04941069707274437, - 0.11719478666782379 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 3299991552, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6542651653289795, - "y_min": 0.5096050500869751, - "x_max": 0.6937811374664307, - "y_max": 0.5998814105987549 - }, - "confidence": 0.9999779462814331, - "label_id": 1 - }, - "h": 98, - "w": 76, - "x": 1256, - "y": 550 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.271511048078537, - "y_min": 0.47786563634872437, - "x_max": 0.29989591240882874, - "y_max": 0.5345329642295837 - }, - "confidence": 0.6744353175163269, - "label_id": 1 - }, - "h": 61, - "w": 55, - "x": 521, - "y": 516 - } - ], - "tensors": [ - { - "confidence": 0.9999779462814331, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.13563323020935059, - 0.25766950845718384, - 0.223661407828331, - 0.022077303379774094, - 0.3609585464000702 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6744353175163269, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5142533779144287, - 0.14865191280841827, - 0.15618844330310822, - 0.0540258027613163, - 0.1268804669380188 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 3333324800, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6553330421447754, - "y_min": 0.5031153559684753, - "x_max": 0.6938173770904541, - "y_max": 0.5887904763221741 - }, - "confidence": 0.9986600875854492, - "label_id": 1 - }, - "h": 93, - "w": 74, - "x": 1258, - "y": 543 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.2715792953968048, - "y_min": 0.4773217737674713, - "x_max": 0.30000320076942444, - "y_max": 0.5341654419898987 - }, - "confidence": 0.6830312013626099, - "label_id": 1 - }, - "h": 61, - "w": 55, - "x": 521, - "y": 516 - } - ], - "tensors": [ - { - "confidence": 0.9986600875854492, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1608332395553589, - 0.4137578308582306, - 0.17646025121212006, - 0.022947538644075394, - 0.22600114345550537 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6830312013626099, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5178096294403076, - 0.149673730134964, - 0.12831179797649384, - 0.06255176663398743, - 0.1416531354188919 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 3366658048, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6548515558242798, - "y_min": 0.49458038806915283, - "x_max": 0.694635272026062, - "y_max": 0.5819963216781616 - }, - "confidence": 0.8041732907295227, - "label_id": 1 - }, - "h": 95, - "w": 77, - "x": 1257, - "y": 534 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.27156949043273926, - "y_min": 0.47629719972610474, - "x_max": 0.3001093864440918, - "y_max": 0.5341069102287292 - }, - "confidence": 0.7027211785316467, - "label_id": 1 - }, - "h": 63, - "w": 55, - "x": 521, - "y": 514 - } - ], - "tensors": [ - { - "confidence": 0.8041732907295227, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.12445183843374252, - 0.27620741724967957, - 0.3165818452835083, - 0.0171500351279974, - 0.26560887694358826 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7027211785316467, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5523184537887573, - 0.1356913447380066, - 0.0945940688252449, - 0.06954085826873779, - 0.14785531163215637 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 3399991296, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6533817052841187, - "y_min": 0.4833289384841919, - "x_max": 0.6932339668273926, - "y_max": 0.5701463222503662 - }, - "confidence": 0.9925249218940735, - "label_id": 1 - }, - "h": 94, - "w": 77, - "x": 1254, - "y": 522 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.2717018723487854, - "y_min": 0.47585752606391907, - "x_max": 0.3001704812049866, - "y_max": 0.5340064764022827 - }, - "confidence": 0.6350514888763428, - "label_id": 1 - }, - "h": 63, - "w": 54, - "x": 522, - "y": 514 - } - ], - "tensors": [ - { - "confidence": 0.9925249218940735, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.08456048369407654, - 0.34422755241394043, - 0.13868530094623566, - 0.032738812267780304, - 0.39978787302970886 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6350514888763428, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5250787138938904, - 0.11871564388275146, - 0.08890599757432938, - 0.07661162316799164, - 0.19068799912929535 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 3433324544, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6505769491195679, - "y_min": 0.47691476345062256, - "x_max": 0.6920218467712402, - "y_max": 0.5699743032455444 - }, - "confidence": 0.9999295473098755, - "label_id": 1 - }, - "h": 101, - "w": 80, - "x": 1249, - "y": 515 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.2716684639453888, - "y_min": 0.47536006569862366, - "x_max": 0.30028870701789856, - "y_max": 0.5343546867370605 - }, - "confidence": 0.6715938448905945, - "label_id": 1 - }, - "h": 64, - "w": 55, - "x": 522, - "y": 513 - } - ], - "tensors": [ - { - "confidence": 0.9999295473098755, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.14610277116298676, - 0.07639975845813751, - 0.2259349375963211, - 0.03425207361578941, - 0.5173105001449585 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6715938448905945, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5041646361351013, - 0.18793627619743347, - 0.08556411415338516, - 0.06200525164604187, - 0.16032975912094116 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 3466657792, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6483258605003357, - "y_min": 0.47108006477355957, - "x_max": 0.6911135315895081, - "y_max": 0.5607528686523438 - }, - "confidence": 0.9999983310699463, - "label_id": 1 - }, - "h": 97, - "w": 82, - "x": 1245, - "y": 509 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.27183467149734497, - "y_min": 0.47507888078689575, - "x_max": 0.3003840446472168, - "y_max": 0.5345178246498108 - }, - "confidence": 0.6368207931518555, - "label_id": 1 - }, - "h": 64, - "w": 55, - "x": 522, - "y": 513 - } - ], - "tensors": [ - { - "confidence": 0.9999983310699463, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.14350953698158264, - 0.19851399958133698, - 0.25214365124702454, - 0.025955379009246826, - 0.3798774778842926 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6368207931518555, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.47295746207237244, - 0.22583048045635223, - 0.08784939348697662, - 0.05884178727865219, - 0.15452083945274353 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 3499991040, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6496195793151855, - "y_min": 0.46062469482421875, - "x_max": 0.6903083324432373, - "y_max": 0.5524011850357056 - }, - "confidence": 0.9999984502792358, - "label_id": 1 - }, - "h": 100, - "w": 78, - "x": 1247, - "y": 497 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.27163392305374146, - "y_min": 0.4749082326889038, - "x_max": 0.3003177046775818, - "y_max": 0.5347716808319092 - }, - "confidence": 0.6341117024421692, - "label_id": 1 - }, - "h": 65, - "w": 55, - "x": 522, - "y": 513 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13759197294712067, - "y_min": 0.5555082559585571, - "x_max": 0.1765374392271042, - "y_max": 0.6381649971008301 - }, - "confidence": 0.5423049330711365, - "label_id": 1 - }, - "h": 89, - "w": 75, - "x": 264, - "y": 600 - } - ], - "tensors": [ - { - "confidence": 0.9999984502792358, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.06741002947092056, - 0.20856210589408875, - 0.1339103877544403, - 0.012532949447631836, - 0.577584445476532 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6341117024421692, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5386332273483276, - 0.11990059167146683, - 0.09547562897205353, - 0.07615476846694946, - 0.1698358803987503 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5423049330711365, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1483793407678604, - 0.005532444920390844, - 0.1481488049030304, - 0.005820911377668381, - 0.6921184659004211 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 3533324288, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6480859518051147, - "y_min": 0.4563077688217163, - "x_max": 0.6881000995635986, - "y_max": 0.5442547798156738 - }, - "confidence": 0.9999947547912598, - "label_id": 1 - }, - "h": 95, - "w": 77, - "x": 1244, - "y": 493 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.2716120183467865, - "y_min": 0.4744618535041809, - "x_max": 0.3004142940044403, - "y_max": 0.5349045395851135 - }, - "confidence": 0.6483669877052307, - "label_id": 1 - }, - "h": 66, - "w": 56, - "x": 521, - "y": 512 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1375124454498291, - "y_min": 0.5552923679351807, - "x_max": 0.17657142877578735, - "y_max": 0.6379315853118896 - }, - "confidence": 0.5458439588546753, - "label_id": 1 - }, - "h": 89, - "w": 75, - "x": 264, - "y": 600 - } - ], - "tensors": [ - { - "confidence": 0.9999947547912598, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.08414842933416367, - 0.16607549786567688, - 0.17844682931900024, - 0.013297409750521183, - 0.5580319166183472 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6483669877052307, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5296456217765808, - 0.11440205574035645, - 0.12595348060131073, - 0.06865936517715454, - 0.1613394320011139 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5458439588546753, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.15053057670593262, - 0.005178485065698624, - 0.14159157872200012, - 0.005525669548660517, - 0.6971737146377563 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 3566657536, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6468469500541687, - "y_min": 0.4500163495540619, - "x_max": 0.6865175366401672, - "y_max": 0.539453387260437 - }, - "confidence": 0.9999827146530151, - "label_id": 1 - }, - "h": 97, - "w": 76, - "x": 1242, - "y": 486 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.2717079818248749, - "y_min": 0.47482946515083313, - "x_max": 0.30040863156318665, - "y_max": 0.5346560478210449 - }, - "confidence": 0.6331905722618103, - "label_id": 1 - }, - "h": 64, - "w": 55, - "x": 522, - "y": 513 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1373041719198227, - "y_min": 0.555044412612915, - "x_max": 0.1765708178281784, - "y_max": 0.6377401351928711 - }, - "confidence": 0.5436047911643982, - "label_id": 1 - }, - "h": 90, - "w": 75, - "x": 264, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9999827146530151, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.07929053902626038, - 0.3670353293418884, - 0.18793682754039764, - 0.004622487351298332, - 0.3611147701740265 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6331905722618103, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5034695863723755, - 0.19460903108119965, - 0.10628242045640945, - 0.046930115669965744, - 0.14870883524417877 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5436047911643982, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1794949769973755, - 0.007651824504137039, - 0.17743544280529022, - 0.005692522041499615, - 0.6297251582145691 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 3599990784, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.646522045135498, - "y_min": 0.4470452070236206, - "x_max": 0.6850662231445312, - "y_max": 0.5280824303627014 - }, - "confidence": 0.9979495406150818, - "label_id": 1 - }, - "h": 87, - "w": 74, - "x": 1241, - "y": 483 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.27160629630088806, - "y_min": 0.4748572111129761, - "x_max": 0.300585001707077, - "y_max": 0.5359554290771484 - }, - "confidence": 0.6457453370094299, - "label_id": 1 - }, - "h": 66, - "w": 56, - "x": 521, - "y": 513 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13712283968925476, - "y_min": 0.5551447868347168, - "x_max": 0.1767553687095642, - "y_max": 0.6383602619171143 - }, - "confidence": 0.5672494173049927, - "label_id": 1 - }, - "h": 89, - "w": 76, - "x": 263, - "y": 600 - } - ], - "tensors": [ - { - "confidence": 0.9979495406150818, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.05096471682190895, - 0.3366003930568695, - 0.15925316512584686, - 0.002765140263363719, - 0.45041659474372864 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6457453370094299, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5252614617347717, - 0.13186539709568024, - 0.07423022389411926, - 0.10059547424316406, - 0.1680474430322647 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5672494173049927, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.15523946285247803, - 0.006118004210293293, - 0.16338267922401428, - 0.006265191826969385, - 0.668994665145874 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 3633324032, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6441596746444702, - "y_min": 0.44192269444465637, - "x_max": 0.6838654279708862, - "y_max": 0.5252647399902344 - }, - "confidence": 0.878890872001648, - "label_id": 1 - }, - "h": 90, - "w": 76, - "x": 1237, - "y": 477 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.2716481685638428, - "y_min": 0.4746866226196289, - "x_max": 0.30054938793182373, - "y_max": 0.5354800224304199 - }, - "confidence": 0.6411441564559937, - "label_id": 1 - }, - "h": 65, - "w": 55, - "x": 522, - "y": 513 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1369801014661789, - "y_min": 0.5549740195274353, - "x_max": 0.17688246071338654, - "y_max": 0.6384229063987732 - }, - "confidence": 0.573919415473938, - "label_id": 1 - }, - "h": 90, - "w": 77, - "x": 263, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.878890872001648, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.04588650166988373, - 0.6492162346839905, - 0.08990266919136047, - 0.0029937897343188524, - 0.21200083196163177 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6411441564559937, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5330185890197754, - 0.10173489153385162, - 0.10693082958459854, - 0.04957136511802673, - 0.20874430239200592 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.573919415473938, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.14985695481300354, - 0.006741094868630171, - 0.19717447459697723, - 0.005843061953783035, - 0.6403844356536865 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 3666657280, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6457698941230774, - "y_min": 0.4318447709083557, - "x_max": 0.6829481720924377, - "y_max": 0.5198408961296082 - }, - "confidence": 0.6964260339736938, - "label_id": 1 - }, - "h": 95, - "w": 71, - "x": 1240, - "y": 466 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.27164801955223083, - "y_min": 0.4750118851661682, - "x_max": 0.3005041182041168, - "y_max": 0.5357163548469543 - }, - "confidence": 0.6377983093261719, - "label_id": 1 - }, - "h": 66, - "w": 55, - "x": 522, - "y": 513 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13694946467876434, - "y_min": 0.5549514889717102, - "x_max": 0.17705757915973663, - "y_max": 0.6384136080741882 - }, - "confidence": 0.5642532110214233, - "label_id": 1 - }, - "h": 90, - "w": 77, - "x": 263, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.6964260339736938, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.07523776590824127, - 0.6227710247039795, - 0.08512192964553833, - 0.009317435324192047, - 0.20755182206630707 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6377983093261719, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5133779048919678, - 0.08752064406871796, - 0.08170437067747116, - 0.10645783692598343, - 0.2109392136335373 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5642532110214233, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.16751037538051605, - 0.007546760141849518, - 0.18303649127483368, - 0.006352717988193035, - 0.6355536580085754 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 3699990528, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6408090591430664, - "y_min": 0.4299306571483612, - "x_max": 0.6802688837051392, - "y_max": 0.517393171787262 - }, - "confidence": 0.9951232075691223, - "label_id": 1 - }, - "h": 95, - "w": 76, - "x": 1230, - "y": 464 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.27181926369667053, - "y_min": 0.47512611746788025, - "x_max": 0.30051156878471375, - "y_max": 0.5351772308349609 - }, - "confidence": 0.6496596932411194, - "label_id": 1 - }, - "h": 65, - "w": 55, - "x": 522, - "y": 513 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1369788944721222, - "y_min": 0.5548715591430664, - "x_max": 0.17685583233833313, - "y_max": 0.6380023956298828 - }, - "confidence": 0.5649726390838623, - "label_id": 1 - }, - "h": 90, - "w": 77, - "x": 263, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9951232075691223, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.05059115216135979, - 0.7198441624641418, - 0.04588110372424126, - 0.00741284154355526, - 0.17627064883708954 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6496596932411194, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.527870237827301, - 0.08902077376842499, - 0.10452302545309067, - 0.059606537222862244, - 0.21897929906845093 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5649726390838623, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.18591609597206116, - 0.007445333059877157, - 0.17233465611934662, - 0.005646716337651014, - 0.6286572813987732 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 3733323776, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6400079131126404, - "y_min": 0.42766982316970825, - "x_max": 0.6780588030815125, - "y_max": 0.5171366930007935 - }, - "confidence": 0.9919339418411255, - "label_id": 1 - }, - "h": 97, - "w": 73, - "x": 1229, - "y": 462 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.2720389664173126, - "y_min": 0.47443947196006775, - "x_max": 0.3005755841732025, - "y_max": 0.5344575643539429 - }, - "confidence": 0.6300111413002014, - "label_id": 1 - }, - "h": 65, - "w": 55, - "x": 522, - "y": 512 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1369430273771286, - "y_min": 0.5547122955322266, - "x_max": 0.17700354754924774, - "y_max": 0.6380946636199951 - }, - "confidence": 0.5575116872787476, - "label_id": 1 - }, - "h": 90, - "w": 77, - "x": 263, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9919339418411255, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.06702631711959839, - 0.6822235584259033, - 0.054619066417217255, - 0.004860596731305122, - 0.19127044081687927 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6300111413002014, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5275260806083679, - 0.16879481077194214, - 0.11404363065958023, - 0.06283964961767197, - 0.12679581344127655 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5575116872787476, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2023058533668518, - 0.00832432508468628, - 0.17366720736026764, - 0.00557322520762682, - 0.6101292967796326 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 3766657024, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.638267993927002, - "y_min": 0.4251117706298828, - "x_max": 0.6767810583114624, - "y_max": 0.5130540132522583 - }, - "confidence": 0.9983404874801636, - "label_id": 1 - }, - "h": 95, - "w": 74, - "x": 1225, - "y": 459 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.27203646302223206, - "y_min": 0.4746894836425781, - "x_max": 0.30063995718955994, - "y_max": 0.5349466800689697 - }, - "confidence": 0.6673036217689514, - "label_id": 1 - }, - "h": 65, - "w": 55, - "x": 522, - "y": 513 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13714349269866943, - "y_min": 0.5544859170913696, - "x_max": 0.17712807655334473, - "y_max": 0.6385854482650757 - }, - "confidence": 0.5452130436897278, - "label_id": 1 - }, - "h": 91, - "w": 77, - "x": 263, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9983404874801636, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.08265365660190582, - 0.44886428117752075, - 0.13999579846858978, - 0.00637463852763176, - 0.3221116364002228 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6673036217689514, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5326277613639832, - 0.08360570669174194, - 0.10557278245687485, - 0.06652377545833588, - 0.2116699516773224 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5452130436897278, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2238236665725708, - 0.007757771294564009, - 0.15222135186195374, - 0.00781079800799489, - 0.6083863377571106 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 3799990272, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.636386513710022, - "y_min": 0.42344123125076294, - "x_max": 0.674689769744873, - "y_max": 0.5162612199783325 - }, - "confidence": 0.9244570136070251, - "label_id": 1 - }, - "h": 101, - "w": 73, - "x": 1222, - "y": 457 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.2717033326625824, - "y_min": 0.4756537079811096, - "x_max": 0.30029645562171936, - "y_max": 0.534688413143158 - }, - "confidence": 0.6271445751190186, - "label_id": 1 - }, - "h": 63, - "w": 55, - "x": 522, - "y": 514 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13692213594913483, - "y_min": 0.5543738603591919, - "x_max": 0.17708154022693634, - "y_max": 0.6385095119476318 - }, - "confidence": 0.5470709204673767, - "label_id": 1 - }, - "h": 91, - "w": 77, - "x": 263, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9244570136070251, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09350652992725372, - 0.4315585494041443, - 0.11841240525245667, - 0.011636080220341682, - 0.34488651156425476 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6271445751190186, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5700702667236328, - 0.10549567639827728, - 0.08965253084897995, - 0.04427354410290718, - 0.19050805270671844 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5470709204673767, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.18807023763656616, - 0.005464926362037659, - 0.16300354897975922, - 0.006670210976153612, - 0.6367911100387573 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 3833323520, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6349350214004517, - "y_min": 0.4231697916984558, - "x_max": 0.6735007762908936, - "y_max": 0.5168986916542053 - }, - "confidence": 0.81243896484375, - "label_id": 1 - }, - "h": 101, - "w": 74, - "x": 1219, - "y": 457 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.27150025963783264, - "y_min": 0.4766523241996765, - "x_max": 0.3002372682094574, - "y_max": 0.5348783135414124 - }, - "confidence": 0.6910207867622375, - "label_id": 1 - }, - "h": 63, - "w": 55, - "x": 521, - "y": 515 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13698220252990723, - "y_min": 0.554631769657135, - "x_max": 0.17708036303520203, - "y_max": 0.6376351714134216 - }, - "confidence": 0.5555306673049927, - "label_id": 1 - }, - "h": 90, - "w": 77, - "x": 263, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.81243896484375, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09533373266458511, - 0.4143037497997284, - 0.16318826377391815, - 0.011350124143064022, - 0.31582415103912354 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6910207867622375, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.6076339483261108, - 0.13653787970542908, - 0.09423312544822693, - 0.05447891354560852, - 0.10711608827114105 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5555306673049927, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.14097705483436584, - 0.0049338070675730705, - 0.17490750551223755, - 0.004355297889560461, - 0.6748263239860535 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 3866656768, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.27143800258636475, - "y_min": 0.4772135317325592, - "x_max": 0.30023306608200073, - "y_max": 0.5353047251701355 - }, - "confidence": 0.7047271728515625, - "label_id": 1 - }, - "h": 63, - "w": 55, - "x": 521, - "y": 515 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.633228600025177, - "y_min": 0.42392897605895996, - "x_max": 0.6737659573554993, - "y_max": 0.5151316523551941 - }, - "confidence": 0.6454280018806458, - "label_id": 1 - }, - "h": 98, - "w": 78, - "x": 1216, - "y": 458 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13675107061862946, - "y_min": 0.5544987320899963, - "x_max": 0.1772107034921646, - "y_max": 0.6382854580879211 - }, - "confidence": 0.5674055814743042, - "label_id": 1 - }, - "h": 90, - "w": 77, - "x": 263, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.7047271728515625, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5857023000717163, - 0.13037391006946564, - 0.09858487546443939, - 0.0657208040356636, - 0.11961805075407028 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6454280018806458, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.06268507987260818, - 0.21968677639961243, - 0.15424813330173492, - 0.0068627833388745785, - 0.5565173029899597 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5674055814743042, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.15505389869213104, - 0.006330312695354223, - 0.16882945597171783, - 0.00434078648686409, - 0.6654455065727234 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 3899990016, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6260029673576355, - "y_min": 0.4204659163951874, - "x_max": 0.6705636382102966, - "y_max": 0.5173268914222717 - }, - "confidence": 0.7866806983947754, - "label_id": 1 - }, - "h": 105, - "w": 85, - "x": 1202, - "y": 454 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.2710781991481781, - "y_min": 0.4774191379547119, - "x_max": 0.29983803629875183, - "y_max": 0.5351827144622803 - }, - "confidence": 0.6408542990684509, - "label_id": 1 - }, - "h": 62, - "w": 56, - "x": 520, - "y": 516 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1367432028055191, - "y_min": 0.5544441342353821, - "x_max": 0.17726875841617584, - "y_max": 0.6381992697715759 - }, - "confidence": 0.5427188873291016, - "label_id": 1 - }, - "h": 90, - "w": 77, - "x": 263, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.7866806983947754, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.12174545973539352, - 0.0901220366358757, - 0.09096591174602509, - 0.020950132980942726, - 0.6762163639068604 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6408542990684509, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.6046041250228882, - 0.09142231941223145, - 0.11629429459571838, - 0.07373640686273575, - 0.11394280195236206 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5427188873291016, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.15391390025615692, - 0.005924795754253864, - 0.17046868801116943, - 0.003604173893108964, - 0.6660884618759155 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 3933323264, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.624679684638977, - "y_min": 0.4208349287509918, - "x_max": 0.6701791286468506, - "y_max": 0.5175447463989258 - }, - "confidence": 0.9176417589187622, - "label_id": 1 - }, - "h": 104, - "w": 88, - "x": 1199, - "y": 455 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13649411499500275, - "y_min": 0.5546376705169678, - "x_max": 0.17715226113796234, - "y_max": 0.6380616426467896 - }, - "confidence": 0.5533156394958496, - "label_id": 1 - }, - "h": 90, - "w": 78, - "x": 262, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9176417589187622, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.13408254086971283, - 0.2679259181022644, - 0.047998569905757904, - 0.01251765713095665, - 0.5374753475189209 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5533156394958496, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.13315172493457794, - 0.004838371649384499, - 0.18892446160316467, - 0.0038719174917787313, - 0.6692134737968445 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 3966656512, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6236633062362671, - "y_min": 0.4240216612815857, - "x_max": 0.6673983335494995, - "y_max": 0.5173097252845764 - }, - "confidence": 0.9281373023986816, - "label_id": 1 - }, - "h": 101, - "w": 84, - "x": 1197, - "y": 458 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1365765631198883, - "y_min": 0.5544050931930542, - "x_max": 0.17718246579170227, - "y_max": 0.6382029056549072 - }, - "confidence": 0.5292450189590454, - "label_id": 1 - }, - "h": 90, - "w": 78, - "x": 262, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9281373023986816, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.08807642012834549, - 0.41620659828186035, - 0.08905193209648132, - 0.009753395803272724, - 0.39691162109375 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5292450189590454, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.15809373557567596, - 0.005729186814278364, - 0.17736801505088806, - 0.0034689430613070726, - 0.6553400754928589 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 3999989760, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6218240261077881, - "y_min": 0.42336657643318176, - "x_max": 0.6650296449661255, - "y_max": 0.5149741172790527 - }, - "confidence": 0.8116852641105652, - "label_id": 1 - }, - "h": 99, - "w": 83, - "x": 1194, - "y": 457 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13644737005233765, - "y_min": 0.5538532733917236, - "x_max": 0.17741581797599792, - "y_max": 0.638414740562439 - }, - "confidence": 0.5016172528266907, - "label_id": 1 - }, - "h": 91, - "w": 79, - "x": 262, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.8116852641105652, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.10138756036758423, - 0.31793951988220215, - 0.2101675420999527, - 0.0314263217151165, - 0.33907902240753174 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5016172528266907, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.16475902497768402, - 0.006407245993614197, - 0.20751546323299408, - 0.0037884621415287256, - 0.6175298094749451 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 4033323008, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.615490198135376, - "y_min": 0.4269251823425293, - "x_max": 0.6578569412231445, - "y_max": 0.5163674354553223 - }, - "confidence": 0.5170788764953613, - "label_id": 1 - }, - "h": 97, - "w": 81, - "x": 1182, - "y": 461 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13646537065505981, - "y_min": 0.553881049156189, - "x_max": 0.17744037508964539, - "y_max": 0.6386334896087646 - }, - "confidence": 0.5028011798858643, - "label_id": 1 - }, - "h": 92, - "w": 79, - "x": 262, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.5170788764953613, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.14123472571372986, - 0.05297853425145149, - 0.15847595036029816, - 0.09502780437469482, - 0.5522830486297607 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5028011798858643, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1768941730260849, - 0.006609378848224878, - 0.24968254566192627, - 0.004681437276303768, - 0.5621324181556702 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 4066656256, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1364383101463318, - "y_min": 0.5538042187690735, - "x_max": 0.1773644983768463, - "y_max": 0.6388033032417297 - }, - "confidence": 0.5058103203773499, - "label_id": 1 - }, - "h": 92, - "w": 79, - "x": 262, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.5058103203773499, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.19426971673965454, - 0.0077356272377073765, - 0.20953048765659332, - 0.005049826577305794, - 0.5834143757820129 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 4099989504, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6139352321624756, - "y_min": 0.44344061613082886, - "x_max": 0.6558023691177368, - "y_max": 0.5302485823631287 - }, - "confidence": 0.5565422177314758, - "label_id": 1 - }, - "h": 94, - "w": 80, - "x": 1179, - "y": 479 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13645891845226288, - "y_min": 0.5540310740470886, - "x_max": 0.17705847322940826, - "y_max": 0.6382552981376648 - }, - "confidence": 0.5018482208251953, - "label_id": 1 - }, - "h": 91, - "w": 78, - "x": 262, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.5565422177314758, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.18298645317554474, - 0.04484172165393829, - 0.20683243870735168, - 0.015410080552101135, - 0.5499293208122253 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5018482208251953, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.16212151944637299, - 0.005731711629778147, - 0.20858974754810333, - 0.0036644358187913895, - 0.6198925375938416 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 4133322752, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6123847961425781, - "y_min": 0.4447362422943115, - "x_max": 0.6558527946472168, - "y_max": 0.5342285633087158 - }, - "confidence": 0.6343796253204346, - "label_id": 1 - }, - "h": 97, - "w": 83, - "x": 1176, - "y": 480 - } - ], - "tensors": [ - { - "confidence": 0.6343796253204346, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.18932600319385529, - 0.08647926896810532, - 0.3557613790035248, - 0.04121331125497818, - 0.3272199034690857 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 4199989248, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.13628949224948883, - "y_min": 0.5544942021369934, - "x_max": 0.1772119551897049, - "y_max": 0.6392642855644226 - }, - "confidence": 0.5075464844703674, - "label_id": 1 - }, - "h": 91, - "w": 78, - "x": 262, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.5075464844703674, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.14259959757328033, - 0.004925004672259092, - 0.17603814601898193, - 0.003958009649068117, - 0.6724792122840881 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 4233322496, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.13633781671524048, - "y_min": 0.5543060898780823, - "x_max": 0.17710372805595398, - "y_max": 0.6392876505851746 - }, - "confidence": 0.5039902925491333, - "label_id": 1 - }, - "h": 91, - "w": 78, - "x": 262, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.5039902925491333, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.15341094136238098, - 0.005718554370105267, - 0.18241707980632782, - 0.004757390823215246, - 0.6536960601806641 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 4266655744, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.13634943962097168, - "y_min": 0.5544188618659973, - "x_max": 0.17702922224998474, - "y_max": 0.6392410397529602 - }, - "confidence": 0.5021276473999023, - "label_id": 1 - }, - "h": 91, - "w": 78, - "x": 262, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.5021276473999023, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.16758403182029724, - 0.005424214992672205, - 0.2007519006729126, - 0.005602557677775621, - 0.6206371784210205 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 4299988992, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1364297866821289, - "y_min": 0.5542014241218567, - "x_max": 0.17685192823410034, - "y_max": 0.6389361023902893 - }, - "confidence": 0.5096778869628906, - "label_id": 1 - }, - "h": 91, - "w": 78, - "x": 262, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.5096778869628906, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1860508918762207, - 0.007498066872358322, - 0.20695453882217407, - 0.006342564709484577, - 0.5931539535522461 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 4333322240, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1364019811153412, - "y_min": 0.5545453429222107, - "x_max": 0.1768234372138977, - "y_max": 0.6383951306343079 - }, - "confidence": 0.5039629936218262, - "label_id": 1 - }, - "h": 90, - "w": 78, - "x": 262, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.5039629936218262, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.16529759764671326, - 0.006699997466057539, - 0.20175574719905853, - 0.004804087337106466, - 0.6214425563812256 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 4499988480, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.13716132938861847, - "y_min": 0.5552476048469543, - "x_max": 0.17690922319889069, - "y_max": 0.637409508228302 - }, - "confidence": 0.5083167552947998, - "label_id": 1 - }, - "h": 88, - "w": 77, - "x": 263, - "y": 600 - } - ], - "tensors": [ - { - "confidence": 0.5083167552947998, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.18491396307945251, - 0.006987131666392088, - 0.21317775547504425, - 0.006513653323054314, - 0.5884074568748474 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 4533321728, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.13722920417785645, - "y_min": 0.5550955533981323, - "x_max": 0.17684021592140198, - "y_max": 0.6373462677001953 - }, - "confidence": 0.5122412443161011, - "label_id": 1 - }, - "h": 88, - "w": 77, - "x": 263, - "y": 600 - } - ], - "tensors": [ - { - "confidence": 0.5122412443161011, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.18521374464035034, - 0.0074972305446863174, - 0.21331430971622467, - 0.00585275050252676, - 0.5881219506263733 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 4566654976, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6266191601753235, - "y_min": 0.45786571502685547, - "x_max": 0.6663588881492615, - "y_max": 0.5360926389694214 - }, - "confidence": 0.521933376789093, - "label_id": 1 - }, - "h": 85, - "w": 76, - "x": 1203, - "y": 494 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13722650706768036, - "y_min": 0.5550442337989807, - "x_max": 0.17678983509540558, - "y_max": 0.6368396878242493 - }, - "confidence": 0.5087350010871887, - "label_id": 1 - }, - "h": 89, - "w": 76, - "x": 263, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.521933376789093, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.13944388926029205, - 0.04228832945227623, - 0.31506991386413574, - 0.08777514845132828, - 0.4154227077960968 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5087350010871887, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.18116804957389832, - 0.00752923171967268, - 0.21043752133846283, - 0.004216057248413563, - 0.596649169921875 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 4599988224, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6299262642860413, - "y_min": 0.4531097412109375, - "x_max": 0.6686691641807556, - "y_max": 0.534567654132843 - }, - "confidence": 0.7231963276863098, - "label_id": 1 - }, - "h": 88, - "w": 75, - "x": 1209, - "y": 489 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13716688752174377, - "y_min": 0.5549646019935608, - "x_max": 0.17665696144104004, - "y_max": 0.6371460556983948 - }, - "confidence": 0.5181632041931152, - "label_id": 1 - }, - "h": 89, - "w": 76, - "x": 263, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.7231963276863098, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.06908079236745834, - 0.12398072332143784, - 0.20167966187000275, - 0.04361113905906677, - 0.5616476535797119 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5181632041931152, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.18697278201580048, - 0.0069234492257237434, - 0.20605719089508057, - 0.004168055020272732, - 0.5958786010742188 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 4633321472, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6345422267913818, - "y_min": 0.45033517479896545, - "x_max": 0.6736602783203125, - "y_max": 0.5333251357078552 - }, - "confidence": 0.8891922235488892, - "label_id": 1 - }, - "h": 90, - "w": 75, - "x": 1218, - "y": 486 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13715298473834991, - "y_min": 0.5549201369285583, - "x_max": 0.17661185562610626, - "y_max": 0.6370534300804138 - }, - "confidence": 0.5307958722114563, - "label_id": 1 - }, - "h": 89, - "w": 76, - "x": 263, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.8891922235488892, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.10370072722434998, - 0.06754379719495773, - 0.21234959363937378, - 0.04258937016129494, - 0.5738164186477661 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5307958722114563, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.19799818098545074, - 0.006941372994333506, - 0.19100861251354218, - 0.004316952079534531, - 0.599734902381897 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 4666654720, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6392821073532104, - "y_min": 0.4492228329181671, - "x_max": 0.6782325506210327, - "y_max": 0.5319252014160156 - }, - "confidence": 0.9352087378501892, - "label_id": 1 - }, - "h": 89, - "w": 75, - "x": 1227, - "y": 485 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13716158270835876, - "y_min": 0.5549165606498718, - "x_max": 0.17664572596549988, - "y_max": 0.6370440125465393 - }, - "confidence": 0.5272994041442871, - "label_id": 1 - }, - "h": 89, - "w": 76, - "x": 263, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9352087378501892, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.11129980534315109, - 0.06642570346593857, - 0.20609232783317566, - 0.04433314874768257, - 0.5718490481376648 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5272994041442871, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.17219652235507965, - 0.005570102017372847, - 0.19251663982868195, - 0.0041104815900325775, - 0.6256062388420105 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 4699987968, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6413179039955139, - "y_min": 0.45209819078445435, - "x_max": 0.6835067868232727, - "y_max": 0.5341948866844177 - }, - "confidence": 0.9928308129310608, - "label_id": 1 - }, - "h": 89, - "w": 81, - "x": 1231, - "y": 488 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13712655007839203, - "y_min": 0.5548716187477112, - "x_max": 0.17656706273555756, - "y_max": 0.6373330950737 - }, - "confidence": 0.5202896595001221, - "label_id": 1 - }, - "h": 89, - "w": 76, - "x": 263, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9928308129310608, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.13912345468997955, - 0.033249348402023315, - 0.16168096661567688, - 0.16972756385803223, - 0.49621865153312683 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5202896595001221, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.19323456287384033, - 0.0068985107354819775, - 0.20345421135425568, - 0.005014942958950996, - 0.591397762298584 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 4733321216, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6496672630310059, - "y_min": 0.4444105625152588, - "x_max": 0.6938270330429077, - "y_max": 0.532355785369873 - }, - "confidence": 0.9732629656791687, - "label_id": 1 - }, - "h": 95, - "w": 85, - "x": 1247, - "y": 480 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13721726834774017, - "y_min": 0.5548003315925598, - "x_max": 0.1767248660326004, - "y_max": 0.6371148228645325 - }, - "confidence": 0.5146018266677856, - "label_id": 1 - }, - "h": 89, - "w": 76, - "x": 263, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9732629656791687, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.17410878837108612, - 0.031886689364910126, - 0.24000629782676697, - 0.08595755696296692, - 0.46804070472717285 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5146018266677856, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1970086693763733, - 0.006945396773517132, - 0.20969989895820618, - 0.004375997465103865, - 0.5819700956344604 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 4766654464, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6564805507659912, - "y_min": 0.4464760720729828, - "x_max": 0.697135329246521, - "y_max": 0.5299758911132812 - }, - "confidence": 0.8736650943756104, - "label_id": 1 - }, - "h": 90, - "w": 78, - "x": 1260, - "y": 482 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1370297372341156, - "y_min": 0.5549119710922241, - "x_max": 0.17669430375099182, - "y_max": 0.6366786956787109 - }, - "confidence": 0.519970715045929, - "label_id": 1 - }, - "h": 89, - "w": 76, - "x": 263, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.8736650943756104, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.19351637363433838, - 0.03076256811618805, - 0.18683408200740814, - 0.10708503425121307, - 0.48180198669433594 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.519970715045929, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.21909601986408234, - 0.00832400657236576, - 0.19981111586093903, - 0.004667648114264011, - 0.5681012868881226 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 4799987712, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.13692492246627808, - "y_min": 0.5547845363616943, - "x_max": 0.17674005031585693, - "y_max": 0.6371698379516602 - }, - "confidence": 0.5206857323646545, - "label_id": 1 - }, - "h": 89, - "w": 76, - "x": 263, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.5206857323646545, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.210940882563591, - 0.006383952219039202, - 0.16861189901828766, - 0.003878404153510928, - 0.610184907913208 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 4833320960, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.13667486608028412, - "y_min": 0.5545250177383423, - "x_max": 0.17683462798595428, - "y_max": 0.6370276212692261 - }, - "confidence": 0.5469171404838562, - "label_id": 1 - }, - "h": 89, - "w": 78, - "x": 262, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.5469171404838562, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.19765153527259827, - 0.006415073294192553, - 0.17188385128974915, - 0.0048860521055758, - 0.619163453578949 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 4866654208, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.13657528162002563, - "y_min": 0.554900050163269, - "x_max": 0.17688876390457153, - "y_max": 0.6369379758834839 - }, - "confidence": 0.5444484949111938, - "label_id": 1 - }, - "h": 89, - "w": 78, - "x": 262, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.5444484949111938, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.19609525799751282, - 0.007251360919326544, - 0.17388147115707397, - 0.00430268095806241, - 0.6184691786766052 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 4899987456, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1365894377231598, - "y_min": 0.5546445846557617, - "x_max": 0.17685291171073914, - "y_max": 0.6372315883636475 - }, - "confidence": 0.5274137854576111, - "label_id": 1 - }, - "h": 89, - "w": 78, - "x": 262, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.5274137854576111, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.19151988625526428, - 0.006963577587157488, - 0.16312973201274872, - 0.0042771222069859505, - 0.6341096758842468 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 4933320704, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6889877915382385, - "y_min": 0.42578235268592834, - "x_max": 0.7326613068580627, - "y_max": 0.5190320014953613 - }, - "confidence": 0.8249903321266174, - "label_id": 1 - }, - "h": 101, - "w": 84, - "x": 1323, - "y": 460 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13663142919540405, - "y_min": 0.5548272728919983, - "x_max": 0.17688152194023132, - "y_max": 0.6371615529060364 - }, - "confidence": 0.5268107652664185, - "label_id": 1 - }, - "h": 89, - "w": 78, - "x": 262, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.8249903321266174, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1584216207265854, - 0.048469021916389465, - 0.19406758248806, - 0.05646524205803871, - 0.5425766110420227 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5268107652664185, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.163695827126503, - 0.006606534589082003, - 0.19153966009616852, - 0.0036632230039685965, - 0.6344947218894958 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 4966653952, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6933284401893616, - "y_min": 0.42320626974105835, - "x_max": 0.7383448481559753, - "y_max": 0.5168625712394714 - }, - "confidence": 0.9999299049377441, - "label_id": 1 - }, - "h": 101, - "w": 87, - "x": 1331, - "y": 457 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13657934963703156, - "y_min": 0.5548840761184692, - "x_max": 0.1767689734697342, - "y_max": 0.63686203956604 - }, - "confidence": 0.5273541808128357, - "label_id": 1 - }, - "h": 89, - "w": 77, - "x": 262, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9999299049377441, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09261072427034378, - 0.01481944415718317, - 0.12009579688310623, - 0.039635512977838516, - 0.7328385710716248 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5273541808128357, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.16237099468708038, - 0.005192978773266077, - 0.18491597473621368, - 0.0031729829497635365, - 0.644347071647644 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 4999987200, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7001193761825562, - "y_min": 0.4229140281677246, - "x_max": 0.744138240814209, - "y_max": 0.5148062109947205 - }, - "confidence": 0.999995231628418, - "label_id": 1 - }, - "h": 99, - "w": 85, - "x": 1344, - "y": 457 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13644111156463623, - "y_min": 0.55471271276474, - "x_max": 0.1769528090953827, - "y_max": 0.6377317309379578 - }, - "confidence": 0.5300653576850891, - "label_id": 1 - }, - "h": 90, - "w": 78, - "x": 262, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.999995231628418, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.13673938810825348, - 0.017257608473300934, - 0.13170015811920166, - 0.02508147805929184, - 0.6892213225364685 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5300653576850891, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2070697546005249, - 0.005802246276289225, - 0.17603707313537598, - 0.003672065446153283, - 0.6074188351631165 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 5033320448, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7069711685180664, - "y_min": 0.42198067903518677, - "x_max": 0.7477115392684937, - "y_max": 0.5107104182243347 - }, - "confidence": 0.9996449947357178, - "label_id": 1 - }, - "h": 96, - "w": 79, - "x": 1357, - "y": 456 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13635404407978058, - "y_min": 0.555134654045105, - "x_max": 0.17702485620975494, - "y_max": 0.6372123956680298 - }, - "confidence": 0.5373775959014893, - "label_id": 1 - }, - "h": 88, - "w": 78, - "x": 262, - "y": 600 - } - ], - "tensors": [ - { - "confidence": 0.9996449947357178, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.18711237609386444, - 0.042808812111616135, - 0.202086940407753, - 0.023529652506113052, - 0.544462263584137 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5373775959014893, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.17244240641593933, - 0.0052176304161548615, - 0.14846086502075195, - 0.0037463202606886625, - 0.6701327562332153 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 5066653696, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7108829021453857, - "y_min": 0.4195174276828766, - "x_max": 0.7492531538009644, - "y_max": 0.5088251829147339 - }, - "confidence": 0.9992226362228394, - "label_id": 1 - }, - "h": 97, - "w": 74, - "x": 1365, - "y": 453 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13623537123203278, - "y_min": 0.5551367402076721, - "x_max": 0.17709378898143768, - "y_max": 0.637367308139801 - }, - "confidence": 0.538753092288971, - "label_id": 1 - }, - "h": 88, - "w": 78, - "x": 262, - "y": 600 - } - ], - "tensors": [ - { - "confidence": 0.9992226362228394, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23579192161560059, - 0.04113280773162842, - 0.2862086892127991, - 0.016688762232661247, - 0.4201778173446655 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.538753092288971, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1875038594007492, - 0.00577610032632947, - 0.1539686620235443, - 0.0035215597599744797, - 0.6492297649383545 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 5099986944, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7123289108276367, - "y_min": 0.4162618815898895, - "x_max": 0.7539753913879395, - "y_max": 0.5038378238677979 - }, - "confidence": 0.997035026550293, - "label_id": 1 - }, - "h": 94, - "w": 80, - "x": 1368, - "y": 450 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1362784057855606, - "y_min": 0.555203914642334, - "x_max": 0.17719806730747223, - "y_max": 0.6374547481536865 - }, - "confidence": 0.5377666354179382, - "label_id": 1 - }, - "h": 88, - "w": 78, - "x": 262, - "y": 600 - } - ], - "tensors": [ - { - "confidence": 0.997035026550293, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.26896655559539795, - 0.06470690667629242, - 0.2562180757522583, - 0.017676593735814095, - 0.3924318850040436 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5377666354179382, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.19275499880313873, - 0.006159546319395304, - 0.1551910638809204, - 0.0038254547398537397, - 0.6420688629150391 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 5133320192, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7142603397369385, - "y_min": 0.41195034980773926, - "x_max": 0.7572532892227173, - "y_max": 0.4999806880950928 - }, - "confidence": 0.8699885606765747, - "label_id": 1 - }, - "h": 95, - "w": 83, - "x": 1371, - "y": 445 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1361580640077591, - "y_min": 0.5548830032348633, - "x_max": 0.17727993428707123, - "y_max": 0.6382400989532471 - }, - "confidence": 0.5490661263465881, - "label_id": 1 - }, - "h": 90, - "w": 79, - "x": 261, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.8699885606765747, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.16429707407951355, - 0.03705745190382004, - 0.1775342971086502, - 0.026908107101917267, - 0.5942030549049377 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5490661263465881, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.20455507934093475, - 0.007081144955009222, - 0.15876318514347076, - 0.004256140440702438, - 0.6253443956375122 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 5166653440, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7155747413635254, - "y_min": 0.4079292118549347, - "x_max": 0.76065993309021, - "y_max": 0.49417009949684143 - }, - "confidence": 0.5801360011100769, - "label_id": 1 - }, - "h": 93, - "w": 86, - "x": 1374, - "y": 441 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13620686531066895, - "y_min": 0.5548077821731567, - "x_max": 0.17730864882469177, - "y_max": 0.6386038064956665 - }, - "confidence": 0.545029878616333, - "label_id": 1 - }, - "h": 91, - "w": 78, - "x": 262, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.5801360011100769, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.17940455675125122, - 0.09707320481538773, - 0.1820029467344284, - 0.04158242046833038, - 0.49993687868118286 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.545029878616333, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.20787067711353302, - 0.007145991083234549, - 0.17923776805400848, - 0.0037356156390160322, - 0.6020099520683289 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 5199986688, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.13632239401340485, - "y_min": 0.55495685338974, - "x_max": 0.17714296281337738, - "y_max": 0.6390925049781799 - }, - "confidence": 0.5342902541160583, - "label_id": 1 - }, - "h": 91, - "w": 78, - "x": 262, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.5342902541160583, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2041323333978653, - 0.006205428391695023, - 0.1892707198858261, - 0.0035874301102012396, - 0.596804141998291 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 5233319936, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.13653093576431274, - "y_min": 0.5550431609153748, - "x_max": 0.1770397424697876, - "y_max": 0.6389873623847961 - }, - "confidence": 0.5406966209411621, - "label_id": 1 - }, - "h": 91, - "w": 78, - "x": 262, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.5406966209411621, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.20538373291492462, - 0.006027326453477144, - 0.18537402153015137, - 0.0035796533338725567, - 0.5996352434158325 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 5266653184, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7198173999786377, - "y_min": 0.3955414295196533, - "x_max": 0.7644716501235962, - "y_max": 0.4881092309951782 - }, - "confidence": 0.5735982656478882, - "label_id": 1 - }, - "h": 100, - "w": 86, - "x": 1382, - "y": 427 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13654933869838715, - "y_min": 0.5547332763671875, - "x_max": 0.1771390587091446, - "y_max": 0.6392840147018433 - }, - "confidence": 0.5345144271850586, - "label_id": 1 - }, - "h": 91, - "w": 78, - "x": 262, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.5735982656478882, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1376723051071167, - 0.26054301857948303, - 0.18697023391723633, - 0.03485371544957161, - 0.37996071577072144 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5345144271850586, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.20083798468112946, - 0.006372939329594374, - 0.18551833927631378, - 0.0032538289669901133, - 0.604016900062561 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 5299986432, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7196170091629028, - "y_min": 0.39436280727386475, - "x_max": 0.7642091512680054, - "y_max": 0.4868573546409607 - }, - "confidence": 0.6046561598777771, - "label_id": 1 - }, - "h": 100, - "w": 85, - "x": 1382, - "y": 426 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13657782971858978, - "y_min": 0.5549337863922119, - "x_max": 0.1771501749753952, - "y_max": 0.63886559009552 - }, - "confidence": 0.529069185256958, - "label_id": 1 - }, - "h": 91, - "w": 78, - "x": 262, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.6046561598777771, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.15418574213981628, - 0.2140989601612091, - 0.21957018971443176, - 0.030124053359031677, - 0.38202112913131714 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.529069185256958, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.17921382188796997, - 0.0059832558035850525, - 0.18831767141819, - 0.003014439018443227, - 0.6234708428382874 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 5333319680, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7198442816734314, - "y_min": 0.39329278469085693, - "x_max": 0.7631495594978333, - "y_max": 0.4857836961746216 - }, - "confidence": 0.5380696654319763, - "label_id": 1 - }, - "h": 100, - "w": 83, - "x": 1382, - "y": 425 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13661256432533264, - "y_min": 0.5550875067710876, - "x_max": 0.17712342739105225, - "y_max": 0.6389006972312927 - }, - "confidence": 0.5187481641769409, - "label_id": 1 - }, - "h": 91, - "w": 78, - "x": 262, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.5380696654319763, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.20634445548057556, - 0.15713994204998016, - 0.1856425553560257, - 0.052646879106760025, - 0.39822620153427124 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5187481641769409, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.16993553936481476, - 0.005874952767044306, - 0.19415701925754547, - 0.002779061673209071, - 0.6272533535957336 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 5366652928, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7169731259346008, - "y_min": 0.3925149142742157, - "x_max": 0.7634455561637878, - "y_max": 0.4874681532382965 - }, - "confidence": 0.5495063066482544, - "label_id": 1 - }, - "h": 102, - "w": 89, - "x": 1377, - "y": 424 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13652317225933075, - "y_min": 0.5545188784599304, - "x_max": 0.1771451085805893, - "y_max": 0.638629138469696 - }, - "confidence": 0.5255025625228882, - "label_id": 1 - }, - "h": 91, - "w": 78, - "x": 262, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.5495063066482544, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2127702534198761, - 0.059187959879636765, - 0.2654108703136444, - 0.029292814433574677, - 0.4333381950855255 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5255025625228882, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.17867811024188995, - 0.005437727551907301, - 0.20693624019622803, - 0.003797698998823762, - 0.6051501631736755 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 5399986176, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7172430753707886, - "y_min": 0.39022713899612427, - "x_max": 0.7610553503036499, - "y_max": 0.48323047161102295 - }, - "confidence": 0.556529700756073, - "label_id": 1 - }, - "h": 101, - "w": 84, - "x": 1377, - "y": 421 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.136638805270195, - "y_min": 0.5544814467430115, - "x_max": 0.17700304090976715, - "y_max": 0.6379438042640686 - }, - "confidence": 0.5147870182991028, - "label_id": 1 - }, - "h": 90, - "w": 78, - "x": 262, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.556529700756073, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.15972907841205597, - 0.06290681660175323, - 0.24107132852077484, - 0.0709315612912178, - 0.46536123752593994 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5147870182991028, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.18096499145030975, - 0.00623868266120553, - 0.16422073543071747, - 0.003652482060715556, - 0.6449230909347534 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 5433319424, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.13671652972698212, - "y_min": 0.5543611645698547, - "x_max": 0.1768646091222763, - "y_max": 0.6374029517173767 - }, - "confidence": 0.5045527815818787, - "label_id": 1 - }, - "h": 89, - "w": 78, - "x": 262, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.5045527815818787, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.194166898727417, - 0.007102605886757374, - 0.15984848141670227, - 0.0037587997503578663, - 0.6351231336593628 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 5499985920, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.13679292798042297, - "y_min": 0.5545170903205872, - "x_max": 0.17689701914787292, - "y_max": 0.6375290751457214 - }, - "confidence": 0.5201199650764465, - "label_id": 1 - }, - "h": 90, - "w": 77, - "x": 263, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.5201199650764465, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.19024115800857544, - 0.007474900688976049, - 0.16169503331184387, - 0.0033013548236340284, - 0.6372874975204468 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 5533319168, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7097252607345581, - "y_min": 0.38788241147994995, - "x_max": 0.7499991655349731, - "y_max": 0.4779708981513977 - }, - "confidence": 0.5626478791236877, - "label_id": 1 - }, - "h": 97, - "w": 77, - "x": 1363, - "y": 419 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1369030624628067, - "y_min": 0.5544962882995605, - "x_max": 0.17694877088069916, - "y_max": 0.6379753351211548 - }, - "confidence": 0.5190486311912537, - "label_id": 1 - }, - "h": 90, - "w": 77, - "x": 263, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.5626478791236877, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.18132014572620392, - 0.038275692611932755, - 0.39009127020835876, - 0.012487669475376606, - 0.3778252899646759 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5190486311912537, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.17251592874526978, - 0.006468871608376503, - 0.16284123063087463, - 0.003248698078095913, - 0.6549252867698669 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 5566652416, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7082077860832214, - "y_min": 0.3757734000682831, - "x_max": 0.7475292086601257, - "y_max": 0.46803614497184753 - }, - "confidence": 0.6330046653747559, - "label_id": 1 - }, - "h": 99, - "w": 75, - "x": 1360, - "y": 406 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13684022426605225, - "y_min": 0.5544938445091248, - "x_max": 0.1769210696220398, - "y_max": 0.6378410458564758 - }, - "confidence": 0.5366062521934509, - "label_id": 1 - }, - "h": 90, - "w": 77, - "x": 263, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.6330046653747559, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.14005975425243378, - 0.19448210299015045, - 0.2688288390636444, - 0.07384885102510452, - 0.3227803707122803 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5366062521934509, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.16844378411769867, - 0.007254846394062042, - 0.1575729250907898, - 0.003875038353726268, - 0.6628533601760864 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 5599985664, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7044717073440552, - "y_min": 0.37644174695014954, - "x_max": 0.745720624923706, - "y_max": 0.46882590651512146 - }, - "confidence": 0.8674181699752808, - "label_id": 1 - }, - "h": 99, - "w": 79, - "x": 1353, - "y": 407 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13685153424739838, - "y_min": 0.5546147227287292, - "x_max": 0.17694656550884247, - "y_max": 0.6386563181877136 - }, - "confidence": 0.5242564678192139, - "label_id": 1 - }, - "h": 91, - "w": 77, - "x": 263, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.8674181699752808, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1345379501581192, - 0.1275365650653839, - 0.2407972514629364, - 0.09283000975847244, - 0.4042982757091522 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5242564678192139, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.13747014105319977, - 0.004487421363592148, - 0.1511063426733017, - 0.003672314342111349, - 0.7032638192176819 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 5633318912, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7031628489494324, - "y_min": 0.37600451707839966, - "x_max": 0.743377149105072, - "y_max": 0.468974232673645 - }, - "confidence": 0.9788076877593994, - "label_id": 1 - }, - "h": 100, - "w": 77, - "x": 1350, - "y": 406 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13684874773025513, - "y_min": 0.5543721914291382, - "x_max": 0.1770312488079071, - "y_max": 0.6382633447647095 - }, - "confidence": 0.5312935709953308, - "label_id": 1 - }, - "h": 90, - "w": 77, - "x": 263, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9788076877593994, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1374317854642868, - 0.14692580699920654, - 0.16254772245883942, - 0.07689789682626724, - 0.476196825504303 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5312935709953308, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1575586497783661, - 0.006170688197016716, - 0.1700737178325653, - 0.004134644288569689, - 0.6620622277259827 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 5666652160, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.699080765247345, - "y_min": 0.38327234983444214, - "x_max": 0.7390879988670349, - "y_max": 0.47383081912994385 - }, - "confidence": 0.8740181922912598, - "label_id": 1 - }, - "h": 98, - "w": 77, - "x": 1342, - "y": 414 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13700070977210999, - "y_min": 0.5543524026870728, - "x_max": 0.1767817735671997, - "y_max": 0.6382229328155518 - }, - "confidence": 0.5204785466194153, - "label_id": 1 - }, - "h": 90, - "w": 76, - "x": 263, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.8740181922912598, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1539822816848755, - 0.06105708330869675, - 0.2561275064945221, - 0.021032460033893585, - 0.5078006386756897 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5204785466194153, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1876734346151352, - 0.007835065014660358, - 0.20290043950080872, - 0.0037248001899570227, - 0.5978662967681885 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 5699985408, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6946321129798889, - "y_min": 0.3816477358341217, - "x_max": 0.7376914620399475, - "y_max": 0.4764779508113861 - }, - "confidence": 0.9262964129447937, - "label_id": 1 - }, - "h": 103, - "w": 82, - "x": 1334, - "y": 412 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1370762586593628, - "y_min": 0.5545193552970886, - "x_max": 0.17686060070991516, - "y_max": 0.6382465958595276 - }, - "confidence": 0.527891993522644, - "label_id": 1 - }, - "h": 90, - "w": 77, - "x": 263, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9262964129447937, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.27830442786216736, - 0.07354136556386948, - 0.26990392804145813, - 0.026484692469239235, - 0.35176557302474976 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.527891993522644, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.18375854194164276, - 0.006882056128233671, - 0.18372513353824615, - 0.004800797440111637, - 0.6208334565162659 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 5733318656, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6934846043586731, - "y_min": 0.38437727093696594, - "x_max": 0.7351420521736145, - "y_max": 0.4798872172832489 - }, - "confidence": 0.9829691052436829, - "label_id": 1 - }, - "h": 103, - "w": 80, - "x": 1331, - "y": 415 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1371612697839737, - "y_min": 0.5542609691619873, - "x_max": 0.17693780362606049, - "y_max": 0.6381455659866333 - }, - "confidence": 0.5287082195281982, - "label_id": 1 - }, - "h": 90, - "w": 77, - "x": 263, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9829691052436829, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2262934297323227, - 0.04792391136288643, - 0.2608022689819336, - 0.023082880303263664, - 0.4418973922729492 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5287082195281982, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.186980202794075, - 0.006411000154912472, - 0.18816204369068146, - 0.004907076712697744, - 0.6135396957397461 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 5766651904, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6922202110290527, - "y_min": 0.3860037922859192, - "x_max": 0.7346209287643433, - "y_max": 0.4817691445350647 - }, - "confidence": 0.9918082356452942, - "label_id": 1 - }, - "h": 103, - "w": 81, - "x": 1329, - "y": 417 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1373240351676941, - "y_min": 0.5544067621231079, - "x_max": 0.17682942748069763, - "y_max": 0.6377995014190674 - }, - "confidence": 0.5203865170478821, - "label_id": 1 - }, - "h": 90, - "w": 76, - "x": 264, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9918082356452942, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.15554161369800568, - 0.018877986818552017, - 0.1818583458662033, - 0.01470932736992836, - 0.6290127635002136 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5203865170478821, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.19308680295944214, - 0.006920784246176481, - 0.1842176616191864, - 0.005574848502874374, - 0.6101998686790466 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 5799985152, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6923490166664124, - "y_min": 0.3845367133617401, - "x_max": 0.7330440878868103, - "y_max": 0.48343685269355774 - }, - "confidence": 0.9835010766983032, - "label_id": 1 - }, - "h": 107, - "w": 78, - "x": 1329, - "y": 415 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13740716874599457, - "y_min": 0.55437171459198, - "x_max": 0.1768316775560379, - "y_max": 0.6377687454223633 - }, - "confidence": 0.5085065364837646, - "label_id": 1 - }, - "h": 90, - "w": 76, - "x": 264, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9835010766983032, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.14940430223941803, - 0.013980023562908173, - 0.12535282969474792, - 0.01353392843157053, - 0.6977288722991943 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5085065364837646, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.19724196195602417, - 0.008066631853580475, - 0.189152330160141, - 0.00645093061029911, - 0.5990880727767944 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 5833318400, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6918087601661682, - "y_min": 0.3839300870895386, - "x_max": 0.7324492335319519, - "y_max": 0.48123013973236084 - }, - "confidence": 0.949265718460083, - "label_id": 1 - }, - "h": 105, - "w": 78, - "x": 1328, - "y": 415 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13742178678512573, - "y_min": 0.5543314814567566, - "x_max": 0.17673277854919434, - "y_max": 0.6374652981758118 - }, - "confidence": 0.5034262537956238, - "label_id": 1 - }, - "h": 89, - "w": 75, - "x": 264, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.949265718460083, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.15106965601444244, - 0.021229876205325127, - 0.10484984517097473, - 0.010187171399593353, - 0.7126634120941162 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5034262537956238, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.20011213421821594, - 0.009362193755805492, - 0.1769707351922989, - 0.007069793064147234, - 0.6064850687980652 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 5866651648, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6913130879402161, - "y_min": 0.38360950350761414, - "x_max": 0.7325944304466248, - "y_max": 0.48030611872673035 - }, - "confidence": 0.9465000033378601, - "label_id": 1 - }, - "h": 105, - "w": 80, - "x": 1327, - "y": 414 - } - ], - "tensors": [ - { - "confidence": 0.9465000033378601, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.22938351333141327, - 0.07355069369077682, - 0.16638386249542236, - 0.006121447309851646, - 0.5245605111122131 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 5899984896, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6916401982307434, - "y_min": 0.3826535940170288, - "x_max": 0.7330175042152405, - "y_max": 0.4786490201950073 - }, - "confidence": 0.891552746295929, - "label_id": 1 - }, - "h": 104, - "w": 79, - "x": 1328, - "y": 413 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13726110756397247, - "y_min": 0.5543261766433716, - "x_max": 0.17685337364673615, - "y_max": 0.637592077255249 - }, - "confidence": 0.5085374116897583, - "label_id": 1 - }, - "h": 90, - "w": 76, - "x": 264, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.891552746295929, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2884382903575897, - 0.12087418138980865, - 0.15379533171653748, - 0.005385580938309431, - 0.43150654435157776 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5085374116897583, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.15619836747646332, - 0.006924962159246206, - 0.1656678467988968, - 0.00569181377068162, - 0.6655169725418091 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 5933318144, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6920396089553833, - "y_min": 0.3833240270614624, - "x_max": 0.7332166433334351, - "y_max": 0.4756900668144226 - }, - "confidence": 0.7885792255401611, - "label_id": 1 - }, - "h": 100, - "w": 79, - "x": 1329, - "y": 414 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13713912665843964, - "y_min": 0.5543832778930664, - "x_max": 0.17696340382099152, - "y_max": 0.6381618976593018 - }, - "confidence": 0.5062295198440552, - "label_id": 1 - }, - "h": 90, - "w": 77, - "x": 263, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.7885792255401611, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.25956466794013977, - 0.1797545850276947, - 0.22568747401237488, - 0.01002595480531454, - 0.3249673545360565 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5062295198440552, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.16245099902153015, - 0.007450600154697895, - 0.17123837769031525, - 0.006562583148479462, - 0.6522974371910095 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 5966651392, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6930350065231323, - "y_min": 0.37254881858825684, - "x_max": 0.7349481582641602, - "y_max": 0.46859025955200195 - }, - "confidence": 0.9683984518051147, - "label_id": 1 - }, - "h": 104, - "w": 80, - "x": 1331, - "y": 402 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13716953992843628, - "y_min": 0.5542733669281006, - "x_max": 0.1768588125705719, - "y_max": 0.6380871534347534 - }, - "confidence": 0.5084960460662842, - "label_id": 1 - }, - "h": 90, - "w": 77, - "x": 263, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9683984518051147, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.20181362330913544, - 0.12069222331047058, - 0.08063054829835892, - 0.01808401383459568, - 0.5787796378135681 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5084960460662842, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.16789966821670532, - 0.007443351671099663, - 0.17883186042308807, - 0.006076267454773188, - 0.6397488117218018 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 5999984640, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.69415682554245, - "y_min": 0.3736090064048767, - "x_max": 0.7359372973442078, - "y_max": 0.4648500084877014 - }, - "confidence": 0.9989520311355591, - "label_id": 1 - }, - "h": 99, - "w": 80, - "x": 1333, - "y": 403 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13723011314868927, - "y_min": 0.5537766218185425, - "x_max": 0.17705316841602325, - "y_max": 0.6386828422546387 - }, - "confidence": 0.5044498443603516, - "label_id": 1 - }, - "h": 92, - "w": 77, - "x": 263, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9989520311355591, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.19389156997203827, - 0.3995780944824219, - 0.05166231840848923, - 0.013792701065540314, - 0.3410753309726715 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5044498443603516, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.16827787458896637, - 0.006043576635420322, - 0.19624283909797668, - 0.005558732431381941, - 0.6238769888877869 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 6033317888, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6986668705940247, - "y_min": 0.36832839250564575, - "x_max": 0.7389689087867737, - "y_max": 0.4625312089920044 - }, - "confidence": 0.999975323677063, - "label_id": 1 - }, - "h": 102, - "w": 78, - "x": 1341, - "y": 398 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13711431622505188, - "y_min": 0.5538737177848816, - "x_max": 0.17683377861976624, - "y_max": 0.638270914554596 - }, - "confidence": 0.5064398050308228, - "label_id": 1 - }, - "h": 91, - "w": 77, - "x": 263, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.999975323677063, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.17751722037792206, - 0.21024532616138458, - 0.171021968126297, - 0.010209882631897926, - 0.4310056269168854 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5064398050308228, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.16202785074710846, - 0.006732456851750612, - 0.18623383343219757, - 0.004211729858070612, - 0.6407940983772278 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 6066651136, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7006455063819885, - "y_min": 0.3692253828048706, - "x_max": 0.740781843662262, - "y_max": 0.46191251277923584 - }, - "confidence": 0.9999948740005493, - "label_id": 1 - }, - "h": 100, - "w": 77, - "x": 1345, - "y": 399 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13711640238761902, - "y_min": 0.5539027452468872, - "x_max": 0.17684945464134216, - "y_max": 0.6382893323898315 - }, - "confidence": 0.5068635940551758, - "label_id": 1 - }, - "h": 91, - "w": 77, - "x": 263, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999948740005493, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1565050333738327, - 0.2870679497718811, - 0.08341062068939209, - 0.009102880023419857, - 0.4639134407043457 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5068635940551758, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1538536250591278, - 0.00625912519171834, - 0.19013634324073792, - 0.0041217925027012825, - 0.6456291079521179 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 6099984384, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7022358179092407, - "y_min": 0.36737579107284546, - "x_max": 0.7422469854354858, - "y_max": 0.46192455291748047 - }, - "confidence": 0.9999967813491821, - "label_id": 1 - }, - "h": 102, - "w": 77, - "x": 1348, - "y": 397 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.137216717004776, - "y_min": 0.5538953542709351, - "x_max": 0.17694953083992004, - "y_max": 0.6384497880935669 - }, - "confidence": 0.5016830563545227, - "label_id": 1 - }, - "h": 92, - "w": 77, - "x": 263, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999967813491821, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.12101467698812485, - 0.2098722904920578, - 0.08979073911905289, - 0.00856854673475027, - 0.5707537531852722 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5016830563545227, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.15672002732753754, - 0.006205869372934103, - 0.18814775347709656, - 0.005130662117153406, - 0.6437956690788269 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 6133317632, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7026822566986084, - "y_min": 0.368915855884552, - "x_max": 0.7438780069351196, - "y_max": 0.4585080146789551 - }, - "confidence": 0.9999996423721313, - "label_id": 1 - }, - "h": 97, - "w": 79, - "x": 1349, - "y": 398 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13718196749687195, - "y_min": 0.5540058016777039, - "x_max": 0.17692866921424866, - "y_max": 0.6385231614112854 - }, - "confidence": 0.5006662011146545, - "label_id": 1 - }, - "h": 92, - "w": 77, - "x": 263, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999996423721313, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.13204917311668396, - 0.3119758069515228, - 0.12129425257444382, - 0.004413299728184938, - 0.4302675127983093 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5006662011146545, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.15989622473716736, - 0.006296924315392971, - 0.19273270666599274, - 0.005222477484494448, - 0.6358516812324524 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 6166650880, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7030651569366455, - "y_min": 0.3693675398826599, - "x_max": 0.7452630996704102, - "y_max": 0.4553956985473633 - }, - "confidence": 0.9999998807907104, - "label_id": 1 - }, - "h": 93, - "w": 81, - "x": 1350, - "y": 399 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1371341049671173, - "y_min": 0.5540449023246765, - "x_max": 0.17694419622421265, - "y_max": 0.638407289981842 - }, - "confidence": 0.5056611895561218, - "label_id": 1 - }, - "h": 91, - "w": 77, - "x": 263, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999998807907104, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1179501935839653, - 0.32918715476989746, - 0.18318773806095123, - 0.0037602463271468878, - 0.36591464281082153 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5056611895561218, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.17510974407196045, - 0.007456235121935606, - 0.1696145087480545, - 0.004314073361456394, - 0.6435054540634155 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 6199984128, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7037142515182495, - "y_min": 0.3672409951686859, - "x_max": 0.7472599744796753, - "y_max": 0.4541468918323517 - }, - "confidence": 0.9999998807907104, - "label_id": 1 - }, - "h": 93, - "w": 84, - "x": 1351, - "y": 397 - } - ], - "tensors": [ - { - "confidence": 0.9999998807907104, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.10805058479309082, - 0.3090675473213196, - 0.19276365637779236, - 0.00564545439556241, - 0.38447272777557373 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 6233317376, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7056902647018433, - "y_min": 0.36573371291160583, - "x_max": 0.7490173578262329, - "y_max": 0.45082607865333557 - }, - "confidence": 0.9999998807907104, - "label_id": 1 - }, - "h": 92, - "w": 83, - "x": 1355, - "y": 395 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1372424066066742, - "y_min": 0.5540987849235535, - "x_max": 0.17696315050125122, - "y_max": 0.63813716173172 - }, - "confidence": 0.5005037784576416, - "label_id": 1 - }, - "h": 91, - "w": 76, - "x": 264, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999998807907104, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.08390797674655914, - 0.1964668333530426, - 0.12852336466312408, - 0.005224980879575014, - 0.5858768224716187 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5005037784576416, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1637769490480423, - 0.0062966314144432545, - 0.1476997435092926, - 0.0038185252342373133, - 0.6784082055091858 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 6266650624, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.707952082157135, - "y_min": 0.3636358976364136, - "x_max": 0.7508195042610168, - "y_max": 0.4506067633628845 - }, - "confidence": 0.9999986886978149, - "label_id": 1 - }, - "h": 94, - "w": 83, - "x": 1359, - "y": 393 - } - ], - "tensors": [ - { - "confidence": 0.9999986886978149, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.06914068013429642, - 0.4304891526699066, - 0.10874833911657333, - 0.0044517843052744865, - 0.38717004656791687 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 6299983872, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.709510087966919, - "y_min": 0.3632704019546509, - "x_max": 0.7519211769104004, - "y_max": 0.4521777033805847 - }, - "confidence": 0.999992847442627, - "label_id": 1 - }, - "h": 96, - "w": 82, - "x": 1362, - "y": 392 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13705326616764069, - "y_min": 0.5541195869445801, - "x_max": 0.17695455253124237, - "y_max": 0.6379410028457642 - }, - "confidence": 0.5054208636283875, - "label_id": 1 - }, - "h": 91, - "w": 77, - "x": 263, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.999992847442627, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.07664868235588074, - 0.5196760296821594, - 0.15299582481384277, - 0.003597527975216508, - 0.2470819354057312 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5054208636283875, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1779707670211792, - 0.007277750875800848, - 0.16108502447605133, - 0.003911376465111971, - 0.64975506067276 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 6333317120, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7088200449943542, - "y_min": 0.3641258478164673, - "x_max": 0.7518487572669983, - "y_max": 0.45029985904693604 - }, - "confidence": 0.9999985694885254, - "label_id": 1 - }, - "h": 93, - "w": 83, - "x": 1361, - "y": 393 - } - ], - "tensors": [ - { - "confidence": 0.9999985694885254, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.0906146988272667, - 0.4781886339187622, - 0.1497151255607605, - 0.004201100207865238, - 0.27728042006492615 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 6366650368, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7116573452949524, - "y_min": 0.3630581498146057, - "x_max": 0.753112256526947, - "y_max": 0.45017051696777344 - }, - "confidence": 0.9999769926071167, - "label_id": 1 - }, - "h": 94, - "w": 80, - "x": 1366, - "y": 392 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13711343705654144, - "y_min": 0.5542051792144775, - "x_max": 0.17665494978427887, - "y_max": 0.6377899646759033 - }, - "confidence": 0.5025148391723633, - "label_id": 1 - }, - "h": 90, - "w": 76, - "x": 263, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9999769926071167, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.07011271268129349, - 0.43721139430999756, - 0.15538014471530914, - 0.003661415306851268, - 0.3336343467235565 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5025148391723633, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.18706828355789185, - 0.006326315924525261, - 0.1829121857881546, - 0.004244236741214991, - 0.6194489598274231 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 6399983616, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.713223397731781, - "y_min": 0.3619900047779083, - "x_max": 0.7541328072547913, - "y_max": 0.4495551288127899 - }, - "confidence": 0.9998874664306641, - "label_id": 1 - }, - "h": 95, - "w": 79, - "x": 1369, - "y": 391 - } - ], - "tensors": [ - { - "confidence": 0.9998874664306641, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.0743599683046341, - 0.6540622115135193, - 0.09189526736736298, - 0.002426281338557601, - 0.177256241440773 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 6433316864, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7134270668029785, - "y_min": 0.36206117272377014, - "x_max": 0.7539783716201782, - "y_max": 0.4489721953868866 - }, - "confidence": 0.9998219609260559, - "label_id": 1 - }, - "h": 94, - "w": 78, - "x": 1370, - "y": 391 - } - ], - "tensors": [ - { - "confidence": 0.9998219609260559, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.06958711892366409, - 0.5309237837791443, - 0.13429003953933716, - 0.0029665997717529535, - 0.2622324824333191 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 6466650112, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.713670551776886, - "y_min": 0.3623361587524414, - "x_max": 0.754402220249176, - "y_max": 0.44917792081832886 - }, - "confidence": 0.9996904134750366, - "label_id": 1 - }, - "h": 94, - "w": 78, - "x": 1370, - "y": 391 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13723735511302948, - "y_min": 0.5542483925819397, - "x_max": 0.17669351398944855, - "y_max": 0.6372972130775452 - }, - "confidence": 0.5035775303840637, - "label_id": 1 - }, - "h": 89, - "w": 76, - "x": 263, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9996904134750366, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.08338695019483566, - 0.5146234035491943, - 0.13976266980171204, - 0.003745087655261159, - 0.25848188996315 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5035775303840637, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.16849477589130402, - 0.006303559988737106, - 0.17633986473083496, - 0.0031900848262012005, - 0.6456717252731323 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 6499983360, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7135432958602905, - "y_min": 0.3620726466178894, - "x_max": 0.754692792892456, - "y_max": 0.44943851232528687 - }, - "confidence": 0.9995065927505493, - "label_id": 1 - }, - "h": 94, - "w": 79, - "x": 1370, - "y": 391 - } - ], - "tensors": [ - { - "confidence": 0.9995065927505493, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09088099002838135, - 0.5076125264167786, - 0.15553326904773712, - 0.0035741846077144146, - 0.24239897727966309 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 6533316608, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7134284377098083, - "y_min": 0.36183983087539673, - "x_max": 0.7549332976341248, - "y_max": 0.44948887825012207 - }, - "confidence": 0.9992507100105286, - "label_id": 1 - }, - "h": 94, - "w": 79, - "x": 1370, - "y": 391 - } - ], - "tensors": [ - { - "confidence": 0.9992507100105286, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1009654700756073, - 0.6367044448852539, - 0.1064150407910347, - 0.0029137623496353626, - 0.15300120413303375 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 6566649856, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7135663628578186, - "y_min": 0.36147645115852356, - "x_max": 0.7547221779823303, - "y_max": 0.44920584559440613 - }, - "confidence": 0.9990583062171936, - "label_id": 1 - }, - "h": 95, - "w": 79, - "x": 1370, - "y": 390 - } - ], - "tensors": [ - { - "confidence": 0.9990583062171936, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.10664954036474228, - 0.5429977774620056, - 0.12959499657154083, - 0.00310712237842381, - 0.21765057742595673 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 6599983104, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7139398455619812, - "y_min": 0.3608483672142029, - "x_max": 0.7547557950019836, - "y_max": 0.4487231373786926 - }, - "confidence": 0.9977524876594543, - "label_id": 1 - }, - "h": 95, - "w": 78, - "x": 1371, - "y": 390 - } - ], - "tensors": [ - { - "confidence": 0.9977524876594543, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.12301134318113327, - 0.5844392776489258, - 0.11981422454118729, - 0.003876086790114641, - 0.16885912418365479 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 6633316352, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7144630551338196, - "y_min": 0.36119258403778076, - "x_max": 0.7548392415046692, - "y_max": 0.44934093952178955 - }, - "confidence": 0.9944579601287842, - "label_id": 1 - }, - "h": 95, - "w": 77, - "x": 1372, - "y": 390 - } - ], - "tensors": [ - { - "confidence": 0.9944579601287842, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.12977160513401031, - 0.49231335520744324, - 0.1379014253616333, - 0.004862571135163307, - 0.23515108227729797 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 6666649600, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7152295112609863, - "y_min": 0.36224043369293213, - "x_max": 0.7548751831054688, - "y_max": 0.4492260813713074 - }, - "confidence": 0.9895221590995789, - "label_id": 1 - }, - "h": 94, - "w": 76, - "x": 1373, - "y": 391 - } - ], - "tensors": [ - { - "confidence": 0.9895221590995789, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.11357691884040833, - 0.582905113697052, - 0.11521371454000473, - 0.005235421936959028, - 0.18306881189346313 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 6699982848, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7156959176063538, - "y_min": 0.3635253310203552, - "x_max": 0.7552854418754578, - "y_max": 0.44916343688964844 - }, - "confidence": 0.9838294386863708, - "label_id": 1 - }, - "h": 92, - "w": 76, - "x": 1374, - "y": 393 - } - ], - "tensors": [ - { - "confidence": 0.9838294386863708, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.11093720048666, - 0.5004072189331055, - 0.14630162715911865, - 0.004826430231332779, - 0.23752756416797638 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 6733316096, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7157391905784607, - "y_min": 0.3652195632457733, - "x_max": 0.7557514309883118, - "y_max": 0.4503425657749176 - }, - "confidence": 0.9750808477401733, - "label_id": 1 - }, - "h": 92, - "w": 77, - "x": 1374, - "y": 394 - } - ], - "tensors": [ - { - "confidence": 0.9750808477401733, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.08494383096694946, - 0.6414728760719299, - 0.11341369897127151, - 0.0031741943676024675, - 0.15699543058872223 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 6766649344, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7155741453170776, - "y_min": 0.3660289943218231, - "x_max": 0.756193995475769, - "y_max": 0.45042088627815247 - }, - "confidence": 0.9759147763252258, - "label_id": 1 - }, - "h": 91, - "w": 78, - "x": 1374, - "y": 395 - } - ], - "tensors": [ - { - "confidence": 0.9759147763252258, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.10259655863046646, - 0.5175253748893738, - 0.1307433694601059, - 0.003916208632290363, - 0.2452184408903122 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 6799982592, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7153772115707397, - "y_min": 0.36643141508102417, - "x_max": 0.7565692663192749, - "y_max": 0.45059603452682495 - }, - "confidence": 0.9772543907165527, - "label_id": 1 - }, - "h": 91, - "w": 79, - "x": 1374, - "y": 396 - } - ], - "tensors": [ - { - "confidence": 0.9772543907165527, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.03150245547294617, - 0.8631318211555481, - 0.04205765947699547, - 0.0016940438654273748, - 0.06161399558186531 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 6833315840, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.715218186378479, - "y_min": 0.36583083868026733, - "x_max": 0.7567132711410522, - "y_max": 0.4508868455886841 - }, - "confidence": 0.9707632660865784, - "label_id": 1 - }, - "h": 92, - "w": 80, - "x": 1373, - "y": 395 - } - ], - "tensors": [ - { - "confidence": 0.9707632660865784, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.0203739982098341, - 0.9057725667953491, - 0.032875292003154755, - 0.0015880913706496358, - 0.039390042424201965 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 6866649088, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7148463129997253, - "y_min": 0.36577707529067993, - "x_max": 0.7561594843864441, - "y_max": 0.45021891593933105 - }, - "confidence": 0.9863520860671997, - "label_id": 1 - }, - "h": 91, - "w": 79, - "x": 1373, - "y": 395 - } - ], - "tensors": [ - { - "confidence": 0.9863520860671997, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.01498438697308302, - 0.9362572431564331, - 0.02580510824918747, - 0.0013695531524717808, - 0.021583737805485725 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 6899982336, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7141053080558777, - "y_min": 0.3664087951183319, - "x_max": 0.7562119364738464, - "y_max": 0.45075228810310364 - }, - "confidence": 0.9932888150215149, - "label_id": 1 - }, - "h": 91, - "w": 81, - "x": 1371, - "y": 396 - } - ], - "tensors": [ - { - "confidence": 0.9932888150215149, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.015739070251584053, - 0.9479513168334961, - 0.02069971337914467, - 0.001237944234162569, - 0.014371920377016068 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 6933315584, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7148979902267456, - "y_min": 0.3677014708518982, - "x_max": 0.7562928199768066, - "y_max": 0.45138466358184814 - }, - "confidence": 0.9837061166763306, - "label_id": 1 - }, - "h": 90, - "w": 79, - "x": 1373, - "y": 397 - } - ], - "tensors": [ - { - "confidence": 0.9837061166763306, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.014163521118462086, - 0.9509859681129456, - 0.019291454926133156, - 0.0015968263614922762, - 0.013962239027023315 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 6966648832, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7155627608299255, - "y_min": 0.36953338980674744, - "x_max": 0.7557953000068665, - "y_max": 0.45354971289634705 - }, - "confidence": 0.9506513476371765, - "label_id": 1 - }, - "h": 91, - "w": 77, - "x": 1374, - "y": 399 - } - ], - "tensors": [ - { - "confidence": 0.9506513476371765, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.01866612210869789, - 0.8930351138114929, - 0.04730291664600372, - 0.00158250005915761, - 0.03941338136792183 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 6999982080, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.715152382850647, - "y_min": 0.37028923630714417, - "x_max": 0.7550594806671143, - "y_max": 0.4545916020870209 - }, - "confidence": 0.9751260876655579, - "label_id": 1 - }, - "h": 91, - "w": 77, - "x": 1373, - "y": 400 - } - ], - "tensors": [ - { - "confidence": 0.9751260876655579, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.01953486166894436, - 0.8626514673233032, - 0.06616450846195221, - 0.0020397340413182974, - 0.04960939660668373 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 7033315328, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.71513831615448, - "y_min": 0.3710596263408661, - "x_max": 0.7546771764755249, - "y_max": 0.45697471499443054 - }, - "confidence": 0.9624131917953491, - "label_id": 1 - }, - "h": 93, - "w": 76, - "x": 1373, - "y": 401 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13765428960323334, - "y_min": 0.5541038513183594, - "x_max": 0.1764248162508011, - "y_max": 0.6371768712997437 - }, - "confidence": 0.5058327317237854, - "label_id": 1 - }, - "h": 90, - "w": 75, - "x": 264, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9624131917953491, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.017736053094267845, - 0.8567960858345032, - 0.04729878902435303, - 0.0023646224290132523, - 0.07580457627773285 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5058327317237854, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2551986873149872, - 0.012082944624125957, - 0.20552384853363037, - 0.004209107719361782, - 0.5229853391647339 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 7066648576, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7155297994613647, - "y_min": 0.37249356508255005, - "x_max": 0.7537814378738403, - "y_max": 0.4559781551361084 - }, - "confidence": 0.9717605113983154, - "label_id": 1 - }, - "h": 90, - "w": 73, - "x": 1374, - "y": 402 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13768897950649261, - "y_min": 0.554222583770752, - "x_max": 0.17654775083065033, - "y_max": 0.6375839710235596 - }, - "confidence": 0.5094334483146667, - "label_id": 1 - }, - "h": 90, - "w": 75, - "x": 264, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9717605113983154, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.019883964210748672, - 0.8155232667922974, - 0.08382653445005417, - 0.0013833126286044717, - 0.07938289642333984 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5094334483146667, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3313235342502594, - 0.01592731662094593, - 0.1732594072818756, - 0.007877953350543976, - 0.4716119170188904 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 7099981824, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7146041393280029, - "y_min": 0.3711238205432892, - "x_max": 0.7528537511825562, - "y_max": 0.4593101441860199 - }, - "confidence": 0.9560873508453369, - "label_id": 1 - }, - "h": 95, - "w": 73, - "x": 1372, - "y": 401 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13743042945861816, - "y_min": 0.554503858089447, - "x_max": 0.17644262313842773, - "y_max": 0.6369600892066956 - }, - "confidence": 0.5098245739936829, - "label_id": 1 - }, - "h": 89, - "w": 75, - "x": 264, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9560873508453369, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.022603683173656464, - 0.8027669787406921, - 0.0813886746764183, - 0.0017573018558323383, - 0.09148334711790085 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5098245739936829, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2875556945800781, - 0.014573843218386173, - 0.18978190422058105, - 0.004307481460273266, - 0.5037810802459717 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 7133315072, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7140181064605713, - "y_min": 0.3718254864215851, - "x_max": 0.7529953718185425, - "y_max": 0.45838066935539246 - }, - "confidence": 0.9788232445716858, - "label_id": 1 - }, - "h": 93, - "w": 75, - "x": 1371, - "y": 402 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13759295642375946, - "y_min": 0.5545258522033691, - "x_max": 0.17646478116512299, - "y_max": 0.6366002559661865 - }, - "confidence": 0.5107528567314148, - "label_id": 1 - }, - "h": 89, - "w": 75, - "x": 264, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9788232445716858, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.022180618718266487, - 0.8730270862579346, - 0.04912674054503441, - 0.001424432615749538, - 0.05424109473824501 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5107528567314148, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2950223684310913, - 0.014085882343351841, - 0.18641474843025208, - 0.004158731084316969, - 0.5003182291984558 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 7166648320, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7125433683395386, - "y_min": 0.37322115898132324, - "x_max": 0.752057671546936, - "y_max": 0.4579296112060547 - }, - "confidence": 0.9965182542800903, - "label_id": 1 - }, - "h": 92, - "w": 76, - "x": 1368, - "y": 403 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13748781383037567, - "y_min": 0.5545556545257568, - "x_max": 0.17638345062732697, - "y_max": 0.637192964553833 - }, - "confidence": 0.5198116898536682, - "label_id": 1 - }, - "h": 89, - "w": 75, - "x": 264, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9965182542800903, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.03554309532046318, - 0.8028900623321533, - 0.05859290435910225, - 0.0013158316724002361, - 0.10165808349847794 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5198116898536682, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.28814131021499634, - 0.012812637723982334, - 0.18377052247524261, - 0.004391284193843603, - 0.5108842253684998 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 7199981568, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7104634046554565, - "y_min": 0.3727686405181885, - "x_max": 0.7507163286209106, - "y_max": 0.46006810665130615 - }, - "confidence": 0.9964485168457031, - "label_id": 1 - }, - "h": 94, - "w": 77, - "x": 1364, - "y": 403 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13728584349155426, - "y_min": 0.5543009042739868, - "x_max": 0.17658980190753937, - "y_max": 0.6377221345901489 - }, - "confidence": 0.5214276313781738, - "label_id": 1 - }, - "h": 90, - "w": 75, - "x": 264, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9964485168457031, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.017364075407385826, - 0.8469988107681274, - 0.061841510236263275, - 0.0010273975785821676, - 0.07276829332113266 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5214276313781738, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.32123324275016785, - 0.017217501997947693, - 0.16965122520923615, - 0.006304366048425436, - 0.48559364676475525 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 7233314816, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.707440972328186, - "y_min": 0.3737265467643738, - "x_max": 0.7490006685256958, - "y_max": 0.4594183564186096 - }, - "confidence": 0.9992897510528564, - "label_id": 1 - }, - "h": 92, - "w": 80, - "x": 1358, - "y": 404 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13765400648117065, - "y_min": 0.5545994639396667, - "x_max": 0.1765296459197998, - "y_max": 0.6372779011726379 - }, - "confidence": 0.5171777009963989, - "label_id": 1 - }, - "h": 89, - "w": 75, - "x": 264, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9992897510528564, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.016466762870550156, - 0.8987463712692261, - 0.03774137794971466, - 0.001084430841729045, - 0.04596107825636864 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5171777009963989, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.29829514026641846, - 0.025293521583080292, - 0.2042911797761917, - 0.005492768716067076, - 0.4666273891925812 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 7266648064, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7053773999214172, - "y_min": 0.37263521552085876, - "x_max": 0.7464960217475891, - "y_max": 0.46199485659599304 - }, - "confidence": 0.9994325041770935, - "label_id": 1 - }, - "h": 97, - "w": 79, - "x": 1354, - "y": 402 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13760258257389069, - "y_min": 0.5548002123832703, - "x_max": 0.17654182016849518, - "y_max": 0.6373432278633118 - }, - "confidence": 0.5092690587043762, - "label_id": 1 - }, - "h": 89, - "w": 75, - "x": 264, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9994325041770935, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.015584150329232216, - 0.9391851425170898, - 0.023496173322200775, - 0.0007250302587635815, - 0.021009504795074463 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5092690587043762, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.30079540610313416, - 0.02497750334441662, - 0.20428447425365448, - 0.005321384407579899, - 0.46462124586105347 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 7299981312, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7027729749679565, - "y_min": 0.37252989411354065, - "x_max": 0.7449260950088501, - "y_max": 0.45658138394355774 - }, - "confidence": 0.9999914169311523, - "label_id": 1 - }, - "h": 91, - "w": 81, - "x": 1349, - "y": 402 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1377216875553131, - "y_min": 0.5546764731407166, - "x_max": 0.17659160494804382, - "y_max": 0.6372955441474915 - }, - "confidence": 0.5016998052597046, - "label_id": 1 - }, - "h": 89, - "w": 75, - "x": 264, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9999914169311523, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.021789658814668655, - 0.93401038646698, - 0.016997331753373146, - 0.0027695712633430958, - 0.024433040991425514 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5016998052597046, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2848717272281647, - 0.0226832777261734, - 0.22362713515758514, - 0.004563513211905956, - 0.46425434947013855 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 7333314560, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7011741399765015, - "y_min": 0.37221020460128784, - "x_max": 0.7446117401123047, - "y_max": 0.45938587188720703 - }, - "confidence": 0.999982476234436, - "label_id": 1 - }, - "h": 94, - "w": 84, - "x": 1346, - "y": 402 - } - ], - "tensors": [ - { - "confidence": 0.999982476234436, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.030046463012695312, - 0.9228842854499817, - 0.018136922270059586, - 0.004551037214696407, - 0.024381300434470177 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 7366647808, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6985543370246887, - "y_min": 0.3698130249977112, - "x_max": 0.7429777979850769, - "y_max": 0.45790719985961914 - }, - "confidence": 0.9999960660934448, - "label_id": 1 - }, - "h": 96, - "w": 86, - "x": 1341, - "y": 399 - } - ], - "tensors": [ - { - "confidence": 0.9999960660934448, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.11317139863967896, - 0.7558920979499817, - 0.039438243955373764, - 0.007759427651762962, - 0.08373890072107315 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 7399981056, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6986121535301208, - "y_min": 0.3694050908088684, - "x_max": 0.7435697913169861, - "y_max": 0.46026772260665894 - }, - "confidence": 0.9999970197677612, - "label_id": 1 - }, - "h": 98, - "w": 87, - "x": 1341, - "y": 399 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1375950276851654, - "y_min": 0.5556967258453369, - "x_max": 0.17661133408546448, - "y_max": 0.6374038457870483 - }, - "confidence": 0.5012406706809998, - "label_id": 1 - }, - "h": 88, - "w": 75, - "x": 264, - "y": 600 - } - ], - "tensors": [ - { - "confidence": 0.9999970197677612, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.16008928418159485, - 0.45163199305534363, - 0.0479993112385273, - 0.009539863094687462, - 0.3307395875453949 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5012406706809998, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.285929411649704, - 0.018971340730786324, - 0.1883699595928192, - 0.004994711373001337, - 0.5017346143722534 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 7433314304, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6942458748817444, - "y_min": 0.36913785338401794, - "x_max": 0.7404674887657166, - "y_max": 0.4586471617221832 - }, - "confidence": 0.9999947547912598, - "label_id": 1 - }, - "h": 96, - "w": 89, - "x": 1333, - "y": 399 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13736630976200104, - "y_min": 0.5553164482116699, - "x_max": 0.17667512595653534, - "y_max": 0.6383304595947266 - }, - "confidence": 0.517829179763794, - "label_id": 1 - }, - "h": 89, - "w": 75, - "x": 264, - "y": 600 - } - ], - "tensors": [ - { - "confidence": 0.9999947547912598, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.22392500936985016, - 0.17212271690368652, - 0.11512873321771622, - 0.03814304247498512, - 0.4506804645061493 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.517829179763794, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.27216637134552, - 0.020917130634188652, - 0.18285609781742096, - 0.011953817680478096, - 0.5121066570281982 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 7466647552, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6940227746963501, - "y_min": 0.37132370471954346, - "x_max": 0.7389920949935913, - "y_max": 0.46060609817504883 - }, - "confidence": 0.9999362230300903, - "label_id": 1 - }, - "h": 96, - "w": 86, - "x": 1333, - "y": 401 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.13718637824058533, - "y_min": 0.5552406907081604, - "x_max": 0.17674121260643005, - "y_max": 0.6382847428321838 - }, - "confidence": 0.5006137490272522, - "label_id": 1 - }, - "h": 89, - "w": 76, - "x": 263, - "y": 600 - } - ], - "tensors": [ - { - "confidence": 0.9999362230300903, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23364552855491638, - 0.17898426949977875, - 0.07438270002603531, - 0.038000430911779404, - 0.47498711943626404 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5006137490272522, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2743234932422638, - 0.023639902472496033, - 0.20251722633838654, - 0.011687934398651123, - 0.4878314435482025 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 7499980800, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6900764107704163, - "y_min": 0.3721780478954315, - "x_max": 0.735874354839325, - "y_max": 0.4631021320819855 - }, - "confidence": 0.9884983897209167, - "label_id": 1 - }, - "h": 98, - "w": 88, - "x": 1325, - "y": 402 - } - ], - "tensors": [ - { - "confidence": 0.9884983897209167, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.25098276138305664, - 0.06649395078420639, - 0.1336197555065155, - 0.017877712845802307, - 0.531025767326355 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 7533314048, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6898979544639587, - "y_min": 0.37318742275238037, - "x_max": 0.7314633727073669, - "y_max": 0.46370816230773926 - }, - "confidence": 0.9520164132118225, - "label_id": 1 - }, - "h": 98, - "w": 79, - "x": 1325, - "y": 403 - } - ], - "tensors": [ - { - "confidence": 0.9520164132118225, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.288770854473114, - 0.16801796853542328, - 0.09823310375213623, - 0.011645551770925522, - 0.4333324432373047 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 7566647296, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6893301010131836, - "y_min": 0.3725791573524475, - "x_max": 0.732138991355896, - "y_max": 0.4624931216239929 - }, - "confidence": 0.9756155610084534, - "label_id": 1 - }, - "h": 97, - "w": 82, - "x": 1324, - "y": 402 - } - ], - "tensors": [ - { - "confidence": 0.9756155610084534, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.14287696778774261, - 0.07717078179121017, - 0.06352666765451431, - 0.03475571051239967, - 0.6816698908805847 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 7599980544, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6879450082778931, - "y_min": 0.3719358444213867, - "x_max": 0.7312777042388916, - "y_max": 0.4615347385406494 - }, - "confidence": 0.9492019414901733, - "label_id": 1 - }, - "h": 96, - "w": 83, - "x": 1321, - "y": 402 - } - ], - "tensors": [ - { - "confidence": 0.9492019414901733, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1853344440460205, - 0.05947453901171684, - 0.06191367655992508, - 0.06494937092065811, - 0.6283279061317444 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 7633313792, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6870723366737366, - "y_min": 0.37189438939094543, - "x_max": 0.7285884022712708, - "y_max": 0.4633040130138397 - }, - "confidence": 0.8668413162231445, - "label_id": 1 - }, - "h": 98, - "w": 80, - "x": 1319, - "y": 402 - } - ], - "tensors": [ - { - "confidence": 0.8668413162231445, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3790476322174072, - 0.04219836741685867, - 0.08427803963422775, - 0.0341709740459919, - 0.46030497550964355 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 7666647040, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6869721412658691, - "y_min": 0.3715650141239166, - "x_max": 0.7270954847335815, - "y_max": 0.4613586366176605 - }, - "confidence": 0.8578441739082336, - "label_id": 1 - }, - "h": 97, - "w": 77, - "x": 1319, - "y": 401 - } - ], - "tensors": [ - { - "confidence": 0.8578441739082336, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.46535152196884155, - 0.13171809911727905, - 0.10409853607416153, - 0.0636066421866417, - 0.2352251261472702 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 7699980288, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6859985589981079, - "y_min": 0.3703257441520691, - "x_max": 0.7267035245895386, - "y_max": 0.4621291160583496 - }, - "confidence": 0.6984543204307556, - "label_id": 1 - }, - "h": 99, - "w": 78, - "x": 1317, - "y": 400 - } - ], - "tensors": [ - { - "confidence": 0.6984543204307556, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.6078832149505615, - 0.07956206798553467, - 0.08405616134405136, - 0.06204606220126152, - 0.16645251214504242 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 7733313536, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6858722567558289, - "y_min": 0.37129679322242737, - "x_max": 0.7281209826469421, - "y_max": 0.46090736985206604 - }, - "confidence": 0.8702605962753296, - "label_id": 1 - }, - "h": 97, - "w": 81, - "x": 1317, - "y": 401 - } - ], - "tensors": [ - { - "confidence": 0.8702605962753296, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4206901788711548, - 0.026689700782299042, - 0.10768343508243561, - 0.05757838860154152, - 0.38735827803611755 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 7766646784, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.686608612537384, - "y_min": 0.37212198972702026, - "x_max": 0.7285668253898621, - "y_max": 0.45962315797805786 - }, - "confidence": 0.9051057696342468, - "label_id": 1 - }, - "h": 94, - "w": 81, - "x": 1318, - "y": 402 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14260618388652802, - "y_min": 0.555393397808075, - "x_max": 0.18045790493488312, - "y_max": 0.6319213509559631 - }, - "confidence": 0.5095329880714417, - "label_id": 1 - }, - "h": 82, - "w": 72, - "x": 274, - "y": 600 - } - ], - "tensors": [ - { - "confidence": 0.9051057696342468, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.18075309693813324, - 0.01053128857165575, - 0.06749124079942703, - 0.05250066518783569, - 0.6887236833572388 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5095329880714417, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5842940807342529, - 0.017109788954257965, - 0.12624682486057281, - 0.02147614397108555, - 0.2508730888366699 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 7799980032, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6869802474975586, - "y_min": 0.3738321363925934, - "x_max": 0.7261170148849487, - "y_max": 0.4590838849544525 - }, - "confidence": 0.8400729894638062, - "label_id": 1 - }, - "h": 92, - "w": 75, - "x": 1319, - "y": 404 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14375866949558258, - "y_min": 0.5547369122505188, - "x_max": 0.1812988966703415, - "y_max": 0.6295689940452576 - }, - "confidence": 0.5092524290084839, - "label_id": 1 - }, - "h": 81, - "w": 72, - "x": 276, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.8400729894638062, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.15868894755840302, - 0.010137113742530346, - 0.08431500941514969, - 0.03490408882498741, - 0.7119547724723816 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5092524290084839, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5530540347099304, - 0.016763079911470413, - 0.09464463591575623, - 0.03742585331201553, - 0.29811233282089233 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 7833313280, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6850453615188599, - "y_min": 0.3735407888889313, - "x_max": 0.7252758741378784, - "y_max": 0.4582364857196808 - }, - "confidence": 0.6070841550827026, - "label_id": 1 - }, - "h": 92, - "w": 78, - "x": 1315, - "y": 403 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14420199394226074, - "y_min": 0.5539746284484863, - "x_max": 0.18198537826538086, - "y_max": 0.6301054954528809 - }, - "confidence": 0.570043683052063, - "label_id": 1 - }, - "h": 83, - "w": 72, - "x": 277, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.6070841550827026, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.21976231038570404, - 0.012171521782875061, - 0.11778073012828827, - 0.034957315772771835, - 0.6153281331062317 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.570043683052063, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5486858487129211, - 0.020467303693294525, - 0.11564093083143234, - 0.040378790348768234, - 0.27482709288597107 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 7866646528, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6800570487976074, - "y_min": 0.37205150723457336, - "x_max": 0.7232389450073242, - "y_max": 0.463236540555954 - }, - "confidence": 0.7098588943481445, - "label_id": 1 - }, - "h": 98, - "w": 83, - "x": 1306, - "y": 402 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14462265372276306, - "y_min": 0.5534960627555847, - "x_max": 0.18256232142448425, - "y_max": 0.6304389834403992 - }, - "confidence": 0.578220546245575, - "label_id": 1 - }, - "h": 83, - "w": 73, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.7098588943481445, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3007122874259949, - 0.02333347499370575, - 0.15811273455619812, - 0.05050714686512947, - 0.4673343896865845 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.578220546245575, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.586747944355011, - 0.021725237369537354, - 0.12173662334680557, - 0.03976307436823845, - 0.23002716898918152 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 7899979776, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.680292546749115, - "y_min": 0.37282460927963257, - "x_max": 0.7232422232627869, - "y_max": 0.46343904733657837 - }, - "confidence": 0.633284866809845, - "label_id": 1 - }, - "h": 98, - "w": 83, - "x": 1306, - "y": 403 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14506535232067108, - "y_min": 0.5531978607177734, - "x_max": 0.18276070058345795, - "y_max": 0.6299110651016235 - }, - "confidence": 0.5291743874549866, - "label_id": 1 - }, - "h": 83, - "w": 72, - "x": 279, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.633284866809845, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23985256254673004, - 0.01418473944067955, - 0.1822127103805542, - 0.02992434799671173, - 0.533825695514679 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5291743874549866, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5812322497367859, - 0.03122001513838768, - 0.10957609117031097, - 0.04533753916621208, - 0.2326340526342392 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 7933313024, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6802963614463806, - "y_min": 0.37268897891044617, - "x_max": 0.7232784628868103, - "y_max": 0.4634808599948883 - }, - "confidence": 0.6486794948577881, - "label_id": 1 - }, - "h": 98, - "w": 83, - "x": 1306, - "y": 403 - } - ], - "tensors": [ - { - "confidence": 0.6486794948577881, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.24943161010742188, - 0.013126830570399761, - 0.17475688457489014, - 0.030619876459240913, - 0.5320647954940796 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 7966646272, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6801928281784058, - "y_min": 0.37316593527793884, - "x_max": 0.7233004570007324, - "y_max": 0.46354731917381287 - }, - "confidence": 0.6610702872276306, - "label_id": 1 - }, - "h": 98, - "w": 83, - "x": 1306, - "y": 403 - } - ], - "tensors": [ - { - "confidence": 0.6610702872276306, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2521516680717468, - 0.011963551864027977, - 0.16319051384925842, - 0.027906864881515503, - 0.5447874069213867 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 7999979520, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6804545521736145, - "y_min": 0.37320926785469055, - "x_max": 0.7233384251594543, - "y_max": 0.46333637833595276 - }, - "confidence": 0.601114809513092, - "label_id": 1 - }, - "h": 97, - "w": 83, - "x": 1306, - "y": 403 - } - ], - "tensors": [ - { - "confidence": 0.601114809513092, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.30293869972229004, - 0.0164023544639349, - 0.21137233078479767, - 0.02813650295138359, - 0.44115012884140015 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 8033312768, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6856397986412048, - "y_min": 0.37373846769332886, - "x_max": 0.7250365614891052, - "y_max": 0.4587644934654236 - }, - "confidence": 0.574897825717926, - "label_id": 1 - }, - "h": 91, - "w": 76, - "x": 1316, - "y": 404 - } - ], - "tensors": [ - { - "confidence": 0.574897825717926, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2045438587665558, - 0.013563298620283604, - 0.10550931096076965, - 0.03038935363292694, - 0.6459941267967224 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 8066646016, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6863150596618652, - "y_min": 0.3731779158115387, - "x_max": 0.7256755828857422, - "y_max": 0.4587377607822418 - }, - "confidence": 0.8154366612434387, - "label_id": 1 - }, - "h": 92, - "w": 75, - "x": 1318, - "y": 403 - } - ], - "tensors": [ - { - "confidence": 0.8154366612434387, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1965642273426056, - 0.011679954826831818, - 0.13692402839660645, - 0.033559925854206085, - 0.6212719082832336 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 8099979264, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6874877214431763, - "y_min": 0.3720887303352356, - "x_max": 0.7265610694885254, - "y_max": 0.46007293462753296 - }, - "confidence": 0.9329677820205688, - "label_id": 1 - }, - "h": 95, - "w": 75, - "x": 1320, - "y": 402 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14586158096790314, - "y_min": 0.5521610379219055, - "x_max": 0.18379126489162445, - "y_max": 0.6290858387947083 - }, - "confidence": 0.5227198600769043, - "label_id": 1 - }, - "h": 83, - "w": 73, - "x": 280, - "y": 596 - } - ], - "tensors": [ - { - "confidence": 0.9329677820205688, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.20046047866344452, - 0.013972688466310501, - 0.11916739493608475, - 0.04029105603694916, - 0.6261082887649536 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5227198600769043, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5572955012321472, - 0.02312563732266426, - 0.12102708965539932, - 0.043000299483537674, - 0.25555142760276794 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 8133312512, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6881639957427979, - "y_min": 0.37193992733955383, - "x_max": 0.7276313304901123, - "y_max": 0.4604656994342804 - }, - "confidence": 0.9434962272644043, - "label_id": 1 - }, - "h": 95, - "w": 76, - "x": 1321, - "y": 402 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14609882235527039, - "y_min": 0.5518150925636292, - "x_max": 0.18436485528945923, - "y_max": 0.6296061873435974 - }, - "confidence": 0.548742413520813, - "label_id": 1 - }, - "h": 84, - "w": 73, - "x": 281, - "y": 596 - } - ], - "tensors": [ - { - "confidence": 0.9434962272644043, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.18943609297275543, - 0.01250290684401989, - 0.08407140523195267, - 0.02990550920367241, - 0.6840840578079224 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.548742413520813, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5458272695541382, - 0.027472665533423424, - 0.11967339366674423, - 0.04087105393409729, - 0.2661556601524353 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 8166645760, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6874353885650635, - "y_min": 0.37075352668762207, - "x_max": 0.7270635366439819, - "y_max": 0.45876842737197876 - }, - "confidence": 0.9606766104698181, - "label_id": 1 - }, - "h": 95, - "w": 76, - "x": 1320, - "y": 400 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14613431692123413, - "y_min": 0.5519084334373474, - "x_max": 0.18463784456253052, - "y_max": 0.6298254132270813 - }, - "confidence": 0.5396232008934021, - "label_id": 1 - }, - "h": 84, - "w": 74, - "x": 281, - "y": 596 - } - ], - "tensors": [ - { - "confidence": 0.9606766104698181, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2672366201877594, - 0.01703166589140892, - 0.09550019353628159, - 0.03383979946374893, - 0.5863917469978333 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5396232008934021, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5135278105735779, - 0.02443142607808113, - 0.12737731635570526, - 0.03366346284747124, - 0.3009999990463257 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 8199979008, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6885372996330261, - "y_min": 0.3703300356864929, - "x_max": 0.7278932929039001, - "y_max": 0.45853549242019653 - }, - "confidence": 0.9831991791725159, - "label_id": 1 - }, - "h": 95, - "w": 76, - "x": 1322, - "y": 400 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14626915752887726, - "y_min": 0.5517999529838562, - "x_max": 0.18501441180706024, - "y_max": 0.6295859217643738 - }, - "confidence": 0.5139682292938232, - "label_id": 1 - }, - "h": 84, - "w": 74, - "x": 281, - "y": 596 - } - ], - "tensors": [ - { - "confidence": 0.9831991791725159, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.24021925032138824, - 0.016716988757252693, - 0.08528372645378113, - 0.041552793234586716, - 0.6162272095680237 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5139682292938232, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5238890051841736, - 0.02372903563082218, - 0.13338260352611542, - 0.04037444666028023, - 0.27862492203712463 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 8233312256, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6886276006698608, - "y_min": 0.3688320219516754, - "x_max": 0.7284802198410034, - "y_max": 0.4574110209941864 - }, - "confidence": 0.9955516457557678, - "label_id": 1 - }, - "h": 96, - "w": 77, - "x": 1322, - "y": 398 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14636589586734772, - "y_min": 0.5520119071006775, - "x_max": 0.18493328988552094, - "y_max": 0.6295230984687805 - }, - "confidence": 0.5102357268333435, - "label_id": 1 - }, - "h": 84, - "w": 74, - "x": 281, - "y": 596 - } - ], - "tensors": [ - { - "confidence": 0.9955516457557678, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.32767418026924133, - 0.020233698189258575, - 0.08005190640687943, - 0.059191543608903885, - 0.5128486752510071 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5102357268333435, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.520500659942627, - 0.02292819507420063, - 0.1337544322013855, - 0.04340840503573418, - 0.27940836548805237 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 8266645504, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6885956525802612, - "y_min": 0.3676591217517853, - "x_max": 0.727371096611023, - "y_max": 0.4567892253398895 - }, - "confidence": 0.9952611327171326, - "label_id": 1 - }, - "h": 96, - "w": 75, - "x": 1322, - "y": 397 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1464540660381317, - "y_min": 0.5519185066223145, - "x_max": 0.185345858335495, - "y_max": 0.6300314664840698 - }, - "confidence": 0.5148412585258484, - "label_id": 1 - }, - "h": 84, - "w": 75, - "x": 281, - "y": 596 - } - ], - "tensors": [ - { - "confidence": 0.9952611327171326, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5861904621124268, - 0.03248360753059387, - 0.1261964589357376, - 0.04184332489967346, - 0.2132861614227295 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5148412585258484, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.48427078127861023, - 0.01892397552728653, - 0.15691691637039185, - 0.032525889575481415, - 0.3073624074459076 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 8299978752, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6894921660423279, - "y_min": 0.3679855167865753, - "x_max": 0.729740560054779, - "y_max": 0.45601925253868103 - }, - "confidence": 0.9968366622924805, - "label_id": 1 - }, - "h": 96, - "w": 77, - "x": 1324, - "y": 397 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14626233279705048, - "y_min": 0.5519387722015381, - "x_max": 0.18504120409488678, - "y_max": 0.6297932863235474 - }, - "confidence": 0.5190256834030151, - "label_id": 1 - }, - "h": 84, - "w": 74, - "x": 281, - "y": 596 - } - ], - "tensors": [ - { - "confidence": 0.9968366622924805, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.6612802147865295, - 0.03792758285999298, - 0.09537023305892944, - 0.06669391691684723, - 0.1387280821800232 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5190256834030151, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5332854390144348, - 0.028567727655172348, - 0.12628811597824097, - 0.04042168706655502, - 0.2714370787143707 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 8333312000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6913748979568481, - "y_min": 0.3657899796962738, - "x_max": 0.7309333086013794, - "y_max": 0.4550437033176422 - }, - "confidence": 0.999731719493866, - "label_id": 1 - }, - "h": 96, - "w": 76, - "x": 1327, - "y": 395 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14678174257278442, - "y_min": 0.5518050193786621, - "x_max": 0.18550485372543335, - "y_max": 0.6304503679275513 - }, - "confidence": 0.5270034074783325, - "label_id": 1 - }, - "h": 85, - "w": 74, - "x": 282, - "y": 596 - } - ], - "tensors": [ - { - "confidence": 0.999731719493866, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.561858057975769, - 0.051827769726514816, - 0.10684465616941452, - 0.08774280548095703, - 0.1917266547679901 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5270034074783325, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4987083077430725, - 0.031680818647146225, - 0.15377762913703918, - 0.054458726197481155, - 0.2613745331764221 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 8366645248, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6912731528282166, - "y_min": 0.36560502648353577, - "x_max": 0.7307634949684143, - "y_max": 0.45229002833366394 - }, - "confidence": 0.9999333620071411, - "label_id": 1 - }, - "h": 93, - "w": 76, - "x": 1327, - "y": 395 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1466345191001892, - "y_min": 0.5517686009407043, - "x_max": 0.18551719188690186, - "y_max": 0.6301427483558655 - }, - "confidence": 0.5460926294326782, - "label_id": 1 - }, - "h": 85, - "w": 74, - "x": 282, - "y": 596 - } - ], - "tensors": [ - { - "confidence": 0.9999333620071411, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4946134686470032, - 0.16858646273612976, - 0.11821354925632477, - 0.035090312361717224, - 0.18349625170230865 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5460926294326782, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5055500864982605, - 0.029260560870170593, - 0.14787283539772034, - 0.042655788362026215, - 0.27466076612472534 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 8399978496, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6925551891326904, - "y_min": 0.3673665523529053, - "x_max": 0.7333178520202637, - "y_max": 0.45012474060058594 - }, - "confidence": 0.9999871253967285, - "label_id": 1 - }, - "h": 89, - "w": 78, - "x": 1330, - "y": 397 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14660538733005524, - "y_min": 0.5516838431358337, - "x_max": 0.18532632291316986, - "y_max": 0.6304717659950256 - }, - "confidence": 0.5539724826812744, - "label_id": 1 - }, - "h": 85, - "w": 75, - "x": 281, - "y": 596 - } - ], - "tensors": [ - { - "confidence": 0.9999871253967285, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.39507314562797546, - 0.0857485830783844, - 0.08486603945493698, - 0.0251531433314085, - 0.4091590940952301 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5539724826812744, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5384180545806885, - 0.03308222442865372, - 0.14731892943382263, - 0.03823772445321083, - 0.2429431527853012 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 8433311744, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6966168880462646, - "y_min": 0.36810824275016785, - "x_max": 0.7393220663070679, - "y_max": 0.4525059163570404 - }, - "confidence": 0.9999974966049194, - "label_id": 1 - }, - "h": 91, - "w": 81, - "x": 1338, - "y": 398 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14666827023029327, - "y_min": 0.5515796542167664, - "x_max": 0.18557186424732208, - "y_max": 0.6307151913642883 - }, - "confidence": 0.5496729016304016, - "label_id": 1 - }, - "h": 85, - "w": 74, - "x": 282, - "y": 596 - } - ], - "tensors": [ - { - "confidence": 0.9999974966049194, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.16323953866958618, - 0.04601172357797623, - 0.0545453317463398, - 0.031127816066145897, - 0.7050755620002747 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5496729016304016, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5300744771957397, - 0.028924234211444855, - 0.16406288743019104, - 0.03743591532111168, - 0.23950251936912537 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 8466644992, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6981778144836426, - "y_min": 0.3689422607421875, - "x_max": 0.7419604063034058, - "y_max": 0.45055484771728516 - }, - "confidence": 0.9999957084655762, - "label_id": 1 - }, - "h": 89, - "w": 84, - "x": 1341, - "y": 398 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14651954174041748, - "y_min": 0.551761269569397, - "x_max": 0.18543362617492676, - "y_max": 0.6301594972610474 - }, - "confidence": 0.5602006912231445, - "label_id": 1 - }, - "h": 85, - "w": 75, - "x": 281, - "y": 596 - } - ], - "tensors": [ - { - "confidence": 0.9999957084655762, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1537403017282486, - 0.062392428517341614, - 0.05461984500288963, - 0.02433728612959385, - 0.704910159111023 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5602006912231445, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.568422794342041, - 0.03527814894914627, - 0.15936729311943054, - 0.046062204986810684, - 0.19086946547031403 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 8499978240, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6993138194084167, - "y_min": 0.36849749088287354, - "x_max": 0.7438212037086487, - "y_max": 0.4528481960296631 - }, - "confidence": 0.9999992847442627, - "label_id": 1 - }, - "h": 91, - "w": 85, - "x": 1343, - "y": 398 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14631406962871552, - "y_min": 0.55208420753479, - "x_max": 0.18482254445552826, - "y_max": 0.6292487382888794 - }, - "confidence": 0.5553686618804932, - "label_id": 1 - }, - "h": 84, - "w": 74, - "x": 281, - "y": 596 - } - ], - "tensors": [ - { - "confidence": 0.9999992847442627, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.11030429601669312, - 0.03854754567146301, - 0.0370485819876194, - 0.01493731327354908, - 0.7991622686386108 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5553686618804932, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5562753081321716, - 0.027213385328650475, - 0.1793520301580429, - 0.04105667397379875, - 0.19610260426998138 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 8533311488, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.699677050113678, - "y_min": 0.3683199882507324, - "x_max": 0.7440279126167297, - "y_max": 0.45129042863845825 - }, - "confidence": 0.9999998807907104, - "label_id": 1 - }, - "h": 89, - "w": 86, - "x": 1343, - "y": 398 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14600586891174316, - "y_min": 0.551912784576416, - "x_max": 0.18475261330604553, - "y_max": 0.6301223039627075 - }, - "confidence": 0.5786508321762085, - "label_id": 1 - }, - "h": 85, - "w": 75, - "x": 280, - "y": 596 - } - ], - "tensors": [ - { - "confidence": 0.9999998807907104, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.22327472269535065, - 0.13843883574008942, - 0.10183080285787582, - 0.008605826646089554, - 0.5278497338294983 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5786508321762085, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5168055891990662, - 0.030652804300189018, - 0.3181817829608917, - 0.02806832455098629, - 0.10629148781299591 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 8566644736, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7004315257072449, - "y_min": 0.36895838379859924, - "x_max": 0.7440704703330994, - "y_max": 0.45321741700172424 - }, - "confidence": 0.9999997615814209, - "label_id": 1 - }, - "h": 91, - "w": 84, - "x": 1345, - "y": 398 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14575424790382385, - "y_min": 0.5517740845680237, - "x_max": 0.18381628394126892, - "y_max": 0.6286032795906067 - }, - "confidence": 0.516975462436676, - "label_id": 1 - }, - "h": 83, - "w": 73, - "x": 280, - "y": 596 - } - ], - "tensors": [ - { - "confidence": 0.9999997615814209, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.18133427202701569, - 0.12480814754962921, - 0.07932224124670029, - 0.005683935713022947, - 0.6088513731956482 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.516975462436676, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.6154654622077942, - 0.04366658255457878, - 0.16703595221042633, - 0.047759488224983215, - 0.12607251107692719 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 8599977984, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7016542553901672, - "y_min": 0.369517982006073, - "x_max": 0.7439975142478943, - "y_max": 0.4502047896385193 - }, - "confidence": 0.9999996423721313, - "label_id": 1 - }, - "h": 87, - "w": 81, - "x": 1347, - "y": 399 - } - ], - "tensors": [ - { - "confidence": 0.9999996423721313, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.20405752956867218, - 0.2710573077201843, - 0.10128352046012878, - 0.005084593780338764, - 0.4185170531272888 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 8633311232, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7022088766098022, - "y_min": 0.3695542812347412, - "x_max": 0.7449171543121338, - "y_max": 0.4528658390045166 - }, - "confidence": 0.9999986886978149, - "label_id": 1 - }, - "h": 90, - "w": 82, - "x": 1348, - "y": 399 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14536379277706146, - "y_min": 0.5527759790420532, - "x_max": 0.18299774825572968, - "y_max": 0.6294513940811157 - }, - "confidence": 0.5405277609825134, - "label_id": 1 - }, - "h": 83, - "w": 72, - "x": 279, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999986886978149, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.12144576758146286, - 0.6171378493309021, - 0.08010755479335785, - 0.009059571661055088, - 0.17224916815757751 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5405277609825134, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5729883909225464, - 0.03196035325527191, - 0.1851392239332199, - 0.02952982485294342, - 0.18038217723369598 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 8666644480, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7026433944702148, - "y_min": 0.3678416311740875, - "x_max": 0.7432810068130493, - "y_max": 0.4530104100704193 - }, - "confidence": 0.9999978542327881, - "label_id": 1 - }, - "h": 92, - "w": 78, - "x": 1349, - "y": 397 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.144917294383049, - "y_min": 0.5539886951446533, - "x_max": 0.18218939006328583, - "y_max": 0.630099892616272 - }, - "confidence": 0.5621930956840515, - "label_id": 1 - }, - "h": 83, - "w": 72, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999978542327881, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.03865625709295273, - 0.8936688899993896, - 0.029256025329232216, - 0.005150169134140015, - 0.03326868638396263 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5621930956840515, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5403594970703125, - 0.029622385278344154, - 0.23601076006889343, - 0.020367847755551338, - 0.1736394315958023 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 8699977728, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.703685998916626, - "y_min": 0.3693392872810364, - "x_max": 0.7461116313934326, - "y_max": 0.4515621066093445 - }, - "confidence": 0.9999938011169434, - "label_id": 1 - }, - "h": 89, - "w": 82, - "x": 1351, - "y": 399 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14463825523853302, - "y_min": 0.5540555715560913, - "x_max": 0.1821470707654953, - "y_max": 0.6306495666503906 - }, - "confidence": 0.6062408089637756, - "label_id": 1 - }, - "h": 83, - "w": 72, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999938011169434, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.06162743270397186, - 0.8116871118545532, - 0.07303187996149063, - 0.005364124663174152, - 0.04828951880335808 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6062408089637756, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.47651737928390503, - 0.015156909823417664, - 0.18483412265777588, - 0.024587033316493034, - 0.29890456795692444 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 8733310976, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7056394815444946, - "y_min": 0.3684062659740448, - "x_max": 0.7473033666610718, - "y_max": 0.4502568542957306 - }, - "confidence": 0.9999834299087524, - "label_id": 1 - }, - "h": 88, - "w": 80, - "x": 1355, - "y": 398 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1442418396472931, - "y_min": 0.5549662113189697, - "x_max": 0.18143236637115479, - "y_max": 0.6303632259368896 - }, - "confidence": 0.5781416893005371, - "label_id": 1 - }, - "h": 82, - "w": 71, - "x": 277, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9999834299087524, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.03340817987918854, - 0.8938034772872925, - 0.04800980165600777, - 0.0027278498746454716, - 0.022050708532333374 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5781416893005371, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.47925713658332825, - 0.016321735456585884, - 0.2011996954679489, - 0.035639408975839615, - 0.2675820291042328 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 8766644224, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7066919803619385, - "y_min": 0.36512377858161926, - "x_max": 0.7473974227905273, - "y_max": 0.4485277831554413 - }, - "confidence": 0.999993085861206, - "label_id": 1 - }, - "h": 90, - "w": 78, - "x": 1357, - "y": 394 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.143916517496109, - "y_min": 0.5549414753913879, - "x_max": 0.18147727847099304, - "y_max": 0.6311208605766296 - }, - "confidence": 0.6058403849601746, - "label_id": 1 - }, - "h": 83, - "w": 72, - "x": 276, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.999993085861206, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.0509316511452198, - 0.8576036691665649, - 0.04555368050932884, - 0.002251172438263893, - 0.04365980252623558 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6058403849601746, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5457440614700317, - 0.02656801976263523, - 0.16876234114170074, - 0.022287651896476746, - 0.2366379201412201 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 8799977472, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7084901332855225, - "y_min": 0.3621458411216736, - "x_max": 0.7500402927398682, - "y_max": 0.44912153482437134 - }, - "confidence": 0.9999861717224121, - "label_id": 1 - }, - "h": 94, - "w": 80, - "x": 1360, - "y": 391 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14380186796188354, - "y_min": 0.5552036166191101, - "x_max": 0.1809697449207306, - "y_max": 0.6305785775184631 - }, - "confidence": 0.5747042298316956, - "label_id": 1 - }, - "h": 81, - "w": 71, - "x": 276, - "y": 600 - } - ], - "tensors": [ - { - "confidence": 0.9999861717224121, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.023559797555208206, - 0.9127161502838135, - 0.035827476531267166, - 0.00262354570440948, - 0.025273004546761513 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5747042298316956, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.528075098991394, - 0.017285192385315895, - 0.17740696668624878, - 0.028165679425001144, - 0.2490670382976532 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 8833310720, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7085210680961609, - "y_min": 0.3633018434047699, - "x_max": 0.7483169436454773, - "y_max": 0.4482833445072174 - }, - "confidence": 0.9999942779541016, - "label_id": 1 - }, - "h": 92, - "w": 77, - "x": 1360, - "y": 392 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14370006322860718, - "y_min": 0.5551707744598389, - "x_max": 0.1809559464454651, - "y_max": 0.6319440603256226 - }, - "confidence": 0.6196633577346802, - "label_id": 1 - }, - "h": 82, - "w": 71, - "x": 276, - "y": 600 - } - ], - "tensors": [ - { - "confidence": 0.9999942779541016, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.024397408589720726, - 0.9357145428657532, - 0.02226245030760765, - 0.001827875035814941, - 0.01579766720533371 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6196633577346802, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5347012281417847, - 0.018891379237174988, - 0.1451648324728012, - 0.017899608239531517, - 0.2833429276943207 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 8866643968, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.710609495639801, - "y_min": 0.36319848895072937, - "x_max": 0.7491618990898132, - "y_max": 0.4466339647769928 - }, - "confidence": 0.9999831914901733, - "label_id": 1 - }, - "h": 90, - "w": 74, - "x": 1364, - "y": 392 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14366506040096283, - "y_min": 0.5551109910011292, - "x_max": 0.1803692728281021, - "y_max": 0.632478654384613 - }, - "confidence": 0.6171556711196899, - "label_id": 1 - }, - "h": 83, - "w": 70, - "x": 276, - "y": 600 - } - ], - "tensors": [ - { - "confidence": 0.9999831914901733, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.02707984670996666, - 0.884551465511322, - 0.03574829176068306, - 0.003262531477957964, - 0.04935788735747337 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6171556711196899, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5309106111526489, - 0.027934586629271507, - 0.19670525193214417, - 0.02049165591597557, - 0.22395791113376617 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 8899977216, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.711689829826355, - "y_min": 0.3618752956390381, - "x_max": 0.7503265142440796, - "y_max": 0.4478272795677185 - }, - "confidence": 0.9999066591262817, - "label_id": 1 - }, - "h": 93, - "w": 75, - "x": 1366, - "y": 391 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14328965544700623, - "y_min": 0.5550957918167114, - "x_max": 0.179978609085083, - "y_max": 0.6332790851593018 - }, - "confidence": 0.5802726745605469, - "label_id": 1 - }, - "h": 84, - "w": 71, - "x": 275, - "y": 600 - } - ], - "tensors": [ - { - "confidence": 0.9999066591262817, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.013853521086275578, - 0.9348524212837219, - 0.025282256305217743, - 0.0022897657472640276, - 0.023721998557448387 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5802726745605469, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4825723469257355, - 0.021663617342710495, - 0.16626380383968353, - 0.013606586493551731, - 0.31589365005493164 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 8933310464, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7125149369239807, - "y_min": 0.36433106660842896, - "x_max": 0.750690758228302, - "y_max": 0.449222207069397 - }, - "confidence": 0.9998167157173157, - "label_id": 1 - }, - "h": 92, - "w": 73, - "x": 1368, - "y": 393 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14305640757083893, - "y_min": 0.5552595853805542, - "x_max": 0.17965750396251678, - "y_max": 0.6325987577438354 - }, - "confidence": 0.5189329981803894, - "label_id": 1 - }, - "h": 83, - "w": 70, - "x": 275, - "y": 600 - } - ], - "tensors": [ - { - "confidence": 0.9998167157173157, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.014470323920249939, - 0.909713089466095, - 0.03993424400687218, - 0.002541731111705303, - 0.033340614289045334 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5189329981803894, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5380374789237976, - 0.022650402039289474, - 0.16571174561977386, - 0.019582627341151237, - 0.25401782989501953 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 8966643712, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7125080227851868, - "y_min": 0.36383211612701416, - "x_max": 0.7504902482032776, - "y_max": 0.4498770833015442 - }, - "confidence": 0.9998189806938171, - "label_id": 1 - }, - "h": 93, - "w": 73, - "x": 1368, - "y": 393 - } - ], - "tensors": [ - { - "confidence": 0.9998189806938171, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.0171666219830513, - 0.8454915881156921, - 0.05992339923977852, - 0.0029056770727038383, - 0.07451275736093521 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 8999976960, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7113662958145142, - "y_min": 0.3659592866897583, - "x_max": 0.7502186298370361, - "y_max": 0.45205044746398926 - }, - "confidence": 0.9999486207962036, - "label_id": 1 - }, - "h": 93, - "w": 74, - "x": 1366, - "y": 395 - } - ], - "tensors": [ - { - "confidence": 0.9999486207962036, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.015508132055401802, - 0.8621183037757874, - 0.040810633450746536, - 0.0030303364619612694, - 0.07853259146213531 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 9033310208, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7111058235168457, - "y_min": 0.36730536818504333, - "x_max": 0.7503353357315063, - "y_max": 0.4501970708370209 - }, - "confidence": 0.9999614953994751, - "label_id": 1 - }, - "h": 89, - "w": 76, - "x": 1365, - "y": 397 - } - ], - "tensors": [ - { - "confidence": 0.9999614953994751, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.027143467217683792, - 0.8329402804374695, - 0.042403556406497955, - 0.0027219641488045454, - 0.09479070454835892 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 9066643456, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7117688059806824, - "y_min": 0.36812615394592285, - "x_max": 0.7506731152534485, - "y_max": 0.4541323184967041 - }, - "confidence": 0.9997681975364685, - "label_id": 1 - }, - "h": 92, - "w": 74, - "x": 1367, - "y": 398 - } - ], - "tensors": [ - { - "confidence": 0.9997681975364685, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09434981644153595, - 0.40800437331199646, - 0.1274448186159134, - 0.0028680390678346157, - 0.3673328757286072 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 9099976704, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.711366593837738, - "y_min": 0.37062305212020874, - "x_max": 0.7508770823478699, - "y_max": 0.45644843578338623 - }, - "confidence": 0.9995998740196228, - "label_id": 1 - }, - "h": 93, - "w": 76, - "x": 1366, - "y": 400 - } - ], - "tensors": [ - { - "confidence": 0.9995998740196228, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.10782124847173691, - 0.34936442971229553, - 0.10108359158039093, - 0.0038582379929721355, - 0.4378724992275238 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 9133309952, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7124040722846985, - "y_min": 0.37264561653137207, - "x_max": 0.751481831073761, - "y_max": 0.4614344835281372 - }, - "confidence": 0.9494606256484985, - "label_id": 1 - }, - "h": 96, - "w": 75, - "x": 1368, - "y": 402 - } - ], - "tensors": [ - { - "confidence": 0.9494606256484985, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.07035855203866959, - 0.6636510491371155, - 0.06881719082593918, - 0.0025291871279478073, - 0.19464406371116638 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 9166643200, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7116809487342834, - "y_min": 0.37239497900009155, - "x_max": 0.7497164607048035, - "y_max": 0.46326369047164917 - }, - "confidence": 0.939480721950531, - "label_id": 1 - }, - "h": 98, - "w": 73, - "x": 1366, - "y": 402 - } - ], - "tensors": [ - { - "confidence": 0.939480721950531, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.06075424328446388, - 0.29126688838005066, - 0.096034936606884, - 0.004067007917910814, - 0.5478768348693848 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 9199976448, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7094876766204834, - "y_min": 0.3735300302505493, - "x_max": 0.7484219074249268, - "y_max": 0.46179234981536865 - }, - "confidence": 0.9911365509033203, - "label_id": 1 - }, - "h": 96, - "w": 75, - "x": 1362, - "y": 403 - } - ], - "tensors": [ - { - "confidence": 0.9911365509033203, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09342411160469055, - 0.3085463047027588, - 0.11361196637153625, - 0.008161702193319798, - 0.47625598311424255 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 9233309696, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7101398706436157, - "y_min": 0.3734079599380493, - "x_max": 0.7472784519195557, - "y_max": 0.4638461470603943 - }, - "confidence": 0.9436604380607605, - "label_id": 1 - }, - "h": 98, - "w": 72, - "x": 1363, - "y": 403 - } - ], - "tensors": [ - { - "confidence": 0.9436604380607605, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.11446001380681992, - 0.27073654532432556, - 0.13939517736434937, - 0.006767553742974997, - 0.4686407148838043 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 9266642944, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7082189917564392, - "y_min": 0.37589147686958313, - "x_max": 0.7470542788505554, - "y_max": 0.46438613533973694 - }, - "confidence": 0.8744286298751831, - "label_id": 1 - }, - "h": 96, - "w": 74, - "x": 1360, - "y": 406 - } - ], - "tensors": [ - { - "confidence": 0.8744286298751831, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1793418973684311, - 0.11894039809703827, - 0.1992437094449997, - 0.008340302854776382, - 0.49413368105888367 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 9299976192, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.706991970539093, - "y_min": 0.37694618105888367, - "x_max": 0.7464327216148376, - "y_max": 0.46534255146980286 - }, - "confidence": 0.7726202607154846, - "label_id": 1 - }, - "h": 96, - "w": 76, - "x": 1357, - "y": 407 - } - ], - "tensors": [ - { - "confidence": 0.7726202607154846, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1330552101135254, - 0.0938073992729187, - 0.11247952282428741, - 0.010600604116916656, - 0.6500571966171265 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 9333309440, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.706468939781189, - "y_min": 0.37736743688583374, - "x_max": 0.7459094524383545, - "y_max": 0.46500545740127563 - }, - "confidence": 0.9111021757125854, - "label_id": 1 - }, - "h": 94, - "w": 76, - "x": 1356, - "y": 408 - } - ], - "tensors": [ - { - "confidence": 0.9111021757125854, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.104036845266819, - 0.11827653646469116, - 0.07589785009622574, - 0.019522717222571373, - 0.6822660565376282 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 9366642688, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7067824006080627, - "y_min": 0.3763401210308075, - "x_max": 0.7461736798286438, - "y_max": 0.46568557620048523 - }, - "confidence": 0.8609703779220581, - "label_id": 1 - }, - "h": 97, - "w": 76, - "x": 1357, - "y": 406 - } - ], - "tensors": [ - { - "confidence": 0.8609703779220581, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09071727097034454, - 0.17713811993598938, - 0.08396422117948532, - 0.015975281596183777, - 0.6322051286697388 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 9399975936, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7063995599746704, - "y_min": 0.3759693205356598, - "x_max": 0.7452124357223511, - "y_max": 0.46745428442955017 - }, - "confidence": 0.8498976826667786, - "label_id": 1 - }, - "h": 99, - "w": 75, - "x": 1356, - "y": 406 - } - ], - "tensors": [ - { - "confidence": 0.8498976826667786, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.11968974769115448, - 0.052115123718976974, - 0.07577056437730789, - 0.010188587941229343, - 0.7422358989715576 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 9433309184, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7051862478256226, - "y_min": 0.3768617510795593, - "x_max": 0.7453292608261108, - "y_max": 0.4678928852081299 - }, - "confidence": 0.8134046792984009, - "label_id": 1 - }, - "h": 98, - "w": 77, - "x": 1354, - "y": 407 - } - ], - "tensors": [ - { - "confidence": 0.8134046792984009, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.10730407387018204, - 0.034747038036584854, - 0.057079050689935684, - 0.00984956044703722, - 0.7910202741622925 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 9466642432, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7044547200202942, - "y_min": 0.37678825855255127, - "x_max": 0.7448366284370422, - "y_max": 0.4676659107208252 - }, - "confidence": 0.8009932637214661, - "label_id": 1 - }, - "h": 98, - "w": 77, - "x": 1353, - "y": 407 - } - ], - "tensors": [ - { - "confidence": 0.8009932637214661, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.13316112756729126, - 0.03462063521146774, - 0.057703595608472824, - 0.007984242402017117, - 0.766530454158783 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 9499975680, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7040436267852783, - "y_min": 0.37680286169052124, - "x_max": 0.744231104850769, - "y_max": 0.4670693874359131 - }, - "confidence": 0.8151628971099854, - "label_id": 1 - }, - "h": 97, - "w": 77, - "x": 1352, - "y": 407 - } - ], - "tensors": [ - { - "confidence": 0.8151628971099854, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.19782158732414246, - 0.02893088199198246, - 0.05982249602675438, - 0.007418575696647167, - 0.7060064673423767 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 9533308928, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7038328051567078, - "y_min": 0.37703749537467957, - "x_max": 0.7443192601203918, - "y_max": 0.4668228328227997 - }, - "confidence": 0.8460785746574402, - "label_id": 1 - }, - "h": 97, - "w": 78, - "x": 1351, - "y": 407 - } - ], - "tensors": [ - { - "confidence": 0.8460785746574402, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.21800099313259125, - 0.01704980805516243, - 0.05022439733147621, - 0.0075707221403717995, - 0.7071540355682373 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 9566642176, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7041079998016357, - "y_min": 0.37757211923599243, - "x_max": 0.7443170547485352, - "y_max": 0.46595293283462524 - }, - "confidence": 0.8808597922325134, - "label_id": 1 - }, - "h": 95, - "w": 77, - "x": 1352, - "y": 408 - } - ], - "tensors": [ - { - "confidence": 0.8808597922325134, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.11929136514663696, - 0.01642087660729885, - 0.04724501445889473, - 0.005498526152223349, - 0.8115442395210266 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 9599975424, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7045588493347168, - "y_min": 0.37738192081451416, - "x_max": 0.7444323301315308, - "y_max": 0.46566706895828247 - }, - "confidence": 0.9395037293434143, - "label_id": 1 - }, - "h": 95, - "w": 76, - "x": 1353, - "y": 408 - } - ], - "tensors": [ - { - "confidence": 0.9395037293434143, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.12393516302108765, - 0.04014890268445015, - 0.0563475675880909, - 0.004526701755821705, - 0.7750417590141296 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 9633308672, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7047199010848999, - "y_min": 0.37724316120147705, - "x_max": 0.7444229125976562, - "y_max": 0.46512657403945923 - }, - "confidence": 0.9542719721794128, - "label_id": 1 - }, - "h": 95, - "w": 76, - "x": 1353, - "y": 407 - } - ], - "tensors": [ - { - "confidence": 0.9542719721794128, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.15566080808639526, - 0.05790877342224121, - 0.057435281574726105, - 0.00634671188890934, - 0.7226483821868896 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 9666641920, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7046748995780945, - "y_min": 0.377139687538147, - "x_max": 0.7443622946739197, - "y_max": 0.4646516442298889 - }, - "confidence": 0.9637159705162048, - "label_id": 1 - }, - "h": 95, - "w": 76, - "x": 1353, - "y": 407 - } - ], - "tensors": [ - { - "confidence": 0.9637159705162048, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.14800693094730377, - 0.048925042152404785, - 0.05409536510705948, - 0.004435042850673199, - 0.7445376515388489 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 9699975168, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7052358984947205, - "y_min": 0.37658846378326416, - "x_max": 0.7448212504386902, - "y_max": 0.4652367830276489 - }, - "confidence": 0.9535242915153503, - "label_id": 1 - }, - "h": 95, - "w": 76, - "x": 1354, - "y": 407 - } - ], - "tensors": [ - { - "confidence": 0.9535242915153503, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.14731557667255402, - 0.049428291618824005, - 0.07398077845573425, - 0.004670637659728527, - 0.7246046662330627 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 9733308416, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7056812047958374, - "y_min": 0.37666600942611694, - "x_max": 0.7451093196868896, - "y_max": 0.46507197618484497 - }, - "confidence": 0.9405059218406677, - "label_id": 1 - }, - "h": 95, - "w": 76, - "x": 1355, - "y": 407 - } - ], - "tensors": [ - { - "confidence": 0.9405059218406677, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1775559037923813, - 0.08843587338924408, - 0.0817793756723404, - 0.0071397460997104645, - 0.6450891494750977 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 9766641664, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7056190967559814, - "y_min": 0.3763660788536072, - "x_max": 0.7449653148651123, - "y_max": 0.4649707078933716 - }, - "confidence": 0.9368910789489746, - "label_id": 1 - }, - "h": 96, - "w": 75, - "x": 1355, - "y": 406 - } - ], - "tensors": [ - { - "confidence": 0.9368910789489746, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.10194845497608185, - 0.060725852847099304, - 0.07237593084573746, - 0.007390172686427832, - 0.7575596570968628 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 9799974912, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7032290101051331, - "y_min": 0.37677428126335144, - "x_max": 0.742779552936554, - "y_max": 0.46565642952919006 - }, - "confidence": 0.8651185631752014, - "label_id": 1 - }, - "h": 96, - "w": 76, - "x": 1350, - "y": 407 - } - ], - "tensors": [ - { - "confidence": 0.8651185631752014, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.17431113123893738, - 0.08468082547187805, - 0.07400491833686829, - 0.00649834843352437, - 0.6605046987533569 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 9833308160, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7014238238334656, - "y_min": 0.37700626254081726, - "x_max": 0.7412144541740417, - "y_max": 0.46506789326667786 - }, - "confidence": 0.891329824924469, - "label_id": 1 - }, - "h": 95, - "w": 76, - "x": 1347, - "y": 407 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.142659530043602, - "y_min": 0.5558006167411804, - "x_max": 0.1794753223657608, - "y_max": 0.6323127150535583 - }, - "confidence": 0.5089229941368103, - "label_id": 1 - }, - "h": 83, - "w": 71, - "x": 274, - "y": 600 - } - ], - "tensors": [ - { - "confidence": 0.891329824924469, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1281069964170456, - 0.06037421151995659, - 0.07131583243608475, - 0.011434277519583702, - 0.7287687063217163 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5089229941368103, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5486456155776978, - 0.011232933029532433, - 0.14367632567882538, - 0.018898122012615204, - 0.27754706144332886 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 9866641408, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7012344002723694, - "y_min": 0.374690979719162, - "x_max": 0.7399527430534363, - "y_max": 0.4667370617389679 - }, - "confidence": 0.954562783241272, - "label_id": 1 - }, - "h": 99, - "w": 75, - "x": 1346, - "y": 405 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14327721297740936, - "y_min": 0.5558850169181824, - "x_max": 0.18019013106822968, - "y_max": 0.6313186287879944 - }, - "confidence": 0.5538846254348755, - "label_id": 1 - }, - "h": 82, - "w": 71, - "x": 275, - "y": 600 - } - ], - "tensors": [ - { - "confidence": 0.954562783241272, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.11554503440856934, - 0.12173239886760712, - 0.09089961647987366, - 0.010898859240114689, - 0.6609241366386414 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5538846254348755, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4961077868938446, - 0.008706172928214073, - 0.14453841745853424, - 0.02772505395114422, - 0.32292258739471436 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 9899974656, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6989627480506897, - "y_min": 0.3764313757419586, - "x_max": 0.7381916642189026, - "y_max": 0.46351006627082825 - }, - "confidence": 0.9542220830917358, - "label_id": 1 - }, - "h": 94, - "w": 75, - "x": 1342, - "y": 407 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14353269338607788, - "y_min": 0.555126965045929, - "x_max": 0.18119242787361145, - "y_max": 0.6315184235572815 - }, - "confidence": 0.5853928327560425, - "label_id": 1 - }, - "h": 82, - "w": 72, - "x": 276, - "y": 600 - } - ], - "tensors": [ - { - "confidence": 0.9542220830917358, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.12865762412548065, - 0.10655232518911362, - 0.06523478031158447, - 0.03030024841427803, - 0.6692550182342529 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5853928327560425, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4529436528682709, - 0.006361251696944237, - 0.15358301997184753, - 0.023649636656045914, - 0.3634624183177948 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 9933307904, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.698278546333313, - "y_min": 0.37571239471435547, - "x_max": 0.7377886772155762, - "y_max": 0.46339869499206543 - }, - "confidence": 0.9962170720100403, - "label_id": 1 - }, - "h": 94, - "w": 76, - "x": 1341, - "y": 406 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1434451788663864, - "y_min": 0.5553521513938904, - "x_max": 0.18092401325702667, - "y_max": 0.63160640001297 - }, - "confidence": 0.5879875421524048, - "label_id": 1 - }, - "h": 82, - "w": 72, - "x": 275, - "y": 600 - } - ], - "tensors": [ - { - "confidence": 0.9962170720100403, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1345636248588562, - 0.2726084291934967, - 0.07590070366859436, - 0.022666212171316147, - 0.49426108598709106 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5879875421524048, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4652941823005676, - 0.00999960582703352, - 0.16353969275951385, - 0.03314211592078209, - 0.32802435755729675 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 9966641152, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6956431865692139, - "y_min": 0.3748417794704437, - "x_max": 0.7355414628982544, - "y_max": 0.46548691391944885 - }, - "confidence": 0.9384557604789734, - "label_id": 1 - }, - "h": 98, - "w": 76, - "x": 1336, - "y": 405 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1435754895210266, - "y_min": 0.5548688173294067, - "x_max": 0.1812880039215088, - "y_max": 0.6310141086578369 - }, - "confidence": 0.5745856761932373, - "label_id": 1 - }, - "h": 82, - "w": 72, - "x": 276, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9384557604789734, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.15250806510448456, - 0.2629931569099426, - 0.10031267255544662, - 0.016374073922634125, - 0.4678120017051697 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5745856761932373, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4758288264274597, - 0.00820948276668787, - 0.13516288995742798, - 0.057355787605047226, - 0.3234429955482483 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 9999974400, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6946668028831482, - "y_min": 0.3740456998348236, - "x_max": 0.7345250248908997, - "y_max": 0.4671715795993805 - }, - "confidence": 0.936006486415863, - "label_id": 1 - }, - "h": 101, - "w": 76, - "x": 1334, - "y": 404 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14353398978710175, - "y_min": 0.5550031661987305, - "x_max": 0.1813669353723526, - "y_max": 0.6319955587387085 - }, - "confidence": 0.6062869429588318, - "label_id": 1 - }, - "h": 84, - "w": 72, - "x": 276, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.936006486415863, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.19135409593582153, - 0.2662504315376282, - 0.14020711183547974, - 0.012445449829101562, - 0.3897429406642914 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6062869429588318, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4992744028568268, - 0.013094582594931126, - 0.16761015355587006, - 0.03960246592760086, - 0.2804183065891266 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 10033307648, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6919185519218445, - "y_min": 0.3744511902332306, - "x_max": 0.7315852046012878, - "y_max": 0.4660286009311676 - }, - "confidence": 0.7717119455337524, - "label_id": 1 - }, - "h": 99, - "w": 77, - "x": 1328, - "y": 404 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14348247647285461, - "y_min": 0.5549761056900024, - "x_max": 0.18128231167793274, - "y_max": 0.6319330930709839 - }, - "confidence": 0.59022057056427, - "label_id": 1 - }, - "h": 83, - "w": 73, - "x": 275, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.7717119455337524, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.10331931710243225, - 0.08477134257555008, - 0.0811387151479721, - 0.01575881615281105, - 0.7150118350982666 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.59022057056427, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.47898489236831665, - 0.012107139453291893, - 0.14640094339847565, - 0.025626523420214653, - 0.33688050508499146 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 10066640896, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6910268068313599, - "y_min": 0.37393954396247864, - "x_max": 0.7317705154418945, - "y_max": 0.46544280648231506 - }, - "confidence": 0.8364666104316711, - "label_id": 1 - }, - "h": 99, - "w": 78, - "x": 1327, - "y": 404 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1437254548072815, - "y_min": 0.5548738837242126, - "x_max": 0.1815633475780487, - "y_max": 0.6318908333778381 - }, - "confidence": 0.6086655259132385, - "label_id": 1 - }, - "h": 83, - "w": 73, - "x": 276, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.8364666104316711, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.13869315385818481, - 0.14406229555606842, - 0.0950714647769928, - 0.025632787495851517, - 0.5965403318405151 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6086655259132385, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.44959282875061035, - 0.010903970338404179, - 0.16766338050365448, - 0.0279835294932127, - 0.34385624527931213 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 10099974144, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1439794898033142, - "y_min": 0.5544849634170532, - "x_max": 0.18196022510528564, - "y_max": 0.6321451663970947 - }, - "confidence": 0.611081063747406, - "label_id": 1 - }, - "h": 84, - "w": 73, - "x": 276, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.611081063747406, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.49077925086021423, - 0.013533367775380611, - 0.14379103481769562, - 0.03378540277481079, - 0.3181109130382538 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 10133307392, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1441209763288498, - "y_min": 0.5544543266296387, - "x_max": 0.18207527697086334, - "y_max": 0.6319453716278076 - }, - "confidence": 0.617305338382721, - "label_id": 1 - }, - "h": 84, - "w": 73, - "x": 277, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.617305338382721, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.47565096616744995, - 0.013606702908873558, - 0.15561197698116302, - 0.030965663492679596, - 0.3241647481918335 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 10166640640, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.14396710693836212, - "y_min": 0.5544753670692444, - "x_max": 0.18210051953792572, - "y_max": 0.6324809193611145 - }, - "confidence": 0.6194043159484863, - "label_id": 1 - }, - "h": 84, - "w": 74, - "x": 276, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.6194043159484863, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.49996089935302734, - 0.014732669107615948, - 0.13989798724651337, - 0.03183665871620178, - 0.31357184052467346 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 10199973888, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.14400532841682434, - "y_min": 0.5545260310173035, - "x_max": 0.1820460855960846, - "y_max": 0.6323292851448059 - }, - "confidence": 0.6282048225402832, - "label_id": 1 - }, - "h": 84, - "w": 74, - "x": 276, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.6282048225402832, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.49144163727760315, - 0.013999787159264088, - 0.1513461470603943, - 0.03186699375510216, - 0.3113454580307007 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 10233307136, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.14401596784591675, - "y_min": 0.5545378923416138, - "x_max": 0.18206113576889038, - "y_max": 0.6323981285095215 - }, - "confidence": 0.6338697671890259, - "label_id": 1 - }, - "h": 84, - "w": 73, - "x": 277, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.6338697671890259, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4888112545013428, - 0.01391564216464758, - 0.17419998347759247, - 0.03323177993297577, - 0.2898413836956024 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 10266640384, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.14390747249126434, - "y_min": 0.554520845413208, - "x_max": 0.18205071985721588, - "y_max": 0.6325893402099609 - }, - "confidence": 0.6400575041770935, - "label_id": 1 - }, - "h": 84, - "w": 74, - "x": 276, - "y": 599 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.6913547515869141, - "y_min": 0.3747390806674957, - "x_max": 0.7319620847702026, - "y_max": 0.467317134141922 - }, - "confidence": 0.6051966547966003, - "label_id": 1 - }, - "h": 100, - "w": 78, - "x": 1327, - "y": 405 - } - ], - "tensors": [ - { - "confidence": 0.6400575041770935, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4934271574020386, - 0.014765831641852856, - 0.16991393268108368, - 0.029843762516975403, - 0.292049378156662 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6051966547966003, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2637965679168701, - 0.02521001733839512, - 0.07652761787176132, - 0.045098692178726196, - 0.5893670916557312 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 10299973632, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6921138763427734, - "y_min": 0.3741287291049957, - "x_max": 0.7322146892547607, - "y_max": 0.46806105971336365 - }, - "confidence": 0.6863184571266174, - "label_id": 1 - }, - "h": 102, - "w": 77, - "x": 1329, - "y": 404 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14406265318393707, - "y_min": 0.5547511577606201, - "x_max": 0.18180961906909943, - "y_max": 0.6322461366653442 - }, - "confidence": 0.6280994415283203, - "label_id": 1 - }, - "h": 84, - "w": 72, - "x": 277, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.6863184571266174, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.28525999188423157, - 0.020276658236980438, - 0.09703882038593292, - 0.03407656401395798, - 0.5633479356765747 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6280994415283203, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5056424140930176, - 0.01650608517229557, - 0.1769297868013382, - 0.024632638320326805, - 0.2762889862060547 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 10333306880, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6959325075149536, - "y_min": 0.37354159355163574, - "x_max": 0.7353607416152954, - "y_max": 0.469097375869751 - }, - "confidence": 0.8822245597839355, - "label_id": 1 - }, - "h": 104, - "w": 76, - "x": 1336, - "y": 403 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14410318434238434, - "y_min": 0.554830014705658, - "x_max": 0.1815284937620163, - "y_max": 0.6319705843925476 - }, - "confidence": 0.6167922616004944, - "label_id": 1 - }, - "h": 84, - "w": 72, - "x": 277, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.8822245597839355, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.20606176555156708, - 0.02070094645023346, - 0.05760675296187401, - 0.019739439710974693, - 0.6958910226821899 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6167922616004944, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.42426812648773193, - 0.01646408624947071, - 0.24743515253067017, - 0.012632045894861221, - 0.29920053482055664 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 10366640128, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6956356167793274, - "y_min": 0.37335023283958435, - "x_max": 0.7358589768409729, - "y_max": 0.4689110815525055 - }, - "confidence": 0.8868314027786255, - "label_id": 1 - }, - "h": 103, - "w": 77, - "x": 1336, - "y": 403 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1441706418991089, - "y_min": 0.5546351671218872, - "x_max": 0.18147960305213928, - "y_max": 0.6313527822494507 - }, - "confidence": 0.6090033650398254, - "label_id": 1 - }, - "h": 83, - "w": 71, - "x": 277, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.8868314027786255, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.15150602161884308, - 0.012872381135821342, - 0.0724756121635437, - 0.03831024467945099, - 0.7248356938362122 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6090033650398254, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.48453041911125183, - 0.017462681978940964, - 0.21423226594924927, - 0.017308451235294342, - 0.2664661705493927 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 10399973376, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6984123587608337, - "y_min": 0.3756253123283386, - "x_max": 0.737826406955719, - "y_max": 0.4640827775001526 - }, - "confidence": 0.985360324382782, - "label_id": 1 - }, - "h": 95, - "w": 76, - "x": 1341, - "y": 406 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14437991380691528, - "y_min": 0.5544021725654602, - "x_max": 0.1818941831588745, - "y_max": 0.631235659122467 - }, - "confidence": 0.614499568939209, - "label_id": 1 - }, - "h": 83, - "w": 72, - "x": 277, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.985360324382782, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09815169870853424, - 0.014211186207830906, - 0.07718711346387863, - 0.051125794649124146, - 0.7593242526054382 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.614499568939209, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4565599262714386, - 0.017243778333067894, - 0.2087993025779724, - 0.01634325459599495, - 0.3010537326335907 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 10433306624, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6988041996955872, - "y_min": 0.37672334909439087, - "x_max": 0.738334596157074, - "y_max": 0.4645792841911316 - }, - "confidence": 0.9276991486549377, - "label_id": 1 - }, - "h": 95, - "w": 76, - "x": 1342, - "y": 407 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14454396069049835, - "y_min": 0.5543625354766846, - "x_max": 0.18187154829502106, - "y_max": 0.6306360960006714 - }, - "confidence": 0.6061710119247437, - "label_id": 1 - }, - "h": 82, - "w": 71, - "x": 278, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9276991486549377, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.12429196387529373, - 0.010469521395862103, - 0.041805200278759, - 0.036316607147455215, - 0.7871167659759521 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6061710119247437, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.49471983313560486, - 0.0164097398519516, - 0.1910894364118576, - 0.02166087180376053, - 0.276120126247406 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 10466639872, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7000986337661743, - "y_min": 0.37559330463409424, - "x_max": 0.7396056652069092, - "y_max": 0.4671350121498108 - }, - "confidence": 0.9085381627082825, - "label_id": 1 - }, - "h": 99, - "w": 76, - "x": 1344, - "y": 406 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1444045752286911, - "y_min": 0.5542970895767212, - "x_max": 0.18184147775173187, - "y_max": 0.6311513185501099 - }, - "confidence": 0.6354771852493286, - "label_id": 1 - }, - "h": 83, - "w": 72, - "x": 277, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9085381627082825, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.12348707765340805, - 0.008601573295891285, - 0.0488579124212265, - 0.016507631167769432, - 0.8025459051132202 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6354771852493286, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.49051690101623535, - 0.022995978593826294, - 0.20853464305400848, - 0.017713746055960655, - 0.26023876667022705 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 10499973120, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7024781107902527, - "y_min": 0.3771306276321411, - "x_max": 0.7414416670799255, - "y_max": 0.46479737758636475 - }, - "confidence": 0.8593965172767639, - "label_id": 1 - }, - "h": 95, - "w": 75, - "x": 1349, - "y": 407 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1441597193479538, - "y_min": 0.5543448328971863, - "x_max": 0.1817692667245865, - "y_max": 0.6312815546989441 - }, - "confidence": 0.624751627445221, - "label_id": 1 - }, - "h": 83, - "w": 72, - "x": 277, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.8593965172767639, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.08244461566209793, - 0.010839879512786865, - 0.0737122967839241, - 0.017755502834916115, - 0.8152477741241455 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.624751627445221, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5287702083587646, - 0.029769416898489, - 0.16231781244277954, - 0.017703944817185402, - 0.26143866777420044 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 10533306368, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7050544619560242, - "y_min": 0.3768378794193268, - "x_max": 0.7450510859489441, - "y_max": 0.4670303165912628 - }, - "confidence": 0.8190975189208984, - "label_id": 1 - }, - "h": 97, - "w": 76, - "x": 1354, - "y": 407 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1441287249326706, - "y_min": 0.5545700192451477, - "x_max": 0.18137480318546295, - "y_max": 0.6315514445304871 - }, - "confidence": 0.6225490570068359, - "label_id": 1 - }, - "h": 83, - "w": 71, - "x": 277, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.8190975189208984, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09941597282886505, - 0.02566487528383732, - 0.09414010494947433, - 0.013813185505568981, - 0.7669658660888672 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6225490570068359, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5380945801734924, - 0.025205058977007866, - 0.16657687723636627, - 0.019195666536688805, - 0.2509278655052185 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 10566639616, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1438790261745453, - "y_min": 0.5548154711723328, - "x_max": 0.1811874508857727, - "y_max": 0.6319807171821594 - }, - "confidence": 0.6281426548957825, - "label_id": 1 - }, - "h": 84, - "w": 72, - "x": 276, - "y": 599 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.7092656493186951, - "y_min": 0.3744097948074341, - "x_max": 0.7463840842247009, - "y_max": 0.46753233671188354 - }, - "confidence": 0.621558666229248, - "label_id": 1 - }, - "h": 101, - "w": 71, - "x": 1362, - "y": 404 - } - ], - "tensors": [ - { - "confidence": 0.6281426548957825, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5690727829933167, - 0.031494103372097015, - 0.16111178696155548, - 0.018758144229650497, - 0.2195630967617035 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.621558666229248, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.18170590698719025, - 0.028006000444293022, - 0.18210247159004211, - 0.019558673724532127, - 0.5886269807815552 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 10599972864, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1437995284795761, - "y_min": 0.5547490119934082, - "x_max": 0.1809537559747696, - "y_max": 0.6325101852416992 - }, - "confidence": 0.6162899732589722, - "label_id": 1 - }, - "h": 84, - "w": 71, - "x": 276, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.6162899732589722, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5604385733604431, - 0.024137631058692932, - 0.1859005093574524, - 0.01737399958074093, - 0.2121492475271225 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 10633306112, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.14348047971725464, - "y_min": 0.5551446080207825, - "x_max": 0.18052491545677185, - "y_max": 0.6328817009925842 - }, - "confidence": 0.6071615815162659, - "label_id": 1 - }, - "h": 84, - "w": 72, - "x": 275, - "y": 600 - } - ], - "tensors": [ - { - "confidence": 0.6071615815162659, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5196448564529419, - 0.01378182414919138, - 0.14158321917057037, - 0.014681152999401093, - 0.31030893325805664 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 10666639360, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.14340025186538696, - "y_min": 0.5549901127815247, - "x_max": 0.18022370338439941, - "y_max": 0.6326557993888855 - }, - "confidence": 0.5850018262863159, - "label_id": 1 - }, - "h": 84, - "w": 71, - "x": 275, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.5850018262863159, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5603232979774475, - 0.026754584163427353, - 0.1379043012857437, - 0.02185218036174774, - 0.253165602684021 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 10699972608, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.14303790032863617, - "y_min": 0.5551748871803284, - "x_max": 0.17958571016788483, - "y_max": 0.633619487285614 - }, - "confidence": 0.5779129266738892, - "label_id": 1 - }, - "h": 84, - "w": 70, - "x": 275, - "y": 600 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.7117196321487427, - "y_min": 0.39232876896858215, - "x_max": 0.7515441179275513, - "y_max": 0.4706769287586212 - }, - "confidence": 0.5271337032318115, - "label_id": 1 - }, - "h": 84, - "w": 76, - "x": 1367, - "y": 424 - } - ], - "tensors": [ - { - "confidence": 0.5779129266738892, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5892447829246521, - 0.020582005381584167, - 0.12172901630401611, - 0.015066246502101421, - 0.25337791442871094 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5271337032318115, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.16273720562458038, - 0.06787597388029099, - 0.1695135533809662, - 0.012470746412873268, - 0.5874025225639343 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 10733305856, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7123784422874451, - "y_min": 0.3946317434310913, - "x_max": 0.7517915368080139, - "y_max": 0.47132086753845215 - }, - "confidence": 0.6465246081352234, - "label_id": 1 - }, - "h": 83, - "w": 75, - "x": 1368, - "y": 426 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14290061593055725, - "y_min": 0.5553823113441467, - "x_max": 0.17911770939826965, - "y_max": 0.6334326863288879 - }, - "confidence": 0.5467643141746521, - "label_id": 1 - }, - "h": 84, - "w": 70, - "x": 274, - "y": 600 - } - ], - "tensors": [ - { - "confidence": 0.6465246081352234, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1665697544813156, - 0.051432009786367416, - 0.14904668927192688, - 0.013214562088251114, - 0.6197369694709778 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5467643141746521, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5633836984634399, - 0.021107511594891548, - 0.14945858716964722, - 0.015605088323354721, - 0.2504451274871826 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 10766639104, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7124086022377014, - "y_min": 0.39415284991264343, - "x_max": 0.752244770526886, - "y_max": 0.4739443361759186 - }, - "confidence": 0.7643720507621765, - "label_id": 1 - }, - "h": 86, - "w": 76, - "x": 1368, - "y": 426 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14264172315597534, - "y_min": 0.5555375814437866, - "x_max": 0.17879724502563477, - "y_max": 0.6342495679855347 - }, - "confidence": 0.5474158525466919, - "label_id": 1 - }, - "h": 85, - "w": 69, - "x": 274, - "y": 600 - } - ], - "tensors": [ - { - "confidence": 0.7643720507621765, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2145276516675949, - 0.05704745650291443, - 0.25127550959587097, - 0.03930750489234924, - 0.43784189224243164 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5474158525466919, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5466452240943909, - 0.017666971310973167, - 0.1618650108575821, - 0.011147934943437576, - 0.26267480850219727 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 10799972352, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7119905948638916, - "y_min": 0.3944985270500183, - "x_max": 0.7513408660888672, - "y_max": 0.47482359409332275 - }, - "confidence": 0.8626915812492371, - "label_id": 1 - }, - "h": 87, - "w": 76, - "x": 1367, - "y": 426 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14233696460723877, - "y_min": 0.5555612444877625, - "x_max": 0.1786758303642273, - "y_max": 0.6336027979850769 - }, - "confidence": 0.5105471014976501, - "label_id": 1 - }, - "h": 84, - "w": 70, - "x": 273, - "y": 600 - } - ], - "tensors": [ - { - "confidence": 0.8626915812492371, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.25586143136024475, - 0.07501470297574997, - 0.21092906594276428, - 0.05446457862854004, - 0.40373021364212036 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5105471014976501, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.53774094581604, - 0.01678803376853466, - 0.1306503266096115, - 0.0164337120950222, - 0.29838696122169495 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 10833305600, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7113273739814758, - "y_min": 0.39516428112983704, - "x_max": 0.75175541639328, - "y_max": 0.4755006730556488 - }, - "confidence": 0.8871623873710632, - "label_id": 1 - }, - "h": 87, - "w": 77, - "x": 1366, - "y": 427 - } - ], - "tensors": [ - { - "confidence": 0.8871623873710632, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3407772183418274, - 0.18763142824172974, - 0.1634654700756073, - 0.06507797539234161, - 0.24304790794849396 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 10866638848, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7116087079048157, - "y_min": 0.3950364291667938, - "x_max": 0.7508644461631775, - "y_max": 0.4743371903896332 - }, - "confidence": 0.8823812007904053, - "label_id": 1 - }, - "h": 85, - "w": 76, - "x": 1366, - "y": 427 - } - ], - "tensors": [ - { - "confidence": 0.8823812007904053, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.235100656747818, - 0.09800515323877335, - 0.23233431577682495, - 0.07328245043754578, - 0.3612774610519409 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 10899972096, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7108689546585083, - "y_min": 0.3960508108139038, - "x_max": 0.7501707077026367, - "y_max": 0.47539758682250977 - }, - "confidence": 0.9101736545562744, - "label_id": 1 - }, - "h": 85, - "w": 75, - "x": 1365, - "y": 428 - } - ], - "tensors": [ - { - "confidence": 0.9101736545562744, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1989007592201233, - 0.04151848331093788, - 0.24045734107494354, - 0.07202190905809402, - 0.44710153341293335 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 10933305344, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7110478281974792, - "y_min": 0.39623039960861206, - "x_max": 0.7495643496513367, - "y_max": 0.4750443696975708 - }, - "confidence": 0.8619800209999084, - "label_id": 1 - }, - "h": 85, - "w": 74, - "x": 1365, - "y": 428 - } - ], - "tensors": [ - { - "confidence": 0.8619800209999084, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.16577307879924774, - 0.04013025388121605, - 0.23372365534305573, - 0.07374776154756546, - 0.4866253435611725 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 10966638592, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7103315591812134, - "y_min": 0.3987693190574646, - "x_max": 0.7474852800369263, - "y_max": 0.4754794239997864 - }, - "confidence": 0.90513676404953, - "label_id": 1 - }, - "h": 83, - "w": 71, - "x": 1364, - "y": 431 - } - ], - "tensors": [ - { - "confidence": 0.90513676404953, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23968486487865448, - 0.07599836587905884, - 0.26765841245651245, - 0.05423218011856079, - 0.36242616176605225 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 10999971840, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.70909583568573, - "y_min": 0.40000927448272705, - "x_max": 0.7470099925994873, - "y_max": 0.4752469062805176 - }, - "confidence": 0.9123213887214661, - "label_id": 1 - }, - "h": 81, - "w": 73, - "x": 1361, - "y": 432 - } - ], - "tensors": [ - { - "confidence": 0.9123213887214661, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.21029889583587646, - 0.06794559955596924, - 0.25347068905830383, - 0.06657196581363678, - 0.4017128348350525 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 11033305088, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7085139751434326, - "y_min": 0.3994201123714447, - "x_max": 0.7472152709960938, - "y_max": 0.47665783762931824 - }, - "confidence": 0.9463739991188049, - "label_id": 1 - }, - "h": 84, - "w": 75, - "x": 1360, - "y": 431 - } - ], - "tensors": [ - { - "confidence": 0.9463739991188049, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.22686359286308289, - 0.10157803446054459, - 0.31335726380348206, - 0.04679090902209282, - 0.31141021847724915 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 11066638336, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7086787819862366, - "y_min": 0.39972883462905884, - "x_max": 0.7473607659339905, - "y_max": 0.4772372841835022 - }, - "confidence": 0.9502986073493958, - "label_id": 1 - }, - "h": 83, - "w": 74, - "x": 1361, - "y": 432 - } - ], - "tensors": [ - { - "confidence": 0.9502986073493958, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.20690956711769104, - 0.0969943255186081, - 0.33359697461128235, - 0.02821914106607437, - 0.33427998423576355 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 11099971584, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7092825174331665, - "y_min": 0.3994670510292053, - "x_max": 0.7475202083587646, - "y_max": 0.4761998653411865 - }, - "confidence": 0.8913823962211609, - "label_id": 1 - }, - "h": 83, - "w": 73, - "x": 1362, - "y": 431 - } - ], - "tensors": [ - { - "confidence": 0.8913823962211609, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.22662632167339325, - 0.2109529972076416, - 0.22174285352230072, - 0.03290599212050438, - 0.30777186155319214 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 11133304832, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7102091908454895, - "y_min": 0.3970286548137665, - "x_max": 0.7487059235572815, - "y_max": 0.47486498951911926 - }, - "confidence": 0.8147886991500854, - "label_id": 1 - }, - "h": 84, - "w": 74, - "x": 1364, - "y": 429 - } - ], - "tensors": [ - { - "confidence": 0.8147886991500854, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.14189891517162323, - 0.28577855229377747, - 0.2417636662721634, - 0.03574414178729057, - 0.29481467604637146 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 11166638080, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7100554704666138, - "y_min": 0.3963569700717926, - "x_max": 0.7493453025817871, - "y_max": 0.47458991408348083 - }, - "confidence": 0.8382886052131653, - "label_id": 1 - }, - "h": 85, - "w": 76, - "x": 1363, - "y": 428 - } - ], - "tensors": [ - { - "confidence": 0.8382886052131653, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1979113072156906, - 0.26862087845802307, - 0.21072305738925934, - 0.04689323529601097, - 0.2758515477180481 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 11199971328, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7107318043708801, - "y_min": 0.39592307806015015, - "x_max": 0.7499011158943176, - "y_max": 0.4734663963317871 - }, - "confidence": 0.7739584445953369, - "label_id": 1 - }, - "h": 83, - "w": 75, - "x": 1365, - "y": 428 - } - ], - "tensors": [ - { - "confidence": 0.7739584445953369, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.22326654195785522, - 0.19474013149738312, - 0.20266403257846832, - 0.07667689025402069, - 0.3026523292064667 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 11233304576, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7108355760574341, - "y_min": 0.39501118659973145, - "x_max": 0.7510348558425903, - "y_max": 0.47686445713043213 - }, - "confidence": 0.8757537007331848, - "label_id": 1 - }, - "h": 88, - "w": 77, - "x": 1365, - "y": 427 - } - ], - "tensors": [ - { - "confidence": 0.8757537007331848, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.16154426336288452, - 0.13691817224025726, - 0.20347794890403748, - 0.03387986496090889, - 0.4641798138618469 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 11266637824, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7119179964065552, - "y_min": 0.39519667625427246, - "x_max": 0.7517846822738647, - "y_max": 0.47805923223495483 - }, - "confidence": 0.7906589508056641, - "label_id": 1 - }, - "h": 89, - "w": 76, - "x": 1367, - "y": 427 - } - ], - "tensors": [ - { - "confidence": 0.7906589508056641, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.11253317445516586, - 0.09081010520458221, - 0.200998455286026, - 0.027744276449084282, - 0.5679140090942383 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 11299971072, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7124581336975098, - "y_min": 0.3951651453971863, - "x_max": 0.7535003423690796, - "y_max": 0.4780910015106201 - }, - "confidence": 0.7104693651199341, - "label_id": 1 - }, - "h": 89, - "w": 79, - "x": 1368, - "y": 427 - } - ], - "tensors": [ - { - "confidence": 0.7104693651199341, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.11160547286272049, - 0.1048656702041626, - 0.19110076129436493, - 0.04120339825749397, - 0.5512247085571289 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 11333304320, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7121202945709229, - "y_min": 0.39549317955970764, - "x_max": 0.7539522647857666, - "y_max": 0.47838613390922546 - }, - "confidence": 0.7107415199279785, - "label_id": 1 - }, - "h": 90, - "w": 81, - "x": 1367, - "y": 427 - } - ], - "tensors": [ - { - "confidence": 0.7107415199279785, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.13212203979492188, - 0.07059323042631149, - 0.19474683701992035, - 0.025516469031572342, - 0.5770213603973389 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 11666636800, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7129719257354736, - "y_min": 0.3942696154117584, - "x_max": 0.7541494369506836, - "y_max": 0.4772666394710541 - }, - "confidence": 0.549507737159729, - "label_id": 1 - }, - "h": 89, - "w": 79, - "x": 1369, - "y": 426 - } - ], - "tensors": [ - { - "confidence": 0.549507737159729, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1488967388868332, - 0.2902000844478607, - 0.3375835716724396, - 0.019097432494163513, - 0.204222172498703 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 11699970048, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7124292254447937, - "y_min": 0.3940512537956238, - "x_max": 0.753831684589386, - "y_max": 0.4761233329772949 - }, - "confidence": 0.5716932415962219, - "label_id": 1 - }, - "h": 88, - "w": 79, - "x": 1368, - "y": 426 - } - ], - "tensors": [ - { - "confidence": 0.5716932415962219, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1697520762681961, - 0.3544629216194153, - 0.26903843879699707, - 0.024840179830789566, - 0.18190640211105347 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 11733303296, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.712304413318634, - "y_min": 0.3931656777858734, - "x_max": 0.7529049515724182, - "y_max": 0.4761202037334442 - }, - "confidence": 0.6092446446418762, - "label_id": 1 - }, - "h": 89, - "w": 78, - "x": 1368, - "y": 425 - } - ], - "tensors": [ - { - "confidence": 0.6092446446418762, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.19875141978263855, - 0.2430916130542755, - 0.31970053911209106, - 0.02351907268166542, - 0.21493744850158691 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 11766636544, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7119238972663879, - "y_min": 0.3933345377445221, - "x_max": 0.7524096369743347, - "y_max": 0.4768097698688507 - }, - "confidence": 0.7522861957550049, - "label_id": 1 - }, - "h": 90, - "w": 78, - "x": 1367, - "y": 425 - } - ], - "tensors": [ - { - "confidence": 0.7522861957550049, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2441873401403427, - 0.18993715941905975, - 0.33427494764328003, - 0.017211932688951492, - 0.2143886387348175 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 11799969792, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7110901474952698, - "y_min": 0.39392030239105225, - "x_max": 0.7515278458595276, - "y_max": 0.47612202167510986 - }, - "confidence": 0.8068368434906006, - "label_id": 1 - }, - "h": 89, - "w": 78, - "x": 1365, - "y": 425 - } - ], - "tensors": [ - { - "confidence": 0.8068368434906006, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2735934257507324, - 0.18554043769836426, - 0.28394898772239685, - 0.015072944574058056, - 0.24184420704841614 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 11833303040, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7110388875007629, - "y_min": 0.3940644860267639, - "x_max": 0.7510537505149841, - "y_max": 0.4747915267944336 - }, - "confidence": 0.7401229739189148, - "label_id": 1 - }, - "h": 87, - "w": 77, - "x": 1365, - "y": 426 - } - ], - "tensors": [ - { - "confidence": 0.7401229739189148, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.28278782963752747, - 0.21033771336078644, - 0.270257830619812, - 0.008571763522922993, - 0.22804489731788635 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 11866636288, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.711078405380249, - "y_min": 0.39366477727890015, - "x_max": 0.7508974075317383, - "y_max": 0.47435158491134644 - }, - "confidence": 0.7393355965614319, - "label_id": 1 - }, - "h": 87, - "w": 77, - "x": 1365, - "y": 425 - } - ], - "tensors": [ - { - "confidence": 0.7393355965614319, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.32260867953300476, - 0.2964535057544708, - 0.21494165062904358, - 0.005797542631626129, - 0.1601986587047577 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 11899969536, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7101526260375977, - "y_min": 0.39420396089553833, - "x_max": 0.7494152784347534, - "y_max": 0.47414469718933105 - }, - "confidence": 0.9211546778678894, - "label_id": 1 - }, - "h": 86, - "w": 76, - "x": 1363, - "y": 426 - } - ], - "tensors": [ - { - "confidence": 0.9211546778678894, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.291334867477417, - 0.2895331382751465, - 0.21652062237262726, - 0.0071472711861133575, - 0.19546404480934143 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 11933302784, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7098464369773865, - "y_min": 0.3938383162021637, - "x_max": 0.7493608593940735, - "y_max": 0.47534170746803284 - }, - "confidence": 0.9428846836090088, - "label_id": 1 - }, - "h": 88, - "w": 76, - "x": 1363, - "y": 425 - } - ], - "tensors": [ - { - "confidence": 0.9428846836090088, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.24947571754455566, - 0.2770034670829773, - 0.226140558719635, - 0.007600097917020321, - 0.23978012800216675 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 11966636032, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7099963426589966, - "y_min": 0.39354947209358215, - "x_max": 0.748726487159729, - "y_max": 0.4758569896221161 - }, - "confidence": 0.9252383708953857, - "label_id": 1 - }, - "h": 89, - "w": 75, - "x": 1363, - "y": 425 - } - ], - "tensors": [ - { - "confidence": 0.9252383708953857, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.33335334062576294, - 0.16736871004104614, - 0.25230032205581665, - 0.013699764385819435, - 0.23327793180942535 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 11999969280, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7102527618408203, - "y_min": 0.39086195826530457, - "x_max": 0.7486182451248169, - "y_max": 0.4748956263065338 - }, - "confidence": 0.8710418939590454, - "label_id": 1 - }, - "h": 91, - "w": 73, - "x": 1364, - "y": 422 - } - ], - "tensors": [ - { - "confidence": 0.8710418939590454, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2671948969364166, - 0.11964670568704605, - 0.265102744102478, - 0.016599295660853386, - 0.33145636320114136 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 12033302528, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.709880530834198, - "y_min": 0.3903774321079254, - "x_max": 0.7485437989234924, - "y_max": 0.4746335446834564 - }, - "confidence": 0.8582276701927185, - "label_id": 1 - }, - "h": 91, - "w": 74, - "x": 1363, - "y": 422 - } - ], - "tensors": [ - { - "confidence": 0.8582276701927185, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1886427402496338, - 0.277141273021698, - 0.22198669612407684, - 0.01583642140030861, - 0.29639285802841187 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 12066635776, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7100345492362976, - "y_min": 0.3902219235897064, - "x_max": 0.7486527562141418, - "y_max": 0.47457554936408997 - }, - "confidence": 0.8213909864425659, - "label_id": 1 - }, - "h": 92, - "w": 74, - "x": 1363, - "y": 421 - } - ], - "tensors": [ - { - "confidence": 0.8213909864425659, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.13646641373634338, - 0.5190795063972473, - 0.1328819990158081, - 0.00905859749764204, - 0.2025134414434433 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 12099969024, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7101309895515442, - "y_min": 0.3903830051422119, - "x_max": 0.7491303086280823, - "y_max": 0.47486668825149536 - }, - "confidence": 0.8172850012779236, - "label_id": 1 - }, - "h": 91, - "w": 75, - "x": 1363, - "y": 422 - } - ], - "tensors": [ - { - "confidence": 0.8172850012779236, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.15559563040733337, - 0.34288090467453003, - 0.188531756401062, - 0.015141903422772884, - 0.29784977436065674 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 12133302272, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.70988529920578, - "y_min": 0.3902730345726013, - "x_max": 0.7495926022529602, - "y_max": 0.47446733713150024 - }, - "confidence": 0.7476853728294373, - "label_id": 1 - }, - "h": 91, - "w": 76, - "x": 1363, - "y": 421 - } - ], - "tensors": [ - { - "confidence": 0.7476853728294373, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.14574892818927765, - 0.32639315724372864, - 0.16591915488243103, - 0.01367609016597271, - 0.34826263785362244 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 12166635520, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7102616429328918, - "y_min": 0.39040568470954895, - "x_max": 0.7498469948768616, - "y_max": 0.47397640347480774 - }, - "confidence": 0.6519241333007812, - "label_id": 1 - }, - "h": 90, - "w": 76, - "x": 1364, - "y": 422 - } - ], - "tensors": [ - { - "confidence": 0.6519241333007812, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.16950194537639618, - 0.367129921913147, - 0.11125705391168594, - 0.012035980820655823, - 0.3400751054286957 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 12466634752, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7108012437820435, - "y_min": 0.3892652988433838, - "x_max": 0.7503935098648071, - "y_max": 0.47489094734191895 - }, - "confidence": 0.5118623375892639, - "label_id": 1 - }, - "h": 93, - "w": 76, - "x": 1365, - "y": 420 - } - ], - "tensors": [ - { - "confidence": 0.5118623375892639, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.19205088913440704, - 0.11710810661315918, - 0.2761334478855133, - 0.012550692074000835, - 0.4021568298339844 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 12499968000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7106675505638123, - "y_min": 0.38972026109695435, - "x_max": 0.7496500611305237, - "y_max": 0.47382378578186035 - }, - "confidence": 0.5655800104141235, - "label_id": 1 - }, - "h": 91, - "w": 75, - "x": 1364, - "y": 421 - } - ], - "tensors": [ - { - "confidence": 0.5655800104141235, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.14846909046173096, - 0.10724680125713348, - 0.26149648427963257, - 0.006424725521355867, - 0.4763629138469696 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 12533301248, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7109245657920837, - "y_min": 0.390811026096344, - "x_max": 0.7500434517860413, - "y_max": 0.4744952917098999 - }, - "confidence": 0.6967840790748596, - "label_id": 1 - }, - "h": 90, - "w": 75, - "x": 1365, - "y": 422 - } - ], - "tensors": [ - { - "confidence": 0.6967840790748596, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1090826541185379, - 0.1512492150068283, - 0.17745305597782135, - 0.007116885390132666, - 0.5550981760025024 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 12566634496, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7102282047271729, - "y_min": 0.38994288444519043, - "x_max": 0.7491936683654785, - "y_max": 0.47533565759658813 - }, - "confidence": 0.8098595142364502, - "label_id": 1 - }, - "h": 92, - "w": 74, - "x": 1364, - "y": 421 - } - ], - "tensors": [ - { - "confidence": 0.8098595142364502, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.12762600183486938, - 0.19988474249839783, - 0.214498832821846, - 0.007482108194380999, - 0.4505082666873932 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 12599967744, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7088676691055298, - "y_min": 0.38954415917396545, - "x_max": 0.7489571571350098, - "y_max": 0.4745630919933319 - }, - "confidence": 0.8553916811943054, - "label_id": 1 - }, - "h": 92, - "w": 77, - "x": 1361, - "y": 421 - } - ], - "tensors": [ - { - "confidence": 0.8553916811943054, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.08511116355657578, - 0.6055585741996765, - 0.08878598362207413, - 0.004497762769460678, - 0.2160465568304062 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 12633300992, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.707719624042511, - "y_min": 0.39035165309906006, - "x_max": 0.7482169270515442, - "y_max": 0.47504425048828125 - }, - "confidence": 0.9249646663665771, - "label_id": 1 - }, - "h": 91, - "w": 78, - "x": 1359, - "y": 422 - } - ], - "tensors": [ - { - "confidence": 0.9249646663665771, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.07716334611177444, - 0.5616427659988403, - 0.10491201281547546, - 0.005644197575747967, - 0.25063765048980713 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 12666634240, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7053769826889038, - "y_min": 0.3906920254230499, - "x_max": 0.7483233213424683, - "y_max": 0.4737314283847809 - }, - "confidence": 0.932549774646759, - "label_id": 1 - }, - "h": 90, - "w": 83, - "x": 1354, - "y": 422 - } - ], - "tensors": [ - { - "confidence": 0.932549774646759, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.06783308833837509, - 0.5536731481552124, - 0.0817805677652359, - 0.007723841816186905, - 0.2889893352985382 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 12699967488, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.704991340637207, - "y_min": 0.38922661542892456, - "x_max": 0.7466045618057251, - "y_max": 0.47407156229019165 - }, - "confidence": 0.8862022757530212, - "label_id": 1 - }, - "h": 92, - "w": 79, - "x": 1354, - "y": 420 - } - ], - "tensors": [ - { - "confidence": 0.8862022757530212, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09916552901268005, - 0.21066425740718842, - 0.21061961352825165, - 0.017659667879343033, - 0.46189093589782715 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 12733300736, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7031035423278809, - "y_min": 0.39063534140586853, - "x_max": 0.743349552154541, - "y_max": 0.4761081635951996 - }, - "confidence": 0.8749614953994751, - "label_id": 1 - }, - "h": 92, - "w": 77, - "x": 1350, - "y": 422 - } - ], - "tensors": [ - { - "confidence": 0.8749614953994751, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.026843268424272537, - 0.4082159399986267, - 0.09892505407333374, - 0.00532130990177393, - 0.46069449186325073 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 12766633984, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6999831795692444, - "y_min": 0.3890402019023895, - "x_max": 0.739971935749054, - "y_max": 0.47482219338417053 - }, - "confidence": 0.9113782644271851, - "label_id": 1 - }, - "h": 93, - "w": 77, - "x": 1344, - "y": 420 - } - ], - "tensors": [ - { - "confidence": 0.9113782644271851, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.03052634745836258, - 0.4242428243160248, - 0.1007751002907753, - 0.010936478152871132, - 0.4335192143917084 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 12799967232, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6986332535743713, - "y_min": 0.3876749277114868, - "x_max": 0.7390832304954529, - "y_max": 0.4729943871498108 - }, - "confidence": 0.8483156561851501, - "label_id": 1 - }, - "h": 92, - "w": 78, - "x": 1341, - "y": 419 - } - ], - "tensors": [ - { - "confidence": 0.8483156561851501, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.026288941502571106, - 0.48643773794174194, - 0.0940779447555542, - 0.012012244202196598, - 0.38118311762809753 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 12833300480, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6965817809104919, - "y_min": 0.3870044946670532, - "x_max": 0.7371816039085388, - "y_max": 0.47391265630722046 - }, - "confidence": 0.8599416017532349, - "label_id": 1 - }, - "h": 94, - "w": 78, - "x": 1337, - "y": 418 - } - ], - "tensors": [ - { - "confidence": 0.8599416017532349, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.03379851579666138, - 0.4111219048500061, - 0.06490440666675568, - 0.01187900546938181, - 0.4782961905002594 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 12866633728, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6932488679885864, - "y_min": 0.38568493723869324, - "x_max": 0.733483076095581, - "y_max": 0.4728539288043976 - }, - "confidence": 0.7824594378471375, - "label_id": 1 - }, - "h": 94, - "w": 77, - "x": 1331, - "y": 417 - } - ], - "tensors": [ - { - "confidence": 0.7824594378471375, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.05071495845913887, - 0.3628503084182739, - 0.04726412519812584, - 0.01504881028085947, - 0.5241217613220215 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 12899966976, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6929163932800293, - "y_min": 0.3857608735561371, - "x_max": 0.7324663400650024, - "y_max": 0.4732252061367035 - }, - "confidence": 0.6929581165313721, - "label_id": 1 - }, - "h": 94, - "w": 76, - "x": 1330, - "y": 417 - } - ], - "tensors": [ - { - "confidence": 0.6929581165313721, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.03543519228696823, - 0.5949903130531311, - 0.03916114568710327, - 0.007870321162045002, - 0.32254302501678467 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 12933300224, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.690792977809906, - "y_min": 0.385292649269104, - "x_max": 0.7321123480796814, - "y_max": 0.47425901889801025 - }, - "confidence": 0.6718733310699463, - "label_id": 1 - }, - "h": 96, - "w": 80, - "x": 1326, - "y": 416 - } - ], - "tensors": [ - { - "confidence": 0.6718733310699463, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.05496889725327492, - 0.7620556950569153, - 0.03398151695728302, - 0.006773061119019985, - 0.14222083985805511 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 12966633472, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6903063058853149, - "y_min": 0.38706469535827637, - "x_max": 0.7316571474075317, - "y_max": 0.47464221715927124 - }, - "confidence": 0.7190756797790527, - "label_id": 1 - }, - "h": 95, - "w": 80, - "x": 1325, - "y": 418 - } - ], - "tensors": [ - { - "confidence": 0.7190756797790527, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.059217993170022964, - 0.8097177743911743, - 0.02769036591053009, - 0.003176581347361207, - 0.10019731521606445 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 13099966464, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6864087581634521, - "y_min": 0.3892817795276642, - "x_max": 0.729736328125, - "y_max": 0.47537389397621155 - }, - "confidence": 0.5198745131492615, - "label_id": 1 - }, - "h": 93, - "w": 83, - "x": 1318, - "y": 420 - } - ], - "tensors": [ - { - "confidence": 0.5198745131492615, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.15669159591197968, - 0.6661348938941956, - 0.037923235446214676, - 0.010871770791709423, - 0.1283784657716751 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 13566631936, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6907894611358643, - "y_min": 0.3754451274871826, - "x_max": 0.7325770854949951, - "y_max": 0.4683185815811157 - }, - "confidence": 0.6439081430435181, - "label_id": 1 - }, - "h": 101, - "w": 81, - "x": 1326, - "y": 405 - } - ], - "tensors": [ - { - "confidence": 0.6439081430435181, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.027042141184210777, - 0.9264485836029053, - 0.018081307411193848, - 0.006195297464728355, - 0.022232724353671074 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 13599965184, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6922076940536499, - "y_min": 0.37353065609931946, - "x_max": 0.7325963973999023, - "y_max": 0.4691523015499115 - }, - "confidence": 0.85321044921875, - "label_id": 1 - }, - "h": 104, - "w": 78, - "x": 1329, - "y": 403 - } - ], - "tensors": [ - { - "confidence": 0.85321044921875, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.014799712225794792, - 0.9541953802108765, - 0.00963262002915144, - 0.006705245468765497, - 0.014667017385363579 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 13633298432, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6947533488273621, - "y_min": 0.37348315119743347, - "x_max": 0.735536515712738, - "y_max": 0.46960213780403137 - }, - "confidence": 0.947001576423645, - "label_id": 1 - }, - "h": 104, - "w": 78, - "x": 1334, - "y": 403 - } - ], - "tensors": [ - { - "confidence": 0.947001576423645, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.020522724837064743, - 0.9281246066093445, - 0.01498480699956417, - 0.010721120052039623, - 0.02564677782356739 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 13666631680, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6949120163917542, - "y_min": 0.373543918132782, - "x_max": 0.736382782459259, - "y_max": 0.4699562191963196 - }, - "confidence": 0.9044357538223267, - "label_id": 1 - }, - "h": 105, - "w": 80, - "x": 1334, - "y": 403 - } - ], - "tensors": [ - { - "confidence": 0.9044357538223267, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.012212020345032215, - 0.9363898634910583, - 0.013563588261604309, - 0.006429430563002825, - 0.03140510991215706 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 13699964928, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6976878643035889, - "y_min": 0.37534141540527344, - "x_max": 0.7379598617553711, - "y_max": 0.4680444002151489 - }, - "confidence": 0.9809139370918274, - "label_id": 1 - }, - "h": 100, - "w": 77, - "x": 1340, - "y": 405 - } - ], - "tensors": [ - { - "confidence": 0.9809139370918274, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.007089939434081316, - 0.9639366865158081, - 0.008300485089421272, - 0.005836396012455225, - 0.014836497604846954 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 13733298176, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6977414488792419, - "y_min": 0.37500566244125366, - "x_max": 0.7385717034339905, - "y_max": 0.46801072359085083 - }, - "confidence": 0.9634426236152649, - "label_id": 1 - }, - "h": 100, - "w": 78, - "x": 1340, - "y": 405 - } - ], - "tensors": [ - { - "confidence": 0.9634426236152649, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.01398808229714632, - 0.9033827781677246, - 0.020777199417352676, - 0.007991829887032509, - 0.053860146552324295 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 13766631424, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7000918984413147, - "y_min": 0.3761681318283081, - "x_max": 0.7397056221961975, - "y_max": 0.4634808301925659 - }, - "confidence": 0.9912508726119995, - "label_id": 1 - }, - "h": 95, - "w": 76, - "x": 1344, - "y": 406 - } - ], - "tensors": [ - { - "confidence": 0.9912508726119995, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.012259219773113728, - 0.8649154305458069, - 0.019858215004205704, - 0.008163324557244778, - 0.09480378031730652 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 13799964672, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7020769119262695, - "y_min": 0.3769274950027466, - "x_max": 0.7422409057617188, - "y_max": 0.46241819858551025 - }, - "confidence": 0.9876818656921387, - "label_id": 1 - }, - "h": 92, - "w": 77, - "x": 1348, - "y": 407 - } - ], - "tensors": [ - { - "confidence": 0.9876818656921387, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.01238801795989275, - 0.9009761214256287, - 0.017966723069548607, - 0.011690224520862103, - 0.05697893723845482 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 13833297920, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7034085392951965, - "y_min": 0.37882691621780396, - "x_max": 0.7436806559562683, - "y_max": 0.46069931983947754 - }, - "confidence": 0.9832770824432373, - "label_id": 1 - }, - "h": 89, - "w": 77, - "x": 1351, - "y": 409 - } - ], - "tensors": [ - { - "confidence": 0.9832770824432373, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.01702338457107544, - 0.8895424008369446, - 0.01803486794233322, - 0.011730864644050598, - 0.06366844475269318 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 13866631168, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7047823071479797, - "y_min": 0.37834569811820984, - "x_max": 0.7452406287193298, - "y_max": 0.46334394812583923 - }, - "confidence": 0.991146981716156, - "label_id": 1 - }, - "h": 91, - "w": 78, - "x": 1353, - "y": 409 - } - ], - "tensors": [ - { - "confidence": 0.991146981716156, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.00906967930495739, - 0.8973244428634644, - 0.013717107474803925, - 0.007533167488873005, - 0.07235550880432129 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 13899964416, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7082407474517822, - "y_min": 0.37732750177383423, - "x_max": 0.7462301254272461, - "y_max": 0.46354132890701294 - }, - "confidence": 0.9246271252632141, - "label_id": 1 - }, - "h": 93, - "w": 73, - "x": 1360, - "y": 408 - } - ], - "tensors": [ - { - "confidence": 0.9246271252632141, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.014643470756709576, - 0.7967496514320374, - 0.03633091226220131, - 0.005189098417758942, - 0.14708682894706726 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 13933297664, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.710256040096283, - "y_min": 0.3767109513282776, - "x_max": 0.7475815415382385, - "y_max": 0.46306073665618896 - }, - "confidence": 0.8910663723945618, - "label_id": 1 - }, - "h": 93, - "w": 71, - "x": 1364, - "y": 407 - } - ], - "tensors": [ - { - "confidence": 0.8910663723945618, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.014180525206029415, - 0.8880118131637573, - 0.023785164579749107, - 0.006452640052884817, - 0.0675697848200798 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 13966630912, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7085862755775452, - "y_min": 0.3764801621437073, - "x_max": 0.7472262978553772, - "y_max": 0.46354538202285767 - }, - "confidence": 0.8933189511299133, - "label_id": 1 - }, - "h": 94, - "w": 75, - "x": 1360, - "y": 407 - } - ], - "tensors": [ - { - "confidence": 0.8933189511299133, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.014362508431077003, - 0.8674163222312927, - 0.025825558230280876, - 0.010809178464114666, - 0.08158642798662186 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 13999964160, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7101068496704102, - "y_min": 0.37655484676361084, - "x_max": 0.7482707500457764, - "y_max": 0.465140163898468 - }, - "confidence": 0.7191224098205566, - "label_id": 1 - }, - "h": 95, - "w": 74, - "x": 1363, - "y": 407 - } - ], - "tensors": [ - { - "confidence": 0.7191224098205566, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.01081046648323536, - 0.9401921033859253, - 0.019771141931414604, - 0.0036577628925442696, - 0.02556859701871872 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 14033297408, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7089324593544006, - "y_min": 0.37545835971832275, - "x_max": 0.7483131289482117, - "y_max": 0.4665811061859131 - }, - "confidence": 0.6963916420936584, - "label_id": 1 - }, - "h": 99, - "w": 76, - "x": 1361, - "y": 405 - } - ], - "tensors": [ - { - "confidence": 0.6963916420936584, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.013723543845117092, - 0.9478077292442322, - 0.017215583473443985, - 0.003982063382863998, - 0.01727118156850338 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 14066630656, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7059704661369324, - "y_min": 0.37736746668815613, - "x_max": 0.746766984462738, - "y_max": 0.4658181965351105 - }, - "confidence": 0.8026352524757385, - "label_id": 1 - }, - "h": 95, - "w": 79, - "x": 1355, - "y": 408 - } - ], - "tensors": [ - { - "confidence": 0.8026352524757385, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.012709581293165684, - 0.9637107849121094, - 0.010537959635257721, - 0.0040170373395085335, - 0.009024612605571747 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 14099963904, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.705353856086731, - "y_min": 0.3777691423892975, - "x_max": 0.7460585832595825, - "y_max": 0.46552321314811707 - }, - "confidence": 0.8588390350341797, - "label_id": 1 - }, - "h": 95, - "w": 78, - "x": 1354, - "y": 408 - } - ], - "tensors": [ - { - "confidence": 0.8588390350341797, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.03915407508611679, - 0.8774747848510742, - 0.03481821343302727, - 0.008354050107300282, - 0.040198881179094315 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 14133297152, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7049472332000732, - "y_min": 0.37763112783432007, - "x_max": 0.7455059289932251, - "y_max": 0.46668434143066406 - }, - "confidence": 0.8278638124465942, - "label_id": 1 - }, - "h": 96, - "w": 78, - "x": 1353, - "y": 408 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.4778062701225281, - "y_min": 0.4694865047931671, - "x_max": 0.5074495077133179, - "y_max": 0.5334460139274597 - }, - "confidence": 0.530605137348175, - "label_id": 1 - }, - "h": 69, - "w": 57, - "x": 917, - "y": 507 - } - ], - "tensors": [ - { - "confidence": 0.8278638124465942, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.052821073681116104, - 0.8537147641181946, - 0.04256104305386543, - 0.009294652380049229, - 0.041608456522226334 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.530605137348175, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.002726208884268999, - 0.8747095465660095, - 0.09533786028623581, - 0.0009296011994592845, - 0.026296744123101234 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 14166630400, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7018226981163025, - "y_min": 0.3792038559913635, - "x_max": 0.7448859810829163, - "y_max": 0.46663326025009155 - }, - "confidence": 0.8375788927078247, - "label_id": 1 - }, - "h": 94, - "w": 83, - "x": 1347, - "y": 410 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.47770386934280396, - "y_min": 0.46912097930908203, - "x_max": 0.5075652599334717, - "y_max": 0.5328463315963745 - }, - "confidence": 0.5617401003837585, - "label_id": 1 - }, - "h": 68, - "w": 58, - "x": 917, - "y": 507 - } - ], - "tensors": [ - { - "confidence": 0.8375788927078247, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.06343968957662582, - 0.8260371088981628, - 0.04246385022997856, - 0.013097523711621761, - 0.05496177822351456 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5617401003837585, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.0034417323768138885, - 0.7836616635322571, - 0.17769396305084229, - 0.0017020294908434153, - 0.033500611782073975 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 14199963648, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7018799185752869, - "y_min": 0.3902084529399872, - "x_max": 0.7464637160301208, - "y_max": 0.4726577699184418 - }, - "confidence": 0.9065799713134766, - "label_id": 1 - }, - "h": 89, - "w": 85, - "x": 1348, - "y": 421 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.47784674167633057, - "y_min": 0.46884381771087646, - "x_max": 0.5079394578933716, - "y_max": 0.5318583250045776 - }, - "confidence": 0.5777852535247803, - "label_id": 1 - }, - "h": 68, - "w": 58, - "x": 917, - "y": 506 - } - ], - "tensors": [ - { - "confidence": 0.9065799713134766, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.028157802298665047, - 0.9362625479698181, - 0.010396642610430717, - 0.003154175588861108, - 0.022028904408216476 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5777852535247803, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.003530813381075859, - 0.7143883109092712, - 0.2490171194076538, - 0.001448548398911953, - 0.03161526098847389 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 14233296896, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7018199563026428, - "y_min": 0.3943839967250824, - "x_max": 0.7444066405296326, - "y_max": 0.47258058190345764 - }, - "confidence": 0.9257336258888245, - "label_id": 1 - }, - "h": 84, - "w": 82, - "x": 1347, - "y": 426 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.47763654589653015, - "y_min": 0.4690777361392975, - "x_max": 0.5075458884239197, - "y_max": 0.5315152406692505 - }, - "confidence": 0.5659013986587524, - "label_id": 1 - }, - "h": 67, - "w": 57, - "x": 917, - "y": 507 - } - ], - "tensors": [ - { - "confidence": 0.9257336258888245, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.04123467206954956, - 0.8744913935661316, - 0.028828175738453865, - 0.003232766641303897, - 0.05221293494105339 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5659013986587524, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.0023632270749658346, - 0.9429346919059753, - 0.04091764986515045, - 0.0012932255631312728, - 0.012491244822740555 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 14266630144, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6993719339370728, - "y_min": 0.3937839865684509, - "x_max": 0.7436459064483643, - "y_max": 0.47239112854003906 - }, - "confidence": 0.9509117007255554, - "label_id": 1 - }, - "h": 85, - "w": 85, - "x": 1343, - "y": 425 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.2732585370540619, - "y_min": 0.47831982374191284, - "x_max": 0.30226805806159973, - "y_max": 0.5363985896110535 - }, - "confidence": 0.6569509506225586, - "label_id": 1 - }, - "h": 62, - "w": 55, - "x": 525, - "y": 517 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.4779578745365143, - "y_min": 0.4695534110069275, - "x_max": 0.5076982378959656, - "y_max": 0.5315561890602112 - }, - "confidence": 0.5456264615058899, - "label_id": 1 - }, - "h": 67, - "w": 57, - "x": 918, - "y": 507 - } - ], - "tensors": [ - { - "confidence": 0.9509117007255554, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.07263749837875366, - 0.7903884649276733, - 0.031417954713106155, - 0.004303792025893927, - 0.10125233232975006 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6569509506225586, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.49080681800842285, - 0.13394008576869965, - 0.18382351100444794, - 0.0612231120467186, - 0.13020649552345276 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5456264615058899, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.002401970559731126, - 0.9664105772972107, - 0.019683778285980225, - 0.0012973641278222203, - 0.010206390172243118 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 14299963392, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6990389823913574, - "y_min": 0.3938503861427307, - "x_max": 0.7405643463134766, - "y_max": 0.47393590211868286 - }, - "confidence": 0.9837214350700378, - "label_id": 1 - }, - "h": 87, - "w": 80, - "x": 1342, - "y": 425 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.2733871340751648, - "y_min": 0.4786124527454376, - "x_max": 0.30247288942337036, - "y_max": 0.5361049175262451 - }, - "confidence": 0.5942952036857605, - "label_id": 1 - }, - "h": 62, - "w": 56, - "x": 525, - "y": 517 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.4782528579235077, - "y_min": 0.4693629741668701, - "x_max": 0.5080565214157104, - "y_max": 0.5322157144546509 - }, - "confidence": 0.5601882338523865, - "label_id": 1 - }, - "h": 68, - "w": 57, - "x": 918, - "y": 507 - } - ], - "tensors": [ - { - "confidence": 0.9837214350700378, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.04955907166004181, - 0.8383761048316956, - 0.021631935611367226, - 0.003991130739450455, - 0.08644185960292816 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5942952036857605, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.43517035245895386, - 0.19483256340026855, - 0.17683441936969757, - 0.06417259573936462, - 0.1289900839328766 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5601882338523865, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.0036272057332098484, - 0.959153950214386, - 0.02476954087615013, - 0.002389923669397831, - 0.010059383697807789 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 14333296640, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6971769332885742, - "y_min": 0.3927367031574249, - "x_max": 0.7395943403244019, - "y_max": 0.4759652316570282 - }, - "confidence": 0.9893562197685242, - "label_id": 1 - }, - "h": 90, - "w": 81, - "x": 1339, - "y": 424 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.27345240116119385, - "y_min": 0.47812122106552124, - "x_max": 0.3028566241264343, - "y_max": 0.5367180705070496 - }, - "confidence": 0.6603541374206543, - "label_id": 1 - }, - "h": 64, - "w": 56, - "x": 525, - "y": 516 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.47821009159088135, - "y_min": 0.4689601957798004, - "x_max": 0.508161187171936, - "y_max": 0.5323105454444885 - }, - "confidence": 0.5916208028793335, - "label_id": 1 - }, - "h": 69, - "w": 58, - "x": 918, - "y": 506 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14365926384925842, - "y_min": 0.5519343614578247, - "x_max": 0.18117442727088928, - "y_max": 0.6356064081192017 - }, - "confidence": 0.5035822987556458, - "label_id": 1 - }, - "h": 90, - "w": 72, - "x": 276, - "y": 596 - } - ], - "tensors": [ - { - "confidence": 0.9893562197685242, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.08592616021633148, - 0.758343517780304, - 0.039725106209516525, - 0.004169653635472059, - 0.11183557659387589 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6603541374206543, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.45253780484199524, - 0.3192129135131836, - 0.1180330142378807, - 0.026860596612095833, - 0.08335572481155396 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5916208028793335, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.006498963106423616, - 0.8881399631500244, - 0.06998734176158905, - 0.003513420233502984, - 0.031860265880823135 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5035822987556458, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5596919655799866, - 0.10690478980541229, - 0.17391535639762878, - 0.00192676589358598, - 0.1575610637664795 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 14366629888, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6962035894393921, - "y_min": 0.39533528685569763, - "x_max": 0.7406895160675049, - "y_max": 0.4762212932109833 - }, - "confidence": 0.986836314201355, - "label_id": 1 - }, - "h": 87, - "w": 85, - "x": 1337, - "y": 427 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.2735707461833954, - "y_min": 0.4794240891933441, - "x_max": 0.3026786744594574, - "y_max": 0.5375583171844482 - }, - "confidence": 0.6951974630355835, - "label_id": 1 - }, - "h": 63, - "w": 56, - "x": 525, - "y": 518 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.4782327711582184, - "y_min": 0.46853119134902954, - "x_max": 0.5082050561904907, - "y_max": 0.5321637988090515 - }, - "confidence": 0.5947936177253723, - "label_id": 1 - }, - "h": 69, - "w": 58, - "x": 918, - "y": 506 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14396554231643677, - "y_min": 0.5523014068603516, - "x_max": 0.18119564652442932, - "y_max": 0.6349314451217651 - }, - "confidence": 0.5349999070167542, - "label_id": 1 - }, - "h": 90, - "w": 72, - "x": 276, - "y": 596 - } - ], - "tensors": [ - { - "confidence": 0.986836314201355, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.11239854991436005, - 0.6863145232200623, - 0.07262685149908066, - 0.0054613081738352776, - 0.1231987401843071 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6951974630355835, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5533306002616882, - 0.1300385445356369, - 0.18866030871868134, - 0.0717206671833992, - 0.05624987930059433 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5947936177253723, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.006555061787366867, - 0.9000713229179382, - 0.044188737869262695, - 0.003180324798449874, - 0.04600457847118378 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5349999070167542, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.569293200969696, - 0.10725769400596619, - 0.1659376174211502, - 0.0014254632405936718, - 0.1560860574245453 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 14399963136, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6949290037155151, - "y_min": 0.39001840353012085, - "x_max": 0.7341628074645996, - "y_max": 0.4748694896697998 - }, - "confidence": 0.8375049829483032, - "label_id": 1 - }, - "h": 92, - "w": 76, - "x": 1334, - "y": 421 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.27375829219818115, - "y_min": 0.4805096983909607, - "x_max": 0.302590548992157, - "y_max": 0.5374947190284729 - }, - "confidence": 0.6581822037696838, - "label_id": 1 - }, - "h": 61, - "w": 55, - "x": 526, - "y": 519 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.4784095585346222, - "y_min": 0.4671386778354645, - "x_max": 0.508668065071106, - "y_max": 0.5329862236976624 - }, - "confidence": 0.6287408471107483, - "label_id": 1 - }, - "h": 71, - "w": 58, - "x": 919, - "y": 505 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14392513036727905, - "y_min": 0.5520813465118408, - "x_max": 0.18135154247283936, - "y_max": 0.6344268321990967 - }, - "confidence": 0.5443005561828613, - "label_id": 1 - }, - "h": 89, - "w": 72, - "x": 276, - "y": 596 - } - ], - "tensors": [ - { - "confidence": 0.8375049829483032, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.13346067070960999, - 0.5986762642860413, - 0.06101074442267418, - 0.0068989344872534275, - 0.19995343685150146 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6581822037696838, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5706048607826233, - 0.13086722791194916, - 0.15625879168510437, - 0.06819314509630203, - 0.07407590001821518 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6287408471107483, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.005087917670607567, - 0.902222752571106, - 0.042717188596725464, - 0.0024021693971008062, - 0.04756999388337135 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5443005561828613, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5242382287979126, - 0.10092298686504364, - 0.18252713978290558, - 0.0025153844617307186, - 0.18979623913764954 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 14433296384, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6939816474914551, - "y_min": 0.39015424251556396, - "x_max": 0.73323655128479, - "y_max": 0.47604936361312866 - }, - "confidence": 0.924551784992218, - "label_id": 1 - }, - "h": 93, - "w": 76, - "x": 1332, - "y": 421 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.27312394976615906, - "y_min": 0.48101264238357544, - "x_max": 0.30214592814445496, - "y_max": 0.5375789999961853 - }, - "confidence": 0.6990258693695068, - "label_id": 1 - }, - "h": 62, - "w": 56, - "x": 524, - "y": 519 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.47835662961006165, - "y_min": 0.46715083718299866, - "x_max": 0.5089300870895386, - "y_max": 0.5341140627861023 - }, - "confidence": 0.686262845993042, - "label_id": 1 - }, - "h": 72, - "w": 59, - "x": 918, - "y": 505 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14389273524284363, - "y_min": 0.5523709058761597, - "x_max": 0.18145394325256348, - "y_max": 0.6345319747924805 - }, - "confidence": 0.565612256526947, - "label_id": 1 - }, - "h": 88, - "w": 72, - "x": 276, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.924551784992218, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.14523187279701233, - 0.5440194606781006, - 0.058325156569480896, - 0.0065157003700733185, - 0.24590790271759033 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6990258693695068, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.6035171747207642, - 0.09748604148626328, - 0.17739123106002808, - 0.058227065950632095, - 0.06337845325469971 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.686262845993042, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.012234325520694256, - 0.8055415749549866, - 0.0901462733745575, - 0.004269565921276808, - 0.08780829608440399 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.565612256526947, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5398474335670471, - 0.13536131381988525, - 0.1881832480430603, - 0.0022835980635136366, - 0.13432449102401733 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 14466629632, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6911492347717285, - "y_min": 0.38915109634399414, - "x_max": 0.7318993806838989, - "y_max": 0.47410857677459717 - }, - "confidence": 0.6847172975540161, - "label_id": 1 - }, - "h": 92, - "w": 78, - "x": 1327, - "y": 420 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.27266383171081543, - "y_min": 0.480434775352478, - "x_max": 0.3014739751815796, - "y_max": 0.5362311601638794 - }, - "confidence": 0.650861918926239, - "label_id": 1 - }, - "h": 60, - "w": 55, - "x": 524, - "y": 519 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.47865498065948486, - "y_min": 0.4672493040561676, - "x_max": 0.5087874531745911, - "y_max": 0.531599760055542 - }, - "confidence": 0.5912010669708252, - "label_id": 1 - }, - "h": 69, - "w": 58, - "x": 919, - "y": 505 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14394184947013855, - "y_min": 0.5527544021606445, - "x_max": 0.18133363127708435, - "y_max": 0.6338111162185669 - }, - "confidence": 0.5669876933097839, - "label_id": 1 - }, - "h": 88, - "w": 72, - "x": 276, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.6847172975540161, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1801588386297226, - 0.5333632826805115, - 0.058468595147132874, - 0.009953507222235203, - 0.21805573999881744 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.650861918926239, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.604945719242096, - 0.12253312021493912, - 0.11633570492267609, - 0.060772962868213654, - 0.09541241079568863 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5912010669708252, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.007143308408558369, - 0.9207096695899963, - 0.031537048518657684, - 0.0022011245600879192, - 0.0384087860584259 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5669876933097839, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5134896039962769, - 0.14730523526668549, - 0.18743741512298584, - 0.0022468643728643656, - 0.14952082931995392 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 14499962880, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.27247220277786255, - "y_min": 0.4801208972930908, - "x_max": 0.3013877272605896, - "y_max": 0.53606116771698 - }, - "confidence": 0.6626909971237183, - "label_id": 1 - }, - "h": 60, - "w": 56, - "x": 523, - "y": 519 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14399713277816772, - "y_min": 0.5529139041900635, - "x_max": 0.18146935105323792, - "y_max": 0.6335666179656982 - }, - "confidence": 0.5598082542419434, - "label_id": 1 - }, - "h": 87, - "w": 72, - "x": 276, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.6626909971237183, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.6224562525749207, - 0.15141578018665314, - 0.1119021624326706, - 0.04187072440981865, - 0.07235506176948547 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5598082542419434, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5235069394111633, - 0.1836538016796112, - 0.14999139308929443, - 0.0016259717522189021, - 0.14122191071510315 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 14533296128, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1438886672258377, - "y_min": 0.5529512763023376, - "x_max": 0.18133415281772614, - "y_max": 0.6335082650184631 - }, - "confidence": 0.5503466129302979, - "label_id": 1 - }, - "h": 87, - "w": 72, - "x": 276, - "y": 597 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.2722112238407135, - "y_min": 0.48025697469711304, - "x_max": 0.30064156651496887, - "y_max": 0.5361960530281067 - }, - "confidence": 0.5378789901733398, - "label_id": 1 - }, - "h": 60, - "w": 54, - "x": 523, - "y": 519 - } - ], - "tensors": [ - { - "confidence": 0.5503466129302979, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5202459692955017, - 0.20960909128189087, - 0.14194709062576294, - 0.00152222765609622, - 0.12667565047740936 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5378789901733398, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.6301556825637817, - 0.15534168481826782, - 0.11745590716600418, - 0.03160259127616882, - 0.06544404476881027 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 14566629376, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.14394564926624298, - "y_min": 0.5531249642372131, - "x_max": 0.1811298280954361, - "y_max": 0.6333562731742859 - }, - "confidence": 0.5570855736732483, - "label_id": 1 - }, - "h": 87, - "w": 72, - "x": 276, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.5570855736732483, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5051090717315674, - 0.23902678489685059, - 0.14043942093849182, - 0.0017939606914296746, - 0.11363077163696289 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 14599962624, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1439242660999298, - "y_min": 0.5529544353485107, - "x_max": 0.18115705251693726, - "y_max": 0.633039116859436 - }, - "confidence": 0.5502709746360779, - "label_id": 1 - }, - "h": 87, - "w": 72, - "x": 276, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.5502709746360779, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4981689453125, - 0.21991728246212006, - 0.1561073362827301, - 0.002045904751867056, - 0.12376058101654053 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 14633295872, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.14382711052894592, - "y_min": 0.5527003407478333, - "x_max": 0.1812763810157776, - "y_max": 0.6331967711448669 - }, - "confidence": 0.5628987550735474, - "label_id": 1 - }, - "h": 87, - "w": 72, - "x": 276, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.5628987550735474, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5280137658119202, - 0.20414294302463531, - 0.14448410272598267, - 0.0013971311273053288, - 0.12196198105812073 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 14666629120, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.14376503229141235, - "y_min": 0.5523002743721008, - "x_max": 0.1815454065799713, - "y_max": 0.6339922547340393 - }, - "confidence": 0.5890398621559143, - "label_id": 1 - }, - "h": 89, - "w": 73, - "x": 276, - "y": 596 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.674828827381134, - "y_min": 0.3916611671447754, - "x_max": 0.7175914645195007, - "y_max": 0.4778745770454407 - }, - "confidence": 0.55686354637146, - "label_id": 1 - }, - "h": 93, - "w": 82, - "x": 1296, - "y": 423 - } - ], - "tensors": [ - { - "confidence": 0.5890398621559143, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4896634817123413, - 0.1920379400253296, - 0.17768140137195587, - 0.0018304280238226056, - 0.13878680765628815 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.55686354637146, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.13005419075489044, - 0.4809555411338806, - 0.11184818297624588, - 0.011515763588249683, - 0.26562637090682983 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 14699962368, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.14383503794670105, - "y_min": 0.5523326396942139, - "x_max": 0.18162673711776733, - "y_max": 0.6336945295333862 - }, - "confidence": 0.5779728293418884, - "label_id": 1 - }, - "h": 87, - "w": 73, - "x": 276, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.5779728293418884, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4985353350639343, - 0.22047218680381775, - 0.16310130059719086, - 0.0016912388382479548, - 0.11619994044303894 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 14733295616, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.14374905824661255, - "y_min": 0.5521818995475769, - "x_max": 0.1818467378616333, - "y_max": 0.6336265206336975 - }, - "confidence": 0.5781470537185669, - "label_id": 1 - }, - "h": 88, - "w": 73, - "x": 276, - "y": 596 - } - ], - "tensors": [ - { - "confidence": 0.5781470537185669, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.48929429054260254, - 0.19023087620735168, - 0.16883735358715057, - 0.002216791734099388, - 0.14942073822021484 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 14766628864, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.14386487007141113, - "y_min": 0.5523216724395752, - "x_max": 0.18184927105903625, - "y_max": 0.6338350772857666 - }, - "confidence": 0.5905344486236572, - "label_id": 1 - }, - "h": 88, - "w": 73, - "x": 276, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.5905344486236572, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4715479016304016, - 0.21904471516609192, - 0.17799244821071625, - 0.0015741406241431832, - 0.12984082102775574 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 14799962112, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.14384868741035461, - "y_min": 0.5525704026222229, - "x_max": 0.1818612515926361, - "y_max": 0.6342548727989197 - }, - "confidence": 0.599817156791687, - "label_id": 1 - }, - "h": 88, - "w": 73, - "x": 276, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.599817156791687, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4594649076461792, - 0.12117742747068405, - 0.23270133137702942, - 0.0020618047565221786, - 0.18459458649158478 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 14833295360, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.14371973276138306, - "y_min": 0.5526372194290161, - "x_max": 0.18179652094841003, - "y_max": 0.6338167190551758 - }, - "confidence": 0.5780158042907715, - "label_id": 1 - }, - "h": 88, - "w": 73, - "x": 276, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.5780158042907715, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.455990731716156, - 0.11727480590343475, - 0.22249175608158112, - 0.0022572679445147514, - 0.20198538899421692 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 14866628608, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6605628132820129, - "y_min": 0.3933817446231842, - "x_max": 0.6998723149299622, - "y_max": 0.4780995547771454 - }, - "confidence": 0.7365906238555908, - "label_id": 1 - }, - "h": 91, - "w": 76, - "x": 1268, - "y": 425 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14360879361629486, - "y_min": 0.5527202486991882, - "x_max": 0.1817479282617569, - "y_max": 0.6335301995277405 - }, - "confidence": 0.5774253606796265, - "label_id": 1 - }, - "h": 87, - "w": 73, - "x": 276, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.7365906238555908, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.013281090185046196, - 0.9294604063034058, - 0.010577114298939705, - 0.00172198296058923, - 0.04495938867330551 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5774253606796265, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.42666682600975037, - 0.1365785151720047, - 0.20930393040180206, - 0.002309167757630348, - 0.22514159977436066 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 14899961856, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6580226421356201, - "y_min": 0.39409199357032776, - "x_max": 0.6964812278747559, - "y_max": 0.4821303188800812 - }, - "confidence": 0.9669563174247742, - "label_id": 1 - }, - "h": 95, - "w": 74, - "x": 1263, - "y": 426 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14375045895576477, - "y_min": 0.5528681874275208, - "x_max": 0.18161305785179138, - "y_max": 0.6336696743965149 - }, - "confidence": 0.5827212333679199, - "label_id": 1 - }, - "h": 87, - "w": 73, - "x": 276, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9669563174247742, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.020646212622523308, - 0.7882031798362732, - 0.04121273756027222, - 0.003852419089525938, - 0.1460854858160019 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5827212333679199, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4413934350013733, - 0.16758853197097778, - 0.19720430672168732, - 0.002094939351081848, - 0.1917187124490738 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 14933295104, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.656420111656189, - "y_min": 0.3963996171951294, - "x_max": 0.6974430084228516, - "y_max": 0.48502272367477417 - }, - "confidence": 0.9959611296653748, - "label_id": 1 - }, - "h": 96, - "w": 79, - "x": 1260, - "y": 428 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14366506040096283, - "y_min": 0.5527113676071167, - "x_max": 0.18170754611492157, - "y_max": 0.6340570449829102 - }, - "confidence": 0.6036933660507202, - "label_id": 1 - }, - "h": 88, - "w": 73, - "x": 276, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9959611296653748, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.022734390571713448, - 0.8570903539657593, - 0.03095206804573536, - 0.0030844039283692837, - 0.08613883703947067 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6036933660507202, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4895520806312561, - 0.1668485850095749, - 0.17022483050823212, - 0.0017229198710992932, - 0.17165160179138184 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 14966628352, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6555784344673157, - "y_min": 0.397702157497406, - "x_max": 0.6952595114707947, - "y_max": 0.4840809106826782 - }, - "confidence": 0.9969915151596069, - "label_id": 1 - }, - "h": 93, - "w": 76, - "x": 1259, - "y": 430 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14364220201969147, - "y_min": 0.5527520179748535, - "x_max": 0.18165461719036102, - "y_max": 0.6341984272003174 - }, - "confidence": 0.5957090258598328, - "label_id": 1 - }, - "h": 88, - "w": 73, - "x": 276, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9969915151596069, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.020912660285830498, - 0.8250483870506287, - 0.03352390602231026, - 0.004903903231024742, - 0.11561118811368942 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5957090258598328, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4746722877025604, - 0.1538657397031784, - 0.1853152960538864, - 0.0019138379720970988, - 0.18423281610012054 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 14999961600, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6540258526802063, - "y_min": 0.4008493423461914, - "x_max": 0.6954100728034973, - "y_max": 0.4872782826423645 - }, - "confidence": 0.9993031024932861, - "label_id": 1 - }, - "h": 93, - "w": 79, - "x": 1256, - "y": 433 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14378894865512848, - "y_min": 0.5527550578117371, - "x_max": 0.18164606392383575, - "y_max": 0.6339383721351624 - }, - "confidence": 0.6014654040336609, - "label_id": 1 - }, - "h": 88, - "w": 73, - "x": 276, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9993031024932861, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.014992614276707172, - 0.8480342626571655, - 0.02751629613339901, - 0.006542784161865711, - 0.10291406512260437 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6014654040336609, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.47372421622276306, - 0.22622449696063995, - 0.1569899469614029, - 0.0016958671621978283, - 0.14136546850204468 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 15033294848, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6537730097770691, - "y_min": 0.40084683895111084, - "x_max": 0.6940621733665466, - "y_max": 0.4889127016067505 - }, - "confidence": 0.9999369382858276, - "label_id": 1 - }, - "h": 95, - "w": 78, - "x": 1255, - "y": 433 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1438005268573761, - "y_min": 0.553086519241333, - "x_max": 0.1814715564250946, - "y_max": 0.6346112489700317 - }, - "confidence": 0.6215223670005798, - "label_id": 1 - }, - "h": 88, - "w": 72, - "x": 276, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999369382858276, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.00839461013674736, - 0.9069173336029053, - 0.01590093970298767, - 0.007759197615087032, - 0.06102796643972397 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6215223670005798, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4784303903579712, - 0.2829068601131439, - 0.12154630571603775, - 0.0014414213364943862, - 0.1156749501824379 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 15066628096, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6523739695549011, - "y_min": 0.40480291843414307, - "x_max": 0.6936416029930115, - "y_max": 0.49250370264053345 - }, - "confidence": 0.9999678134918213, - "label_id": 1 - }, - "h": 95, - "w": 79, - "x": 1253, - "y": 437 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14384953677654266, - "y_min": 0.5529994964599609, - "x_max": 0.1813991516828537, - "y_max": 0.6340405941009521 - }, - "confidence": 0.6058225035667419, - "label_id": 1 - }, - "h": 88, - "w": 72, - "x": 276, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999678134918213, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.008544591255486012, - 0.878004252910614, - 0.016351105645298958, - 0.004167298786342144, - 0.09293274581432343 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6058225035667419, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4598615765571594, - 0.26853832602500916, - 0.13900023698806763, - 0.0016286637401208282, - 0.13097114861011505 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 15099961344, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6521526575088501, - "y_min": 0.4057926535606384, - "x_max": 0.6927157640457153, - "y_max": 0.49458587169647217 - }, - "confidence": 0.9999945163726807, - "label_id": 1 - }, - "h": 96, - "w": 78, - "x": 1252, - "y": 438 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14378297328948975, - "y_min": 0.5530051589012146, - "x_max": 0.18130168318748474, - "y_max": 0.6343794465065002 - }, - "confidence": 0.5983865857124329, - "label_id": 1 - }, - "h": 88, - "w": 72, - "x": 276, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999945163726807, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.008546311408281326, - 0.7050697803497314, - 0.04050195589661598, - 0.004874768666923046, - 0.24100710451602936 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5983865857124329, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.46331775188446045, - 0.25752022862434387, - 0.14237621426582336, - 0.0018337882356718183, - 0.13495194911956787 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 15133294592, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6518011093139648, - "y_min": 0.4062841236591339, - "x_max": 0.6931030750274658, - "y_max": 0.49697378277778625 - }, - "confidence": 0.9999957084655762, - "label_id": 1 - }, - "h": 98, - "w": 80, - "x": 1251, - "y": 439 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14396831393241882, - "y_min": 0.5527710318565369, - "x_max": 0.1813538372516632, - "y_max": 0.634337842464447 - }, - "confidence": 0.6171281933784485, - "label_id": 1 - }, - "h": 88, - "w": 72, - "x": 276, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999957084655762, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.005872384645044804, - 0.8700353503227234, - 0.016184387728571892, - 0.004419989883899689, - 0.10348792374134064 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6171281933784485, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.478542298078537, - 0.2718125879764557, - 0.1295173615217209, - 0.0018634889274835587, - 0.11826422065496445 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 15166627840, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.653052031993866, - "y_min": 0.40644875168800354, - "x_max": 0.6939241290092468, - "y_max": 0.49752309918403625 - }, - "confidence": 0.9999653100967407, - "label_id": 1 - }, - "h": 98, - "w": 78, - "x": 1254, - "y": 439 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14392532408237457, - "y_min": 0.5528303980827332, - "x_max": 0.18128903210163116, - "y_max": 0.634333074092865 - }, - "confidence": 0.6198945641517639, - "label_id": 1 - }, - "h": 88, - "w": 72, - "x": 276, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999653100967407, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.007858602330088615, - 0.7975986003875732, - 0.025729933753609657, - 0.007944188080728054, - 0.16086868941783905 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6198945641517639, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.47391965985298157, - 0.325125128030777, - 0.10048767179250717, - 0.0016016209265217185, - 0.09886600077152252 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 15199961088, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6534137725830078, - "y_min": 0.40780118107795715, - "x_max": 0.6948832273483276, - "y_max": 0.4962392747402191 - }, - "confidence": 0.9998735189437866, - "label_id": 1 - }, - "h": 96, - "w": 79, - "x": 1255, - "y": 440 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1439729928970337, - "y_min": 0.5525509119033813, - "x_max": 0.1813933253288269, - "y_max": 0.6343408823013306 - }, - "confidence": 0.6380576491355896, - "label_id": 1 - }, - "h": 88, - "w": 72, - "x": 276, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9998735189437866, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.007555979769676924, - 0.6224710941314697, - 0.05302594229578972, - 0.009878144599497318, - 0.30706876516342163 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6380576491355896, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4742608368396759, - 0.3331315517425537, - 0.09623585641384125, - 0.0014302075142040849, - 0.09494154900312424 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 15233294336, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6531183123588562, - "y_min": 0.41211068630218506, - "x_max": 0.6952281594276428, - "y_max": 0.5009616017341614 - }, - "confidence": 0.999944806098938, - "label_id": 1 - }, - "h": 96, - "w": 81, - "x": 1254, - "y": 445 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1440284103155136, - "y_min": 0.5523917078971863, - "x_max": 0.1814112812280655, - "y_max": 0.6348586678504944 - }, - "confidence": 0.6576374173164368, - "label_id": 1 - }, - "h": 89, - "w": 71, - "x": 277, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.999944806098938, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.006223783362656832, - 0.8320777416229248, - 0.02906159684062004, - 0.006430215202271938, - 0.12620674073696136 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6576374173164368, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.46142998337745667, - 0.3042607009410858, - 0.12005780637264252, - 0.0016751432558521628, - 0.11257635802030563 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 15266627584, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6568741202354431, - "y_min": 0.41920244693756104, - "x_max": 0.6972042918205261, - "y_max": 0.508145809173584 - }, - "confidence": 0.9941200613975525, - "label_id": 1 - }, - "h": 96, - "w": 78, - "x": 1261, - "y": 453 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1440691351890564, - "y_min": 0.5524407625198364, - "x_max": 0.18130028247833252, - "y_max": 0.6350277662277222 - }, - "confidence": 0.6508930325508118, - "label_id": 1 - }, - "h": 89, - "w": 71, - "x": 277, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9941200613975525, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.00762580893933773, - 0.8473409414291382, - 0.02257147990167141, - 0.00430952338501811, - 0.11815226078033447 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6508930325508118, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4718688726425171, - 0.3139437437057495, - 0.10497069358825684, - 0.0017114118672907352, - 0.10750523209571838 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 15299960832, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6564817428588867, - "y_min": 0.4237080216407776, - "x_max": 0.6966660022735596, - "y_max": 0.5152785181999207 - }, - "confidence": 0.956756591796875, - "label_id": 1 - }, - "h": 99, - "w": 78, - "x": 1260, - "y": 458 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14385874569416046, - "y_min": 0.5525429248809814, - "x_max": 0.18129979074001312, - "y_max": 0.6341617107391357 - }, - "confidence": 0.6101246476173401, - "label_id": 1 - }, - "h": 88, - "w": 72, - "x": 276, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.956756591796875, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.008716464973986149, - 0.74863600730896, - 0.033550385385751724, - 0.0035146535374224186, - 0.20558243989944458 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6101246476173401, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4788099229335785, - 0.3438774049282074, - 0.08586467057466507, - 0.0015418091788887978, - 0.08990620821714401 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 15333294080, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.658424973487854, - "y_min": 0.4255242347717285, - "x_max": 0.6978727579116821, - "y_max": 0.5134502649307251 - }, - "confidence": 0.9306425452232361, - "label_id": 1 - }, - "h": 95, - "w": 76, - "x": 1264, - "y": 460 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14373327791690826, - "y_min": 0.5525526404380798, - "x_max": 0.18121735751628876, - "y_max": 0.634378969669342 - }, - "confidence": 0.6061599254608154, - "label_id": 1 - }, - "h": 88, - "w": 72, - "x": 276, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9306425452232361, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.0058330362662673, - 0.8212610483169556, - 0.03947405889630318, - 0.004994797054678202, - 0.1284371316432953 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6061599254608154, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4663645327091217, - 0.37228861451148987, - 0.07946532964706421, - 0.0014401036314666271, - 0.08044136315584183 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 15366627328, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.14364862442016602, - "y_min": 0.55263751745224, - "x_max": 0.18107730150222778, - "y_max": 0.633890688419342 - }, - "confidence": 0.5991764664649963, - "label_id": 1 - }, - "h": 88, - "w": 72, - "x": 276, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.5991764664649963, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.45863163471221924, - 0.3664897382259369, - 0.08242872357368469, - 0.0016666008159518242, - 0.09078332781791687 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 15399960576, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.14366881549358368, - "y_min": 0.552421510219574, - "x_max": 0.18124018609523773, - "y_max": 0.6337404847145081 - }, - "confidence": 0.5914492011070251, - "label_id": 1 - }, - "h": 87, - "w": 72, - "x": 276, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.5914492011070251, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.43364813923835754, - 0.3355655372142792, - 0.130388543009758, - 0.0021723322570323944, - 0.09822544455528259 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 15433293824, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6607794165611267, - "y_min": 0.44273310899734497, - "x_max": 0.7078285813331604, - "y_max": 0.5445261001586914 - }, - "confidence": 0.718865156173706, - "label_id": 1 - }, - "h": 110, - "w": 90, - "x": 1269, - "y": 478 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1435517966747284, - "y_min": 0.5521629452705383, - "x_max": 0.18121522665023804, - "y_max": 0.6341678500175476 - }, - "confidence": 0.5895143747329712, - "label_id": 1 - }, - "h": 89, - "w": 72, - "x": 276, - "y": 596 - } - ], - "tensors": [ - { - "confidence": 0.718865156173706, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.0085897296667099, - 0.8568000793457031, - 0.05021744593977928, - 0.010148853063583374, - 0.07424391806125641 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5895143747329712, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3998969793319702, - 0.29428720474243164, - 0.175829216837883, - 0.002122350502759218, - 0.12786425650119781 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 15466627072, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6616235375404358, - "y_min": 0.4567206799983978, - "x_max": 0.7104390263557434, - "y_max": 0.5553082823753357 - }, - "confidence": 0.7348670959472656, - "label_id": 1 - }, - "h": 107, - "w": 94, - "x": 1270, - "y": 493 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14358583092689514, - "y_min": 0.5522269010543823, - "x_max": 0.18120664358139038, - "y_max": 0.6338769197463989 - }, - "confidence": 0.5954599380493164, - "label_id": 1 - }, - "h": 89, - "w": 72, - "x": 276, - "y": 596 - } - ], - "tensors": [ - { - "confidence": 0.7348670959472656, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.006274268496781588, - 0.9470224380493164, - 0.014206216670572758, - 0.004777834750711918, - 0.027719270437955856 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5954599380493164, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3797816038131714, - 0.3120541572570801, - 0.1831468939781189, - 0.002260940382257104, - 0.12275645136833191 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 15499960320, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6656364798545837, - "y_min": 0.47334522008895874, - "x_max": 0.7106116414070129, - "y_max": 0.5670518279075623 - }, - "confidence": 0.8287879824638367, - "label_id": 1 - }, - "h": 101, - "w": 86, - "x": 1278, - "y": 511 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14359807968139648, - "y_min": 0.5522433519363403, - "x_max": 0.1810656189918518, - "y_max": 0.6337193250656128 - }, - "confidence": 0.588464081287384, - "label_id": 1 - }, - "h": 88, - "w": 72, - "x": 276, - "y": 596 - } - ], - "tensors": [ - { - "confidence": 0.8287879824638367, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.013131385669112206, - 0.8571829199790955, - 0.028247138485312462, - 0.0096230274066329, - 0.09181559085845947 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.588464081287384, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3767654299736023, - 0.2980065941810608, - 0.2122579663991928, - 0.003364806529134512, - 0.10960518568754196 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 15533293568, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.14370733499526978, - "y_min": 0.5521372556686401, - "x_max": 0.18109863996505737, - "y_max": 0.6338542699813843 - }, - "confidence": 0.5935909748077393, - "label_id": 1 - }, - "h": 89, - "w": 72, - "x": 276, - "y": 596 - } - ], - "tensors": [ - { - "confidence": 0.5935909748077393, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3276680111885071, - 0.30113255977630615, - 0.24716025590896606, - 0.003229025285691023, - 0.1208101361989975 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 15566626816, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6698201894760132, - "y_min": 0.50077885389328, - "x_max": 0.7128688097000122, - "y_max": 0.5932292342185974 - }, - "confidence": 0.6364492774009705, - "label_id": 1 - }, - "h": 100, - "w": 83, - "x": 1286, - "y": 541 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14358846843242645, - "y_min": 0.5522857308387756, - "x_max": 0.18106980621814728, - "y_max": 0.6341646313667297 - }, - "confidence": 0.6014261245727539, - "label_id": 1 - }, - "h": 89, - "w": 72, - "x": 276, - "y": 596 - } - ], - "tensors": [ - { - "confidence": 0.6364492774009705, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.018049627542495728, - 0.7113085389137268, - 0.05575540289282799, - 0.02457965537905693, - 0.19030673801898956 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6014261245727539, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.33621641993522644, - 0.3450951874256134, - 0.1978258192539215, - 0.0025513542350381613, - 0.11831122636795044 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 15599960064, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.14360372722148895, - "y_min": 0.5522701740264893, - "x_max": 0.1810964196920395, - "y_max": 0.6339638233184814 - }, - "confidence": 0.5973766446113586, - "label_id": 1 - }, - "h": 89, - "w": 72, - "x": 276, - "y": 596 - } - ], - "tensors": [ - { - "confidence": 0.5973766446113586, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3209434449672699, - 0.3277233839035034, - 0.22068926692008972, - 0.0026559976395219564, - 0.12798787653446198 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 15633293312, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6734933853149414, - "y_min": 0.5275467038154602, - "x_max": 0.7194561958312988, - "y_max": 0.6240531802177429 - }, - "confidence": 0.6043349504470825, - "label_id": 1 - }, - "h": 104, - "w": 88, - "x": 1293, - "y": 570 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1436249166727066, - "y_min": 0.5521721243858337, - "x_max": 0.1811220794916153, - "y_max": 0.634357750415802 - }, - "confidence": 0.5981058478355408, - "label_id": 1 - }, - "h": 89, - "w": 72, - "x": 276, - "y": 596 - } - ], - "tensors": [ - { - "confidence": 0.6043349504470825, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.015133485198020935, - 0.8326185345649719, - 0.039867501705884933, - 0.0041813631542027, - 0.10819916427135468 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5981058478355408, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3088800609111786, - 0.32315072417259216, - 0.22844302654266357, - 0.0026549133472144604, - 0.1368713527917862 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 15666626560, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.14373384416103363, - "y_min": 0.5522447228431702, - "x_max": 0.1809462457895279, - "y_max": 0.6340845227241516 - }, - "confidence": 0.6010727882385254, - "label_id": 1 - }, - "h": 89, - "w": 71, - "x": 276, - "y": 596 - } - ], - "tensors": [ - { - "confidence": 0.6010727882385254, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.31149402260780334, - 0.3456938862800598, - 0.2078232318162918, - 0.002429812913760543, - 0.13255897164344788 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 15699959808, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6746017336845398, - "y_min": 0.5517213940620422, - "x_max": 0.7182634472846985, - "y_max": 0.6428622603416443 - }, - "confidence": 0.7147124409675598, - "label_id": 1 - }, - "h": 98, - "w": 84, - "x": 1295, - "y": 596 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14379963278770447, - "y_min": 0.5523982048034668, - "x_max": 0.180850088596344, - "y_max": 0.6345762014389038 - }, - "confidence": 0.6146253347396851, - "label_id": 1 - }, - "h": 88, - "w": 71, - "x": 276, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.7147124409675598, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.013981044292449951, - 0.767227828502655, - 0.04752381518483162, - 0.0061698476783931255, - 0.1650974601507187 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6146253347396851, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.28830981254577637, - 0.3699174225330353, - 0.19470177590847015, - 0.003899544244632125, - 0.14317134022712708 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 15733293056, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.672612190246582, - "y_min": 0.5554479360580444, - "x_max": 0.7180957794189453, - "y_max": 0.6510416269302368 - }, - "confidence": 0.7164722681045532, - "label_id": 1 - }, - "h": 103, - "w": 88, - "x": 1291, - "y": 600 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1438356637954712, - "y_min": 0.5521277189254761, - "x_max": 0.18095245957374573, - "y_max": 0.6351124048233032 - }, - "confidence": 0.6319644451141357, - "label_id": 1 - }, - "h": 90, - "w": 71, - "x": 276, - "y": 596 - } - ], - "tensors": [ - { - "confidence": 0.7164722681045532, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.0069092800840735435, - 0.8733307719230652, - 0.02338729053735733, - 0.006219226401299238, - 0.09015337377786636 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6319644451141357, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23211702704429626, - 0.26641324162483215, - 0.29356682300567627, - 0.004169255029410124, - 0.2037336528301239 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 15766626304, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6704227328300476, - "y_min": 0.5632872581481934, - "x_max": 0.7195062041282654, - "y_max": 0.6602319478988647 - }, - "confidence": 0.7018569707870483, - "label_id": 1 - }, - "h": 105, - "w": 94, - "x": 1287, - "y": 608 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1438312530517578, - "y_min": 0.5523964762687683, - "x_max": 0.18088144063949585, - "y_max": 0.6350018382072449 - }, - "confidence": 0.640360414981842, - "label_id": 1 - }, - "h": 89, - "w": 71, - "x": 276, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.7018569707870483, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.0034189363941550255, - 0.953398585319519, - 0.013480296358466148, - 0.00300018722191453, - 0.02670198120176792 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.640360414981842, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3054462671279907, - 0.38320109248161316, - 0.1794850379228592, - 0.0033994000405073166, - 0.12846824526786804 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 15799959552, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6733381748199463, - "y_min": 0.5771063566207886, - "x_max": 0.7181828022003174, - "y_max": 0.6687121391296387 - }, - "confidence": 0.737434446811676, - "label_id": 1 - }, - "h": 99, - "w": 86, - "x": 1293, - "y": 623 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1438504457473755, - "y_min": 0.5527271032333374, - "x_max": 0.18080449104309082, - "y_max": 0.6346646547317505 - }, - "confidence": 0.625615656375885, - "label_id": 1 - }, - "h": 88, - "w": 71, - "x": 276, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.737434446811676, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.009563243016600609, - 0.9096490740776062, - 0.031050845980644226, - 0.0029947415459901094, - 0.04674205929040909 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.625615656375885, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2060510367155075, - 0.44210925698280334, - 0.21574851870536804, - 0.004744620993733406, - 0.13134658336639404 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 15833292800, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6704367399215698, - "y_min": 0.5791164636611938, - "x_max": 0.7197604179382324, - "y_max": 0.6747239828109741 - }, - "confidence": 0.6403369307518005, - "label_id": 1 - }, - "h": 104, - "w": 95, - "x": 1287, - "y": 625 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1438436359167099, - "y_min": 0.5528663992881775, - "x_max": 0.18083055317401886, - "y_max": 0.6342988610267639 - }, - "confidence": 0.6270735859870911, - "label_id": 1 - }, - "h": 88, - "w": 71, - "x": 276, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.6403369307518005, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.005417505744844675, - 0.9505443572998047, - 0.01281292736530304, - 0.001991692930459976, - 0.029233548790216446 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6270735859870911, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1965319961309433, - 0.5168907642364502, - 0.1794026643037796, - 0.004215069580823183, - 0.10295949131250381 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 15866626048, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.14411064982414246, - "y_min": 0.5524395704269409, - "x_max": 0.18095946311950684, - "y_max": 0.6344656944274902 - }, - "confidence": 0.6518338322639465, - "label_id": 1 - }, - "h": 88, - "w": 70, - "x": 277, - "y": 597 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.6708917617797852, - "y_min": 0.5818288326263428, - "x_max": 0.719316840171814, - "y_max": 0.6755200624465942 - }, - "confidence": 0.546299934387207, - "label_id": 1 - }, - "h": 102, - "w": 93, - "x": 1288, - "y": 628 - } - ], - "tensors": [ - { - "confidence": 0.6518338322639465, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.17649777233600616, - 0.5846262574195862, - 0.1374642252922058, - 0.003258822951465845, - 0.09815290570259094 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.546299934387207, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.004255253821611404, - 0.919998824596405, - 0.02137795276939869, - 0.0029434887692332268, - 0.05142448842525482 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 15899959296, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.14402630925178528, - "y_min": 0.5525469779968262, - "x_max": 0.18090426921844482, - "y_max": 0.6342097520828247 - }, - "confidence": 0.6498837471008301, - "label_id": 1 - }, - "h": 88, - "w": 70, - "x": 277, - "y": 597 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.6682864427566528, - "y_min": 0.5891945362091064, - "x_max": 0.715129017829895, - "y_max": 0.675754189491272 - }, - "confidence": 0.5968447327613831, - "label_id": 1 - }, - "h": 94, - "w": 90, - "x": 1283, - "y": 636 - } - ], - "tensors": [ - { - "confidence": 0.6498837471008301, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.21084079146385193, - 0.5285263061523438, - 0.13984845578670502, - 0.0037192797753959894, - 0.11706524342298508 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5968447327613831, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.009975280612707138, - 0.9448689818382263, - 0.010910055600106716, - 0.0044552236795425415, - 0.029790451750159264 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 15933292544, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.14408133924007416, - "y_min": 0.5530300736427307, - "x_max": 0.180947408080101, - "y_max": 0.6337658762931824 - }, - "confidence": 0.6583893895149231, - "label_id": 1 - }, - "h": 87, - "w": 70, - "x": 277, - "y": 597 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.6683600544929504, - "y_min": 0.5890315175056458, - "x_max": 0.7152929902076721, - "y_max": 0.6754994988441467 - }, - "confidence": 0.6031767129898071, - "label_id": 1 - }, - "h": 94, - "w": 90, - "x": 1283, - "y": 636 - } - ], - "tensors": [ - { - "confidence": 0.6583893895149231, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2335996776819229, - 0.4846840500831604, - 0.13937066495418549, - 0.003035056870430708, - 0.1393105387687683 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6031767129898071, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.010748393833637238, - 0.9361523389816284, - 0.011037115007638931, - 0.004823892377316952, - 0.03723825514316559 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 15966625792, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.14419424533843994, - "y_min": 0.5532042980194092, - "x_max": 0.18075677752494812, - "y_max": 0.6334066390991211 - }, - "confidence": 0.6541914939880371, - "label_id": 1 - }, - "h": 87, - "w": 70, - "x": 277, - "y": 597 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.668254554271698, - "y_min": 0.5869055986404419, - "x_max": 0.715968668460846, - "y_max": 0.6747450828552246 - }, - "confidence": 0.5549628734588623, - "label_id": 1 - }, - "h": 95, - "w": 92, - "x": 1283, - "y": 634 - } - ], - "tensors": [ - { - "confidence": 0.6541914939880371, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.20845098793506622, - 0.5777453184127808, - 0.10625025629997253, - 0.003043242497369647, - 0.10451015830039978 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5549628734588623, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.014274830929934978, - 0.802683413028717, - 0.01626325398683548, - 0.008540385402739048, - 0.15823814272880554 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 15999959040, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.14410066604614258, - "y_min": 0.5533027648925781, - "x_max": 0.1809319257736206, - "y_max": 0.6339309215545654 - }, - "confidence": 0.6640586256980896, - "label_id": 1 - }, - "h": 87, - "w": 70, - "x": 277, - "y": 598 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.6681603789329529, - "y_min": 0.5835819840431213, - "x_max": 0.7153592705726624, - "y_max": 0.6738514304161072 - }, - "confidence": 0.6619868874549866, - "label_id": 1 - }, - "h": 98, - "w": 90, - "x": 1283, - "y": 630 - } - ], - "tensors": [ - { - "confidence": 0.6640586256980896, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.156071275472641, - 0.6255955100059509, - 0.1355014443397522, - 0.0026725539937615395, - 0.0801592543721199 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6619868874549866, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.020601827651262283, - 0.6446070075035095, - 0.021792719140648842, - 0.006758064962923527, - 0.30624035000801086 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 16033292288, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6670346260070801, - "y_min": 0.5807162523269653, - "x_max": 0.7149899005889893, - "y_max": 0.6744015216827393 - }, - "confidence": 0.7456965446472168, - "label_id": 1 - }, - "h": 101, - "w": 92, - "x": 1281, - "y": 627 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1440020352602005, - "y_min": 0.5532965660095215, - "x_max": 0.1809474676847458, - "y_max": 0.6336731910705566 - }, - "confidence": 0.6614289879798889, - "label_id": 1 - }, - "h": 86, - "w": 71, - "x": 276, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.7456965446472168, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.01640821434557438, - 0.8977492451667786, - 0.00962072517722845, - 0.003771198447793722, - 0.0724506601691246 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6614289879798889, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.10697463154792786, - 0.7311219573020935, - 0.10252293944358826, - 0.001955098006874323, - 0.05742537975311279 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 16066625536, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6678828597068787, - "y_min": 0.5793458223342896, - "x_max": 0.7134456038475037, - "y_max": 0.6710460186004639 - }, - "confidence": 0.7445778846740723, - "label_id": 1 - }, - "h": 99, - "w": 88, - "x": 1282, - "y": 626 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14415495097637177, - "y_min": 0.5530471801757812, - "x_max": 0.18122656643390656, - "y_max": 0.6332302093505859 - }, - "confidence": 0.676054060459137, - "label_id": 1 - }, - "h": 87, - "w": 71, - "x": 277, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.7445778846740723, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.041873786598443985, - 0.767483651638031, - 0.03700730949640274, - 0.00427684560418129, - 0.14935842156410217 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.676054060459137, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.07424633204936981, - 0.8144177794456482, - 0.06897731870412827, - 0.0023196807596832514, - 0.04003890976309776 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 16099958784, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6669871211051941, - "y_min": 0.5725795030593872, - "x_max": 0.7137624621391296, - "y_max": 0.6632415056228638 - }, - "confidence": 0.6890411972999573, - "label_id": 1 - }, - "h": 98, - "w": 89, - "x": 1281, - "y": 618 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14406658709049225, - "y_min": 0.5530953407287598, - "x_max": 0.18150781095027924, - "y_max": 0.6329824924468994 - }, - "confidence": 0.6860706806182861, - "label_id": 1 - }, - "h": 87, - "w": 71, - "x": 277, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.6890411972999573, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.014250543899834156, - 0.7676922678947449, - 0.03390185534954071, - 0.006801167968660593, - 0.17735417187213898 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6860706806182861, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09135353565216064, - 0.8082505464553833, - 0.05859862267971039, - 0.002219506073743105, - 0.03957780823111534 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 16133292032, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6630234122276306, - "y_min": 0.5684326887130737, - "x_max": 0.7126798033714294, - "y_max": 0.6624289751052856 - }, - "confidence": 0.7208318710327148, - "label_id": 1 - }, - "h": 101, - "w": 95, - "x": 1273, - "y": 614 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14415551722049713, - "y_min": 0.5529255270957947, - "x_max": 0.18172569572925568, - "y_max": 0.6334496140480042 - }, - "confidence": 0.6944934129714966, - "label_id": 1 - }, - "h": 87, - "w": 72, - "x": 277, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.7208318710327148, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.034584254026412964, - 0.6231204271316528, - 0.021416760981082916, - 0.004753073211759329, - 0.31612545251846313 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6944934129714966, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09528090059757233, - 0.795348048210144, - 0.05780845135450363, - 0.0023127389140427113, - 0.04924981668591499 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 16166625280, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.14427319169044495, - "y_min": 0.5529026389122009, - "x_max": 0.18201452493667603, - "y_max": 0.6328880190849304 - }, - "confidence": 0.6874197721481323, - "label_id": 1 - }, - "h": 87, - "w": 72, - "x": 277, - "y": 597 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.662128210067749, - "y_min": 0.5662158131599426, - "x_max": 0.7125813961029053, - "y_max": 0.6610316634178162 - }, - "confidence": 0.6610743999481201, - "label_id": 1 - }, - "h": 102, - "w": 97, - "x": 1271, - "y": 612 - } - ], - "tensors": [ - { - "confidence": 0.6874197721481323, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.10398930311203003, - 0.7638224363327026, - 0.0675240159034729, - 0.002280623186379671, - 0.06238361820578575 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6610743999481201, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.041406840085983276, - 0.7035417556762695, - 0.022647051140666008, - 0.005913681350648403, - 0.22649064660072327 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 16199958528, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6590612530708313, - "y_min": 0.5700106620788574, - "x_max": 0.7082186341285706, - "y_max": 0.6565415859222412 - }, - "confidence": 0.8557271361351013, - "label_id": 1 - }, - "h": 93, - "w": 95, - "x": 1265, - "y": 616 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14427131414413452, - "y_min": 0.5533137917518616, - "x_max": 0.18192645907402039, - "y_max": 0.6326280236244202 - }, - "confidence": 0.687707245349884, - "label_id": 1 - }, - "h": 85, - "w": 72, - "x": 277, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.8557271361351013, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09592622518539429, - 0.6333597302436829, - 0.03496146574616432, - 0.002116680145263672, - 0.233635812997818 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.687707245349884, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09740747511386871, - 0.8205998539924622, - 0.035660270601511, - 0.002643349813297391, - 0.04368904232978821 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 16233291776, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6596224308013916, - "y_min": 0.570000171661377, - "x_max": 0.7076348066329956, - "y_max": 0.6555317640304565 - }, - "confidence": 0.8029829859733582, - "label_id": 1 - }, - "h": 92, - "w": 93, - "x": 1266, - "y": 616 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1445087045431137, - "y_min": 0.5530346035957336, - "x_max": 0.1821095496416092, - "y_max": 0.6319641470909119 - }, - "confidence": 0.6891540288925171, - "label_id": 1 - }, - "h": 86, - "w": 73, - "x": 277, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.8029829859733582, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.0579189658164978, - 0.1256978064775467, - 0.04965357854962349, - 0.0032239635474979877, - 0.7635056972503662 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6891540288925171, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09590207785367966, - 0.7664568424224854, - 0.05964110791683197, - 0.0029794424772262573, - 0.07502061128616333 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 16266625024, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.659436047077179, - "y_min": 0.5646175146102905, - "x_max": 0.706646740436554, - "y_max": 0.6533181667327881 - }, - "confidence": 0.7993122339248657, - "label_id": 1 - }, - "h": 96, - "w": 91, - "x": 1266, - "y": 610 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14456485211849213, - "y_min": 0.552757740020752, - "x_max": 0.18225042521953583, - "y_max": 0.6320487260818481 - }, - "confidence": 0.6924062967300415, - "label_id": 1 - }, - "h": 86, - "w": 72, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.7993122339248657, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.11402500420808792, - 0.1306571066379547, - 0.040265727788209915, - 0.004330209922045469, - 0.7107218503952026 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6924062967300415, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.10050100833177567, - 0.7442570924758911, - 0.06539499014616013, - 0.003788204863667488, - 0.08605873584747314 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 16299958272, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6593375205993652, - "y_min": 0.5650177001953125, - "x_max": 0.7060117721557617, - "y_max": 0.6529500484466553 - }, - "confidence": 0.7882495522499084, - "label_id": 1 - }, - "h": 95, - "w": 90, - "x": 1266, - "y": 610 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1448456048965454, - "y_min": 0.5525715947151184, - "x_max": 0.18240374326705933, - "y_max": 0.6317166686058044 - }, - "confidence": 0.6861977577209473, - "label_id": 1 - }, - "h": 85, - "w": 72, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.7882495522499084, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.13982072472572327, - 0.054675132036209106, - 0.04113447666168213, - 0.025154320523142815, - 0.7392152547836304 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6861977577209473, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09568513929843903, - 0.7390012741088867, - 0.06481603533029556, - 0.00380090088583529, - 0.09669668972492218 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 16333291520, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6577486395835876, - "y_min": 0.5661587119102478, - "x_max": 0.7057850956916809, - "y_max": 0.6543671488761902 - }, - "confidence": 0.9210761785507202, - "label_id": 1 - }, - "h": 96, - "w": 92, - "x": 1263, - "y": 611 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14509586989879608, - "y_min": 0.5526339411735535, - "x_max": 0.18231479823589325, - "y_max": 0.6315378546714783 - }, - "confidence": 0.680769145488739, - "label_id": 1 - }, - "h": 85, - "w": 71, - "x": 279, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9210761785507202, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1901209056377411, - 0.11167016625404358, - 0.08267983049154282, - 0.02881825529038906, - 0.5867108702659607 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.680769145488739, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1089046522974968, - 0.6733879446983337, - 0.07762693613767624, - 0.004340406507253647, - 0.13574004173278809 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 16366624768, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6587533354759216, - "y_min": 0.565952479839325, - "x_max": 0.7035672068595886, - "y_max": 0.654705822467804 - }, - "confidence": 0.9613361954689026, - "label_id": 1 - }, - "h": 96, - "w": 86, - "x": 1265, - "y": 611 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14521078765392303, - "y_min": 0.5522348880767822, - "x_max": 0.1823289543390274, - "y_max": 0.6316092014312744 - }, - "confidence": 0.6824213266372681, - "label_id": 1 - }, - "h": 86, - "w": 71, - "x": 279, - "y": 596 - } - ], - "tensors": [ - { - "confidence": 0.9613361954689026, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1558402180671692, - 0.07717211544513702, - 0.03859405219554901, - 0.03527666628360748, - 0.6931170225143433 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6824213266372681, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.10241048038005829, - 0.5786893367767334, - 0.1184258982539177, - 0.00661364383995533, - 0.19386059045791626 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 16399958016, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6578966975212097, - "y_min": 0.5682730674743652, - "x_max": 0.7034159302711487, - "y_max": 0.6573693752288818 - }, - "confidence": 0.9691861271858215, - "label_id": 1 - }, - "h": 96, - "w": 88, - "x": 1263, - "y": 614 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14512231945991516, - "y_min": 0.5520219802856445, - "x_max": 0.18242931365966797, - "y_max": 0.6314948797225952 - }, - "confidence": 0.683241069316864, - "label_id": 1 - }, - "h": 86, - "w": 71, - "x": 279, - "y": 596 - } - ], - "tensors": [ - { - "confidence": 0.9691861271858215, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.13956783711910248, - 0.06879683583974838, - 0.04493870586156845, - 0.030461281538009644, - 0.7162352204322815 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.683241069316864, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.10893003642559052, - 0.723447859287262, - 0.060578081756830215, - 0.004485234618186951, - 0.10255870223045349 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 16433291264, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6569098234176636, - "y_min": 0.5705322027206421, - "x_max": 0.7017263174057007, - "y_max": 0.6604321002960205 - }, - "confidence": 0.9938762784004211, - "label_id": 1 - }, - "h": 97, - "w": 86, - "x": 1261, - "y": 616 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14522609114646912, - "y_min": 0.5519565939903259, - "x_max": 0.18253949284553528, - "y_max": 0.6316328644752502 - }, - "confidence": 0.6828456521034241, - "label_id": 1 - }, - "h": 86, - "w": 71, - "x": 279, - "y": 596 - } - ], - "tensors": [ - { - "confidence": 0.9938762784004211, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.12270241230726242, - 0.043823663145303726, - 0.05143783986568451, - 0.02763989381492138, - 0.7543962001800537 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6828456521034241, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.10792508721351624, - 0.725315272808075, - 0.0644126906991005, - 0.004095425363630056, - 0.09825152903795242 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 16466624512, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6547431349754333, - "y_min": 0.5705385208129883, - "x_max": 0.7011067271232605, - "y_max": 0.6611201763153076 - }, - "confidence": 0.9994577765464783, - "label_id": 1 - }, - "h": 98, - "w": 89, - "x": 1257, - "y": 616 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14526617527008057, - "y_min": 0.5521133542060852, - "x_max": 0.1824621856212616, - "y_max": 0.6312726140022278 - }, - "confidence": 0.6693693399429321, - "label_id": 1 - }, - "h": 86, - "w": 71, - "x": 279, - "y": 596 - } - ], - "tensors": [ - { - "confidence": 0.9994577765464783, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1518300622701645, - 0.048373106867074966, - 0.041029609739780426, - 0.03412226587533951, - 0.7246449589729309 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6693693399429321, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1015339270234108, - 0.7374528050422668, - 0.06029094010591507, - 0.0043746670708060265, - 0.09634772688150406 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 16499957760, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6514081358909607, - "y_min": 0.5709684491157532, - "x_max": 0.6970598101615906, - "y_max": 0.6587386727333069 - }, - "confidence": 0.9999891519546509, - "label_id": 1 - }, - "h": 94, - "w": 87, - "x": 1251, - "y": 617 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14535260200500488, - "y_min": 0.5520763993263245, - "x_max": 0.18235301971435547, - "y_max": 0.6313754916191101 - }, - "confidence": 0.6712712645530701, - "label_id": 1 - }, - "h": 86, - "w": 71, - "x": 279, - "y": 596 - } - ], - "tensors": [ - { - "confidence": 0.9999891519546509, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.11756759136915207, - 0.04321913793683052, - 0.053370896726846695, - 0.06193244457244873, - 0.723909854888916 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6712712645530701, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.10117103904485703, - 0.7632311582565308, - 0.053887542337179184, - 0.003953391220420599, - 0.07775690406560898 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 16533291008, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6497080326080322, - "y_min": 0.5740151405334473, - "x_max": 0.6950054168701172, - "y_max": 0.6603924036026001 - }, - "confidence": 0.9999980926513672, - "label_id": 1 - }, - "h": 93, - "w": 87, - "x": 1247, - "y": 620 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1453128159046173, - "y_min": 0.5523537397384644, - "x_max": 0.18231546878814697, - "y_max": 0.6312907934188843 - }, - "confidence": 0.660589873790741, - "label_id": 1 - }, - "h": 85, - "w": 71, - "x": 279, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999980926513672, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2996646761894226, - 0.061955273151397705, - 0.05524592474102974, - 0.03455415740609169, - 0.5485799908638 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.660589873790741, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1036989614367485, - 0.7894198894500732, - 0.042155295610427856, - 0.003034113673493266, - 0.0616917759180069 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 16566624256, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6486002206802368, - "y_min": 0.5734991431236267, - "x_max": 0.6925021409988403, - "y_max": 0.6610060334205627 - }, - "confidence": 0.9999984502792358, - "label_id": 1 - }, - "h": 95, - "w": 85, - "x": 1245, - "y": 619 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14539575576782227, - "y_min": 0.5524144768714905, - "x_max": 0.1823907196521759, - "y_max": 0.631486713886261 - }, - "confidence": 0.6648685932159424, - "label_id": 1 - }, - "h": 85, - "w": 71, - "x": 279, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999984502792358, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2238917052745819, - 0.04941900819540024, - 0.08095156401395798, - 0.01855751872062683, - 0.627180278301239 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6648685932159424, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.11134710907936096, - 0.769023597240448, - 0.044795259833335876, - 0.0035619817208498716, - 0.07127200812101364 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 16599957504, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6457383632659912, - "y_min": 0.5706309676170349, - "x_max": 0.6917221546173096, - "y_max": 0.6589774489402771 - }, - "confidence": 0.9999996423721313, - "label_id": 1 - }, - "h": 96, - "w": 88, - "x": 1240, - "y": 616 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14540880918502808, - "y_min": 0.5524027943611145, - "x_max": 0.18241554498672485, - "y_max": 0.6316608786582947 - }, - "confidence": 0.668536901473999, - "label_id": 1 - }, - "h": 85, - "w": 71, - "x": 279, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999996423721313, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.16109853982925415, - 0.03153301030397415, - 0.09947384148836136, - 0.015804221853613853, - 0.6920903921127319 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.668536901473999, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1123223677277565, - 0.7522279024124146, - 0.05146956443786621, - 0.00407140189781785, - 0.07990879565477371 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 16633290752, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6465063095092773, - "y_min": 0.5675186514854431, - "x_max": 0.6868345737457275, - "y_max": 0.6546096205711365 - }, - "confidence": 0.9999978542327881, - "label_id": 1 - }, - "h": 94, - "w": 78, - "x": 1241, - "y": 613 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14546532928943634, - "y_min": 0.55232834815979, - "x_max": 0.18242575228214264, - "y_max": 0.6317850351333618 - }, - "confidence": 0.6699470281600952, - "label_id": 1 - }, - "h": 85, - "w": 71, - "x": 279, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999978542327881, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.20944540202617645, - 0.040776968002319336, - 0.09829821437597275, - 0.02024058811366558, - 0.6312388181686401 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6699470281600952, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.10588683933019638, - 0.755174994468689, - 0.05316443368792534, - 0.004343757405877113, - 0.08143002539873123 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 16666624000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6456494927406311, - "y_min": 0.5656740069389343, - "x_max": 0.6863496899604797, - "y_max": 0.6505014300346375 - }, - "confidence": 0.9999991655349731, - "label_id": 1 - }, - "h": 92, - "w": 78, - "x": 1240, - "y": 611 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14530493319034576, - "y_min": 0.5526465177536011, - "x_max": 0.18222053349018097, - "y_max": 0.6318658590316772 - }, - "confidence": 0.6781402826309204, - "label_id": 1 - }, - "h": 85, - "w": 71, - "x": 279, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999991655349731, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.11815587431192398, - 0.032462865114212036, - 0.1520290970802307, - 0.02187238447368145, - 0.6754798293113708 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6781402826309204, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.07755232602357864, - 0.8000190258026123, - 0.06026832014322281, - 0.005382250528782606, - 0.05677804350852966 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 16699957248, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6462137699127197, - "y_min": 0.5600482225418091, - "x_max": 0.6842323541641235, - "y_max": 0.6446888446807861 - }, - "confidence": 0.9999879598617554, - "label_id": 1 - }, - "h": 91, - "w": 73, - "x": 1241, - "y": 605 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14521607756614685, - "y_min": 0.5525845289230347, - "x_max": 0.1820162534713745, - "y_max": 0.6317318677902222 - }, - "confidence": 0.6795529723167419, - "label_id": 1 - }, - "h": 85, - "w": 70, - "x": 279, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999879598617554, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09532774984836578, - 0.025667523965239525, - 0.06084820255637169, - 0.02801603637635708, - 0.7901405692100525 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6795529723167419, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09774099290370941, - 0.7375813126564026, - 0.07193466275930405, - 0.005629999563097954, - 0.08711300790309906 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 16733290496, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6449288129806519, - "y_min": 0.5591699481010437, - "x_max": 0.6807454824447632, - "y_max": 0.6373745799064636 - }, - "confidence": 0.9972879886627197, - "label_id": 1 - }, - "h": 84, - "w": 69, - "x": 1238, - "y": 604 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14519764482975006, - "y_min": 0.5524428486824036, - "x_max": 0.18173854053020477, - "y_max": 0.6317140460014343 - }, - "confidence": 0.6722562313079834, - "label_id": 1 - }, - "h": 85, - "w": 70, - "x": 279, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9972879886627197, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.27208998799324036, - 0.035239893943071365, - 0.1544984132051468, - 0.01781678944826126, - 0.5203548073768616 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6722562313079834, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.0909150093793869, - 0.758069634437561, - 0.0784139633178711, - 0.003778482787311077, - 0.06882290542125702 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 16766623744, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6434758305549622, - "y_min": 0.5555434823036194, - "x_max": 0.6787353157997131, - "y_max": 0.6349779963493347 - }, - "confidence": 0.9565269351005554, - "label_id": 1 - }, - "h": 86, - "w": 68, - "x": 1235, - "y": 600 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14507457613945007, - "y_min": 0.5524632930755615, - "x_max": 0.18159329891204834, - "y_max": 0.6315031051635742 - }, - "confidence": 0.6658377051353455, - "label_id": 1 - }, - "h": 85, - "w": 70, - "x": 279, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9565269351005554, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.18440736830234528, - 0.03448009863495827, - 0.17615008354187012, - 0.020060542970895767, - 0.5849019289016724 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6658377051353455, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09417837858200073, - 0.7517468333244324, - 0.07526417821645737, - 0.004457036964595318, - 0.07435358315706253 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 16799956992, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1451774537563324, - "y_min": 0.5526362061500549, - "x_max": 0.18152034282684326, - "y_max": 0.631467878818512 - }, - "confidence": 0.6599246859550476, - "label_id": 1 - }, - "h": 85, - "w": 70, - "x": 279, - "y": 597 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.6423372030258179, - "y_min": 0.5516296029090881, - "x_max": 0.6786503791809082, - "y_max": 0.6320310235023499 - }, - "confidence": 0.6169421076774597, - "label_id": 1 - }, - "h": 87, - "w": 70, - "x": 1233, - "y": 596 - } - ], - "tensors": [ - { - "confidence": 0.6599246859550476, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.06724096834659576, - 0.697821855545044, - 0.14498738944530487, - 0.0027271199505776167, - 0.087222620844841 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6169421076774597, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.12991707026958466, - 0.02108631655573845, - 0.12183152139186859, - 0.021164556965231895, - 0.7060004472732544 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 16833290240, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6406357288360596, - "y_min": 0.5394575595855713, - "x_max": 0.677007794380188, - "y_max": 0.6184757947921753 - }, - "confidence": 0.778139591217041, - "label_id": 1 - }, - "h": 85, - "w": 70, - "x": 1230, - "y": 583 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14498354494571686, - "y_min": 0.5525510907173157, - "x_max": 0.18145395815372467, - "y_max": 0.632014811038971 - }, - "confidence": 0.6650407910346985, - "label_id": 1 - }, - "h": 86, - "w": 70, - "x": 278, - "y": 597 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.47679656744003296, - "y_min": 0.46853160858154297, - "x_max": 0.5067225694656372, - "y_max": 0.5321240425109863 - }, - "confidence": 0.5662021040916443, - "label_id": 1 - }, - "h": 69, - "w": 58, - "x": 915, - "y": 506 - } - ], - "tensors": [ - { - "confidence": 0.778139591217041, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.08458134531974792, - 0.02227700874209404, - 0.05660365894436836, - 0.04715333506464958, - 0.789384663105011 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6650407910346985, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.06910697370767593, - 0.6632370948791504, - 0.16662374138832092, - 0.002591747557744384, - 0.09844046831130981 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5662021040916443, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.02211504802107811, - 0.5221347212791443, - 0.29419541358947754, - 0.004785793833434582, - 0.1567690223455429 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 16866623488, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6389074921607971, - "y_min": 0.5400455594062805, - "x_max": 0.6750008463859558, - "y_max": 0.6171218752861023 - }, - "confidence": 0.9742544889450073, - "label_id": 1 - }, - "h": 83, - "w": 69, - "x": 1227, - "y": 583 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1448495090007782, - "y_min": 0.5526092648506165, - "x_max": 0.1813620626926422, - "y_max": 0.6319712996482849 - }, - "confidence": 0.6564356684684753, - "label_id": 1 - }, - "h": 86, - "w": 70, - "x": 278, - "y": 597 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.4765929877758026, - "y_min": 0.4689898192882538, - "x_max": 0.5064314603805542, - "y_max": 0.5309395790100098 - }, - "confidence": 0.5594398975372314, - "label_id": 1 - }, - "h": 66, - "w": 57, - "x": 915, - "y": 507 - } - ], - "tensors": [ - { - "confidence": 0.9742544889450073, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.12964549660682678, - 0.020713070407509804, - 0.051980696618556976, - 0.07445217669010162, - 0.7232085466384888 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6564356684684753, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.07434194535017014, - 0.6596707105636597, - 0.15668876469135284, - 0.0022911466658115387, - 0.1070074513554573 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5594398975372314, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.03339961916208267, - 0.5333832502365112, - 0.2656317949295044, - 0.007503409404307604, - 0.16008193790912628 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 16899956736, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6382175087928772, - "y_min": 0.5398995876312256, - "x_max": 0.6743949055671692, - "y_max": 0.620367169380188 - }, - "confidence": 0.9071884155273438, - "label_id": 1 - }, - "h": 87, - "w": 70, - "x": 1225, - "y": 583 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14466911554336548, - "y_min": 0.5526421666145325, - "x_max": 0.18123194575309753, - "y_max": 0.6317295432090759 - }, - "confidence": 0.6342679262161255, - "label_id": 1 - }, - "h": 85, - "w": 70, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9071884155273438, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1562749743461609, - 0.017169393599033356, - 0.051546696573495865, - 0.04075322672724724, - 0.7342557907104492 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6342679262161255, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.08244241029024124, - 0.705240786075592, - 0.11020942032337189, - 0.0023159405682235956, - 0.09979141503572464 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 16933289984, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6385418772697449, - "y_min": 0.5382313132286072, - "x_max": 0.6750349402427673, - "y_max": 0.6165357232093811 - }, - "confidence": 0.9852156639099121, - "label_id": 1 - }, - "h": 85, - "w": 70, - "x": 1226, - "y": 581 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14468756318092346, - "y_min": 0.5525557994842529, - "x_max": 0.18119308352470398, - "y_max": 0.6320153474807739 - }, - "confidence": 0.6409677863121033, - "label_id": 1 - }, - "h": 86, - "w": 70, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9852156639099121, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.11836716532707214, - 0.014506842941045761, - 0.02308919094502926, - 0.017371436581015587, - 0.8266654014587402 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6409677863121033, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.08426133543252945, - 0.6930381655693054, - 0.11195892095565796, - 0.0025799500290304422, - 0.10816163569688797 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 16966623232, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6374797821044922, - "y_min": 0.5387635231018066, - "x_max": 0.6744771003723145, - "y_max": 0.6183410882949829 - }, - "confidence": 0.9789576530456543, - "label_id": 1 - }, - "h": 86, - "w": 71, - "x": 1224, - "y": 582 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14465855062007904, - "y_min": 0.552520215511322, - "x_max": 0.18142618238925934, - "y_max": 0.6322991251945496 - }, - "confidence": 0.6551797986030579, - "label_id": 1 - }, - "h": 86, - "w": 70, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9789576530456543, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.07860936969518661, - 0.00809487234801054, - 0.037175245583057404, - 0.006980051286518574, - 0.8691405653953552 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6551797986030579, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.07120621204376221, - 0.8119901418685913, - 0.056666161864995956, - 0.001968840602785349, - 0.05816866084933281 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 16999956480, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6362646222114563, - "y_min": 0.538609504699707, - "x_max": 0.6735785603523254, - "y_max": 0.6186953783035278 - }, - "confidence": 0.9612236022949219, - "label_id": 1 - }, - "h": 86, - "w": 71, - "x": 1222, - "y": 582 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14452895522117615, - "y_min": 0.5526289343833923, - "x_max": 0.18110176920890808, - "y_max": 0.6324428915977478 - }, - "confidence": 0.6418220400810242, - "label_id": 1 - }, - "h": 86, - "w": 71, - "x": 277, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9612236022949219, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09811278432607651, - 0.008902712725102901, - 0.05199553072452545, - 0.007349561434239149, - 0.8336394429206848 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6418220400810242, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.07039831578731537, - 0.8196099996566772, - 0.05518259480595589, - 0.0018720760708674788, - 0.0529370978474617 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 17033289728, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6363418102264404, - "y_min": 0.5390257835388184, - "x_max": 0.6732062101364136, - "y_max": 0.620665431022644 - }, - "confidence": 0.9172327518463135, - "label_id": 1 - }, - "h": 88, - "w": 71, - "x": 1222, - "y": 582 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14456261694431305, - "y_min": 0.5523819327354431, - "x_max": 0.18135036528110504, - "y_max": 0.6321253180503845 - }, - "confidence": 0.6338517665863037, - "label_id": 1 - }, - "h": 86, - "w": 70, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9172327518463135, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.12689298391342163, - 0.013978519476950169, - 0.08973127603530884, - 0.006804771721363068, - 0.7625924348831177 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6338517665863037, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09311333298683167, - 0.7622358798980713, - 0.060248736292123795, - 0.0021230862475931644, - 0.08227898180484772 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 17066622976, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6368704438209534, - "y_min": 0.5395222902297974, - "x_max": 0.6737385392189026, - "y_max": 0.6206755638122559 - }, - "confidence": 0.9108552932739258, - "label_id": 1 - }, - "h": 87, - "w": 71, - "x": 1223, - "y": 583 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14456364512443542, - "y_min": 0.5520859956741333, - "x_max": 0.18127086758613586, - "y_max": 0.6325287818908691 - }, - "confidence": 0.6413567662239075, - "label_id": 1 - }, - "h": 87, - "w": 70, - "x": 278, - "y": 596 - } - ], - "tensors": [ - { - "confidence": 0.9108552932739258, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.07710282504558563, - 0.011498933658003807, - 0.054957255721092224, - 0.004021052736788988, - 0.852419912815094 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6413567662239075, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.0770302340388298, - 0.7430762648582458, - 0.08311519771814346, - 0.0025867174845188856, - 0.0941915214061737 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 17099956224, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6370443105697632, - "y_min": 0.5413451194763184, - "x_max": 0.6729947328567505, - "y_max": 0.6209943294525146 - }, - "confidence": 0.822689950466156, - "label_id": 1 - }, - "h": 86, - "w": 69, - "x": 1223, - "y": 585 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1445876806974411, - "y_min": 0.5523684024810791, - "x_max": 0.1811411827802658, - "y_max": 0.6325536966323853 - }, - "confidence": 0.6422567367553711, - "label_id": 1 - }, - "h": 86, - "w": 70, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.822689950466156, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.11287561804056168, - 0.021911488845944405, - 0.1091185063123703, - 0.003528700675815344, - 0.7525656819343567 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6422567367553711, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09149882197380066, - 0.7855410575866699, - 0.057500552386045456, - 0.0030592279508709908, - 0.06240028142929077 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 17133289472, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.637103259563446, - "y_min": 0.542399525642395, - "x_max": 0.6729533076286316, - "y_max": 0.6207969188690186 - }, - "confidence": 0.6215054988861084, - "label_id": 1 - }, - "h": 84, - "w": 69, - "x": 1223, - "y": 586 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14453260600566864, - "y_min": 0.5524618625640869, - "x_max": 0.1810462325811386, - "y_max": 0.6324878931045532 - }, - "confidence": 0.6181232929229736, - "label_id": 1 - }, - "h": 86, - "w": 70, - "x": 278, - "y": 597 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.4780125916004181, - "y_min": 0.46661555767059326, - "x_max": 0.5073546767234802, - "y_max": 0.5283036828041077 - }, - "confidence": 0.5962309241294861, - "label_id": 1 - }, - "h": 67, - "w": 56, - "x": 918, - "y": 504 - } - ], - "tensors": [ - { - "confidence": 0.6215054988861084, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.10816297680139542, - 0.015041187405586243, - 0.0574893094599247, - 0.003412263933569193, - 0.8158942461013794 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6181232929229736, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09254056960344315, - 0.7999792098999023, - 0.05273108184337616, - 0.0027218356262892485, - 0.052027396857738495 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5962309241294861, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.06199450418353081, - 0.12265527993440628, - 0.1703886240720749, - 0.003350981278344989, - 0.6416105628013611 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 17166622720, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.47767719626426697, - "y_min": 0.4674535095691681, - "x_max": 0.5080957412719727, - "y_max": 0.5309033989906311 - }, - "confidence": 0.7120034694671631, - "label_id": 1 - }, - "h": 68, - "w": 59, - "x": 917, - "y": 505 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14455650746822357, - "y_min": 0.5526605844497681, - "x_max": 0.1809580773115158, - "y_max": 0.6328794956207275 - }, - "confidence": 0.6449089050292969, - "label_id": 1 - }, - "h": 87, - "w": 69, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.7120034694671631, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.07653186470270157, - 0.18590590357780457, - 0.17822888493537903, - 0.005886617582291365, - 0.5534466505050659 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6449089050292969, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.08881793916225433, - 0.8132596015930176, - 0.04247894510626793, - 0.002772193867713213, - 0.052671343088150024 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 17199955968, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6360713243484497, - "y_min": 0.5518739223480225, - "x_max": 0.6746288537979126, - "y_max": 0.6335653066635132 - }, - "confidence": 0.7973093390464783, - "label_id": 1 - }, - "h": 88, - "w": 74, - "x": 1221, - "y": 596 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.478490948677063, - "y_min": 0.46706151962280273, - "x_max": 0.5085310935974121, - "y_max": 0.5296410322189331 - }, - "confidence": 0.6673453450202942, - "label_id": 1 - }, - "h": 68, - "w": 57, - "x": 919, - "y": 504 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1444871872663498, - "y_min": 0.5530173778533936, - "x_max": 0.18068192899227142, - "y_max": 0.6327139139175415 - }, - "confidence": 0.6387683153152466, - "label_id": 1 - }, - "h": 86, - "w": 70, - "x": 277, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.7973093390464783, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.12056898325681686, - 0.025445086881518364, - 0.13188275694847107, - 0.003999220207333565, - 0.7181040048599243 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6673453450202942, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.04869014397263527, - 0.05585066229104996, - 0.12585784494876862, - 0.004020145628601313, - 0.7655811905860901 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6387683153152466, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1576918661594391, - 0.6521000862121582, - 0.07949447631835938, - 0.005244135856628418, - 0.10546945780515671 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 17233289216, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6359816789627075, - "y_min": 0.5551738739013672, - "x_max": 0.6754670143127441, - "y_max": 0.6377646923065186 - }, - "confidence": 0.9627594947814941, - "label_id": 1 - }, - "h": 89, - "w": 76, - "x": 1221, - "y": 600 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14445438981056213, - "y_min": 0.5530601739883423, - "x_max": 0.1805894672870636, - "y_max": 0.6332824230194092 - }, - "confidence": 0.6549070477485657, - "label_id": 1 - }, - "h": 87, - "w": 70, - "x": 277, - "y": 597 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.47934168577194214, - "y_min": 0.4656766653060913, - "x_max": 0.509036123752594, - "y_max": 0.5259116888046265 - }, - "confidence": 0.5702797770500183, - "label_id": 1 - }, - "h": 65, - "w": 57, - "x": 920, - "y": 503 - } - ], - "tensors": [ - { - "confidence": 0.9627594947814941, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.16727374494075775, - 0.055117275565862656, - 0.12165477126836777, - 0.00498170405626297, - 0.6509724855422974 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6549070477485657, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.16741296648979187, - 0.6762882471084595, - 0.057823602110147476, - 0.005321070086210966, - 0.09315410256385803 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5702797770500183, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.0573250912129879, - 0.05128025636076927, - 0.10597829520702362, - 0.0040745059959590435, - 0.7813419103622437 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 17266622464, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6354513764381409, - "y_min": 0.5586893558502197, - "x_max": 0.6750134825706482, - "y_max": 0.6409906148910522 - }, - "confidence": 0.9794777631759644, - "label_id": 1 - }, - "h": 89, - "w": 76, - "x": 1220, - "y": 603 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14439691603183746, - "y_min": 0.5527520179748535, - "x_max": 0.18077264726161957, - "y_max": 0.6334996223449707 - }, - "confidence": 0.6636883020401001, - "label_id": 1 - }, - "h": 87, - "w": 70, - "x": 277, - "y": 597 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.4787833094596863, - "y_min": 0.4661155045032501, - "x_max": 0.5086503624916077, - "y_max": 0.524105429649353 - }, - "confidence": 0.5297451019287109, - "label_id": 1 - }, - "h": 63, - "w": 58, - "x": 919, - "y": 503 - } - ], - "tensors": [ - { - "confidence": 0.9794777631759644, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1462850272655487, - 0.054844923317432404, - 0.10916395485401154, - 0.00369413779117167, - 0.6860119104385376 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6636883020401001, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.14922195672988892, - 0.705498993396759, - 0.0685591995716095, - 0.004582615103572607, - 0.07213722914457321 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5297451019287109, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.10604149103164673, - 0.1389041393995285, - 0.12798772752285004, - 0.0041422294452786446, - 0.622924268245697 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 17299955712, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6360938549041748, - "y_min": 0.5626038312911987, - "x_max": 0.6779592037200928, - "y_max": 0.6423177719116211 - }, - "confidence": 0.9983333945274353, - "label_id": 1 - }, - "h": 86, - "w": 81, - "x": 1221, - "y": 608 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14442968368530273, - "y_min": 0.55279940366745, - "x_max": 0.18072599172592163, - "y_max": 0.6335976719856262 - }, - "confidence": 0.6555190086364746, - "label_id": 1 - }, - "h": 87, - "w": 70, - "x": 277, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9983333945274353, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.17971859872341156, - 0.06088966503739357, - 0.05518660321831703, - 0.004112727474421263, - 0.7000924348831177 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6555190086364746, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.16250832378864288, - 0.6968514919281006, - 0.07047290354967117, - 0.004819993395358324, - 0.06534730643033981 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 17333288960, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6384319067001343, - "y_min": 0.5666130781173706, - "x_max": 0.6768597364425659, - "y_max": 0.644806981086731 - }, - "confidence": 0.9969402551651001, - "label_id": 1 - }, - "h": 84, - "w": 74, - "x": 1226, - "y": 612 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14435544610023499, - "y_min": 0.5529314279556274, - "x_max": 0.18074336647987366, - "y_max": 0.6334450244903564 - }, - "confidence": 0.6446284055709839, - "label_id": 1 - }, - "h": 87, - "w": 70, - "x": 277, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9969402551651001, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.16914601624011993, - 0.10561000555753708, - 0.06903613358736038, - 0.0058493223041296005, - 0.6503585577011108 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6446284055709839, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1771918386220932, - 0.668469250202179, - 0.07896696031093597, - 0.005113643128424883, - 0.0702582448720932 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 17366622208, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6388263702392578, - "y_min": 0.5718657970428467, - "x_max": 0.6776820421218872, - "y_max": 0.6510013341903687 - }, - "confidence": 0.9994798302650452, - "label_id": 1 - }, - "h": 85, - "w": 74, - "x": 1227, - "y": 618 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1443379670381546, - "y_min": 0.5529636144638062, - "x_max": 0.18070535361766815, - "y_max": 0.633776068687439 - }, - "confidence": 0.6495694518089294, - "label_id": 1 - }, - "h": 87, - "w": 70, - "x": 277, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9994798302650452, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.12816806137561798, - 0.09262656420469284, - 0.08510888367891312, - 0.00374232092872262, - 0.6903542280197144 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6495694518089294, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.14699207246303558, - 0.7139047980308533, - 0.07278583943843842, - 0.0042595043778419495, - 0.06205768883228302 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 17399955456, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6387884020805359, - "y_min": 0.5743730068206787, - "x_max": 0.6786916851997375, - "y_max": 0.6548159122467041 - }, - "confidence": 0.999870777130127, - "label_id": 1 - }, - "h": 87, - "w": 77, - "x": 1226, - "y": 620 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14431342482566833, - "y_min": 0.5529603362083435, - "x_max": 0.18065384030342102, - "y_max": 0.6340475678443909 - }, - "confidence": 0.6598150730133057, - "label_id": 1 - }, - "h": 88, - "w": 70, - "x": 277, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.999870777130127, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.16681095957756042, - 0.21432840824127197, - 0.07624614238739014, - 0.004996707662940025, - 0.5376178026199341 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6598150730133057, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.15414153039455414, - 0.6927732825279236, - 0.07736359536647797, - 0.003914507105946541, - 0.07180699706077576 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 17433288704, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6373146176338196, - "y_min": 0.5777326822280884, - "x_max": 0.679681122303009, - "y_max": 0.6573410034179688 - }, - "confidence": 0.9999432563781738, - "label_id": 1 - }, - "h": 86, - "w": 81, - "x": 1224, - "y": 624 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14436642825603485, - "y_min": 0.55287766456604, - "x_max": 0.18055038154125214, - "y_max": 0.633956789970398 - }, - "confidence": 0.6670953035354614, - "label_id": 1 - }, - "h": 88, - "w": 70, - "x": 277, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999432563781738, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.18193037807941437, - 0.40911251306533813, - 0.0620669350028038, - 0.0037254176568239927, - 0.3431647717952728 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6670953035354614, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.13317571580410004, - 0.7380850911140442, - 0.06122468784451485, - 0.003675867337733507, - 0.06383857876062393 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 17466621952, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6378453373908997, - "y_min": 0.5818712115287781, - "x_max": 0.6794118285179138, - "y_max": 0.6605296730995178 - }, - "confidence": 0.9998694658279419, - "label_id": 1 - }, - "h": 85, - "w": 79, - "x": 1225, - "y": 628 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1443125307559967, - "y_min": 0.5528249144554138, - "x_max": 0.180393248796463, - "y_max": 0.6341264843940735 - }, - "confidence": 0.66774982213974, - "label_id": 1 - }, - "h": 88, - "w": 69, - "x": 277, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9998694658279419, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.10154251754283905, - 0.645670473575592, - 0.06642957776784897, - 0.003216975834220648, - 0.18314051628112793 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.66774982213974, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.0922594740986824, - 0.8034232258796692, - 0.042735155671834946, - 0.002591618336737156, - 0.05899057164788246 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 17499955200, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6376494765281677, - "y_min": 0.5806205868721008, - "x_max": 0.6803881525993347, - "y_max": 0.6601971983909607 - }, - "confidence": 0.999983549118042, - "label_id": 1 - }, - "h": 86, - "w": 82, - "x": 1224, - "y": 627 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.144254669547081, - "y_min": 0.5531930923461914, - "x_max": 0.18014155328273773, - "y_max": 0.6339914798736572 - }, - "confidence": 0.6677423119544983, - "label_id": 1 - }, - "h": 88, - "w": 69, - "x": 277, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.999983549118042, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1903650313615799, - 0.5736647248268127, - 0.05284709855914116, - 0.005950297228991985, - 0.17717278003692627 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6677423119544983, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09000331908464432, - 0.8187733292579651, - 0.03573789447546005, - 0.002805160591378808, - 0.05268031731247902 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 17533288448, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6374152302742004, - "y_min": 0.5807079076766968, - "x_max": 0.6811482310295105, - "y_max": 0.6615114212036133 - }, - "confidence": 0.9999922513961792, - "label_id": 1 - }, - "h": 87, - "w": 84, - "x": 1224, - "y": 627 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14414770901203156, - "y_min": 0.553188145160675, - "x_max": 0.18013082444667816, - "y_max": 0.6343523859977722 - }, - "confidence": 0.6658225059509277, - "label_id": 1 - }, - "h": 88, - "w": 69, - "x": 277, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999922513961792, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.21923746168613434, - 0.588248610496521, - 0.05959939956665039, - 0.006350249517709017, - 0.12656426429748535 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6658225059509277, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09968920052051544, - 0.8104594349861145, - 0.032912515103816986, - 0.0033350724261254072, - 0.05360384285449982 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 17566621696, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6386920213699341, - "y_min": 0.5815750956535339, - "x_max": 0.6818805932998657, - "y_max": 0.6616451144218445 - }, - "confidence": 0.9999960660934448, - "label_id": 1 - }, - "h": 87, - "w": 83, - "x": 1226, - "y": 628 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.144143208861351, - "y_min": 0.5530751347541809, - "x_max": 0.1802225559949875, - "y_max": 0.6354179978370667 - }, - "confidence": 0.691046416759491, - "label_id": 1 - }, - "h": 89, - "w": 69, - "x": 277, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999960660934448, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2062765657901764, - 0.6653916835784912, - 0.04392487555742264, - 0.002143213292583823, - 0.08226357400417328 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.691046416759491, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1280275285243988, - 0.7263534069061279, - 0.047304533421993256, - 0.004668045789003372, - 0.09364643692970276 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 17599954944, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6378577351570129, - "y_min": 0.5823721885681152, - "x_max": 0.6819445490837097, - "y_max": 0.6627233028411865 - }, - "confidence": 0.9999827146530151, - "label_id": 1 - }, - "h": 87, - "w": 84, - "x": 1225, - "y": 629 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14398163557052612, - "y_min": 0.5534194707870483, - "x_max": 0.18010061979293823, - "y_max": 0.6351597309112549 - }, - "confidence": 0.6897664666175842, - "label_id": 1 - }, - "h": 88, - "w": 70, - "x": 276, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999827146530151, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.22605571150779724, - 0.6551048159599304, - 0.04001050814986229, - 0.001804712344892323, - 0.07702424377202988 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6897664666175842, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1401345133781433, - 0.7187371850013733, - 0.042608313262462616, - 0.006110264454036951, - 0.0924096629023552 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 17633288192, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.636388897895813, - "y_min": 0.5832877159118652, - "x_max": 0.680227518081665, - "y_max": 0.663762092590332 - }, - "confidence": 0.9997770190238953, - "label_id": 1 - }, - "h": 87, - "w": 84, - "x": 1222, - "y": 630 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1440727710723877, - "y_min": 0.553250253200531, - "x_max": 0.18011876940727234, - "y_max": 0.6351980566978455 - }, - "confidence": 0.6822269558906555, - "label_id": 1 - }, - "h": 88, - "w": 69, - "x": 277, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9997770190238953, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2607570290565491, - 0.5361071228981018, - 0.06703996658325195, - 0.004177313297986984, - 0.13191856443881989 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6822269558906555, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.14484204351902008, - 0.6874871850013733, - 0.04972606897354126, - 0.00581091595813632, - 0.11213375627994537 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 17666621440, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6362024545669556, - "y_min": 0.5829968452453613, - "x_max": 0.6802476644515991, - "y_max": 0.6640183925628662 - }, - "confidence": 0.9996579885482788, - "label_id": 1 - }, - "h": 87, - "w": 84, - "x": 1222, - "y": 630 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14403365552425385, - "y_min": 0.5533597469329834, - "x_max": 0.1800304800271988, - "y_max": 0.6351823806762695 - }, - "confidence": 0.6828672885894775, - "label_id": 1 - }, - "h": 88, - "w": 69, - "x": 277, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9996579885482788, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.36408811807632446, - 0.31810423731803894, - 0.11414498835802078, - 0.0065607610158622265, - 0.19710184633731842 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6828672885894775, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1551714837551117, - 0.6447489857673645, - 0.06222287937998772, - 0.00639877887442708, - 0.13145780563354492 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 17699954688, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6356415152549744, - "y_min": 0.5819682478904724, - "x_max": 0.6798641085624695, - "y_max": 0.6596986651420593 - }, - "confidence": 0.9994764924049377, - "label_id": 1 - }, - "h": 83, - "w": 85, - "x": 1220, - "y": 629 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14403419196605682, - "y_min": 0.5535095930099487, - "x_max": 0.17991112172603607, - "y_max": 0.635021448135376 - }, - "confidence": 0.6794753670692444, - "label_id": 1 - }, - "h": 88, - "w": 68, - "x": 277, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9994764924049377, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2805512547492981, - 0.4075413644313812, - 0.07644126564264297, - 0.009710995480418205, - 0.22575508058071136 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6794753670692444, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.15934835374355316, - 0.6010364890098572, - 0.07838735729455948, - 0.007633035536855459, - 0.1535947024822235 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 17733287936, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6333667039871216, - "y_min": 0.5789779424667358, - "x_max": 0.6777447462081909, - "y_max": 0.6624263525009155 - }, - "confidence": 0.9989686012268066, - "label_id": 1 - }, - "h": 90, - "w": 85, - "x": 1216, - "y": 625 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14404727518558502, - "y_min": 0.5536265969276428, - "x_max": 0.1798725575208664, - "y_max": 0.6350007653236389 - }, - "confidence": 0.6803172826766968, - "label_id": 1 - }, - "h": 88, - "w": 68, - "x": 277, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9989686012268066, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.29893526434898376, - 0.28586646914482117, - 0.09692513197660446, - 0.015048202127218246, - 0.30322498083114624 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6803172826766968, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.13732574880123138, - 0.5679636597633362, - 0.09929747134447098, - 0.007568865083158016, - 0.18784429132938385 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 17766621184, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6353753805160522, - "y_min": 0.5766426920890808, - "x_max": 0.6775479316711426, - "y_max": 0.6553507447242737 - }, - "confidence": 0.9985387325286865, - "label_id": 1 - }, - "h": 85, - "w": 81, - "x": 1220, - "y": 623 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14411959052085876, - "y_min": 0.5534553527832031, - "x_max": 0.1799047887325287, - "y_max": 0.6346393823623657 - }, - "confidence": 0.6636291742324829, - "label_id": 1 - }, - "h": 87, - "w": 68, - "x": 277, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9985387325286865, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.217215433716774, - 0.3522133231163025, - 0.12244036793708801, - 0.020457593724131584, - 0.2876732647418976 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6636291742324829, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.10691748559474945, - 0.6617987155914307, - 0.07251198589801788, - 0.005630647297948599, - 0.1531410813331604 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 17799954432, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.634313702583313, - "y_min": 0.5723692178726196, - "x_max": 0.6762666702270508, - "y_max": 0.6508705615997314 - }, - "confidence": 0.9985748529434204, - "label_id": 1 - }, - "h": 85, - "w": 80, - "x": 1218, - "y": 618 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1442868411540985, - "y_min": 0.5534505844116211, - "x_max": 0.17985188961029053, - "y_max": 0.6345325708389282 - }, - "confidence": 0.6739948391914368, - "label_id": 1 - }, - "h": 87, - "w": 68, - "x": 277, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9985748529434204, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.24535545706748962, - 0.26745542883872986, - 0.1673508882522583, - 0.031088853254914284, - 0.2887493968009949 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6739948391914368, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.11562739312648773, - 0.6559590697288513, - 0.06884448230266571, - 0.0056832111440598965, - 0.15388579666614532 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 17833287680, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6352667808532715, - "y_min": 0.5690727829933167, - "x_max": 0.6758308410644531, - "y_max": 0.6424931883811951 - }, - "confidence": 0.9620687365531921, - "label_id": 1 - }, - "h": 79, - "w": 78, - "x": 1220, - "y": 615 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1442301869392395, - "y_min": 0.5533231496810913, - "x_max": 0.17986643314361572, - "y_max": 0.6346566677093506 - }, - "confidence": 0.6631453633308411, - "label_id": 1 - }, - "h": 87, - "w": 68, - "x": 277, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9620687365531921, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.25963538885116577, - 0.08588632941246033, - 0.13117578625679016, - 0.014346171170473099, - 0.5089563727378845 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6631453633308411, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.12431326508522034, - 0.5968210697174072, - 0.08099406957626343, - 0.006452727597206831, - 0.19141890108585358 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 17866620928, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6350340247154236, - "y_min": 0.5645549297332764, - "x_max": 0.6755892634391785, - "y_max": 0.641063928604126 - }, - "confidence": 0.9905609488487244, - "label_id": 1 - }, - "h": 82, - "w": 78, - "x": 1219, - "y": 610 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1443602591753006, - "y_min": 0.553162693977356, - "x_max": 0.18019215762615204, - "y_max": 0.6348977088928223 - }, - "confidence": 0.6935044527053833, - "label_id": 1 - }, - "h": 89, - "w": 69, - "x": 277, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9905609488487244, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.25905439257621765, - 0.11417301744222641, - 0.1917555183172226, - 0.005957656539976597, - 0.42905935645103455 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6935044527053833, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1244940310716629, - 0.614576518535614, - 0.0732576847076416, - 0.006714599207043648, - 0.18095716834068298 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 17899954176, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6345894932746887, - "y_min": 0.5580028295516968, - "x_max": 0.6744406819343567, - "y_max": 0.6355323791503906 - }, - "confidence": 0.9422268867492676, - "label_id": 1 - }, - "h": 83, - "w": 77, - "x": 1218, - "y": 603 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14435264468193054, - "y_min": 0.5532366633415222, - "x_max": 0.18014970421791077, - "y_max": 0.6349125504493713 - }, - "confidence": 0.6970741152763367, - "label_id": 1 - }, - "h": 89, - "w": 69, - "x": 277, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9422268867492676, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.287468820810318, - 0.07960617542266846, - 0.2042907029390335, - 0.009943211451172829, - 0.41869112849235535 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6970741152763367, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.14175063371658325, - 0.56185382604599, - 0.09172432869672775, - 0.006999622099101543, - 0.19767163693904877 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 17933287424, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.14441388845443726, - "y_min": 0.5533014535903931, - "x_max": 0.1801092028617859, - "y_max": 0.6352697610855103 - }, - "confidence": 0.7101239562034607, - "label_id": 1 - }, - "h": 88, - "w": 69, - "x": 277, - "y": 598 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.6344074010848999, - "y_min": 0.5553484559059143, - "x_max": 0.6731663942337036, - "y_max": 0.6317844986915588 - }, - "confidence": 0.6797512173652649, - "label_id": 1 - }, - "h": 82, - "w": 74, - "x": 1218, - "y": 600 - } - ], - "tensors": [ - { - "confidence": 0.7101239562034607, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1467372179031372, - 0.5711460709571838, - 0.09457556158304214, - 0.0066970097832381725, - 0.18084412813186646 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6797512173652649, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.21472802758216858, - 0.05895042046904564, - 0.301825612783432, - 0.005743220914155245, - 0.4187527894973755 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 17966620672, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1445012390613556, - "y_min": 0.5532406568527222, - "x_max": 0.18018749356269836, - "y_max": 0.6356474161148071 - }, - "confidence": 0.7124030590057373, - "label_id": 1 - }, - "h": 89, - "w": 69, - "x": 277, - "y": 597 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.6352904438972473, - "y_min": 0.5454095602035522, - "x_max": 0.6715690493583679, - "y_max": 0.6182500123977661 - }, - "confidence": 0.550169825553894, - "label_id": 1 - }, - "h": 79, - "w": 69, - "x": 1220, - "y": 589 - } - ], - "tensors": [ - { - "confidence": 0.7124030590057373, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1536213606595993, - 0.4815864562988281, - 0.11956185847520828, - 0.007567727006971836, - 0.23766262829303741 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.550169825553894, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.21504846215248108, - 0.059835221618413925, - 0.13335685431957245, - 0.03909924253821373, - 0.5526602268218994 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 17999953920, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6344845294952393, - "y_min": 0.545248806476593, - "x_max": 0.6730902194976807, - "y_max": 0.6160258650779724 - }, - "confidence": 0.9112414717674255, - "label_id": 1 - }, - "h": 76, - "w": 74, - "x": 1218, - "y": 589 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14447686076164246, - "y_min": 0.5535829067230225, - "x_max": 0.1800830066204071, - "y_max": 0.6359937191009521 - }, - "confidence": 0.727201521396637, - "label_id": 1 - }, - "h": 89, - "w": 69, - "x": 277, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9112414717674255, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.21524538099765778, - 0.02054065279662609, - 0.11863163113594055, - 0.019294070079922676, - 0.6262881755828857 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.727201521396637, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.15223829448223114, - 0.35506176948547363, - 0.18145708739757538, - 0.007889362052083015, - 0.3033533990383148 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 18033287168, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6334720849990845, - "y_min": 0.5437518358230591, - "x_max": 0.6719304323196411, - "y_max": 0.6156848669052124 - }, - "confidence": 0.8706939220428467, - "label_id": 1 - }, - "h": 78, - "w": 74, - "x": 1216, - "y": 587 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14451806247234344, - "y_min": 0.5534725189208984, - "x_max": 0.1804160326719284, - "y_max": 0.6361191272735596 - }, - "confidence": 0.7388685345649719, - "label_id": 1 - }, - "h": 89, - "w": 69, - "x": 277, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.8706939220428467, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.17610812187194824, - 0.015382952988147736, - 0.17579728364944458, - 0.0035408639814704657, - 0.6291706562042236 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7388685345649719, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.18153364956378937, - 0.4247281849384308, - 0.1310742050409317, - 0.006560769397765398, - 0.25610318779945374 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 18066620416, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6318044066429138, - "y_min": 0.5403321385383606, - "x_max": 0.6707566380500793, - "y_max": 0.614263117313385 - }, - "confidence": 0.8553149700164795, - "label_id": 1 - }, - "h": 79, - "w": 75, - "x": 1213, - "y": 584 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14446845650672913, - "y_min": 0.5535753965377808, - "x_max": 0.1801338493824005, - "y_max": 0.6365087032318115 - }, - "confidence": 0.7432984709739685, - "label_id": 1 - }, - "h": 89, - "w": 69, - "x": 277, - "y": 598 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.4919947385787964, - "y_min": 0.46501868963241577, - "x_max": 0.5206811428070068, - "y_max": 0.5239011645317078 - }, - "confidence": 0.5337453484535217, - "label_id": 1 - }, - "h": 64, - "w": 55, - "x": 945, - "y": 502 - } - ], - "tensors": [ - { - "confidence": 0.8553149700164795, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1900903731584549, - 0.015133704990148544, - 0.18898709118366241, - 0.004867234732955694, - 0.6009215712547302 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7432984709739685, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.17790237069129944, - 0.4377336800098419, - 0.13381323218345642, - 0.006493798457086086, - 0.24405699968338013 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5337453484535217, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.033640310168266296, - 0.060287512838840485, - 0.21842564642429352, - 0.001955573447048664, - 0.6856908798217773 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 18099953664, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6292116641998291, - "y_min": 0.5363054871559143, - "x_max": 0.6696822643280029, - "y_max": 0.6127639412879944 - }, - "confidence": 0.7548140287399292, - "label_id": 1 - }, - "h": 83, - "w": 78, - "x": 1208, - "y": 579 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14444811642169952, - "y_min": 0.5536946058273315, - "x_max": 0.18000172078609467, - "y_max": 0.6367412805557251 - }, - "confidence": 0.7423335909843445, - "label_id": 1 - }, - "h": 90, - "w": 69, - "x": 277, - "y": 598 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.4918813109397888, - "y_min": 0.4644116163253784, - "x_max": 0.5207768082618713, - "y_max": 0.5242365598678589 - }, - "confidence": 0.5174350738525391, - "label_id": 1 - }, - "h": 64, - "w": 56, - "x": 944, - "y": 502 - } - ], - "tensors": [ - { - "confidence": 0.7548140287399292, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1520763784646988, - 0.019790759310126305, - 0.1232803463935852, - 0.008459710516035557, - 0.6963927149772644 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7423335909843445, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.19007165729999542, - 0.36988964676856995, - 0.13662578165531158, - 0.007888645865023136, - 0.29552438855171204 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5174350738525391, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.04700425639748573, - 0.077762171626091, - 0.2770184874534607, - 0.002958483761176467, - 0.5952565670013428 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 18133286912, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6293734908103943, - "y_min": 0.5349058508872986, - "x_max": 0.6695427298545837, - "y_max": 0.6103903651237488 - }, - "confidence": 0.8974025845527649, - "label_id": 1 - }, - "h": 81, - "w": 78, - "x": 1208, - "y": 578 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1445438712835312, - "y_min": 0.5535485744476318, - "x_max": 0.17995478212833405, - "y_max": 0.6367216110229492 - }, - "confidence": 0.7461913824081421, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 598 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.49191516637802124, - "y_min": 0.46440088748931885, - "x_max": 0.5209466814994812, - "y_max": 0.5247811079025269 - }, - "confidence": 0.5320374965667725, - "label_id": 1 - }, - "h": 65, - "w": 56, - "x": 944, - "y": 502 - } - ], - "tensors": [ - { - "confidence": 0.8974025845527649, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.21154019236564636, - 0.03557407855987549, - 0.1916639655828476, - 0.008867103606462479, - 0.552354633808136 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7461913824081421, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.19008128345012665, - 0.38088706135749817, - 0.13198135793209076, - 0.007498797029256821, - 0.2895514965057373 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5320374965667725, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.04345739260315895, - 0.11367498338222504, - 0.14852049946784973, - 0.0035264156758785248, - 0.6908207535743713 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 18166620160, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6298089623451233, - "y_min": 0.531256377696991, - "x_max": 0.6690121293067932, - "y_max": 0.6094728112220764 - }, - "confidence": 0.9503577351570129, - "label_id": 1 - }, - "h": 84, - "w": 76, - "x": 1209, - "y": 574 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1444830596446991, - "y_min": 0.5535966157913208, - "x_max": 0.17997422814369202, - "y_max": 0.637012243270874 - }, - "confidence": 0.7406822443008423, - "label_id": 1 - }, - "h": 90, - "w": 69, - "x": 277, - "y": 598 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.4919278919696808, - "y_min": 0.4642716646194458, - "x_max": 0.5209453105926514, - "y_max": 0.5246911644935608 - }, - "confidence": 0.5614489316940308, - "label_id": 1 - }, - "h": 66, - "w": 55, - "x": 945, - "y": 501 - } - ], - "tensors": [ - { - "confidence": 0.9503577351570129, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.16829192638397217, - 0.05160333216190338, - 0.22740325331687927, - 0.008008483797311783, - 0.5446929931640625 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7406822443008423, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23655299842357635, - 0.31397855281829834, - 0.13972869515419006, - 0.00749164680019021, - 0.3022480607032776 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5614489316940308, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.04310106113553047, - 0.11268380284309387, - 0.13900801539421082, - 0.004065623506903648, - 0.7011415362358093 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 18199953408, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6305636167526245, - "y_min": 0.5299681425094604, - "x_max": 0.6697920560836792, - "y_max": 0.608174204826355 - }, - "confidence": 0.9720659255981445, - "label_id": 1 - }, - "h": 85, - "w": 75, - "x": 1211, - "y": 572 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14446531236171722, - "y_min": 0.553898274898529, - "x_max": 0.17994289100170135, - "y_max": 0.6369292140007019 - }, - "confidence": 0.742962121963501, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 277, - "y": 598 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.49195724725723267, - "y_min": 0.46411406993865967, - "x_max": 0.5208829045295715, - "y_max": 0.5240194201469421 - }, - "confidence": 0.5418684482574463, - "label_id": 1 - }, - "h": 65, - "w": 55, - "x": 945, - "y": 501 - } - ], - "tensors": [ - { - "confidence": 0.9720659255981445, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1826777160167694, - 0.06580891460180283, - 0.3425924777984619, - 0.004480884410440922, - 0.4044399857521057 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.742962121963501, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.24591822922229767, - 0.23874014616012573, - 0.1690388172864914, - 0.00784734170883894, - 0.3384554386138916 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5418684482574463, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.03808679059147835, - 0.08003278076648712, - 0.1368248611688614, - 0.0022021702025085688, - 0.7428534030914307 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 18233286656, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6317624449729919, - "y_min": 0.527362048625946, - "x_max": 0.6695155501365662, - "y_max": 0.6060962080955505 - }, - "confidence": 0.9612130522727966, - "label_id": 1 - }, - "h": 85, - "w": 72, - "x": 1213, - "y": 570 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14444342255592346, - "y_min": 0.5539948344230652, - "x_max": 0.17990359663963318, - "y_max": 0.6367382407188416 - }, - "confidence": 0.739762544631958, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 277, - "y": 598 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.4919193983078003, - "y_min": 0.4642404019832611, - "x_max": 0.5207844972610474, - "y_max": 0.5235201716423035 - }, - "confidence": 0.5518607497215271, - "label_id": 1 - }, - "h": 64, - "w": 56, - "x": 944, - "y": 501 - } - ], - "tensors": [ - { - "confidence": 0.9612130522727966, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.20117878913879395, - 0.07529347389936447, - 0.4187599718570709, - 0.003879956901073456, - 0.300887793302536 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.739762544631958, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.25117722153663635, - 0.22147352993488312, - 0.1913805603981018, - 0.007492148783057928, - 0.3284764587879181 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5518607497215271, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.053478725254535675, - 0.12060511112213135, - 0.190272718667984, - 0.0027282387018203735, - 0.6329151391983032 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 18266619904, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6311368346214294, - "y_min": 0.5248872637748718, - "x_max": 0.668754518032074, - "y_max": 0.6059096455574036 - }, - "confidence": 0.975452184677124, - "label_id": 1 - }, - "h": 87, - "w": 72, - "x": 1212, - "y": 567 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14439083635807037, - "y_min": 0.5540733337402344, - "x_max": 0.17980234324932098, - "y_max": 0.6368598937988281 - }, - "confidence": 0.7387038469314575, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 277, - "y": 598 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.49213942885398865, - "y_min": 0.4644782543182373, - "x_max": 0.520923912525177, - "y_max": 0.5235733389854431 - }, - "confidence": 0.5462986826896667, - "label_id": 1 - }, - "h": 63, - "w": 55, - "x": 945, - "y": 502 - } - ], - "tensors": [ - { - "confidence": 0.975452184677124, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.18269704282283783, - 0.42957791686058044, - 0.20684503018856049, - 0.010828095488250256, - 0.1700519621372223 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7387038469314575, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2628549635410309, - 0.20019418001174927, - 0.20141085982322693, - 0.007266939152032137, - 0.3282729685306549 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5462986826896667, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.06579206883907318, - 0.09297819435596466, - 0.11746643483638763, - 0.002904146444052458, - 0.7208591103553772 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 18299953152, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.632576048374176, - "y_min": 0.5235962271690369, - "x_max": 0.6691343188285828, - "y_max": 0.6026379466056824 - }, - "confidence": 0.9755787253379822, - "label_id": 1 - }, - "h": 86, - "w": 70, - "x": 1215, - "y": 565 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14434947073459625, - "y_min": 0.5539186000823975, - "x_max": 0.17994870245456696, - "y_max": 0.6376668214797974 - }, - "confidence": 0.7479097843170166, - "label_id": 1 - }, - "h": 91, - "w": 69, - "x": 277, - "y": 598 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.4922427237033844, - "y_min": 0.4650479257106781, - "x_max": 0.5209253430366516, - "y_max": 0.5235910415649414 - }, - "confidence": 0.518622636795044, - "label_id": 1 - }, - "h": 63, - "w": 55, - "x": 945, - "y": 502 - } - ], - "tensors": [ - { - "confidence": 0.9755787253379822, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2828434407711029, - 0.33965545892715454, - 0.20675992965698242, - 0.008971690200269222, - 0.16176949441432953 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7479097843170166, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3638109862804413, - 0.18780049681663513, - 0.13739633560180664, - 0.0057551865465939045, - 0.3052370548248291 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.518622636795044, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.059513065963983536, - 0.06719711422920227, - 0.11255784332752228, - 0.0024801103863865137, - 0.7582520246505737 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 18333286400, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6325380206108093, - "y_min": 0.5230652093887329, - "x_max": 0.669375479221344, - "y_max": 0.6012678146362305 - }, - "confidence": 0.9903663396835327, - "label_id": 1 - }, - "h": 84, - "w": 71, - "x": 1214, - "y": 565 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14433278143405914, - "y_min": 0.5538851022720337, - "x_max": 0.1800534576177597, - "y_max": 0.6379220485687256 - }, - "confidence": 0.7423675060272217, - "label_id": 1 - }, - "h": 91, - "w": 69, - "x": 277, - "y": 598 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.4923349916934967, - "y_min": 0.4655245542526245, - "x_max": 0.5210313200950623, - "y_max": 0.5236115455627441 - }, - "confidence": 0.5054994225502014, - "label_id": 1 - }, - "h": 63, - "w": 55, - "x": 945, - "y": 503 - } - ], - "tensors": [ - { - "confidence": 0.9903663396835327, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.27773410081863403, - 0.48324865102767944, - 0.11535358428955078, - 0.0038537310902029276, - 0.11980985105037689 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7423675060272217, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3759719729423523, - 0.12219107896089554, - 0.14824329316616058, - 0.004871594253927469, - 0.34872207045555115 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5054994225502014, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.05989961326122284, - 0.06945295631885529, - 0.11723951250314713, - 0.0031188055872917175, - 0.7502890825271606 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 18366619648, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6331156492233276, - "y_min": 0.5230199098587036, - "x_max": 0.6702674627304077, - "y_max": 0.6037024259567261 - }, - "confidence": 0.988385796546936, - "label_id": 1 - }, - "h": 87, - "w": 71, - "x": 1216, - "y": 565 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14446485042572021, - "y_min": 0.5537324547767639, - "x_max": 0.18009978532791138, - "y_max": 0.6380826830863953 - }, - "confidence": 0.7366239428520203, - "label_id": 1 - }, - "h": 91, - "w": 69, - "x": 277, - "y": 598 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.49222415685653687, - "y_min": 0.46518683433532715, - "x_max": 0.5207359194755554, - "y_max": 0.5231598019599915 - }, - "confidence": 0.5073375105857849, - "label_id": 1 - }, - "h": 63, - "w": 55, - "x": 945, - "y": 502 - } - ], - "tensors": [ - { - "confidence": 0.988385796546936, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.13852186501026154, - 0.6734942197799683, - 0.08501002192497253, - 0.003725277027115226, - 0.09924854338169098 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7366239428520203, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4062272906303406, - 0.1671840399503708, - 0.1283407360315323, - 0.004847310949116945, - 0.2934005558490753 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5073375105857849, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.042370621114969254, - 0.025522345677018166, - 0.156406432390213, - 0.001780595281161368, - 0.7739199995994568 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 18399952896, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6341306567192078, - "y_min": 0.5228903293609619, - "x_max": 0.6708613038063049, - "y_max": 0.6041465997695923 - }, - "confidence": 0.9937496185302734, - "label_id": 1 - }, - "h": 87, - "w": 70, - "x": 1218, - "y": 565 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14440564811229706, - "y_min": 0.5540106892585754, - "x_max": 0.18035827577114105, - "y_max": 0.6379198431968689 - }, - "confidence": 0.7395442128181458, - "label_id": 1 - }, - "h": 91, - "w": 69, - "x": 277, - "y": 598 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.4924179017543793, - "y_min": 0.4659346044063568, - "x_max": 0.5208327770233154, - "y_max": 0.5235187411308289 - }, - "confidence": 0.512472927570343, - "label_id": 1 - }, - "h": 62, - "w": 55, - "x": 945, - "y": 503 - } - ], - "tensors": [ - { - "confidence": 0.9937496185302734, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.13366764783859253, - 0.67537522315979, - 0.06142187863588333, - 0.002754464978352189, - 0.12678080797195435 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7395442128181458, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3926677107810974, - 0.10425695031881332, - 0.13913512229919434, - 0.003954206593334675, - 0.3599860668182373 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.512472927570343, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.041825003921985626, - 0.014391898177564144, - 0.20477651059627533, - 0.0026186895556747913, - 0.7363878488540649 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 18433286144, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6341281533241272, - "y_min": 0.524554431438446, - "x_max": 0.6720162034034729, - "y_max": 0.6106731295585632 - }, - "confidence": 0.994216799736023, - "label_id": 1 - }, - "h": 93, - "w": 72, - "x": 1218, - "y": 567 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14453141391277313, - "y_min": 0.5543264150619507, - "x_max": 0.18007127940654755, - "y_max": 0.6373180150985718 - }, - "confidence": 0.7254891991615295, - "label_id": 1 - }, - "h": 89, - "w": 68, - "x": 278, - "y": 599 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.49232715368270874, - "y_min": 0.465598464012146, - "x_max": 0.5209373831748962, - "y_max": 0.523834228515625 - }, - "confidence": 0.517505943775177, - "label_id": 1 - }, - "h": 63, - "w": 55, - "x": 945, - "y": 503 - } - ], - "tensors": [ - { - "confidence": 0.994216799736023, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2663482427597046, - 0.39663729071617126, - 0.07445000112056732, - 0.003816522192209959, - 0.2587478756904602 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7254891991615295, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.40812385082244873, - 0.10137853771448135, - 0.12312445044517517, - 0.004784163553267717, - 0.3625890612602234 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.517505943775177, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.039124324917793274, - 0.01671813800930977, - 0.3132331371307373, - 0.002145517850294709, - 0.6287788152694702 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 18466619392, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6331039667129517, - "y_min": 0.5241982340812683, - "x_max": 0.6715726852416992, - "y_max": 0.6100894808769226 - }, - "confidence": 0.9928932785987854, - "label_id": 1 - }, - "h": 93, - "w": 73, - "x": 1216, - "y": 566 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14460520446300507, - "y_min": 0.5543765425682068, - "x_max": 0.1800622195005417, - "y_max": 0.6371999382972717 - }, - "confidence": 0.7259489893913269, - "label_id": 1 - }, - "h": 89, - "w": 68, - "x": 278, - "y": 599 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.49243420362472534, - "y_min": 0.46589481830596924, - "x_max": 0.5211215615272522, - "y_max": 0.5242805480957031 - }, - "confidence": 0.520064651966095, - "label_id": 1 - }, - "h": 63, - "w": 56, - "x": 945, - "y": 503 - } - ], - "tensors": [ - { - "confidence": 0.9928932785987854, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.17320385575294495, - 0.5653380751609802, - 0.0450490340590477, - 0.003921546507626772, - 0.21248744428157806 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7259489893913269, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3416314721107483, - 0.034188564866781235, - 0.12908920645713806, - 0.005654917564243078, - 0.48943576216697693 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.520064651966095, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.03215859830379486, - 0.01589515618979931, - 0.4647468030452728, - 0.0014552659122273326, - 0.4857442080974579 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 18499952640, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6340781450271606, - "y_min": 0.5253968834877014, - "x_max": 0.6706293821334839, - "y_max": 0.6118220686912537 - }, - "confidence": 0.9868936538696289, - "label_id": 1 - }, - "h": 94, - "w": 71, - "x": 1217, - "y": 567 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1445275992155075, - "y_min": 0.5542682409286499, - "x_max": 0.17999966442584991, - "y_max": 0.6373159885406494 - }, - "confidence": 0.7240058779716492, - "label_id": 1 - }, - "h": 89, - "w": 69, - "x": 277, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9868936538696289, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.18142327666282654, - 0.4283335506916046, - 0.045795757323503494, - 0.009976443834602833, - 0.3344710171222687 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7240058779716492, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.32882750034332275, - 0.02850700169801712, - 0.14211736619472504, - 0.00657866895198822, - 0.49396950006484985 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 18533285888, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6351855397224426, - "y_min": 0.5283828973770142, - "x_max": 0.6712257266044617, - "y_max": 0.6117935180664062 - }, - "confidence": 0.9903159737586975, - "label_id": 1 - }, - "h": 90, - "w": 69, - "x": 1220, - "y": 571 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1445038616657257, - "y_min": 0.5543003082275391, - "x_max": 0.1800476610660553, - "y_max": 0.6374344825744629 - }, - "confidence": 0.7246049642562866, - "label_id": 1 - }, - "h": 89, - "w": 69, - "x": 277, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9903159737586975, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.13010618090629578, - 0.5465354919433594, - 0.07173816859722137, - 0.005113121122121811, - 0.24650707840919495 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7246049642562866, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.29007282853126526, - 0.023740259930491447, - 0.1654677540063858, - 0.006729868706315756, - 0.513989269733429 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 18566619136, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6350103616714478, - "y_min": 0.5302042961120605, - "x_max": 0.6718746423721313, - "y_max": 0.6137714385986328 - }, - "confidence": 0.9869675040245056, - "label_id": 1 - }, - "h": 90, - "w": 71, - "x": 1219, - "y": 573 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14460642635822296, - "y_min": 0.5544225573539734, - "x_max": 0.18014784157276154, - "y_max": 0.6371214985847473 - }, - "confidence": 0.7173522710800171, - "label_id": 1 - }, - "h": 89, - "w": 68, - "x": 278, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9869675040245056, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.17015217244625092, - 0.43316650390625, - 0.12649641931056976, - 0.00487033324316144, - 0.26531457901000977 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7173522710800171, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.29328787326812744, - 0.02837546169757843, - 0.17631417512893677, - 0.007166111376136541, - 0.4948563575744629 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 18599952384, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6354177594184875, - "y_min": 0.5307497382164001, - "x_max": 0.6711921095848083, - "y_max": 0.6139692664146423 - }, - "confidence": 0.9871232509613037, - "label_id": 1 - }, - "h": 90, - "w": 69, - "x": 1220, - "y": 573 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14480526745319366, - "y_min": 0.5545453429222107, - "x_max": 0.1801552027463913, - "y_max": 0.6366289258003235 - }, - "confidence": 0.7012512683868408, - "label_id": 1 - }, - "h": 89, - "w": 68, - "x": 278, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9871232509613037, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.13798300921916962, - 0.4195980429649353, - 0.08265917003154755, - 0.002579246647655964, - 0.35718053579330444 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7012512683868408, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2870905101299286, - 0.024530760943889618, - 0.19054612517356873, - 0.007107552606612444, - 0.490725040435791 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 18633285632, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6362234354019165, - "y_min": 0.5308993458747864, - "x_max": 0.6712328195571899, - "y_max": 0.6141985058784485 - }, - "confidence": 0.9923498034477234, - "label_id": 1 - }, - "h": 90, - "w": 67, - "x": 1222, - "y": 573 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14482127130031586, - "y_min": 0.5546175837516785, - "x_max": 0.1799759715795517, - "y_max": 0.6355769038200378 - }, - "confidence": 0.693996250629425, - "label_id": 1 - }, - "h": 87, - "w": 68, - "x": 278, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9923498034477234, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.11308661103248596, - 0.529438316822052, - 0.08218972384929657, - 0.0025309540797024965, - 0.272754430770874 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.693996250629425, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3004938066005707, - 0.024552222341299057, - 0.15513545274734497, - 0.00574036780744791, - 0.5140781998634338 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 18666618880, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6364958882331848, - "y_min": 0.5299235582351685, - "x_max": 0.6709889769554138, - "y_max": 0.609809160232544 - }, - "confidence": 0.9953598380088806, - "label_id": 1 - }, - "h": 87, - "w": 66, - "x": 1222, - "y": 572 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14464086294174194, - "y_min": 0.554702877998352, - "x_max": 0.1801500916481018, - "y_max": 0.6356736421585083 - }, - "confidence": 0.6986886858940125, - "label_id": 1 - }, - "h": 88, - "w": 68, - "x": 278, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9953598380088806, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.07148144394159317, - 0.48373159766197205, - 0.19370204210281372, - 0.001681886613368988, - 0.24940308928489685 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6986886858940125, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.32086503505706787, - 0.030608588829636574, - 0.17285312712192535, - 0.007068614475429058, - 0.46860471367836 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 18699952128, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6365334391593933, - "y_min": 0.531421422958374, - "x_max": 0.673000156879425, - "y_max": 0.6130245923995972 - }, - "confidence": 0.9971178770065308, - "label_id": 1 - }, - "h": 88, - "w": 70, - "x": 1222, - "y": 574 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14465318620204926, - "y_min": 0.5548093318939209, - "x_max": 0.1800609976053238, - "y_max": 0.6354633569717407 - }, - "confidence": 0.7133355140686035, - "label_id": 1 - }, - "h": 87, - "w": 68, - "x": 278, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9971178770065308, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.06997118890285492, - 0.7118263244628906, - 0.06412121653556824, - 0.002746070735156536, - 0.1513351947069168 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7133355140686035, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.284628689289093, - 0.020939867943525314, - 0.1639372855424881, - 0.005452475044876337, - 0.5250416994094849 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 18733285376, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6362607479095459, - "y_min": 0.5319908857345581, - "x_max": 0.6724401712417603, - "y_max": 0.6100867986679077 - }, - "confidence": 0.9962056875228882, - "label_id": 1 - }, - "h": 84, - "w": 69, - "x": 1222, - "y": 575 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.144792377948761, - "y_min": 0.5545597672462463, - "x_max": 0.1802484095096588, - "y_max": 0.6358758807182312 - }, - "confidence": 0.7062212228775024, - "label_id": 1 - }, - "h": 88, - "w": 68, - "x": 278, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9962056875228882, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.08229535073041916, - 0.6334147453308105, - 0.09618618339300156, - 0.003112293779850006, - 0.18499134480953217 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7062212228775024, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.31082120537757874, - 0.029274970293045044, - 0.1831134706735611, - 0.006037706974893808, - 0.4707527160644531 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 18766618624, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6371079087257385, - "y_min": 0.5296217203140259, - "x_max": 0.6733679175376892, - "y_max": 0.6097997426986694 - }, - "confidence": 0.998573899269104, - "label_id": 1 - }, - "h": 87, - "w": 70, - "x": 1223, - "y": 572 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14481154084205627, - "y_min": 0.5542982220649719, - "x_max": 0.18046444654464722, - "y_max": 0.6364768147468567 - }, - "confidence": 0.7184557914733887, - "label_id": 1 - }, - "h": 88, - "w": 68, - "x": 278, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.998573899269104, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.10391981154680252, - 0.6891127228736877, - 0.05075313523411751, - 0.0037368950434029102, - 0.1524774134159088 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7184557914733887, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.30531975626945496, - 0.027109868824481964, - 0.1830182671546936, - 0.005810136906802654, - 0.4787420332431793 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 18799951872, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6383959054946899, - "y_min": 0.5300501585006714, - "x_max": 0.673815131187439, - "y_max": 0.6094521284103394 - }, - "confidence": 0.9989180564880371, - "label_id": 1 - }, - "h": 86, - "w": 68, - "x": 1226, - "y": 572 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1448453962802887, - "y_min": 0.5546226501464844, - "x_max": 0.1802469789981842, - "y_max": 0.6351244449615479 - }, - "confidence": 0.7033858895301819, - "label_id": 1 - }, - "h": 87, - "w": 68, - "x": 278, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9989180564880371, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.07873612642288208, - 0.7509344816207886, - 0.04762708768248558, - 0.004672116134315729, - 0.11803025007247925 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7033858895301819, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.25378936529159546, - 0.028050845488905907, - 0.18306715786457062, - 0.004390540532767773, - 0.5307019948959351 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 18833285120, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6384646892547607, - "y_min": 0.5311604738235474, - "x_max": 0.673965334892273, - "y_max": 0.6106969118118286 - }, - "confidence": 0.9986081719398499, - "label_id": 1 - }, - "h": 86, - "w": 68, - "x": 1226, - "y": 574 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14482605457305908, - "y_min": 0.5549777746200562, - "x_max": 0.18044286966323853, - "y_max": 0.6355844736099243 - }, - "confidence": 0.7074602842330933, - "label_id": 1 - }, - "h": 87, - "w": 68, - "x": 278, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9986081719398499, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09053850173950195, - 0.5969749093055725, - 0.0961708053946495, - 0.0023875839542597532, - 0.21392822265625 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7074602842330933, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2635084092617035, - 0.029657909646630287, - 0.19305691123008728, - 0.004741629585623741, - 0.5090351700782776 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 18866618368, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6379191279411316, - "y_min": 0.5314905643463135, - "x_max": 0.674281656742096, - "y_max": 0.6130275726318359 - }, - "confidence": 0.9979639053344727, - "label_id": 1 - }, - "h": 88, - "w": 70, - "x": 1225, - "y": 574 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1448512077331543, - "y_min": 0.5549696087837219, - "x_max": 0.18035832047462463, - "y_max": 0.6365451216697693 - }, - "confidence": 0.7040253281593323, - "label_id": 1 - }, - "h": 88, - "w": 68, - "x": 278, - "y": 599 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.49270081520080566, - "y_min": 0.4666234850883484, - "x_max": 0.5213114023208618, - "y_max": 0.5242123603820801 - }, - "confidence": 0.5061671733856201, - "label_id": 1 - }, - "h": 62, - "w": 55, - "x": 946, - "y": 504 - } - ], - "tensors": [ - { - "confidence": 0.9979639053344727, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.0798199325799942, - 0.5971618890762329, - 0.1180666908621788, - 0.0038085603155195713, - 0.20114293694496155 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7040253281593323, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.32472673058509827, - 0.04708161950111389, - 0.18172919750213623, - 0.005354372784495354, - 0.4411081373691559 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5061671733856201, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.039382822811603546, - 0.0496310256421566, - 0.27920204401016235, - 0.003187954192981124, - 0.6285961270332336 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 18899951616, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6385010480880737, - "y_min": 0.529940128326416, - "x_max": 0.67375648021698, - "y_max": 0.6108421087265015 - }, - "confidence": 0.9982314705848694, - "label_id": 1 - }, - "h": 88, - "w": 68, - "x": 1226, - "y": 572 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14492915570735931, - "y_min": 0.5549721717834473, - "x_max": 0.1805075854063034, - "y_max": 0.6366602182388306 - }, - "confidence": 0.7081634998321533, - "label_id": 1 - }, - "h": 89, - "w": 69, - "x": 278, - "y": 599 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.49267563223838806, - "y_min": 0.4663349986076355, - "x_max": 0.5214071273803711, - "y_max": 0.5243345499038696 - }, - "confidence": 0.5050584673881531, - "label_id": 1 - }, - "h": 62, - "w": 55, - "x": 946, - "y": 504 - } - ], - "tensors": [ - { - "confidence": 0.9982314705848694, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09645406156778336, - 0.5167652368545532, - 0.09840123355388641, - 0.0070527102798223495, - 0.2813267707824707 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7081634998321533, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3061218559741974, - 0.040387578308582306, - 0.19495271146297455, - 0.006499097216874361, - 0.4520387351512909 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5050584673881531, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.038583967834711075, - 0.03981386870145798, - 0.3218599855899811, - 0.002651630202308297, - 0.597090482711792 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 18933284864, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.63860684633255, - "y_min": 0.528730034828186, - "x_max": 0.6742573380470276, - "y_max": 0.6095852851867676 - }, - "confidence": 0.9985400438308716, - "label_id": 1 - }, - "h": 87, - "w": 69, - "x": 1226, - "y": 571 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1449786275625229, - "y_min": 0.554921567440033, - "x_max": 0.18050070106983185, - "y_max": 0.6358329653739929 - }, - "confidence": 0.6939667463302612, - "label_id": 1 - }, - "h": 88, - "w": 69, - "x": 278, - "y": 599 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.4925072491168976, - "y_min": 0.4659513235092163, - "x_max": 0.5212358236312866, - "y_max": 0.5245097875595093 - }, - "confidence": 0.5070826411247253, - "label_id": 1 - }, - "h": 63, - "w": 55, - "x": 946, - "y": 503 - } - ], - "tensors": [ - { - "confidence": 0.9985400438308716, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.07756206393241882, - 0.6818161010742188, - 0.05463847517967224, - 0.0048727430403232574, - 0.18111059069633484 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6939667463302612, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.25597044825553894, - 0.02491275779902935, - 0.19694070518016815, - 0.0056086210533976555, - 0.5165675282478333 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5070826411247253, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.044932980090379715, - 0.03460272401571274, - 0.3081567585468292, - 0.0027201874181628227, - 0.6095873117446899 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 18966618112, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6388643980026245, - "y_min": 0.5265188813209534, - "x_max": 0.6743040084838867, - "y_max": 0.606584370136261 - }, - "confidence": 0.9991876482963562, - "label_id": 1 - }, - "h": 86, - "w": 68, - "x": 1227, - "y": 569 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14503218233585358, - "y_min": 0.5549081563949585, - "x_max": 0.180561825633049, - "y_max": 0.6361976861953735 - }, - "confidence": 0.7020150423049927, - "label_id": 1 - }, - "h": 88, - "w": 69, - "x": 278, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9991876482963562, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09971557557582855, - 0.4507223069667816, - 0.0800345316529274, - 0.006248894613236189, - 0.36327874660491943 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7020150423049927, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2702780067920685, - 0.02410576120018959, - 0.1996520757675171, - 0.005351428408175707, - 0.500612735748291 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 18999951360, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6387310028076172, - "y_min": 0.5259461402893066, - "x_max": 0.6745139360427856, - "y_max": 0.6045010089874268 - }, - "confidence": 0.999272882938385, - "label_id": 1 - }, - "h": 85, - "w": 69, - "x": 1226, - "y": 568 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14511609077453613, - "y_min": 0.554845929145813, - "x_max": 0.18052133917808533, - "y_max": 0.6361595392227173 - }, - "confidence": 0.708160936832428, - "label_id": 1 - }, - "h": 88, - "w": 68, - "x": 279, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.999272882938385, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1287226527929306, - 0.6166499853134155, - 0.052318233996629715, - 0.00590690178796649, - 0.19640225172042847 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.708160936832428, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23689860105514526, - 0.01951102539896965, - 0.20464769005775452, - 0.005157290957868099, - 0.5337852835655212 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 19033284608, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6392494440078735, - "y_min": 0.5270567536354065, - "x_max": 0.674836277961731, - "y_max": 0.6036278605461121 - }, - "confidence": 0.999133288860321, - "label_id": 1 - }, - "h": 83, - "w": 69, - "x": 1227, - "y": 569 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14505618810653687, - "y_min": 0.5545468330383301, - "x_max": 0.1806345283985138, - "y_max": 0.6365028619766235 - }, - "confidence": 0.7210745215415955, - "label_id": 1 - }, - "h": 88, - "w": 68, - "x": 279, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.999133288860321, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.12050101161003113, - 0.48441803455352783, - 0.07300914824008942, - 0.00964318960905075, - 0.3124285340309143 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7210745215415955, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23316022753715515, - 0.018428446725010872, - 0.20719408988952637, - 0.004807542078197002, - 0.5364096760749817 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 19066617856, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6398306488990784, - "y_min": 0.5280726552009583, - "x_max": 0.6746516823768616, - "y_max": 0.6035155653953552 - }, - "confidence": 0.9980035424232483, - "label_id": 1 - }, - "h": 82, - "w": 67, - "x": 1228, - "y": 570 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1450510174036026, - "y_min": 0.5544809103012085, - "x_max": 0.18061785399913788, - "y_max": 0.6360782384872437 - }, - "confidence": 0.7118731141090393, - "label_id": 1 - }, - "h": 88, - "w": 69, - "x": 278, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9980035424232483, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.19183345139026642, - 0.39766696095466614, - 0.06448003649711609, - 0.004341489169746637, - 0.3416781425476074 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7118731141090393, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2547503709793091, - 0.020162547007203102, - 0.18162600696086884, - 0.004224099684506655, - 0.5392370223999023 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 19099951104, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6390393376350403, - "y_min": 0.5293529033660889, - "x_max": 0.6747505068778992, - "y_max": 0.6092859506607056 - }, - "confidence": 0.9986718893051147, - "label_id": 1 - }, - "h": 86, - "w": 69, - "x": 1227, - "y": 572 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1450146734714508, - "y_min": 0.5547146797180176, - "x_max": 0.18069332838058472, - "y_max": 0.6364648342132568 - }, - "confidence": 0.7279825806617737, - "label_id": 1 - }, - "h": 88, - "w": 69, - "x": 278, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9986718893051147, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.13567306101322174, - 0.3884178400039673, - 0.10808496177196503, - 0.005124931689351797, - 0.3626992404460907 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7279825806617737, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.24413368105888367, - 0.022654814645648003, - 0.17807984352111816, - 0.003966317977756262, - 0.5511652827262878 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 19133284352, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6396353244781494, - "y_min": 0.5308141708374023, - "x_max": 0.6749913692474365, - "y_max": 0.6102743148803711 - }, - "confidence": 0.9987932443618774, - "label_id": 1 - }, - "h": 86, - "w": 68, - "x": 1228, - "y": 573 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14520606398582458, - "y_min": 0.5544793605804443, - "x_max": 0.1808103322982788, - "y_max": 0.6368523836135864 - }, - "confidence": 0.731984555721283, - "label_id": 1 - }, - "h": 89, - "w": 68, - "x": 279, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9987932443618774, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.13124004006385803, - 0.3243882358074188, - 0.14436806738376617, - 0.006131686270236969, - 0.3938719928264618 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.731984555721283, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23180577158927917, - 0.025421369820833206, - 0.1828252375125885, - 0.004305227193981409, - 0.555642306804657 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 19166617600, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6402954459190369, - "y_min": 0.5302774310112, - "x_max": 0.6757227778434753, - "y_max": 0.6101539731025696 - }, - "confidence": 0.9995970129966736, - "label_id": 1 - }, - "h": 86, - "w": 68, - "x": 1229, - "y": 573 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.145163893699646, - "y_min": 0.554760217666626, - "x_max": 0.1806635856628418, - "y_max": 0.6363850831985474 - }, - "confidence": 0.7282747030258179, - "label_id": 1 - }, - "h": 88, - "w": 68, - "x": 279, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9995970129966736, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.10948090255260468, - 0.3829249441623688, - 0.13422147929668427, - 0.005019828211516142, - 0.36835286021232605 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7282747030258179, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.20535527169704437, - 0.01511874608695507, - 0.19688273966312408, - 0.0038553536869585514, - 0.5787878632545471 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 19199950848, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6406787633895874, - "y_min": 0.5297092199325562, - "x_max": 0.6763334274291992, - "y_max": 0.6098829507827759 - }, - "confidence": 0.9997523427009583, - "label_id": 1 - }, - "h": 87, - "w": 69, - "x": 1230, - "y": 572 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14504681527614594, - "y_min": 0.5543994307518005, - "x_max": 0.18067054450511932, - "y_max": 0.6358855366706848 - }, - "confidence": 0.721763551235199, - "label_id": 1 - }, - "h": 88, - "w": 69, - "x": 278, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9997523427009583, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09387513995170593, - 0.5316781401634216, - 0.07234704494476318, - 0.004572633188217878, - 0.2975270748138428 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.721763551235199, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2286098301410675, - 0.019562378525733948, - 0.19664493203163147, - 0.005025015212595463, - 0.5501577854156494 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 19233284096, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6416659951210022, - "y_min": 0.5285419821739197, - "x_max": 0.6772043108940125, - "y_max": 0.6071475148200989 - }, - "confidence": 0.9998844861984253, - "label_id": 1 - }, - "h": 85, - "w": 68, - "x": 1232, - "y": 571 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14511485397815704, - "y_min": 0.5542585849761963, - "x_max": 0.18054990470409393, - "y_max": 0.6362631320953369 - }, - "confidence": 0.7234401106834412, - "label_id": 1 - }, - "h": 88, - "w": 68, - "x": 279, - "y": 599 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.4924185872077942, - "y_min": 0.4660225510597229, - "x_max": 0.5210090279579163, - "y_max": 0.5243319272994995 - }, - "confidence": 0.5099904537200928, - "label_id": 1 - }, - "h": 63, - "w": 55, - "x": 945, - "y": 503 - } - ], - "tensors": [ - { - "confidence": 0.9998844861984253, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.11197134852409363, - 0.39188820123672485, - 0.09580942988395691, - 0.003888266161084175, - 0.3964426815509796 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7234401106834412, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.22243551909923553, - 0.01852927729487419, - 0.19019795954227448, - 0.004111215937882662, - 0.5647259950637817 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5099904537200928, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.04149061068892479, - 0.1709173023700714, - 0.2551237642765045, - 0.0025018644519150257, - 0.529966413974762 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 19266617344, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6415053009986877, - "y_min": 0.5280520915985107, - "x_max": 0.676758348941803, - "y_max": 0.6063653230667114 - }, - "confidence": 0.9998592138290405, - "label_id": 1 - }, - "h": 85, - "w": 67, - "x": 1232, - "y": 570 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14502103626728058, - "y_min": 0.5541045665740967, - "x_max": 0.18061240017414093, - "y_max": 0.6363041400909424 - }, - "confidence": 0.7256351113319397, - "label_id": 1 - }, - "h": 89, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9998592138290405, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.0953444316983223, - 0.2216079831123352, - 0.10455092787742615, - 0.0034470590762794018, - 0.5750495195388794 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7256351113319397, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1792370080947876, - 0.01463990192860365, - 0.23359589278697968, - 0.004100052639842033, - 0.5684271454811096 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 19299950592, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.641757607460022, - "y_min": 0.5285664796829224, - "x_max": 0.6768020391464233, - "y_max": 0.6040008068084717 - }, - "confidence": 0.9996881484985352, - "label_id": 1 - }, - "h": 81, - "w": 67, - "x": 1232, - "y": 571 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14491577446460724, - "y_min": 0.5538920164108276, - "x_max": 0.18078024685382843, - "y_max": 0.6367655992507935 - }, - "confidence": 0.7349449992179871, - "label_id": 1 - }, - "h": 90, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9996881484985352, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.10694663971662521, - 0.34983283281326294, - 0.09669127315282822, - 0.0031925237271934748, - 0.4433367848396301 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7349449992179871, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.20328575372695923, - 0.018490036949515343, - 0.22295913100242615, - 0.0048351106233894825, - 0.5504299402236938 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 19333283840, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6422237753868103, - "y_min": 0.5299071669578552, - "x_max": 0.6774815917015076, - "y_max": 0.6026082634925842 - }, - "confidence": 0.9997288584709167, - "label_id": 1 - }, - "h": 79, - "w": 68, - "x": 1233, - "y": 572 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14470885694026947, - "y_min": 0.5539321899414062, - "x_max": 0.18085624277591705, - "y_max": 0.6370989084243774 - }, - "confidence": 0.7446168661117554, - "label_id": 1 - }, - "h": 90, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9997288584709167, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.10841760784387589, - 0.3066943287849426, - 0.09087498486042023, - 0.002704077400267124, - 0.4913090169429779 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7446168661117554, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.20286469161510468, - 0.019076354801654816, - 0.22849170863628387, - 0.004822148941457272, - 0.5447450280189514 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 19366617088, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6431193351745605, - "y_min": 0.5303637981414795, - "x_max": 0.6783511638641357, - "y_max": 0.601865291595459 - }, - "confidence": 0.999566376209259, - "label_id": 1 - }, - "h": 77, - "w": 67, - "x": 1235, - "y": 573 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1447780728340149, - "y_min": 0.5534454584121704, - "x_max": 0.18096449971199036, - "y_max": 0.637114405632019 - }, - "confidence": 0.7475056648254395, - "label_id": 1 - }, - "h": 90, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.999566376209259, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1075374186038971, - 0.3521954119205475, - 0.11044268310070038, - 0.0031589563004672527, - 0.42666560411453247 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7475056648254395, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.21048346161842346, - 0.01720903441309929, - 0.22001640498638153, - 0.00471974303945899, - 0.5475713610649109 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 19399950336, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6428514122962952, - "y_min": 0.5317654609680176, - "x_max": 0.6783697009086609, - "y_max": 0.603317141532898 - }, - "confidence": 0.9993975162506104, - "label_id": 1 - }, - "h": 78, - "w": 68, - "x": 1234, - "y": 574 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14459413290023804, - "y_min": 0.5534964799880981, - "x_max": 0.18090605735778809, - "y_max": 0.6371909379959106 - }, - "confidence": 0.7464834451675415, - "label_id": 1 - }, - "h": 90, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9993975162506104, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.10184568166732788, - 0.24284924566745758, - 0.1672036200761795, - 0.006681256927549839, - 0.48142024874687195 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7464834451675415, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.21882915496826172, - 0.018334979191422462, - 0.22827738523483276, - 0.00478020403534174, - 0.5297783613204956 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 19433283584, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6435124278068542, - "y_min": 0.5321977734565735, - "x_max": 0.679304301738739, - "y_max": 0.6039866805076599 - }, - "confidence": 0.9997968077659607, - "label_id": 1 - }, - "h": 77, - "w": 68, - "x": 1236, - "y": 575 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14468525350093842, - "y_min": 0.553350031375885, - "x_max": 0.18104170262813568, - "y_max": 0.6372573971748352 - }, - "confidence": 0.7458905577659607, - "label_id": 1 - }, - "h": 90, - "w": 70, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9997968077659607, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09761452674865723, - 0.4794367551803589, - 0.11360616981983185, - 0.0058730244636535645, - 0.3034694790840149 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7458905577659607, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.20771530270576477, - 0.018430138006806374, - 0.2405918687582016, - 0.004568008705973625, - 0.5286946892738342 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 19466616832, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6462135910987854, - "y_min": 0.5305179357528687, - "x_max": 0.6810827851295471, - "y_max": 0.6034191846847534 - }, - "confidence": 0.9998781681060791, - "label_id": 1 - }, - "h": 79, - "w": 67, - "x": 1241, - "y": 573 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14465965330600739, - "y_min": 0.5534595847129822, - "x_max": 0.18110321462154388, - "y_max": 0.6373615860939026 - }, - "confidence": 0.7390366792678833, - "label_id": 1 - }, - "h": 90, - "w": 70, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9998781681060791, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.10248207300901413, - 0.5647401213645935, - 0.07481177151203156, - 0.002325654961168766, - 0.2556403577327728 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7390366792678833, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1986633688211441, - 0.0166927482932806, - 0.2601862847805023, - 0.004751476459205151, - 0.519706130027771 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 19499950080, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6468459963798523, - "y_min": 0.5293279886245728, - "x_max": 0.6818297505378723, - "y_max": 0.6041510105133057 - }, - "confidence": 0.9999357461929321, - "label_id": 1 - }, - "h": 80, - "w": 67, - "x": 1242, - "y": 572 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1446530967950821, - "y_min": 0.5531087517738342, - "x_max": 0.18112386763095856, - "y_max": 0.6372587084770203 - }, - "confidence": 0.7476736307144165, - "label_id": 1 - }, - "h": 91, - "w": 70, - "x": 278, - "y": 597 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.263619989156723, - "y_min": 0.4599161744117737, - "x_max": 0.29203900694847107, - "y_max": 0.5212525725364685 - }, - "confidence": 0.5269920229911804, - "label_id": 1 - }, - "h": 66, - "w": 55, - "x": 506, - "y": 497 - } - ], - "tensors": [ - { - "confidence": 0.9999357461929321, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09456843882799149, - 0.547179639339447, - 0.07711546123027802, - 0.0026940004900097847, - 0.2784423530101776 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7476736307144165, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.20837311446666718, - 0.012155710719525814, - 0.27061283588409424, - 0.00530284084379673, - 0.503555417060852 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5269920229911804, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.6631618142127991, - 0.09932636469602585, - 0.08114923536777496, - 0.029849829152226448, - 0.126512810587883 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 19533283328, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6473080515861511, - "y_min": 0.5295769572257996, - "x_max": 0.6821457743644714, - "y_max": 0.6029143929481506 - }, - "confidence": 0.9998874664306641, - "label_id": 1 - }, - "h": 79, - "w": 67, - "x": 1243, - "y": 572 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14473947882652283, - "y_min": 0.55319744348526, - "x_max": 0.18109950423240662, - "y_max": 0.6371433138847351 - }, - "confidence": 0.745346188545227, - "label_id": 1 - }, - "h": 91, - "w": 70, - "x": 278, - "y": 597 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.26386815309524536, - "y_min": 0.4592410624027252, - "x_max": 0.292383074760437, - "y_max": 0.5208907723426819 - }, - "confidence": 0.5664659142494202, - "label_id": 1 - }, - "h": 67, - "w": 54, - "x": 507, - "y": 496 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.4925205409526825, - "y_min": 0.4662826955318451, - "x_max": 0.5209496021270752, - "y_max": 0.5232325196266174 - }, - "confidence": 0.5002970695495605, - "label_id": 1 - }, - "h": 61, - "w": 54, - "x": 946, - "y": 504 - } - ], - "tensors": [ - { - "confidence": 0.9998874664306641, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.10422878712415695, - 0.3930307626724243, - 0.09861554205417633, - 0.0030757859349250793, - 0.4010491371154785 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.745346188545227, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.22651921212673187, - 0.013142268173396587, - 0.2730405330657959, - 0.005506902001798153, - 0.4817911386489868 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5664659142494202, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.6089410781860352, - 0.15683907270431519, - 0.06662644445896149, - 0.017940238118171692, - 0.14965307712554932 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5002970695495605, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.03918159753084183, - 0.11529964208602905, - 0.23145698010921478, - 0.002337562618777156, - 0.611724317073822 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 19566616576, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6474869251251221, - "y_min": 0.5292032957077026, - "x_max": 0.6823325157165527, - "y_max": 0.6030515432357788 - }, - "confidence": 0.9999226331710815, - "label_id": 1 - }, - "h": 79, - "w": 67, - "x": 1243, - "y": 572 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14479635655879974, - "y_min": 0.5532065033912659, - "x_max": 0.1811312884092331, - "y_max": 0.6369171738624573 - }, - "confidence": 0.7434067726135254, - "label_id": 1 - }, - "h": 91, - "w": 70, - "x": 278, - "y": 597 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.2641191780567169, - "y_min": 0.458453893661499, - "x_max": 0.29262372851371765, - "y_max": 0.52016282081604 - }, - "confidence": 0.5576895475387573, - "label_id": 1 - }, - "h": 67, - "w": 55, - "x": 507, - "y": 495 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.4923407733440399, - "y_min": 0.46671801805496216, - "x_max": 0.5208232402801514, - "y_max": 0.5239319205284119 - }, - "confidence": 0.5445396900177002, - "label_id": 1 - }, - "h": 62, - "w": 55, - "x": 945, - "y": 504 - } - ], - "tensors": [ - { - "confidence": 0.9999226331710815, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.12737008929252625, - 0.4437450170516968, - 0.11777363717556, - 0.002412061206996441, - 0.3086991012096405 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7434067726135254, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.22993628680706024, - 0.014932547695934772, - 0.2547367811203003, - 0.006517169065773487, - 0.4938771426677704 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5576895475387573, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5890811085700989, - 0.20998628437519073, - 0.06050325930118561, - 0.014634523540735245, - 0.12579481303691864 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5445396900177002, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.03454875573515892, - 0.0921667143702507, - 0.3262191712856293, - 0.0025385033804923296, - 0.5445268154144287 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 19599949824, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6473037600517273, - "y_min": 0.5295224189758301, - "x_max": 0.6823603510856628, - "y_max": 0.6027406454086304 - }, - "confidence": 0.9999278783798218, - "label_id": 1 - }, - "h": 79, - "w": 67, - "x": 1243, - "y": 572 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14483395218849182, - "y_min": 0.5528997778892517, - "x_max": 0.18102112412452698, - "y_max": 0.6367631554603577 - }, - "confidence": 0.7402632832527161, - "label_id": 1 - }, - "h": 91, - "w": 70, - "x": 278, - "y": 597 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.49246713519096375, - "y_min": 0.46715784072875977, - "x_max": 0.5209254622459412, - "y_max": 0.5244689583778381 - }, - "confidence": 0.5682916641235352, - "label_id": 1 - }, - "h": 61, - "w": 54, - "x": 946, - "y": 505 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.2639617621898651, - "y_min": 0.45821520686149597, - "x_max": 0.2922934591770172, - "y_max": 0.5194015502929688 - }, - "confidence": 0.5158138871192932, - "label_id": 1 - }, - "h": 66, - "w": 54, - "x": 507, - "y": 495 - } - ], - "tensors": [ - { - "confidence": 0.9999278783798218, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.14718332886695862, - 0.3958612084388733, - 0.12572750449180603, - 0.0025143874809145927, - 0.3287135660648346 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7402632832527161, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23125974833965302, - 0.01811353862285614, - 0.23296096920967102, - 0.006219120230525732, - 0.5114465355873108 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5682916641235352, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.03039742447435856, - 0.1076761856675148, - 0.3403986394405365, - 0.002266703639179468, - 0.5192611217498779 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5158138871192932, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5594290494918823, - 0.2687808871269226, - 0.050909798592329025, - 0.017731375992298126, - 0.10314889997243881 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 19633283072, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6471307277679443, - "y_min": 0.5296461582183838, - "x_max": 0.6823276281356812, - "y_max": 0.603998064994812 - }, - "confidence": 0.9999542236328125, - "label_id": 1 - }, - "h": 80, - "w": 68, - "x": 1242, - "y": 572 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14482636749744415, - "y_min": 0.5528193712234497, - "x_max": 0.1810232549905777, - "y_max": 0.6368387937545776 - }, - "confidence": 0.7431644797325134, - "label_id": 1 - }, - "h": 91, - "w": 70, - "x": 278, - "y": 597 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.2634080648422241, - "y_min": 0.4583841562271118, - "x_max": 0.2922898530960083, - "y_max": 0.5204333066940308 - }, - "confidence": 0.5992787480354309, - "label_id": 1 - }, - "h": 67, - "w": 55, - "x": 506, - "y": 495 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.4923010468482971, - "y_min": 0.4679282307624817, - "x_max": 0.5210214257240295, - "y_max": 0.5259714126586914 - }, - "confidence": 0.5704365968704224, - "label_id": 1 - }, - "h": 63, - "w": 55, - "x": 945, - "y": 505 - } - ], - "tensors": [ - { - "confidence": 0.9999542236328125, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.22646595537662506, - 0.39902231097221375, - 0.09953669458627701, - 0.002273063873872161, - 0.27270200848579407 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7431644797325134, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.20395468175411224, - 0.018407879397273064, - 0.24941521883010864, - 0.007133368402719498, - 0.5210887789726257 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5992787480354309, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.6294839382171631, - 0.21901124715805054, - 0.04697294905781746, - 0.011971994303166866, - 0.0925598293542862 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5704365968704224, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.022841058671474457, - 0.04524091258645058, - 0.3549465835094452, - 0.00146809674333781, - 0.5755033493041992 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 19666616320, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6471392512321472, - "y_min": 0.5299007296562195, - "x_max": 0.6820563673973083, - "y_max": 0.6040312647819519 - }, - "confidence": 0.9999350309371948, - "label_id": 1 - }, - "h": 80, - "w": 67, - "x": 1243, - "y": 572 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14496007561683655, - "y_min": 0.5530130863189697, - "x_max": 0.18111100792884827, - "y_max": 0.6361982822418213 - }, - "confidence": 0.7407637238502502, - "label_id": 1 - }, - "h": 90, - "w": 70, - "x": 278, - "y": 597 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.26316291093826294, - "y_min": 0.4585539400577545, - "x_max": 0.29225748777389526, - "y_max": 0.520348072052002 - }, - "confidence": 0.6079875826835632, - "label_id": 1 - }, - "h": 67, - "w": 56, - "x": 505, - "y": 495 - } - ], - "tensors": [ - { - "confidence": 0.9999350309371948, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.17141911387443542, - 0.3240966200828552, - 0.10073960572481155, - 0.0019796716514974833, - 0.40176501870155334 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7407637238502502, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2344493418931961, - 0.027781059965491295, - 0.21844619512557983, - 0.007766117341816425, - 0.5115573406219482 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6079875826835632, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.582326352596283, - 0.2709524929523468, - 0.037407469004392624, - 0.015764083713293076, - 0.09354951232671738 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 19699949568, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6466435194015503, - "y_min": 0.530623733997345, - "x_max": 0.6813449859619141, - "y_max": 0.6044045090675354 - }, - "confidence": 0.9999145269393921, - "label_id": 1 - }, - "h": 80, - "w": 66, - "x": 1242, - "y": 573 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14493176341056824, - "y_min": 0.5529976487159729, - "x_max": 0.18098992109298706, - "y_max": 0.6361328959465027 - }, - "confidence": 0.7260349988937378, - "label_id": 1 - }, - "h": 90, - "w": 70, - "x": 278, - "y": 597 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.263108491897583, - "y_min": 0.45904797315597534, - "x_max": 0.2923927903175354, - "y_max": 0.5213765501976013 - }, - "confidence": 0.6557186841964722, - "label_id": 1 - }, - "h": 67, - "w": 56, - "x": 505, - "y": 496 - } - ], - "tensors": [ - { - "confidence": 0.9999145269393921, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.19525878131389618, - 0.22764264047145844, - 0.07021728157997131, - 0.0012680096551775932, - 0.5056133270263672 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7260349988937378, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.20100216567516327, - 0.02111845463514328, - 0.24266564846038818, - 0.008279598318040371, - 0.5269341468811035 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6557186841964722, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.6025761961936951, - 0.2642786502838135, - 0.0559590607881546, - 0.014501589350402355, - 0.06268440186977386 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 19733282816, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6457276344299316, - "y_min": 0.5310775637626648, - "x_max": 0.6804907321929932, - "y_max": 0.6046809554100037 - }, - "confidence": 0.9999288320541382, - "label_id": 1 - }, - "h": 79, - "w": 67, - "x": 1240, - "y": 574 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14505469799041748, - "y_min": 0.5528538823127747, - "x_max": 0.18108373880386353, - "y_max": 0.636151134967804 - }, - "confidence": 0.7295452356338501, - "label_id": 1 - }, - "h": 90, - "w": 69, - "x": 279, - "y": 597 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.26296478509902954, - "y_min": 0.45963817834854126, - "x_max": 0.2921396493911743, - "y_max": 0.5220297574996948 - }, - "confidence": 0.6584212779998779, - "label_id": 1 - }, - "h": 68, - "w": 56, - "x": 505, - "y": 496 - } - ], - "tensors": [ - { - "confidence": 0.9999288320541382, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.19802775979042053, - 0.29253098368644714, - 0.07375411689281464, - 0.001427920418791473, - 0.434259295463562 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7295452356338501, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1944969892501831, - 0.01622815988957882, - 0.26355546712875366, - 0.007914678193628788, - 0.5178046822547913 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6584212779998779, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5297460556030273, - 0.34987854957580566, - 0.06025894731283188, - 0.013598221354186535, - 0.046518146991729736 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 19766616064, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6444323062896729, - "y_min": 0.5315272808074951, - "x_max": 0.6798049211502075, - "y_max": 0.6049834489822388 - }, - "confidence": 0.9999618530273438, - "label_id": 1 - }, - "h": 79, - "w": 68, - "x": 1237, - "y": 574 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1448798030614853, - "y_min": 0.5529659390449524, - "x_max": 0.18119804561138153, - "y_max": 0.6366053223609924 - }, - "confidence": 0.7331142425537109, - "label_id": 1 - }, - "h": 91, - "w": 70, - "x": 278, - "y": 597 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.2630535960197449, - "y_min": 0.45986661314964294, - "x_max": 0.29233115911483765, - "y_max": 0.5224190354347229 - }, - "confidence": 0.6356581449508667, - "label_id": 1 - }, - "h": 67, - "w": 56, - "x": 505, - "y": 497 - } - ], - "tensors": [ - { - "confidence": 0.9999618530273438, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.27303415536880493, - 0.3934234082698822, - 0.0754254162311554, - 0.0023101537954062223, - 0.25580692291259766 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7331142425537109, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.14967462420463562, - 0.013044538907706738, - 0.3008710741996765, - 0.00737411342561245, - 0.5290355682373047 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6356581449508667, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5834560990333557, - 0.23379378020763397, - 0.11560216546058655, - 0.019910406321287155, - 0.047237612307071686 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 19799949312, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6445091962814331, - "y_min": 0.5330021381378174, - "x_max": 0.6801395416259766, - "y_max": 0.6067541837692261 - }, - "confidence": 0.9999396800994873, - "label_id": 1 - }, - "h": 79, - "w": 69, - "x": 1237, - "y": 576 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14496581256389618, - "y_min": 0.5531051158905029, - "x_max": 0.1813063770532608, - "y_max": 0.6367518901824951 - }, - "confidence": 0.731410801410675, - "label_id": 1 - }, - "h": 91, - "w": 70, - "x": 278, - "y": 597 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.2634223401546478, - "y_min": 0.460159033536911, - "x_max": 0.2923230826854706, - "y_max": 0.5229267477989197 - }, - "confidence": 0.5853301882743835, - "label_id": 1 - }, - "h": 68, - "w": 55, - "x": 506, - "y": 497 - } - ], - "tensors": [ - { - "confidence": 0.9999396800994873, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.27825048565864563, - 0.2552010118961334, - 0.07053457200527191, - 0.0019573173485696316, - 0.39405664801597595 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.731410801410675, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1607094258069992, - 0.013550924137234688, - 0.30366018414497375, - 0.00799438264220953, - 0.514085054397583 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5853301882743835, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5987536907196045, - 0.17357787489891052, - 0.13906951248645782, - 0.023643480613827705, - 0.06495542824268341 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 19833282560, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6455656886100769, - "y_min": 0.5357635617256165, - "x_max": 0.680945098400116, - "y_max": 0.6068623661994934 - }, - "confidence": 0.9997215867042542, - "label_id": 1 - }, - "h": 76, - "w": 68, - "x": 1239, - "y": 579 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14487233757972717, - "y_min": 0.553127110004425, - "x_max": 0.18141970038414001, - "y_max": 0.6371640563011169 - }, - "confidence": 0.741046667098999, - "label_id": 1 - }, - "h": 91, - "w": 70, - "x": 278, - "y": 597 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.2636271119117737, - "y_min": 0.45930638909339905, - "x_max": 0.292336106300354, - "y_max": 0.5223621129989624 - }, - "confidence": 0.55421382188797, - "label_id": 1 - }, - "h": 68, - "w": 55, - "x": 506, - "y": 496 - } - ], - "tensors": [ - { - "confidence": 0.9997215867042542, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.18086537718772888, - 0.10471997410058975, - 0.12577882409095764, - 0.0011568779591470957, - 0.5874789357185364 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.741046667098999, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.16145549714565277, - 0.014717422425746918, - 0.3139091432094574, - 0.00919601321220398, - 0.5007218718528748 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.55421382188797, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.6586437821388245, - 0.15922918915748596, - 0.0963316336274147, - 0.022210117429494858, - 0.06358519941568375 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 19866615808, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6456892490386963, - "y_min": 0.5365423560142517, - "x_max": 0.6815125942230225, - "y_max": 0.6059903502464294 - }, - "confidence": 0.9997953772544861, - "label_id": 1 - }, - "h": 75, - "w": 69, - "x": 1240, - "y": 579 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14491024613380432, - "y_min": 0.5530399680137634, - "x_max": 0.18141716718673706, - "y_max": 0.6370719075202942 - }, - "confidence": 0.7433412075042725, - "label_id": 1 - }, - "h": 91, - "w": 70, - "x": 278, - "y": 597 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.2638762295246124, - "y_min": 0.45974794030189514, - "x_max": 0.2925666272640228, - "y_max": 0.5225910544395447 - }, - "confidence": 0.5185371041297913, - "label_id": 1 - }, - "h": 67, - "w": 55, - "x": 507, - "y": 497 - } - ], - "tensors": [ - { - "confidence": 0.9997953772544861, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2923142611980438, - 0.1334104835987091, - 0.11361749470233917, - 0.0015629212139174342, - 0.4590948820114136 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7433412075042725, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1628130078315735, - 0.015006469562649727, - 0.3106619715690613, - 0.009748144075274467, - 0.5017703771591187 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5185371041297913, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.31571701169013977, - 0.5953375697135925, - 0.04893835633993149, - 0.00724139204248786, - 0.032765671610832214 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 19899949056, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6452445387840271, - "y_min": 0.5357012152671814, - "x_max": 0.6817055344581604, - "y_max": 0.6065084338188171 - }, - "confidence": 0.9999651908874512, - "label_id": 1 - }, - "h": 76, - "w": 70, - "x": 1239, - "y": 579 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14501753449440002, - "y_min": 0.5529430508613586, - "x_max": 0.18138951063156128, - "y_max": 0.6375853419303894 - }, - "confidence": 0.7451831698417664, - "label_id": 1 - }, - "h": 92, - "w": 70, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999651908874512, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3635241687297821, - 0.21555238962173462, - 0.09897483885288239, - 0.0015300968661904335, - 0.32041847705841064 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7451831698417664, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.13112714886665344, - 0.010107101872563362, - 0.3227101266384125, - 0.009996841661632061, - 0.5260588526725769 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 19933282304, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6476733088493347, - "y_min": 0.5346304774284363, - "x_max": 0.6825938820838928, - "y_max": 0.6059069037437439 - }, - "confidence": 0.9996918439865112, - "label_id": 1 - }, - "h": 77, - "w": 67, - "x": 1244, - "y": 577 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14512905478477478, - "y_min": 0.553023636341095, - "x_max": 0.1814694106578827, - "y_max": 0.6372014880180359 - }, - "confidence": 0.7442628145217896, - "label_id": 1 - }, - "h": 91, - "w": 69, - "x": 279, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9996918439865112, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.22117729485034943, - 0.09213586151599884, - 0.06300639361143112, - 0.001819952973164618, - 0.6218605041503906 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7442628145217896, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.14036723971366882, - 0.011088917963206768, - 0.3853718042373657, - 0.0078721409663558, - 0.4552999436855316 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 19966615552, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6461184620857239, - "y_min": 0.536492109298706, - "x_max": 0.6821306347846985, - "y_max": 0.6080615520477295 - }, - "confidence": 0.9997044205665588, - "label_id": 1 - }, - "h": 78, - "w": 69, - "x": 1241, - "y": 579 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14507727324962616, - "y_min": 0.5531916618347168, - "x_max": 0.18130941689014435, - "y_max": 0.6369342803955078 - }, - "confidence": 0.7468969225883484, - "label_id": 1 - }, - "h": 91, - "w": 69, - "x": 279, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9997044205665588, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3043661415576935, - 0.171949103474617, - 0.07752063125371933, - 0.0021039035636931658, - 0.4440602660179138 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7468969225883484, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.14507617056369781, - 0.011584311723709106, - 0.38411837816238403, - 0.008936667814850807, - 0.45028433203697205 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 19999948800, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6467229723930359, - "y_min": 0.5364605784416199, - "x_max": 0.6826624274253845, - "y_max": 0.6089625954627991 - }, - "confidence": 0.9997003078460693, - "label_id": 1 - }, - "h": 79, - "w": 69, - "x": 1242, - "y": 579 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14523623883724213, - "y_min": 0.553042471408844, - "x_max": 0.18105508387088776, - "y_max": 0.6363778710365295 - }, - "confidence": 0.7176759243011475, - "label_id": 1 - }, - "h": 90, - "w": 69, - "x": 279, - "y": 597 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.2642008364200592, - "y_min": 0.4628673195838928, - "x_max": 0.2926807701587677, - "y_max": 0.5258081555366516 - }, - "confidence": 0.5140435099601746, - "label_id": 1 - }, - "h": 68, - "w": 55, - "x": 507, - "y": 500 - } - ], - "tensors": [ - { - "confidence": 0.9997003078460693, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.31984758377075195, - 0.1649603694677353, - 0.07284004986286163, - 0.0017870196606963873, - 0.44056499004364014 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7176759243011475, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.16166952252388, - 0.012377814389765263, - 0.34449416399002075, - 0.00971265695989132, - 0.4717457890510559 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5140435099601746, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.6160811185836792, - 0.17240850627422333, - 0.0953575074672699, - 0.019868938252329826, - 0.09628388285636902 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 20033282048, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.64500492811203, - "y_min": 0.538501501083374, - "x_max": 0.682325541973114, - "y_max": 0.6145443916320801 - }, - "confidence": 0.9996280670166016, - "label_id": 1 - }, - "h": 82, - "w": 72, - "x": 1238, - "y": 582 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14522022008895874, - "y_min": 0.5532565116882324, - "x_max": 0.18101102113723755, - "y_max": 0.6363223791122437 - }, - "confidence": 0.716271698474884, - "label_id": 1 - }, - "h": 89, - "w": 69, - "x": 279, - "y": 598 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.26426300406455994, - "y_min": 0.4635865092277527, - "x_max": 0.29274216294288635, - "y_max": 0.5262482762336731 - }, - "confidence": 0.5457426905632019, - "label_id": 1 - }, - "h": 67, - "w": 55, - "x": 507, - "y": 501 - } - ], - "tensors": [ - { - "confidence": 0.9996280670166016, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.24720364809036255, - 0.1474837064743042, - 0.061810459941625595, - 0.002060550032183528, - 0.5414416790008545 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.716271698474884, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.153062105178833, - 0.01079101487994194, - 0.32349124550819397, - 0.008784820325672626, - 0.5038707852363586 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5457426905632019, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.6483736038208008, - 0.07171256095170975, - 0.08094684779644012, - 0.04579196125268936, - 0.15317495167255402 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 20066615296, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6437816023826599, - "y_min": 0.5402815341949463, - "x_max": 0.681839644908905, - "y_max": 0.6175490617752075 - }, - "confidence": 0.998382568359375, - "label_id": 1 - }, - "h": 83, - "w": 73, - "x": 1236, - "y": 584 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14513391256332397, - "y_min": 0.5534989237785339, - "x_max": 0.18087226152420044, - "y_max": 0.6363399624824524 - }, - "confidence": 0.7244486808776855, - "label_id": 1 - }, - "h": 89, - "w": 68, - "x": 279, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.998382568359375, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.29245907068252563, - 0.22009417414665222, - 0.09484530985355377, - 0.0017992609646171331, - 0.3908020853996277 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7244486808776855, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.15173041820526123, - 0.010644368827342987, - 0.28650879859924316, - 0.007345215883105993, - 0.5437711477279663 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 20099948544, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6436183452606201, - "y_min": 0.5403833389282227, - "x_max": 0.6818705797195435, - "y_max": 0.6185330152511597 - }, - "confidence": 0.9965344667434692, - "label_id": 1 - }, - "h": 84, - "w": 73, - "x": 1236, - "y": 584 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14517301321029663, - "y_min": 0.5535982251167297, - "x_max": 0.1810426115989685, - "y_max": 0.6364960074424744 - }, - "confidence": 0.7276309728622437, - "label_id": 1 - }, - "h": 89, - "w": 69, - "x": 279, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9965344667434692, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2822953462600708, - 0.2008039504289627, - 0.060181234031915665, - 0.003103802213445306, - 0.4536157548427582 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7276309728622437, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1784546971321106, - 0.016308240592479706, - 0.28070664405822754, - 0.008469132706522942, - 0.5160613059997559 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 20133281792, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.643557071685791, - "y_min": 0.5403196811676025, - "x_max": 0.6824849843978882, - "y_max": 0.6225552558898926 - }, - "confidence": 0.9804965853691101, - "label_id": 1 - }, - "h": 88, - "w": 74, - "x": 1236, - "y": 584 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14512421190738678, - "y_min": 0.5538237690925598, - "x_max": 0.18078161776065826, - "y_max": 0.6362590193748474 - }, - "confidence": 0.7127099633216858, - "label_id": 1 - }, - "h": 89, - "w": 68, - "x": 279, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9804965853691101, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.37357085943222046, - 0.26502665877342224, - 0.05869060754776001, - 0.005775041412562132, - 0.2969367802143097 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7127099633216858, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1653515100479126, - 0.012179435230791569, - 0.240337073802948, - 0.006227086763828993, - 0.5759048461914062 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 20166615040, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6443257331848145, - "y_min": 0.547209620475769, - "x_max": 0.6835314035415649, - "y_max": 0.6338791847229004 - }, - "confidence": 0.8616979718208313, - "label_id": 1 - }, - "h": 94, - "w": 75, - "x": 1237, - "y": 591 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14509665966033936, - "y_min": 0.5537441372871399, - "x_max": 0.18095842003822327, - "y_max": 0.6369547247886658 - }, - "confidence": 0.7302089929580688, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 279, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.8616979718208313, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2612103521823883, - 0.324163556098938, - 0.0592227503657341, - 0.001867822022177279, - 0.3535354733467102 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7302089929580688, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.15539246797561646, - 0.010642476379871368, - 0.2553147077560425, - 0.007436802145093679, - 0.5712134838104248 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 20199948288, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6441503167152405, - "y_min": 0.5508488416671753, - "x_max": 0.6823557019233704, - "y_max": 0.6359008550643921 - }, - "confidence": 0.983309805393219, - "label_id": 1 - }, - "h": 92, - "w": 73, - "x": 1237, - "y": 595 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.145060732960701, - "y_min": 0.553797721862793, - "x_max": 0.18092291057109833, - "y_max": 0.6371092796325684 - }, - "confidence": 0.735870897769928, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 279, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.983309805393219, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.17036959528923035, - 0.36547163128852844, - 0.08309350162744522, - 0.0017713179113343358, - 0.3792940378189087 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.735870897769928, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1605345755815506, - 0.010121723636984825, - 0.24951060116291046, - 0.007175792008638382, - 0.5726573467254639 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 20233281536, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6442924737930298, - "y_min": 0.5533952116966248, - "x_max": 0.6823775768280029, - "y_max": 0.6384690403938293 - }, - "confidence": 0.9972973465919495, - "label_id": 1 - }, - "h": 92, - "w": 73, - "x": 1237, - "y": 598 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14504128694534302, - "y_min": 0.5539097189903259, - "x_max": 0.18077659606933594, - "y_max": 0.637137234210968 - }, - "confidence": 0.7350582480430603, - "label_id": 1 - }, - "h": 90, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9972973465919495, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.24015535414218903, - 0.36517074704170227, - 0.0746198445558548, - 0.001461939187720418, - 0.3185921311378479 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7350582480430603, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.18592797219753265, - 0.01305431593209505, - 0.24238193035125732, - 0.00786710437387228, - 0.5507686734199524 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 20266614784, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6456167697906494, - "y_min": 0.5562250018119812, - "x_max": 0.6836823225021362, - "y_max": 0.6388182044029236 - }, - "confidence": 0.9997513890266418, - "label_id": 1 - }, - "h": 89, - "w": 73, - "x": 1240, - "y": 601 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14497575163841248, - "y_min": 0.5537613034248352, - "x_max": 0.18076583743095398, - "y_max": 0.6374645829200745 - }, - "confidence": 0.7363108992576599, - "label_id": 1 - }, - "h": 90, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9997513890266418, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2230730503797531, - 0.4849129021167755, - 0.06115227937698364, - 0.0013582283863797784, - 0.2295035719871521 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7363108992576599, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.18794947862625122, - 0.01361851952970028, - 0.25253406167030334, - 0.008128237910568714, - 0.5377696752548218 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 20299948032, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6452780365943909, - "y_min": 0.5592911839485168, - "x_max": 0.6847601532936096, - "y_max": 0.641223132610321 - }, - "confidence": 0.9999727010726929, - "label_id": 1 - }, - "h": 89, - "w": 76, - "x": 1239, - "y": 604 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14495685696601868, - "y_min": 0.5538362264633179, - "x_max": 0.18081480264663696, - "y_max": 0.6373041868209839 - }, - "confidence": 0.7425567507743835, - "label_id": 1 - }, - "h": 90, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999727010726929, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.21672628819942474, - 0.4631277620792389, - 0.06117939203977585, - 0.0011400292860344052, - 0.2578265964984894 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7425567507743835, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2024049609899521, - 0.014123549684882164, - 0.23808108270168304, - 0.00797392800450325, - 0.5374164581298828 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 20333281280, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6450856328010559, - "y_min": 0.5587126612663269, - "x_max": 0.684771716594696, - "y_max": 0.6478508114814758 - }, - "confidence": 0.999992847442627, - "label_id": 1 - }, - "h": 97, - "w": 76, - "x": 1239, - "y": 603 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14494557678699493, - "y_min": 0.5538680553436279, - "x_max": 0.18070222437381744, - "y_max": 0.6375062465667725 - }, - "confidence": 0.7433391213417053, - "label_id": 1 - }, - "h": 91, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.999992847442627, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2721773386001587, - 0.4609835147857666, - 0.05227475240826607, - 0.0020113999489694834, - 0.21255293488502502 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7433391213417053, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2161824107170105, - 0.012517042458057404, - 0.21472281217575073, - 0.0067355576902627945, - 0.5498422384262085 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 20366614528, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6471954584121704, - "y_min": 0.5601449012756348, - "x_max": 0.6857528686523438, - "y_max": 0.6482164859771729 - }, - "confidence": 0.9999862909317017, - "label_id": 1 - }, - "h": 95, - "w": 74, - "x": 1243, - "y": 605 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.144887775182724, - "y_min": 0.5539600253105164, - "x_max": 0.1807040274143219, - "y_max": 0.6375654339790344 - }, - "confidence": 0.7425716519355774, - "label_id": 1 - }, - "h": 91, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999862909317017, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.17950871586799622, - 0.5162399411201477, - 0.07667433470487595, - 0.002374255796894431, - 0.22520282864570618 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7425716519355774, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2128879725933075, - 0.01420699805021286, - 0.2285119891166687, - 0.005426607560366392, - 0.5389664769172668 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 20399947776, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6463264226913452, - "y_min": 0.5617053508758545, - "x_max": 0.6862510442733765, - "y_max": 0.6494686603546143 - }, - "confidence": 0.9999980926513672, - "label_id": 1 - }, - "h": 94, - "w": 77, - "x": 1241, - "y": 607 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14495576918125153, - "y_min": 0.5540944337844849, - "x_max": 0.18072478473186493, - "y_max": 0.6376539468765259 - }, - "confidence": 0.731555700302124, - "label_id": 1 - }, - "h": 91, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999980926513672, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.19152586162090302, - 0.6534672379493713, - 0.028099406510591507, - 0.0030222772620618343, - 0.12388520687818527 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.731555700302124, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2418070137500763, - 0.0229613296687603, - 0.23592609167099, - 0.004871861077845097, - 0.4944336712360382 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 20433281024, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6461504101753235, - "y_min": 0.563498318195343, - "x_max": 0.6890872120857239, - "y_max": 0.6510767340660095 - }, - "confidence": 0.9999990463256836, - "label_id": 1 - }, - "h": 94, - "w": 82, - "x": 1241, - "y": 609 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1447334736585617, - "y_min": 0.5541828870773315, - "x_max": 0.18064327538013458, - "y_max": 0.6382838487625122 - }, - "confidence": 0.7376232743263245, - "label_id": 1 - }, - "h": 90, - "w": 69, - "x": 278, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9999990463256836, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.10473167896270752, - 0.8425071239471436, - 0.009505021385848522, - 0.0023803652729839087, - 0.040875840932130814 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7376232743263245, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.27486592531204224, - 0.05630085617303848, - 0.23294542729854584, - 0.006268758792430162, - 0.4296189546585083 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 20466614272, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6460758447647095, - "y_min": 0.5645560026168823, - "x_max": 0.6896482706069946, - "y_max": 0.6513015031814575 - }, - "confidence": 0.9999997615814209, - "label_id": 1 - }, - "h": 93, - "w": 84, - "x": 1240, - "y": 610 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14484304189682007, - "y_min": 0.5540220141410828, - "x_max": 0.180815190076828, - "y_max": 0.6388871073722839 - }, - "confidence": 0.7436793446540833, - "label_id": 1 - }, - "h": 92, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999997615814209, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09685951471328735, - 0.840116024017334, - 0.013536709360778332, - 0.0024836361408233643, - 0.047004152089357376 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7436793446540833, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2576366662979126, - 0.029568685218691826, - 0.22685249149799347, - 0.00569178769364953, - 0.48025035858154297 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 20499947520, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6461277604103088, - "y_min": 0.5637757778167725, - "x_max": 0.69000643491745, - "y_max": 0.6515682935714722 - }, - "confidence": 0.9999998807907104, - "label_id": 1 - }, - "h": 95, - "w": 84, - "x": 1241, - "y": 609 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14477764070034027, - "y_min": 0.5538085103034973, - "x_max": 0.18083082139492035, - "y_max": 0.6393123269081116 - }, - "confidence": 0.7423800230026245, - "label_id": 1 - }, - "h": 92, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999998807907104, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.10468444228172302, - 0.7890216112136841, - 0.023339418694376945, - 0.0034214940387755632, - 0.07953306287527084 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7423800230026245, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23297929763793945, - 0.022851746529340744, - 0.2166115790605545, - 0.006199327297508717, - 0.521358072757721 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 20533280768, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6463552713394165, - "y_min": 0.5642434358596802, - "x_max": 0.6896480321884155, - "y_max": 0.6522195339202881 - }, - "confidence": 0.9999997615814209, - "label_id": 1 - }, - "h": 95, - "w": 83, - "x": 1241, - "y": 609 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14467313885688782, - "y_min": 0.5537323355674744, - "x_max": 0.18068063259124756, - "y_max": 0.6391580700874329 - }, - "confidence": 0.7405357956886292, - "label_id": 1 - }, - "h": 92, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999997615814209, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1302538365125656, - 0.719797670841217, - 0.03141745179891586, - 0.0030009376350790262, - 0.11553002893924713 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7405357956886292, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23206786811351776, - 0.025680555030703545, - 0.23650723695755005, - 0.006279489956796169, - 0.49946483969688416 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 20566614016, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6465376615524292, - "y_min": 0.5648381114006042, - "x_max": 0.6895089149475098, - "y_max": 0.6533504128456116 - }, - "confidence": 0.9999997615814209, - "label_id": 1 - }, - "h": 96, - "w": 83, - "x": 1241, - "y": 610 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14469285309314728, - "y_min": 0.5536651015281677, - "x_max": 0.18053247034549713, - "y_max": 0.6388155817985535 - }, - "confidence": 0.7267334461212158, - "label_id": 1 - }, - "h": 92, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999997615814209, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.11696590483188629, - 0.7240641117095947, - 0.04310733452439308, - 0.0036459339316934347, - 0.11221671104431152 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7267334461212158, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2778250575065613, - 0.02801312878727913, - 0.21729165315628052, - 0.005134236067533493, - 0.47173598408699036 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 20599947264, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6467570662498474, - "y_min": 0.5652369856834412, - "x_max": 0.6894187331199646, - "y_max": 0.6542914509773254 - }, - "confidence": 0.9999997615814209, - "label_id": 1 - }, - "h": 97, - "w": 82, - "x": 1242, - "y": 610 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1445057988166809, - "y_min": 0.5536585450172424, - "x_max": 0.1801755130290985, - "y_max": 0.6385782361030579 - }, - "confidence": 0.7100991606712341, - "label_id": 1 - }, - "h": 92, - "w": 69, - "x": 277, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999997615814209, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1313561052083969, - 0.6834888458251953, - 0.048541754484176636, - 0.0025724400766193867, - 0.13404090702533722 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7100991606712341, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.22461432218551636, - 0.017550086602568626, - 0.2635152041912079, - 0.0047868588007986546, - 0.4895334541797638 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 20633280512, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6470212340354919, - "y_min": 0.5652809739112854, - "x_max": 0.6891136765480042, - "y_max": 0.6542477011680603 - }, - "confidence": 0.9999998807907104, - "label_id": 1 - }, - "h": 96, - "w": 81, - "x": 1242, - "y": 611 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14444270730018616, - "y_min": 0.5533601641654968, - "x_max": 0.18000590801239014, - "y_max": 0.6385834813117981 - }, - "confidence": 0.7132362723350525, - "label_id": 1 - }, - "h": 92, - "w": 69, - "x": 277, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999998807907104, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.11591397970914841, - 0.5299051403999329, - 0.07509514689445496, - 0.004269752185791731, - 0.27481597661972046 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7132362723350525, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23445184528827667, - 0.02020045928657055, - 0.30404239892959595, - 0.003771881340071559, - 0.437533438205719 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 20666613760, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6473247408866882, - "y_min": 0.566908597946167, - "x_max": 0.6893739104270935, - "y_max": 0.6531592607498169 - }, - "confidence": 1.0, - "label_id": 1 - }, - "h": 93, - "w": 81, - "x": 1243, - "y": 612 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14450277388095856, - "y_min": 0.5531323552131653, - "x_max": 0.18004776537418365, - "y_max": 0.6387340426445007 - }, - "confidence": 0.7173320651054382, - "label_id": 1 - }, - "h": 93, - "w": 69, - "x": 277, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 1.0, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1343226134777069, - 0.6251804828643799, - 0.05647663399577141, - 0.003592822467908263, - 0.18042738735675812 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7173320651054382, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2064189612865448, - 0.019989484921097755, - 0.39268916845321655, - 0.004507672507315874, - 0.37639471888542175 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 20699947008, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6474438309669495, - "y_min": 0.5670521855354309, - "x_max": 0.6894164681434631, - "y_max": 0.6530863642692566 - }, - "confidence": 1.0, - "label_id": 1 - }, - "h": 93, - "w": 81, - "x": 1243, - "y": 612 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14473119378089905, - "y_min": 0.5534736514091492, - "x_max": 0.18032392859458923, - "y_max": 0.6387919783592224 - }, - "confidence": 0.7203785181045532, - "label_id": 1 - }, - "h": 92, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 1.0, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.16392934322357178, - 0.5858757495880127, - 0.06372463703155518, - 0.003234184579923749, - 0.18323615193367004 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7203785181045532, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.26674163341522217, - 0.023265382274985313, - 0.2580706775188446, - 0.0036182100884616375, - 0.44830411672592163 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 20733280256, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6474580764770508, - "y_min": 0.5675819516181946, - "x_max": 0.6897560358047485, - "y_max": 0.65285724401474 - }, - "confidence": 1.0, - "label_id": 1 - }, - "h": 92, - "w": 81, - "x": 1243, - "y": 613 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.144783154129982, - "y_min": 0.5535231232643127, - "x_max": 0.18041203916072845, - "y_max": 0.6386519074440002 - }, - "confidence": 0.7203723192214966, - "label_id": 1 - }, - "h": 92, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 1.0, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2089976966381073, - 0.45840540528297424, - 0.07890278100967407, - 0.004834262654185295, - 0.24885980784893036 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7203723192214966, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23269055783748627, - 0.018559232354164124, - 0.2761959731578827, - 0.003778151236474514, - 0.46877607703208923 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 20766613504, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.647384762763977, - "y_min": 0.5673936009407043, - "x_max": 0.6897405385971069, - "y_max": 0.6531588435173035 - }, - "confidence": 1.0, - "label_id": 1 - }, - "h": 92, - "w": 81, - "x": 1243, - "y": 613 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1448681503534317, - "y_min": 0.553794264793396, - "x_max": 0.18040017783641815, - "y_max": 0.6384415626525879 - }, - "confidence": 0.7188863754272461, - "label_id": 1 - }, - "h": 92, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 1.0, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2969253361225128, - 0.3339539170265198, - 0.07381290942430496, - 0.0058791497722268105, - 0.2894286811351776 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7188863754272461, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23084937036037445, - 0.01742885820567608, - 0.2865743935108185, - 0.003987640608102083, - 0.46115967631340027 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 20799946752, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6473431587219238, - "y_min": 0.5668845176696777, - "x_max": 0.6898196935653687, - "y_max": 0.6534441709518433 - }, - "confidence": 1.0, - "label_id": 1 - }, - "h": 94, - "w": 81, - "x": 1243, - "y": 612 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14500340819358826, - "y_min": 0.5540083050727844, - "x_max": 0.1806844174861908, - "y_max": 0.6379250884056091 - }, - "confidence": 0.7248631119728088, - "label_id": 1 - }, - "h": 91, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 1.0, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4548225700855255, - 0.2502538561820984, - 0.058958280831575394, - 0.004531080834567547, - 0.23143412172794342 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7248631119728088, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.244668111205101, - 0.019242923706769943, - 0.32539811730384827, - 0.002411905210465193, - 0.4082789421081543 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 20833280000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6468727588653564, - "y_min": 0.5659894347190857, - "x_max": 0.6897151470184326, - "y_max": 0.6545886397361755 - }, - "confidence": 0.9999998807907104, - "label_id": 1 - }, - "h": 96, - "w": 82, - "x": 1242, - "y": 611 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14498107135295868, - "y_min": 0.5537735819816589, - "x_max": 0.18066637217998505, - "y_max": 0.6380673050880432 - }, - "confidence": 0.7354310154914856, - "label_id": 1 - }, - "h": 91, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999998807907104, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.46656420826911926, - 0.28677600622177124, - 0.03647933527827263, - 0.0036385469138622284, - 0.20654189586639404 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7354310154914856, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.26173242926597595, - 0.01487990003079176, - 0.2782757580280304, - 0.0031516491435468197, - 0.44196027517318726 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 20866613248, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6466018557548523, - "y_min": 0.5663126707077026, - "x_max": 0.689424455165863, - "y_max": 0.6548608541488647 - }, - "confidence": 0.9999997615814209, - "label_id": 1 - }, - "h": 95, - "w": 83, - "x": 1241, - "y": 612 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14514382183551788, - "y_min": 0.5538260340690613, - "x_max": 0.18071185052394867, - "y_max": 0.637694776058197 - }, - "confidence": 0.7266356348991394, - "label_id": 1 - }, - "h": 91, - "w": 68, - "x": 279, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999997615814209, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.5015953779220581, - 0.1800599843263626, - 0.052250295877456665, - 0.00517650693655014, - 0.26091790199279785 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7266356348991394, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.32464978098869324, - 0.023048685863614082, - 0.23668935894966125, - 0.0031732821371406317, - 0.41243883967399597 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 20899946496, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6465027332305908, - "y_min": 0.5654113292694092, - "x_max": 0.689560055732727, - "y_max": 0.654377818107605 - }, - "confidence": 0.9999998807907104, - "label_id": 1 - }, - "h": 96, - "w": 83, - "x": 1241, - "y": 611 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14513292908668518, - "y_min": 0.5535053610801697, - "x_max": 0.18069928884506226, - "y_max": 0.6375584006309509 - }, - "confidence": 0.7318522334098816, - "label_id": 1 - }, - "h": 91, - "w": 68, - "x": 279, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999998807907104, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4932221472263336, - 0.10122106969356537, - 0.06516111642122269, - 0.00545021565631032, - 0.3349454402923584 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7318522334098816, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3246445655822754, - 0.022677915170788765, - 0.21589231491088867, - 0.0038338995072990656, - 0.43295130133628845 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 20933279744, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6466683149337769, - "y_min": 0.5659143328666687, - "x_max": 0.6893783807754517, - "y_max": 0.6542871594429016 - }, - "confidence": 0.9999998807907104, - "label_id": 1 - }, - "h": 96, - "w": 82, - "x": 1242, - "y": 611 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14514337480068207, - "y_min": 0.5535973906517029, - "x_max": 0.18064768612384796, - "y_max": 0.6371446251869202 - }, - "confidence": 0.7360645532608032, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 279, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999998807907104, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.419236958026886, - 0.03157596290111542, - 0.08662962168455124, - 0.0031739489641040564, - 0.4593835473060608 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7360645532608032, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.36746519804000854, - 0.03525819629430771, - 0.20601025223731995, - 0.0066682700999081135, - 0.3845980763435364 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 20966612992, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6469659805297852, - "y_min": 0.5672544240951538, - "x_max": 0.688894510269165, - "y_max": 0.6541190147399902 - }, - "confidence": 0.9999995231628418, - "label_id": 1 - }, - "h": 93, - "w": 81, - "x": 1242, - "y": 613 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14506745338439941, - "y_min": 0.5535731911659241, - "x_max": 0.18071317672729492, - "y_max": 0.6376798748970032 - }, - "confidence": 0.747628390789032, - "label_id": 1 - }, - "h": 91, - "w": 68, - "x": 279, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999995231628418, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4156510829925537, - 0.047998324036598206, - 0.10921327769756317, - 0.0043432340025901794, - 0.4227941632270813 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.747628390789032, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3589757978916168, - 0.030528422445058823, - 0.19286081194877625, - 0.004144701175391674, - 0.41349026560783386 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 20999946240, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6470388174057007, - "y_min": 0.567287266254425, - "x_max": 0.6887534856796265, - "y_max": 0.6541945338249207 - }, - "confidence": 0.9999996423721313, - "label_id": 1 - }, - "h": 94, - "w": 80, - "x": 1242, - "y": 613 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14515049755573273, - "y_min": 0.5536037683486938, - "x_max": 0.18060646951198578, - "y_max": 0.6375871896743774 - }, - "confidence": 0.7339577674865723, - "label_id": 1 - }, - "h": 91, - "w": 68, - "x": 279, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999996423721313, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4376082718372345, - 0.07326118648052216, - 0.12606364488601685, - 0.004839912056922913, - 0.3582269549369812 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7339577674865723, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.34727194905281067, - 0.030110614374279976, - 0.2087709903717041, - 0.0036939489655196667, - 0.4101524353027344 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 21033279488, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6472752690315247, - "y_min": 0.5670716166496277, - "x_max": 0.6884936690330505, - "y_max": 0.653887927532196 - }, - "confidence": 0.9999995231628418, - "label_id": 1 - }, - "h": 94, - "w": 79, - "x": 1243, - "y": 612 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14499466121196747, - "y_min": 0.5535481572151184, - "x_max": 0.18026979267597198, - "y_max": 0.6375880837440491 - }, - "confidence": 0.7214542031288147, - "label_id": 1 - }, - "h": 91, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999995231628418, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4238450527191162, - 0.06764621287584305, - 0.08771874755620956, - 0.003941498231142759, - 0.41684848070144653 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7214542031288147, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.27879053354263306, - 0.016692236065864563, - 0.25458142161369324, - 0.003072811057791114, - 0.44686296582221985 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 21066612736, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6476747989654541, - "y_min": 0.567062497138977, - "x_max": 0.6884335279464722, - "y_max": 0.654388427734375 - }, - "confidence": 0.9999992847442627, - "label_id": 1 - }, - "h": 95, - "w": 78, - "x": 1244, - "y": 612 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14496494829654694, - "y_min": 0.5535269379615784, - "x_max": 0.18013714253902435, - "y_max": 0.6370740532875061 - }, - "confidence": 0.7107094526290894, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999992847442627, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.40649643540382385, - 0.0862032100558281, - 0.10317591577768326, - 0.005354306660592556, - 0.39877012372016907 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7107094526290894, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2142978012561798, - 0.014642716385424137, - 0.35157084465026855, - 0.003629110986366868, - 0.41585952043533325 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 21099945984, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6479769349098206, - "y_min": 0.5675682425498962, - "x_max": 0.6882718205451965, - "y_max": 0.6547902226448059 - }, - "confidence": 0.9999988079071045, - "label_id": 1 - }, - "h": 94, - "w": 77, - "x": 1244, - "y": 613 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14500083029270172, - "y_min": 0.5535736680030823, - "x_max": 0.1803000420331955, - "y_max": 0.6373428702354431 - }, - "confidence": 0.7218465805053711, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999988079071045, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3782760500907898, - 0.10105188190937042, - 0.10341531038284302, - 0.00492661539465189, - 0.41233018040657043 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7218465805053711, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2298276275396347, - 0.015548200346529484, - 0.33039847016334534, - 0.00412977347150445, - 0.4200959801673889 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 21133279232, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6477488279342651, - "y_min": 0.5675193071365356, - "x_max": 0.6882286071777344, - "y_max": 0.6552754640579224 - }, - "confidence": 0.9999995231628418, - "label_id": 1 - }, - "h": 95, - "w": 77, - "x": 1244, - "y": 613 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14491623640060425, - "y_min": 0.553440272808075, - "x_max": 0.1802375316619873, - "y_max": 0.6374523043632507 - }, - "confidence": 0.7193244695663452, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999995231628418, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.244212344288826, - 0.04495130106806755, - 0.09938125312328339, - 0.0036983720492571592, - 0.6077567338943481 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7193244695663452, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23262549936771393, - 0.014302763156592846, - 0.3116949200630188, - 0.004352276679128408, - 0.4370245337486267 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 21166612480, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6476301550865173, - "y_min": 0.5673944354057312, - "x_max": 0.6881100535392761, - "y_max": 0.6556950211524963 - }, - "confidence": 0.9999996423721313, - "label_id": 1 - }, - "h": 95, - "w": 78, - "x": 1243, - "y": 613 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14487004280090332, - "y_min": 0.5533596277236938, - "x_max": 0.18018090724945068, - "y_max": 0.6373211145401001 - }, - "confidence": 0.7217351794242859, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999996423721313, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.27037498354911804, - 0.10645021498203278, - 0.08259488642215729, - 0.003376985900104046, - 0.5372028946876526 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7217351794242859, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2995767891407013, - 0.017804468050599098, - 0.22862231731414795, - 0.004171624779701233, - 0.44982483983039856 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 21199945728, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6472894549369812, - "y_min": 0.5671952962875366, - "x_max": 0.6879855990409851, - "y_max": 0.6570254564285278 - }, - "confidence": 0.9999997615814209, - "label_id": 1 - }, - "h": 97, - "w": 78, - "x": 1243, - "y": 613 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14476896822452545, - "y_min": 0.5533496737480164, - "x_max": 0.1800328642129898, - "y_max": 0.6368147730827332 - }, - "confidence": 0.7121546268463135, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999997615814209, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.33717289566993713, - 0.27815401554107666, - 0.09096983820199966, - 0.004489701706916094, - 0.28921350836753845 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7121546268463135, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2473125159740448, - 0.011958942748606205, - 0.2037058025598526, - 0.004148662555962801, - 0.5328741073608398 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 21233278976, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6474167108535767, - "y_min": 0.5683926343917847, - "x_max": 0.687867283821106, - "y_max": 0.6566156148910522 - }, - "confidence": 0.9999996423721313, - "label_id": 1 - }, - "h": 95, - "w": 78, - "x": 1243, - "y": 614 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1447516679763794, - "y_min": 0.5534447431564331, - "x_max": 0.18000531196594238, - "y_max": 0.6370953321456909 - }, - "confidence": 0.7104129791259766, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999996423721313, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.37918800115585327, - 0.21038810908794403, - 0.09544867277145386, - 0.00276891584508121, - 0.3122062385082245 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7104129791259766, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2786535918712616, - 0.014616183936595917, - 0.17019057273864746, - 0.005871961824595928, - 0.530667781829834 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 21266612224, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6474953889846802, - "y_min": 0.5698989033699036, - "x_max": 0.687659740447998, - "y_max": 0.6560842394828796 - }, - "confidence": 0.9999991655349731, - "label_id": 1 - }, - "h": 94, - "w": 77, - "x": 1243, - "y": 615 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14485839009284973, - "y_min": 0.553490161895752, - "x_max": 0.18005985021591187, - "y_max": 0.6364500522613525 - }, - "confidence": 0.7034226059913635, - "label_id": 1 - }, - "h": 89, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999991655349731, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.37247711420059204, - 0.14193303883075714, - 0.08914211392402649, - 0.0020950762555003166, - 0.39435267448425293 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7034226059913635, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2992682158946991, - 0.020115982741117477, - 0.18953575193881989, - 0.005671149585396051, - 0.48540887236595154 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 21299945472, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6473328471183777, - "y_min": 0.5704666376113892, - "x_max": 0.6873078942298889, - "y_max": 0.65601646900177 - }, - "confidence": 0.999998927116394, - "label_id": 1 - }, - "h": 92, - "w": 77, - "x": 1243, - "y": 616 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1448127031326294, - "y_min": 0.5534381866455078, - "x_max": 0.1800965964794159, - "y_max": 0.6368228197097778 - }, - "confidence": 0.7128621935844421, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.999998927116394, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3389591872692108, - 0.1775607019662857, - 0.10638231039047241, - 0.0021653263829648495, - 0.3749324083328247 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7128621935844421, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.24869558215141296, - 0.015009057708084583, - 0.1862848848104477, - 0.005374583415687084, - 0.5446358919143677 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 21333278720, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6470949649810791, - "y_min": 0.5708736777305603, - "x_max": 0.6870729923248291, - "y_max": 0.6565980315208435 - }, - "confidence": 0.999998927116394, - "label_id": 1 - }, - "h": 92, - "w": 77, - "x": 1242, - "y": 617 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1448538452386856, - "y_min": 0.5535996556282043, - "x_max": 0.18007002770900726, - "y_max": 0.6362386345863342 - }, - "confidence": 0.6912451386451721, - "label_id": 1 - }, - "h": 89, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.999998927116394, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3728412985801697, - 0.30518338084220886, - 0.08378615975379944, - 0.0027763897087424994, - 0.23541274666786194 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6912451386451721, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2301541268825531, - 0.017461173236370087, - 0.20048482716083527, - 0.005710174795240164, - 0.5461896657943726 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 21366611968, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.646658718585968, - "y_min": 0.5702428817749023, - "x_max": 0.6871091723442078, - "y_max": 0.6567519903182983 - }, - "confidence": 0.9999995231628418, - "label_id": 1 - }, - "h": 93, - "w": 77, - "x": 1242, - "y": 616 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1448008418083191, - "y_min": 0.5536447167396545, - "x_max": 0.18024349212646484, - "y_max": 0.636741578578949 - }, - "confidence": 0.7103456854820251, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999995231628418, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3139616847038269, - 0.36447644233703613, - 0.07415573298931122, - 0.001696298480965197, - 0.24570989608764648 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7103456854820251, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.22046932578086853, - 0.014436346478760242, - 0.1768105924129486, - 0.005838019773364067, - 0.5824457406997681 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 21399945216, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6463465094566345, - "y_min": 0.5701591968536377, - "x_max": 0.6870302557945251, - "y_max": 0.6577072143554688 - }, - "confidence": 0.9999995231628418, - "label_id": 1 - }, - "h": 94, - "w": 78, - "x": 1241, - "y": 616 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14474838972091675, - "y_min": 0.5538226366043091, - "x_max": 0.17995959520339966, - "y_max": 0.6363039016723633 - }, - "confidence": 0.7045932412147522, - "label_id": 1 - }, - "h": 89, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999995231628418, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.32148221135139465, - 0.3491726517677307, - 0.08789940923452377, - 0.0017064076382666826, - 0.23973935842514038 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7045932412147522, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2489340752363205, - 0.01795705407857895, - 0.19385400414466858, - 0.006828229408711195, - 0.5324265956878662 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 21433278464, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6461142301559448, - "y_min": 0.5704540610313416, - "x_max": 0.6870406866073608, - "y_max": 0.6572415232658386 - }, - "confidence": 0.9999994039535522, - "label_id": 1 - }, - "h": 94, - "w": 78, - "x": 1241, - "y": 616 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14482447504997253, - "y_min": 0.5537362694740295, - "x_max": 0.18004590272903442, - "y_max": 0.6366479992866516 - }, - "confidence": 0.7070181369781494, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999994039535522, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2591303884983063, - 0.4454611539840698, - 0.08491475135087967, - 0.001707285875454545, - 0.20878638327121735 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7070181369781494, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.21496430039405823, - 0.01182703860104084, - 0.17990635335445404, - 0.006492777727544308, - 0.586809515953064 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 21466611712, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6461681127548218, - "y_min": 0.5709033608436584, - "x_max": 0.6869033575057983, - "y_max": 0.657410204410553 - }, - "confidence": 0.9999992847442627, - "label_id": 1 - }, - "h": 93, - "w": 78, - "x": 1241, - "y": 617 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1449352353811264, - "y_min": 0.5538176894187927, - "x_max": 0.18000994622707367, - "y_max": 0.6363649964332581 - }, - "confidence": 0.7089596390724182, - "label_id": 1 - }, - "h": 89, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999992847442627, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23407436907291412, - 0.45190468430519104, - 0.08438917249441147, - 0.0015849688788875937, - 0.22804680466651917 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7089596390724182, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2190399020910263, - 0.012714549899101257, - 0.20545680820941925, - 0.008126039057970047, - 0.5546627044677734 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 21499944960, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6463242173194885, - "y_min": 0.5705720782279968, - "x_max": 0.6869155764579773, - "y_max": 0.6575217843055725 - }, - "confidence": 0.9999995231628418, - "label_id": 1 - }, - "h": 94, - "w": 78, - "x": 1241, - "y": 616 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14483599364757538, - "y_min": 0.5539542436599731, - "x_max": 0.18001146614551544, - "y_max": 0.6363484859466553 - }, - "confidence": 0.7002050280570984, - "label_id": 1 - }, - "h": 89, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999995231628418, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2413194626569748, - 0.4131682217121124, - 0.0969882681965828, - 0.0016416305443271995, - 0.246882364153862 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7002050280570984, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23986990749835968, - 0.011831921525299549, - 0.18795360624790192, - 0.00665274728089571, - 0.5536918044090271 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 21533278208, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6468361616134644, - "y_min": 0.5711182355880737, - "x_max": 0.6867945194244385, - "y_max": 0.6571577787399292 - }, - "confidence": 0.9999994039535522, - "label_id": 1 - }, - "h": 93, - "w": 77, - "x": 1242, - "y": 617 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1448238641023636, - "y_min": 0.5538343191146851, - "x_max": 0.1801149994134903, - "y_max": 0.636320948600769 - }, - "confidence": 0.7033652663230896, - "label_id": 1 - }, - "h": 89, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999994039535522, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23586533963680267, - 0.4630976915359497, - 0.0737587958574295, - 0.0017252370016649365, - 0.22555291652679443 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7033652663230896, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.24483101069927216, - 0.013159157708287239, - 0.18865416944026947, - 0.007243893574923277, - 0.5461118221282959 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 21566611456, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6470198631286621, - "y_min": 0.5703417062759399, - "x_max": 0.6868091821670532, - "y_max": 0.6568797826766968 - }, - "confidence": 0.9999996423721313, - "label_id": 1 - }, - "h": 93, - "w": 77, - "x": 1242, - "y": 616 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1447216272354126, - "y_min": 0.5539929866790771, - "x_max": 0.180059552192688, - "y_max": 0.6361324787139893 - }, - "confidence": 0.6968012452125549, - "label_id": 1 - }, - "h": 89, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999996423721313, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3093903362751007, - 0.4160270392894745, - 0.09275583922863007, - 0.001536624738946557, - 0.18029019236564636 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6968012452125549, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.26055052876472473, - 0.013601450249552727, - 0.17890869081020355, - 0.006907320581376553, - 0.5400319695472717 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 21599944704, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6471738815307617, - "y_min": 0.5700544714927673, - "x_max": 0.6870013475418091, - "y_max": 0.6575067639350891 - }, - "confidence": 0.9999996423721313, - "label_id": 1 - }, - "h": 94, - "w": 76, - "x": 1243, - "y": 616 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14481619000434875, - "y_min": 0.5537717938423157, - "x_max": 0.18046173453330994, - "y_max": 0.6366216540336609 - }, - "confidence": 0.7151213884353638, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999996423721313, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2960982024669647, - 0.4711584150791168, - 0.07797343283891678, - 0.001587394974194467, - 0.15318258106708527 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7151213884353638, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.32849594950675964, - 0.029311230406165123, - 0.15577660501003265, - 0.007847057655453682, - 0.4785691499710083 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 21633277952, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6470319032669067, - "y_min": 0.5686450004577637, - "x_max": 0.6870722770690918, - "y_max": 0.6581403017044067 - }, - "confidence": 0.9999996423721313, - "label_id": 1 - }, - "h": 97, - "w": 77, - "x": 1242, - "y": 614 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14488741755485535, - "y_min": 0.5538347363471985, - "x_max": 0.18035104870796204, - "y_max": 0.6368290781974792 - }, - "confidence": 0.7241235971450806, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999996423721313, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.31416094303131104, - 0.5360471606254578, - 0.04974398389458656, - 0.0016503847436979413, - 0.09839753806591034 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7241235971450806, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.27728667855262756, - 0.020471058785915375, - 0.16968855261802673, - 0.007457180414348841, - 0.5250964760780334 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 21666611200, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6475502848625183, - "y_min": 0.5688418745994568, - "x_max": 0.6876243948936462, - "y_max": 0.6580348610877991 - }, - "confidence": 0.9999996423721313, - "label_id": 1 - }, - "h": 97, - "w": 77, - "x": 1243, - "y": 614 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14479511976242065, - "y_min": 0.5543409585952759, - "x_max": 0.18019622564315796, - "y_max": 0.6365424394607544 - }, - "confidence": 0.7183043956756592, - "label_id": 1 - }, - "h": 88, - "w": 68, - "x": 278, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9999996423721313, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.326315701007843, - 0.5124496817588806, - 0.05667221546173096, - 0.0018249140121042728, - 0.10273747891187668 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7183043956756592, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2508558928966522, - 0.02217327617108822, - 0.17525097727775574, - 0.006942532956600189, - 0.5447773933410645 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 21699944448, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6474844813346863, - "y_min": 0.568406343460083, - "x_max": 0.6879813075065613, - "y_max": 0.6579511165618896 - }, - "confidence": 0.9999996423721313, - "label_id": 1 - }, - "h": 97, - "w": 78, - "x": 1243, - "y": 614 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14475588500499725, - "y_min": 0.5542763471603394, - "x_max": 0.1802319437265396, - "y_max": 0.6369009017944336 - }, - "confidence": 0.7230305671691895, - "label_id": 1 - }, - "h": 89, - "w": 68, - "x": 278, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9999996423721313, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2988976240158081, - 0.5374778509140015, - 0.056902237236499786, - 0.0019006627844646573, - 0.10482162237167358 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7230305671691895, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2600093185901642, - 0.01905760169029236, - 0.17643603682518005, - 0.007898785173892975, - 0.5365982055664062 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 21733277696, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6472171545028687, - "y_min": 0.5683437585830688, - "x_max": 0.6888002157211304, - "y_max": 0.6582586765289307 - }, - "confidence": 0.9999997615814209, - "label_id": 1 - }, - "h": 97, - "w": 79, - "x": 1243, - "y": 614 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1448107808828354, - "y_min": 0.5540493130683899, - "x_max": 0.18014957010746002, - "y_max": 0.636226236820221 - }, - "confidence": 0.7173448204994202, - "label_id": 1 - }, - "h": 89, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999997615814209, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.32241615653038025, - 0.5381680727005005, - 0.0508163645863533, - 0.001447573071345687, - 0.08715174347162247 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7173448204994202, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.21835942566394806, - 0.015742288902401924, - 0.19349659979343414, - 0.005822162143886089, - 0.5665795207023621 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 21766610944, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6471883058547974, - "y_min": 0.5691397786140442, - "x_max": 0.6891427040100098, - "y_max": 0.6590041518211365 - }, - "confidence": 0.9999996423721313, - "label_id": 1 - }, - "h": 97, - "w": 80, - "x": 1243, - "y": 615 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14483533799648285, - "y_min": 0.553863525390625, - "x_max": 0.18020431697368622, - "y_max": 0.6360576152801514 - }, - "confidence": 0.7189759612083435, - "label_id": 1 - }, - "h": 89, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999996423721313, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.28896403312683105, - 0.44287362694740295, - 0.08999427407979965, - 0.001458320883102715, - 0.17670969665050507 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7189759612083435, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2102096527814865, - 0.015231028199195862, - 0.20102913677692413, - 0.005530702881515026, - 0.5679994225502014 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 21799944192, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6473150253295898, - "y_min": 0.5704792141914368, - "x_max": 0.6896185874938965, - "y_max": 0.6593623757362366 - }, - "confidence": 0.9999995231628418, - "label_id": 1 - }, - "h": 96, - "w": 81, - "x": 1243, - "y": 616 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14473971724510193, - "y_min": 0.5536024570465088, - "x_max": 0.18033024668693542, - "y_max": 0.6359994411468506 - }, - "confidence": 0.7186950445175171, - "label_id": 1 - }, - "h": 89, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999995231628418, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23165613412857056, - 0.3956100642681122, - 0.136569544672966, - 0.0014938070671632886, - 0.2346705198287964 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7186950445175171, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.21886008977890015, - 0.01612054370343685, - 0.20377101004123688, - 0.004870201461017132, - 0.5563781261444092 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 21833277440, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6471354961395264, - "y_min": 0.5706698298454285, - "x_max": 0.6896768808364868, - "y_max": 0.6599377989768982 - }, - "confidence": 0.9999995231628418, - "label_id": 1 - }, - "h": 97, - "w": 81, - "x": 1243, - "y": 616 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14474135637283325, - "y_min": 0.553750216960907, - "x_max": 0.1802668571472168, - "y_max": 0.6356844305992126 - }, - "confidence": 0.7159834504127502, - "label_id": 1 - }, - "h": 89, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999995231628418, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2181960642337799, - 0.42481809854507446, - 0.1482299268245697, - 0.0014311167178675532, - 0.2073247879743576 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7159834504127502, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2087448239326477, - 0.01929321140050888, - 0.20532003045082092, - 0.0053285760805010796, - 0.5613133311271667 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 21866610688, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6471396684646606, - "y_min": 0.5711851119995117, - "x_max": 0.6896392107009888, - "y_max": 0.6598290205001831 - }, - "confidence": 0.9999995231628418, - "label_id": 1 - }, - "h": 96, - "w": 81, - "x": 1243, - "y": 617 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14473740756511688, - "y_min": 0.5533376932144165, - "x_max": 0.18037419021129608, - "y_max": 0.6361033916473389 - }, - "confidence": 0.726469874382019, - "label_id": 1 - }, - "h": 89, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999995231628418, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.20281678438186646, - 0.5886037349700928, - 0.07484090328216553, - 0.0015513661783188581, - 0.1321870982646942 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.726469874382019, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2125977724790573, - 0.019547056406736374, - 0.21609686315059662, - 0.004843912087380886, - 0.5469144582748413 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 21899943936, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6471962928771973, - "y_min": 0.5711350440979004, - "x_max": 0.6897170543670654, - "y_max": 0.6596982479095459 - }, - "confidence": 0.9999995231628418, - "label_id": 1 - }, - "h": 95, - "w": 81, - "x": 1243, - "y": 617 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14472924172878265, - "y_min": 0.5531005263328552, - "x_max": 0.18021126091480255, - "y_max": 0.6361103653907776 - }, - "confidence": 0.7233611941337585, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999995231628418, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.21649768948554993, - 0.46943557262420654, - 0.10770299285650253, - 0.001711769844405353, - 0.20465190708637238 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7233611941337585, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.25736477971076965, - 0.026817739009857178, - 0.2253604382276535, - 0.008168082684278488, - 0.4822888970375061 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 21933277184, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6472055912017822, - "y_min": 0.5715635418891907, - "x_max": 0.6895835399627686, - "y_max": 0.6594223380088806 - }, - "confidence": 0.9999994039535522, - "label_id": 1 - }, - "h": 95, - "w": 81, - "x": 1243, - "y": 617 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14473053812980652, - "y_min": 0.5532384514808655, - "x_max": 0.18013519048690796, - "y_max": 0.6362543702125549 - }, - "confidence": 0.7229518294334412, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999994039535522, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23363830149173737, - 0.44663193821907043, - 0.09665274620056152, - 0.0017583041917532682, - 0.22131872177124023 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7229518294334412, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23837655782699585, - 0.02407093159854412, - 0.2422345131635666, - 0.008740498684346676, - 0.48657745122909546 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 21966610432, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6472921967506409, - "y_min": 0.57181316614151, - "x_max": 0.6894057393074036, - "y_max": 0.6590794920921326 - }, - "confidence": 0.9999994039535522, - "label_id": 1 - }, - "h": 94, - "w": 81, - "x": 1243, - "y": 618 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14481252431869507, - "y_min": 0.5533332824707031, - "x_max": 0.1801249086856842, - "y_max": 0.6358737945556641 - }, - "confidence": 0.7134487628936768, - "label_id": 1 - }, - "h": 89, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999994039535522, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2493930608034134, - 0.4024067521095276, - 0.09007382392883301, - 0.001468326081521809, - 0.25665801763534546 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7134487628936768, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.20731037855148315, - 0.016980770975351334, - 0.22214221954345703, - 0.005460383370518684, - 0.54810631275177 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 21999943680, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6472674012184143, - "y_min": 0.571692943572998, - "x_max": 0.689397394657135, - "y_max": 0.6586284637451172 - }, - "confidence": 0.9999992847442627, - "label_id": 1 - }, - "h": 94, - "w": 81, - "x": 1243, - "y": 617 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1449359953403473, - "y_min": 0.5530253648757935, - "x_max": 0.18035650253295898, - "y_max": 0.6362878084182739 - }, - "confidence": 0.7269667387008667, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999992847442627, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2805222272872925, - 0.4790627956390381, - 0.05919842794537544, - 0.0020927381701767445, - 0.17912378907203674 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7269667387008667, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.22848302125930786, - 0.019862787798047066, - 0.2976306676864624, - 0.009195232763886452, - 0.4448283910751343 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 22033276928, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.647396445274353, - "y_min": 0.5707191824913025, - "x_max": 0.6886864900588989, - "y_max": 0.6582918763160706 - }, - "confidence": 0.9999991655349731, - "label_id": 1 - }, - "h": 95, - "w": 79, - "x": 1243, - "y": 616 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1449587494134903, - "y_min": 0.5527985095977783, - "x_max": 0.1803210824728012, - "y_max": 0.6366598606109619 - }, - "confidence": 0.7369278073310852, - "label_id": 1 - }, - "h": 91, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999991655349731, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.298653244972229, - 0.4260164201259613, - 0.06707756966352463, - 0.0019955048337578773, - 0.20625720918178558 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7369278073310852, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2296847552061081, - 0.014468614012002945, - 0.2856099605560303, - 0.007336281705647707, - 0.4629005193710327 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 22066610176, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6478237509727478, - "y_min": 0.5703145265579224, - "x_max": 0.6881199479103088, - "y_max": 0.6585855484008789 - }, - "confidence": 0.9999988079071045, - "label_id": 1 - }, - "h": 95, - "w": 77, - "x": 1244, - "y": 616 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1448781043291092, - "y_min": 0.5527800917625427, - "x_max": 0.1803756207227707, - "y_max": 0.6364565491676331 - }, - "confidence": 0.7344769835472107, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999988079071045, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.24927391111850739, - 0.49900296330451965, - 0.06274743378162384, - 0.002073293086141348, - 0.18690235912799835 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7344769835472107, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2105741649866104, - 0.015640022233128548, - 0.30360913276672363, - 0.009542515501379967, - 0.46063417196273804 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 22099943424, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6479663848876953, - "y_min": 0.5706920027732849, - "x_max": 0.688277006149292, - "y_max": 0.658524215221405 - }, - "confidence": 0.9999980926513672, - "label_id": 1 - }, - "h": 95, - "w": 77, - "x": 1244, - "y": 616 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14481744170188904, - "y_min": 0.5526747703552246, - "x_max": 0.1804610788822174, - "y_max": 0.636544942855835 - }, - "confidence": 0.7352301478385925, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999980926513672, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.25144141912460327, - 0.49130940437316895, - 0.06090569868683815, - 0.0022092543076723814, - 0.1941341906785965 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7352301478385925, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.21259166300296783, - 0.013193665072321892, - 0.28739696741104126, - 0.009950576350092888, - 0.476867139339447 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 22133276672, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6480631828308105, - "y_min": 0.5707347393035889, - "x_max": 0.6885309219360352, - "y_max": 0.6583209037780762 - }, - "confidence": 0.9999980926513672, - "label_id": 1 - }, - "h": 95, - "w": 78, - "x": 1244, - "y": 616 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14497403800487518, - "y_min": 0.5526866316795349, - "x_max": 0.18035219609737396, - "y_max": 0.6364015936851501 - }, - "confidence": 0.7301998138427734, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999980926513672, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2051074355840683, - 0.5719595551490784, - 0.04662180319428444, - 0.001965853851288557, - 0.17434534430503845 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7301998138427734, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23268678784370422, - 0.014836743474006653, - 0.2810021638870239, - 0.009267081506550312, - 0.46220728754997253 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 22166609920, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6475768089294434, - "y_min": 0.571475625038147, - "x_max": 0.6879512071609497, - "y_max": 0.6578229665756226 - }, - "confidence": 0.9999974966049194, - "label_id": 1 - }, - "h": 93, - "w": 78, - "x": 1243, - "y": 617 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14482587575912476, - "y_min": 0.5527702569961548, - "x_max": 0.18039831519126892, - "y_max": 0.6367396116256714 - }, - "confidence": 0.7302382588386536, - "label_id": 1 - }, - "h": 91, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999974966049194, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.18195195496082306, - 0.6149072647094727, - 0.051725003868341446, - 0.002515471773222089, - 0.1489003300666809 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7302382588386536, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.21110092103481293, - 0.010853387415409088, - 0.28629884123802185, - 0.006693024653941393, - 0.4850539267063141 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 22199943168, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6474094390869141, - "y_min": 0.572735607624054, - "x_max": 0.6876157522201538, - "y_max": 0.657707154750824 - }, - "confidence": 0.9999954700469971, - "label_id": 1 - }, - "h": 91, - "w": 77, - "x": 1243, - "y": 619 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14481401443481445, - "y_min": 0.552803099155426, - "x_max": 0.18053314089775085, - "y_max": 0.6368500590324402 - }, - "confidence": 0.7310360670089722, - "label_id": 1 - }, - "h": 91, - "w": 69, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999954700469971, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1727694720029831, - 0.6272079348564148, - 0.05171996355056763, - 0.001812707632780075, - 0.14648990333080292 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7310360670089722, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.19166162610054016, - 0.010785483755171299, - 0.30247291922569275, - 0.00700375996530056, - 0.48807618021965027 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 22233276416, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6473345160484314, - "y_min": 0.57423996925354, - "x_max": 0.6876377463340759, - "y_max": 0.6580122709274292 - }, - "confidence": 0.999992847442627, - "label_id": 1 - }, - "h": 91, - "w": 77, - "x": 1243, - "y": 620 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1448412537574768, - "y_min": 0.5526019930839539, - "x_max": 0.18056517839431763, - "y_max": 0.6372577548027039 - }, - "confidence": 0.7380752563476562, - "label_id": 1 - }, - "h": 91, - "w": 69, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.999992847442627, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1697445511817932, - 0.67573082447052, - 0.05190175026655197, - 0.0017652742099016905, - 0.10085766762495041 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7380752563476562, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.18867570161819458, - 0.010700958780944347, - 0.2982190251350403, - 0.007137109991163015, - 0.49526721239089966 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 22266609664, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.647365927696228, - "y_min": 0.5740512609481812, - "x_max": 0.6875642538070679, - "y_max": 0.6571944952011108 - }, - "confidence": 0.9999916553497314, - "label_id": 1 - }, - "h": 90, - "w": 77, - "x": 1243, - "y": 620 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14483323693275452, - "y_min": 0.5528564453125, - "x_max": 0.18054717779159546, - "y_max": 0.6368893384933472 - }, - "confidence": 0.7302117347717285, - "label_id": 1 - }, - "h": 91, - "w": 69, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999916553497314, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1320875734090805, - 0.6829699873924255, - 0.04222092404961586, - 0.0017411605222150683, - 0.14098036289215088 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7302117347717285, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.17387655377388, - 0.009771703742444515, - 0.3054119348526001, - 0.007519921287894249, - 0.5034198760986328 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 22299942912, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.646568775177002, - "y_min": 0.5734290480613708, - "x_max": 0.6874092817306519, - "y_max": 0.6574510931968689 - }, - "confidence": 0.999996542930603, - "label_id": 1 - }, - "h": 91, - "w": 79, - "x": 1241, - "y": 619 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14491739869117737, - "y_min": 0.5528573393821716, - "x_max": 0.18047913908958435, - "y_max": 0.6372222304344177 - }, - "confidence": 0.7342885136604309, - "label_id": 1 - }, - "h": 91, - "w": 69, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.999996542930603, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2018505185842514, - 0.527703583240509, - 0.05645710229873657, - 0.0021172354463487864, - 0.21187159419059753 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7342885136604309, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.20166198909282684, - 0.01165260560810566, - 0.2771390974521637, - 0.0073410277254879475, - 0.5022053122520447 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 22333276160, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6458241939544678, - "y_min": 0.573462963104248, - "x_max": 0.6868880987167358, - "y_max": 0.6573536396026611 - }, - "confidence": 0.9999978542327881, - "label_id": 1 - }, - "h": 91, - "w": 79, - "x": 1240, - "y": 619 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14483153820037842, - "y_min": 0.5530311465263367, - "x_max": 0.1803531050682068, - "y_max": 0.6371319890022278 - }, - "confidence": 0.7325253486633301, - "label_id": 1 - }, - "h": 91, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999978542327881, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.15877190232276917, - 0.5303577780723572, - 0.05670895427465439, - 0.003170589916408062, - 0.25099077820777893 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7325253486633301, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.22203099727630615, - 0.013844476081430912, - 0.25966548919677734, - 0.00854434259235859, - 0.49591466784477234 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 22366609408, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6455076932907104, - "y_min": 0.5730907320976257, - "x_max": 0.6865500211715698, - "y_max": 0.65785151720047 - }, - "confidence": 0.9999992847442627, - "label_id": 1 - }, - "h": 91, - "w": 79, - "x": 1239, - "y": 619 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14479960501194, - "y_min": 0.553066611289978, - "x_max": 0.18043823540210724, - "y_max": 0.6373411417007446 - }, - "confidence": 0.7355063557624817, - "label_id": 1 - }, - "h": 91, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999992847442627, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.15812617540359497, - 0.5941212773323059, - 0.05091480538249016, - 0.003371492028236389, - 0.1934662163257599 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7355063557624817, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.22236326336860657, - 0.013484956696629524, - 0.28203728795051575, - 0.008771192282438278, - 0.4733433127403259 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 22399942656, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6448742747306824, - "y_min": 0.573192298412323, - "x_max": 0.6860911250114441, - "y_max": 0.6589626669883728 - }, - "confidence": 0.9999991655349731, - "label_id": 1 - }, - "h": 93, - "w": 79, - "x": 1238, - "y": 619 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14468172192573547, - "y_min": 0.5530453324317932, - "x_max": 0.1801423728466034, - "y_max": 0.637811005115509 - }, - "confidence": 0.734921395778656, - "label_id": 1 - }, - "h": 92, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999991655349731, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.14916054904460907, - 0.5561188459396362, - 0.06505844742059708, - 0.003026724560186267, - 0.22663544118404388 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.734921395778656, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.20530571043491364, - 0.02151426486670971, - 0.2934345304965973, - 0.008077166974544525, - 0.47166845202445984 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 22433275904, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.644489049911499, - "y_min": 0.5731626749038696, - "x_max": 0.6860692501068115, - "y_max": 0.6596174240112305 - }, - "confidence": 0.9999992847442627, - "label_id": 1 - }, - "h": 93, - "w": 80, - "x": 1237, - "y": 619 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14475184679031372, - "y_min": 0.553202748298645, - "x_max": 0.18008717894554138, - "y_max": 0.6374057531356812 - }, - "confidence": 0.7280433773994446, - "label_id": 1 - }, - "h": 91, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999992847442627, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.13759908080101013, - 0.5296434760093689, - 0.05604046210646629, - 0.0038097831420600414, - 0.2729072570800781 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7280433773994446, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.16583622992038727, - 0.013260523788630962, - 0.3260948657989502, - 0.008718902245163918, - 0.4860894978046417 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 22466609152, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6441442370414734, - "y_min": 0.5734396576881409, - "x_max": 0.6858794093132019, - "y_max": 0.6598055958747864 - }, - "confidence": 0.9999991655349731, - "label_id": 1 - }, - "h": 94, - "w": 80, - "x": 1237, - "y": 619 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1446988582611084, - "y_min": 0.5534336566925049, - "x_max": 0.18000593781471252, - "y_max": 0.6372473239898682 - }, - "confidence": 0.7136473655700684, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999991655349731, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.17126883566379547, - 0.4636032283306122, - 0.08224586397409439, - 0.005398103501647711, - 0.2774839699268341 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7136473655700684, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1390003263950348, - 0.011399009265005589, - 0.3798731565475464, - 0.0072091142646968365, - 0.4625183939933777 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 22499942400, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.64454585313797, - "y_min": 0.5733394026756287, - "x_max": 0.6861323714256287, - "y_max": 0.6603949666023254 - }, - "confidence": 0.9999994039535522, - "label_id": 1 - }, - "h": 94, - "w": 79, - "x": 1238, - "y": 619 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1446027308702469, - "y_min": 0.5534791946411133, - "x_max": 0.1798931211233139, - "y_max": 0.637021541595459 - }, - "confidence": 0.7154561877250671, - "label_id": 1 - }, - "h": 90, - "w": 67, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999994039535522, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.19186051189899445, - 0.475786954164505, - 0.09823596477508545, - 0.007670680060982704, - 0.2264459878206253 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7154561877250671, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.12927410006523132, - 0.009110676124691963, - 0.37421298027038574, - 0.00790584459900856, - 0.47949638962745667 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 22533275648, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6447152495384216, - "y_min": 0.5737202167510986, - "x_max": 0.6859913468360901, - "y_max": 0.6599397659301758 - }, - "confidence": 0.9999991655349731, - "label_id": 1 - }, - "h": 93, - "w": 79, - "x": 1238, - "y": 620 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14462494850158691, - "y_min": 0.5533130168914795, - "x_max": 0.17995786666870117, - "y_max": 0.6372888088226318 - }, - "confidence": 0.7194939255714417, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999991655349731, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.21712332963943481, - 0.3857302963733673, - 0.10171332210302353, - 0.004672212991863489, - 0.2907608151435852 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7194939255714417, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.14853887259960175, - 0.012099763378500938, - 0.3439742922782898, - 0.00885276310145855, - 0.4865342676639557 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 22566608896, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6448830366134644, - "y_min": 0.5728529095649719, - "x_max": 0.6860415935516357, - "y_max": 0.6600276827812195 - }, - "confidence": 0.9999995231628418, - "label_id": 1 - }, - "h": 94, - "w": 79, - "x": 1238, - "y": 619 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14472000300884247, - "y_min": 0.5533537864685059, - "x_max": 0.17998133599758148, - "y_max": 0.6374231576919556 - }, - "confidence": 0.7275072336196899, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999995231628418, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2576424181461334, - 0.3293319344520569, - 0.08064723759889603, - 0.009993817657232285, - 0.3223845660686493 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7275072336196899, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.15600204467773438, - 0.012913445942103863, - 0.3259321451187134, - 0.008488615043461323, - 0.4966636896133423 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 22599942144, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6452338099479675, - "y_min": 0.5724483728408813, - "x_max": 0.6863147616386414, - "y_max": 0.6602531671524048 - }, - "confidence": 0.9999996423721313, - "label_id": 1 - }, - "h": 95, - "w": 79, - "x": 1239, - "y": 618 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14468005299568176, - "y_min": 0.5529782772064209, - "x_max": 0.1800234019756317, - "y_max": 0.6377522945404053 - }, - "confidence": 0.7359707355499268, - "label_id": 1 - }, - "h": 92, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999996423721313, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2159385085105896, - 0.4653366208076477, - 0.04841892048716545, - 0.022531025111675262, - 0.24777497351169586 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7359707355499268, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.16003753244876862, - 0.014013162814080715, - 0.3046520948410034, - 0.009303816594183445, - 0.511993408203125 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 22633275392, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6453850269317627, - "y_min": 0.5728441476821899, - "x_max": 0.6869605779647827, - "y_max": 0.6612609624862671 - }, - "confidence": 0.9999996423721313, - "label_id": 1 - }, - "h": 95, - "w": 80, - "x": 1239, - "y": 619 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14466115832328796, - "y_min": 0.5531827807426453, - "x_max": 0.1799963414669037, - "y_max": 0.6376511454582214 - }, - "confidence": 0.7207939028739929, - "label_id": 1 - }, - "h": 92, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999996423721313, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23481999337673187, - 0.3173113167285919, - 0.07210735231637955, - 0.019832391291856766, - 0.3559289276599884 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7207939028739929, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.16135719418525696, - 0.013163978233933449, - 0.2875027358531952, - 0.009437155909836292, - 0.5285389423370361 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 22666608640, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.64601069688797, - "y_min": 0.5735446810722351, - "x_max": 0.6876608729362488, - "y_max": 0.6613032221794128 - }, - "confidence": 0.9999996423721313, - "label_id": 1 - }, - "h": 95, - "w": 80, - "x": 1240, - "y": 619 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14469586312770844, - "y_min": 0.5533139705657959, - "x_max": 0.18002955615520477, - "y_max": 0.637263298034668 - }, - "confidence": 0.7209992408752441, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999996423721313, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23782657086849213, - 0.35319551825523376, - 0.052495136857032776, - 0.012514680624008179, - 0.34396812319755554 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7209992408752441, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.14721831679344177, - 0.013261987827718258, - 0.2895987331867218, - 0.008893031626939774, - 0.5410279631614685 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 22699941888, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6468603014945984, - "y_min": 0.5751945972442627, - "x_max": 0.6881645321846008, - "y_max": 0.6614879369735718 - }, - "confidence": 0.9999984502792358, - "label_id": 1 - }, - "h": 93, - "w": 79, - "x": 1242, - "y": 621 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14457710087299347, - "y_min": 0.5530651211738586, - "x_max": 0.1800038367509842, - "y_max": 0.6372238993644714 - }, - "confidence": 0.7162144184112549, - "label_id": 1 - }, - "h": 91, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999984502792358, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.17961485683918, - 0.31105589866638184, - 0.07742296159267426, - 0.008518410846590996, - 0.4233878552913666 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7162144184112549, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.16782833635807037, - 0.012972639873623848, - 0.30527225136756897, - 0.008908319287002087, - 0.505018413066864 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 22733275136, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.646981954574585, - "y_min": 0.5763670206069946, - "x_max": 0.6888231039047241, - "y_max": 0.6612964868545532 - }, - "confidence": 0.9999958276748657, - "label_id": 1 - }, - "h": 92, - "w": 81, - "x": 1242, - "y": 622 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14460121095180511, - "y_min": 0.5532093644142151, - "x_max": 0.18001575767993927, - "y_max": 0.6371403336524963 - }, - "confidence": 0.7161186337471008, - "label_id": 1 - }, - "h": 91, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999958276748657, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2676987051963806, - 0.18577714264392853, - 0.11698915809392929, - 0.008217600174248219, - 0.42131736874580383 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7161186337471008, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.18620724976062775, - 0.014994148164987564, - 0.27910488843917847, - 0.008525688201189041, - 0.5111680626869202 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 22766608384, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6471161842346191, - "y_min": 0.5776425004005432, - "x_max": 0.6892807483673096, - "y_max": 0.6605761647224426 - }, - "confidence": 0.9999939203262329, - "label_id": 1 - }, - "h": 89, - "w": 81, - "x": 1242, - "y": 624 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14461252093315125, - "y_min": 0.5534019470214844, - "x_max": 0.17995408177375793, - "y_max": 0.6368589401245117 - }, - "confidence": 0.7126537561416626, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999939203262329, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.32229992747306824, - 0.15090946853160858, - 0.13530100882053375, - 0.004858251195400953, - 0.3866313397884369 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7126537561416626, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1778416782617569, - 0.016909468919038773, - 0.2638949453830719, - 0.006612659431993961, - 0.534741222858429 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 22799941632, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6472675204277039, - "y_min": 0.5796722769737244, - "x_max": 0.6893659234046936, - "y_max": 0.6603609919548035 - }, - "confidence": 0.9999791383743286, - "label_id": 1 - }, - "h": 87, - "w": 81, - "x": 1243, - "y": 626 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14470526576042175, - "y_min": 0.5531846284866333, - "x_max": 0.1802537739276886, - "y_max": 0.6370394229888916 - }, - "confidence": 0.726640522480011, - "label_id": 1 - }, - "h": 91, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999791383743286, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3133421540260315, - 0.09215974062681198, - 0.18282297253608704, - 0.012449437752366066, - 0.39922577142715454 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.726640522480011, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23370391130447388, - 0.020059678703546524, - 0.25386759638786316, - 0.007990479469299316, - 0.48437824845314026 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 22833274880, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6471738219261169, - "y_min": 0.5796934962272644, - "x_max": 0.6895572543144226, - "y_max": 0.6605618596076965 - }, - "confidence": 0.9999775886535645, - "label_id": 1 - }, - "h": 87, - "w": 81, - "x": 1243, - "y": 626 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1446908563375473, - "y_min": 0.5530869960784912, - "x_max": 0.18019963800907135, - "y_max": 0.6367083787918091 - }, - "confidence": 0.7352933883666992, - "label_id": 1 - }, - "h": 91, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999775886535645, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3430934250354767, - 0.09504634141921997, - 0.19007578492164612, - 0.009202135726809502, - 0.3625822961330414 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7352933883666992, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.19557258486747742, - 0.012652596458792686, - 0.2647733986377716, - 0.007531054317951202, - 0.5194703340530396 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 22866608128, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6473591923713684, - "y_min": 0.5775338411331177, - "x_max": 0.6897662281990051, - "y_max": 0.6609196662902832 - }, - "confidence": 0.9999885559082031, - "label_id": 1 - }, - "h": 90, - "w": 81, - "x": 1243, - "y": 624 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1447954624891281, - "y_min": 0.5530686378479004, - "x_max": 0.18038491904735565, - "y_max": 0.6367411613464355 - }, - "confidence": 0.7379705905914307, - "label_id": 1 - }, - "h": 91, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999885559082031, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.39523452520370483, - 0.123116634786129, - 0.16692650318145752, - 0.006758837029337883, - 0.307963490486145 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7379705905914307, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.17762425541877747, - 0.010782412253320217, - 0.2684078514575958, - 0.007770510856062174, - 0.5354149341583252 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 22899941376, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6474420428276062, - "y_min": 0.5765892863273621, - "x_max": 0.6898292899131775, - "y_max": 0.6615267395973206 - }, - "confidence": 0.9999904632568359, - "label_id": 1 - }, - "h": 91, - "w": 81, - "x": 1243, - "y": 623 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14470034837722778, - "y_min": 0.5530531406402588, - "x_max": 0.18038803339004517, - "y_max": 0.6368869543075562 - }, - "confidence": 0.7389675378799438, - "label_id": 1 - }, - "h": 91, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999904632568359, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.29863157868385315, - 0.06625500321388245, - 0.17423918843269348, - 0.00427220156416297, - 0.4566020667552948 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7389675378799438, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.18258580565452576, - 0.010590269230306149, - 0.2643493711948395, - 0.007562946993857622, - 0.5349116325378418 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 22933274624, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6473676562309265, - "y_min": 0.5759252905845642, - "x_max": 0.6895970702171326, - "y_max": 0.6620163321495056 - }, - "confidence": 0.9999910593032837, - "label_id": 1 - }, - "h": 93, - "w": 81, - "x": 1243, - "y": 622 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14470121264457703, - "y_min": 0.5530935525894165, - "x_max": 0.1801460087299347, - "y_max": 0.6366100311279297 - }, - "confidence": 0.7301056981086731, - "label_id": 1 - }, - "h": 91, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999910593032837, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2921176850795746, - 0.07052502781152725, - 0.12462157756090164, - 0.0021189542021602392, - 0.510616660118103 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7301056981086731, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.17646659910678864, - 0.008854626677930355, - 0.24697160720825195, - 0.008118831552565098, - 0.5595883131027222 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 22966607872, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6473580598831177, - "y_min": 0.5760279893875122, - "x_max": 0.6893022060394287, - "y_max": 0.6622974872589111 - }, - "confidence": 0.9999923706054688, - "label_id": 1 - }, - "h": 93, - "w": 80, - "x": 1243, - "y": 622 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14462687075138092, - "y_min": 0.552934467792511, - "x_max": 0.1803230196237564, - "y_max": 0.6374519467353821 - }, - "confidence": 0.7337624430656433, - "label_id": 1 - }, - "h": 91, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999923706054688, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2946127653121948, - 0.06410231441259384, - 0.1473999321460724, - 0.0018645782256498933, - 0.4920203685760498 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7337624430656433, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.17956553399562836, - 0.00939080398529768, - 0.2486923635005951, - 0.008075974881649017, - 0.5542752742767334 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 22999941120, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6472911238670349, - "y_min": 0.575939953327179, - "x_max": 0.6894012093544006, - "y_max": 0.6623889803886414 - }, - "confidence": 0.9999923706054688, - "label_id": 1 - }, - "h": 93, - "w": 81, - "x": 1243, - "y": 622 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14472460746765137, - "y_min": 0.5530022382736206, - "x_max": 0.18022161722183228, - "y_max": 0.6373541355133057 - }, - "confidence": 0.7350418567657471, - "label_id": 1 - }, - "h": 91, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999923706054688, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3501732051372528, - 0.10852190107107162, - 0.11589060723781586, - 0.0018841336714103818, - 0.42353013157844543 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7350418567657471, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.16972626745700836, - 0.008413390256464481, - 0.2542816996574402, - 0.008118239231407642, - 0.559460461139679 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 23033274368, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.647282063961029, - "y_min": 0.5764822363853455, - "x_max": 0.6895000338554382, - "y_max": 0.6620168089866638 - }, - "confidence": 0.9999924898147583, - "label_id": 1 - }, - "h": 92, - "w": 81, - "x": 1243, - "y": 623 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1447606235742569, - "y_min": 0.5531443357467651, - "x_max": 0.18020232021808624, - "y_max": 0.6374112367630005 - }, - "confidence": 0.7369303107261658, - "label_id": 1 - }, - "h": 91, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999924898147583, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3178274929523468, - 0.0838698297739029, - 0.14062729477882385, - 0.0024293132591992617, - 0.4552459120750427 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7369303107261658, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.16242839395999908, - 0.008020604960620403, - 0.2737571895122528, - 0.007676925044506788, - 0.5481169819831848 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 23066607616, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.647478461265564, - "y_min": 0.576866090297699, - "x_max": 0.6897354125976562, - "y_max": 0.6611539721488953 - }, - "confidence": 0.999991774559021, - "label_id": 1 - }, - "h": 91, - "w": 81, - "x": 1243, - "y": 623 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14473305642604828, - "y_min": 0.5531554818153381, - "x_max": 0.1802792102098465, - "y_max": 0.6374772191047668 - }, - "confidence": 0.7374622225761414, - "label_id": 1 - }, - "h": 91, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.999991774559021, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3132689297199249, - 0.0577455535531044, - 0.1447914093732834, - 0.0016623446717858315, - 0.482531875371933 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7374622225761414, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.15917623043060303, - 0.008678805083036423, - 0.286424845457077, - 0.007880155928432941, - 0.5378398895263672 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 23099940864, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6474342346191406, - "y_min": 0.5779030919075012, - "x_max": 0.6895898580551147, - "y_max": 0.6605724692344666 - }, - "confidence": 0.9999911785125732, - "label_id": 1 - }, - "h": 89, - "w": 81, - "x": 1243, - "y": 624 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14469607174396515, - "y_min": 0.5530689358711243, - "x_max": 0.18030183017253876, - "y_max": 0.6376280188560486 - }, - "confidence": 0.7431983947753906, - "label_id": 1 - }, - "h": 92, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999911785125732, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3202531933784485, - 0.07667747884988785, - 0.12681496143341064, - 0.0013763615861535072, - 0.47487807273864746 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7431983947753906, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.16851194202899933, - 0.010890920646488667, - 0.2693173289299011, - 0.010959044098854065, - 0.5403207540512085 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 23133274112, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6472723484039307, - "y_min": 0.5785457491874695, - "x_max": 0.6895027160644531, - "y_max": 0.6602938771247864 - }, - "confidence": 0.9999891519546509, - "label_id": 1 - }, - "h": 88, - "w": 81, - "x": 1243, - "y": 625 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14468088746070862, - "y_min": 0.5532629489898682, - "x_max": 0.18028461933135986, - "y_max": 0.6376953125 - }, - "confidence": 0.7349942922592163, - "label_id": 1 - }, - "h": 91, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999891519546509, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4046618342399597, - 0.09010371565818787, - 0.09207767248153687, - 0.0028243602719157934, - 0.4103323519229889 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7349942922592163, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.15796463191509247, - 0.009927562437951565, - 0.24767929315567017, - 0.005767906084656715, - 0.5786606073379517 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 23166607360, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6471620798110962, - "y_min": 0.5775788426399231, - "x_max": 0.6889928579330444, - "y_max": 0.6609068512916565 - }, - "confidence": 0.9999929666519165, - "label_id": 1 - }, - "h": 90, - "w": 80, - "x": 1243, - "y": 624 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1447221040725708, - "y_min": 0.5531543493270874, - "x_max": 0.18038979172706604, - "y_max": 0.637858510017395 - }, - "confidence": 0.7431976795196533, - "label_id": 1 - }, - "h": 92, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999929666519165, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.29730886220932007, - 0.04740612953901291, - 0.09157844632863998, - 0.0016487212851643562, - 0.5620579123497009 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7431976795196533, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.14986249804496765, - 0.009359033778309822, - 0.2837577164173126, - 0.010209532454609871, - 0.5468111634254456 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 23199940608, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6475195288658142, - "y_min": 0.5761260986328125, - "x_max": 0.6885872483253479, - "y_max": 0.6610678434371948 - }, - "confidence": 0.9999934434890747, - "label_id": 1 - }, - "h": 92, - "w": 79, - "x": 1243, - "y": 622 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14480778574943542, - "y_min": 0.5533369779586792, - "x_max": 0.18038538098335266, - "y_max": 0.637252688407898 - }, - "confidence": 0.7441332936286926, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999934434890747, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.22685402631759644, - 0.02305505983531475, - 0.07207707315683365, - 0.0016271977219730616, - 0.6763865947723389 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7441332936286926, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.117507703602314, - 0.00793101079761982, - 0.29554203152656555, - 0.005244127940386534, - 0.5737751126289368 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 23233273856, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6472848653793335, - "y_min": 0.5759059190750122, - "x_max": 0.687926173210144, - "y_max": 0.6615884304046631 - }, - "confidence": 0.9999945163726807, - "label_id": 1 - }, - "h": 93, - "w": 78, - "x": 1243, - "y": 622 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14489075541496277, - "y_min": 0.5528329610824585, - "x_max": 0.18064141273498535, - "y_max": 0.637879490852356 - }, - "confidence": 0.7591243386268616, - "label_id": 1 - }, - "h": 92, - "w": 69, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999945163726807, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2427428960800171, - 0.05375808849930763, - 0.08399961143732071, - 0.001327423145994544, - 0.6181719303131104 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7591243386268616, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.14291109144687653, - 0.009282618761062622, - 0.3057318329811096, - 0.010728276334702969, - 0.5313461422920227 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 23266607104, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6471938490867615, - "y_min": 0.5754156112670898, - "x_max": 0.6872722506523132, - "y_max": 0.661194920539856 - }, - "confidence": 0.9999977350234985, - "label_id": 1 - }, - "h": 93, - "w": 77, - "x": 1243, - "y": 621 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14481067657470703, - "y_min": 0.5528109073638916, - "x_max": 0.18060529232025146, - "y_max": 0.6382459402084351 - }, - "confidence": 0.7653635144233704, - "label_id": 1 - }, - "h": 92, - "w": 69, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999977350234985, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.22858767211437225, - 0.06728968024253845, - 0.07958192378282547, - 0.002578591927886009, - 0.6219621300697327 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7653635144233704, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.14174413681030273, - 0.009142862632870674, - 0.3166878819465637, - 0.010400697588920593, - 0.522024393081665 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 23299940352, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6465997695922852, - "y_min": 0.5756677985191345, - "x_max": 0.6869266033172607, - "y_max": 0.6619729399681091 - }, - "confidence": 0.9999988079071045, - "label_id": 1 - }, - "h": 93, - "w": 78, - "x": 1241, - "y": 622 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14478980004787445, - "y_min": 0.5527376532554626, - "x_max": 0.18062545359134674, - "y_max": 0.6384637951850891 - }, - "confidence": 0.7650701999664307, - "label_id": 1 - }, - "h": 93, - "w": 69, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999988079071045, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.24602770805358887, - 0.10685006529092789, - 0.08322478830814362, - 0.001215378288179636, - 0.5626819729804993 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7650701999664307, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.13318271934986115, - 0.008554014377295971, - 0.31672728061676025, - 0.00584065867587924, - 0.5356953740119934 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 23333273600, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6459212899208069, - "y_min": 0.5764392018318176, - "x_max": 0.686472475528717, - "y_max": 0.661736786365509 - }, - "confidence": 0.9999990463256836, - "label_id": 1 - }, - "h": 92, - "w": 78, - "x": 1240, - "y": 623 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14488767087459564, - "y_min": 0.5525346994400024, - "x_max": 0.18047870695590973, - "y_max": 0.6380801200866699 - }, - "confidence": 0.7555657029151917, - "label_id": 1 - }, - "h": 92, - "w": 69, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999990463256836, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3197334110736847, - 0.23648734390735626, - 0.07536675781011581, - 0.0015714666806161404, - 0.36684098839759827 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7555657029151917, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1403709053993225, - 0.00829232856631279, - 0.3366331160068512, - 0.010244962759315968, - 0.5044587254524231 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 23366606848, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6460123062133789, - "y_min": 0.5774387121200562, - "x_max": 0.6862705945968628, - "y_max": 0.6608726978302002 - }, - "confidence": 0.9999988079071045, - "label_id": 1 - }, - "h": 90, - "w": 78, - "x": 1240, - "y": 624 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1448788344860077, - "y_min": 0.5524610877037048, - "x_max": 0.18060985207557678, - "y_max": 0.6380388140678406 - }, - "confidence": 0.7608951926231384, - "label_id": 1 - }, - "h": 92, - "w": 69, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999988079071045, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.25937914848327637, - 0.31660565733909607, - 0.09075434505939484, - 0.0014622636372223496, - 0.33179861307144165 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7608951926231384, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1412145346403122, - 0.008634720928966999, - 0.3439631164073944, - 0.009869790636003017, - 0.4963178336620331 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 23399940096, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6458259224891663, - "y_min": 0.577318549156189, - "x_max": 0.6862377524375916, - "y_max": 0.6613234281539917 - }, - "confidence": 0.9999984502792358, - "label_id": 1 - }, - "h": 90, - "w": 78, - "x": 1240, - "y": 624 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14481711387634277, - "y_min": 0.5526532530784607, - "x_max": 0.18045106530189514, - "y_max": 0.6377995610237122 - }, - "confidence": 0.7590555548667908, - "label_id": 1 - }, - "h": 92, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999984502792358, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2055051028728485, - 0.47467944025993347, - 0.07287939637899399, - 0.0013048885157331824, - 0.24563126266002655 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7590555548667908, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.13138186931610107, - 0.007033633068203926, - 0.3065664768218994, - 0.007772636599838734, - 0.5472453236579895 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 23433273344, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6460176110267639, - "y_min": 0.5773236751556396, - "x_max": 0.6867261528968811, - "y_max": 0.6609699726104736 - }, - "confidence": 0.999997615814209, - "label_id": 1 - }, - "h": 90, - "w": 79, - "x": 1240, - "y": 624 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14478722214698792, - "y_min": 0.552763819694519, - "x_max": 0.18048551678657532, - "y_max": 0.6374660730361938 - }, - "confidence": 0.7538110613822937, - "label_id": 1 - }, - "h": 91, - "w": 69, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.999997615814209, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.181444451212883, - 0.5096560120582581, - 0.07106040418148041, - 0.002092040842399001, - 0.2357470542192459 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7538110613822937, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.11834399402141571, - 0.005837322678416967, - 0.348310261964798, - 0.006516296416521072, - 0.5209921598434448 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 23466606592, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6460592150688171, - "y_min": 0.5768284797668457, - "x_max": 0.687290370464325, - "y_max": 0.6609039306640625 - }, - "confidence": 0.999998927116394, - "label_id": 1 - }, - "h": 91, - "w": 80, - "x": 1240, - "y": 623 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1447775661945343, - "y_min": 0.5527771711349487, - "x_max": 0.18053963780403137, - "y_max": 0.6377284526824951 - }, - "confidence": 0.7532935738563538, - "label_id": 1 - }, - "h": 92, - "w": 69, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.999998927116394, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.14453165233135223, - 0.5507612228393555, - 0.0558750294148922, - 0.0022215689532458782, - 0.24661050736904144 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7532935738563538, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.12286607921123505, - 0.00736261997371912, - 0.35145071148872375, - 0.008126072585582733, - 0.5101944804191589 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 23499939840, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.646215558052063, - "y_min": 0.5767681002616882, - "x_max": 0.6872571706771851, - "y_max": 0.660688579082489 - }, - "confidence": 0.9999982118606567, - "label_id": 1 - }, - "h": 91, - "w": 79, - "x": 1241, - "y": 623 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14481374621391296, - "y_min": 0.552944004535675, - "x_max": 0.1806676983833313, - "y_max": 0.6373299956321716 - }, - "confidence": 0.7561602592468262, - "label_id": 1 - }, - "h": 91, - "w": 69, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999982118606567, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.12272904813289642, - 0.49707767367362976, - 0.06687231361865997, - 0.0018298291834071279, - 0.31149110198020935 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7561602592468262, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.13422362506389618, - 0.006626348476856947, - 0.3391275107860565, - 0.007365626282989979, - 0.5126568675041199 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 23533273088, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6460210680961609, - "y_min": 0.5766687989234924, - "x_max": 0.6872000098228455, - "y_max": 0.6608347296714783 - }, - "confidence": 0.9999984502792358, - "label_id": 1 - }, - "h": 91, - "w": 79, - "x": 1240, - "y": 623 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1448838710784912, - "y_min": 0.5529646277427673, - "x_max": 0.18060937523841858, - "y_max": 0.636983335018158 - }, - "confidence": 0.7497335076332092, - "label_id": 1 - }, - "h": 91, - "w": 69, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999984502792358, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.10474202781915665, - 0.5118781328201294, - 0.08232511579990387, - 0.0020514968782663345, - 0.2990032136440277 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7497335076332092, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1480044573545456, - 0.007035402115434408, - 0.3190516233444214, - 0.0076667144894599915, - 0.5182418823242188 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 23566606336, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.646282434463501, - "y_min": 0.5762894153594971, - "x_max": 0.6870800256729126, - "y_max": 0.6602065563201904 - }, - "confidence": 0.9999990463256836, - "label_id": 1 - }, - "h": 91, - "w": 78, - "x": 1241, - "y": 622 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14485687017440796, - "y_min": 0.5530933141708374, - "x_max": 0.18045228719711304, - "y_max": 0.6365941762924194 - }, - "confidence": 0.7405284643173218, - "label_id": 1 - }, - "h": 91, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999990463256836, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.10524918884038925, - 0.5498295426368713, - 0.049967821687459946, - 0.001965942559763789, - 0.2929874062538147 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7405284643173218, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1576760858297348, - 0.008486870676279068, - 0.3147400915622711, - 0.00842400174587965, - 0.510672926902771 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 23599939584, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6462038159370422, - "y_min": 0.5761118531227112, - "x_max": 0.686910092830658, - "y_max": 0.6604864001274109 - }, - "confidence": 0.9999988079071045, - "label_id": 1 - }, - "h": 91, - "w": 78, - "x": 1241, - "y": 622 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14506028592586517, - "y_min": 0.5529487133026123, - "x_max": 0.1805553287267685, - "y_max": 0.6354671716690063 - }, - "confidence": 0.710338830947876, - "label_id": 1 - }, - "h": 89, - "w": 68, - "x": 279, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999988079071045, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.08043713867664337, - 0.7039908766746521, - 0.03640170022845268, - 0.00202243123203516, - 0.17714786529541016 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.710338830947876, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1792716234922409, - 0.009152233600616455, - 0.33656081557273865, - 0.007786114234477282, - 0.46722927689552307 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 23633272832, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6464642286300659, - "y_min": 0.5764025449752808, - "x_max": 0.6869479417800903, - "y_max": 0.6603598594665527 - }, - "confidence": 0.9999984502792358, - "label_id": 1 - }, - "h": 90, - "w": 78, - "x": 1241, - "y": 623 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14506815373897552, - "y_min": 0.5528362989425659, - "x_max": 0.18068216741085052, - "y_max": 0.6359943151473999 - }, - "confidence": 0.721168577671051, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 279, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999984502792358, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.0586339496076107, - 0.7327060103416443, - 0.03946857526898384, - 0.002589825540781021, - 0.16660167276859283 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.721168577671051, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.20034755766391754, - 0.012451021932065487, - 0.2987366020679474, - 0.009165756404399872, - 0.47929897904396057 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 23666606080, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6466506123542786, - "y_min": 0.5766047239303589, - "x_max": 0.6867374777793884, - "y_max": 0.6598120927810669 - }, - "confidence": 0.9999979734420776, - "label_id": 1 - }, - "h": 90, - "w": 77, - "x": 1242, - "y": 623 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14492134749889374, - "y_min": 0.5528775453567505, - "x_max": 0.1806875318288803, - "y_max": 0.6361057758331299 - }, - "confidence": 0.7276651859283447, - "label_id": 1 - }, - "h": 90, - "w": 69, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999979734420776, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.05798846855759621, - 0.7475180625915527, - 0.03940661624073982, - 0.002719220705330372, - 0.15236765146255493 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7276651859283447, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1796014904975891, - 0.010626133531332016, - 0.31018728017807007, - 0.010444252751767635, - 0.4891408383846283 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 23699939328, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6469364762306213, - "y_min": 0.5764713287353516, - "x_max": 0.6866479516029358, - "y_max": 0.659812331199646 - }, - "confidence": 0.9999973773956299, - "label_id": 1 - }, - "h": 90, - "w": 76, - "x": 1242, - "y": 623 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14505617320537567, - "y_min": 0.5529731512069702, - "x_max": 0.18094457685947418, - "y_max": 0.6365386247634888 - }, - "confidence": 0.7278066277503967, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 279, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999973773956299, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.05720370262861252, - 0.7490179538726807, - 0.04316556453704834, - 0.0025942909996956587, - 0.14801838994026184 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7278066277503967, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.16880927979946136, - 0.011062996461987495, - 0.30575093626976013, - 0.011199979111552238, - 0.5031768083572388 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 23733272576, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6470916271209717, - "y_min": 0.5764744281768799, - "x_max": 0.6864064931869507, - "y_max": 0.6596097946166992 - }, - "confidence": 0.9999973773956299, - "label_id": 1 - }, - "h": 89, - "w": 76, - "x": 1242, - "y": 623 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14514507353305817, - "y_min": 0.5528635382652283, - "x_max": 0.1811722368001938, - "y_max": 0.6371672749519348 - }, - "confidence": 0.7256783843040466, - "label_id": 1 - }, - "h": 91, - "w": 69, - "x": 279, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999973773956299, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.06923133879899979, - 0.7411356568336487, - 0.0383753702044487, - 0.002561310539022088, - 0.14869628846645355 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7256783843040466, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1506858766078949, - 0.008340364322066307, - 0.3763306736946106, - 0.00891205109655857, - 0.455731064081192 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 23766605824, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.647144615650177, - "y_min": 0.5763095617294312, - "x_max": 0.6865748763084412, - "y_max": 0.659308910369873 - }, - "confidence": 0.9999977350234985, - "label_id": 1 - }, - "h": 90, - "w": 75, - "x": 1243, - "y": 622 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14501668512821198, - "y_min": 0.5527737736701965, - "x_max": 0.180921271443367, - "y_max": 0.6368502974510193 - }, - "confidence": 0.7342618703842163, - "label_id": 1 - }, - "h": 91, - "w": 69, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999977350234985, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.06203585863113403, - 0.7289820313453674, - 0.03711129352450371, - 0.002782773459330201, - 0.16908802092075348 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7342618703842163, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.13706351816654205, - 0.006676637567579746, - 0.3160270154476166, - 0.007107846904546022, - 0.5331249833106995 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 23799939072, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6469888687133789, - "y_min": 0.5759677290916443, - "x_max": 0.6863324642181396, - "y_max": 0.6593717932701111 - }, - "confidence": 0.9999978542327881, - "label_id": 1 - }, - "h": 90, - "w": 76, - "x": 1242, - "y": 622 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14490613341331482, - "y_min": 0.55286705493927, - "x_max": 0.18090757727622986, - "y_max": 0.6366153955459595 - }, - "confidence": 0.7433492541313171, - "label_id": 1 - }, - "h": 91, - "w": 69, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999978542327881, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.05741162970662117, - 0.7618095278739929, - 0.03575742989778519, - 0.0029099152889102697, - 0.14211151003837585 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7433492541313171, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.12888483703136444, - 0.0062804329209029675, - 0.3418065905570984, - 0.007249223068356514, - 0.5157789587974548 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 23833272320, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6468515396118164, - "y_min": 0.5758179426193237, - "x_max": 0.6863869428634644, - "y_max": 0.6594556570053101 - }, - "confidence": 0.9999983310699463, - "label_id": 1 - }, - "h": 90, - "w": 76, - "x": 1242, - "y": 622 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1447695940732956, - "y_min": 0.5529115200042725, - "x_max": 0.18074007332324982, - "y_max": 0.6368117332458496 - }, - "confidence": 0.7372356653213501, - "label_id": 1 - }, - "h": 91, - "w": 69, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999983310699463, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.05755132436752319, - 0.7383859753608704, - 0.04041320085525513, - 0.0030387642327696085, - 0.16061066091060638 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7372356653213501, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.12950703501701355, - 0.006806601770222187, - 0.33145007491111755, - 0.008027954027056694, - 0.5242083072662354 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 23866605568, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6466819643974304, - "y_min": 0.5757691860198975, - "x_max": 0.6863915324211121, - "y_max": 0.65931236743927 - }, - "confidence": 0.9999986886978149, - "label_id": 1 - }, - "h": 90, - "w": 76, - "x": 1242, - "y": 622 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14479215443134308, - "y_min": 0.5528823137283325, - "x_max": 0.1807878464460373, - "y_max": 0.636963963508606 - }, - "confidence": 0.7355408072471619, - "label_id": 1 - }, - "h": 91, - "w": 69, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999986886978149, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.048669714480638504, - 0.741121232509613, - 0.042198605835437775, - 0.003202232765033841, - 0.16480830311775208 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7355408072471619, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.12576216459274292, - 0.00647097360342741, - 0.3270180821418762, - 0.007296164054423571, - 0.533452570438385 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 23899938816, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.646339476108551, - "y_min": 0.5757044553756714, - "x_max": 0.6862133145332336, - "y_max": 0.6596957445144653 - }, - "confidence": 0.999998927116394, - "label_id": 1 - }, - "h": 90, - "w": 77, - "x": 1241, - "y": 622 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1447853296995163, - "y_min": 0.5527509450912476, - "x_max": 0.1805817037820816, - "y_max": 0.6366379261016846 - }, - "confidence": 0.7338608503341675, - "label_id": 1 - }, - "h": 91, - "w": 69, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.999998927116394, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.03683021292090416, - 0.8268851637840271, - 0.030797556042671204, - 0.0030369863379746675, - 0.10245012491941452 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7338608503341675, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.12256529927253723, - 0.005786039400845766, - 0.37397605180740356, - 0.007365839555859566, - 0.4903067946434021 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 23933272064, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6462928652763367, - "y_min": 0.5752424001693726, - "x_max": 0.6864705681800842, - "y_max": 0.6595406532287598 - }, - "confidence": 0.9999990463256836, - "label_id": 1 - }, - "h": 91, - "w": 77, - "x": 1241, - "y": 621 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14483174681663513, - "y_min": 0.5529909133911133, - "x_max": 0.18048468232154846, - "y_max": 0.6364933252334595 - }, - "confidence": 0.7335861325263977, - "label_id": 1 - }, - "h": 90, - "w": 69, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999990463256836, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.04459289833903313, - 0.832849383354187, - 0.02287449687719345, - 0.0033425847068428993, - 0.09634062647819519 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7335861325263977, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1383587121963501, - 0.008650874719023705, - 0.326593279838562, - 0.008416131138801575, - 0.5179809331893921 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 23966605312, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6460587382316589, - "y_min": 0.5752941966056824, - "x_max": 0.6864394545555115, - "y_max": 0.6595030426979065 - }, - "confidence": 0.9999994039535522, - "label_id": 1 - }, - "h": 91, - "w": 78, - "x": 1240, - "y": 621 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14468809962272644, - "y_min": 0.5530329942703247, - "x_max": 0.18040025234222412, - "y_max": 0.6369284391403198 - }, - "confidence": 0.7369652390480042, - "label_id": 1 - }, - "h": 91, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999994039535522, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.05259986221790314, - 0.7935438752174377, - 0.024368425831198692, - 0.0038094872143119574, - 0.12567847967147827 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7369652390480042, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.14312909543514252, - 0.006712658796459436, - 0.33515217900276184, - 0.007715592160820961, - 0.5072904825210571 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 23999938560, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6459025740623474, - "y_min": 0.5746978521347046, - "x_max": 0.6869097352027893, - "y_max": 0.6594918966293335 - }, - "confidence": 0.9999995231628418, - "label_id": 1 - }, - "h": 91, - "w": 79, - "x": 1240, - "y": 621 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1446666270494461, - "y_min": 0.5529990792274475, - "x_max": 0.18035174906253815, - "y_max": 0.6366739869117737 - }, - "confidence": 0.7429871559143066, - "label_id": 1 - }, - "h": 91, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999995231628418, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.10999207198619843, - 0.7644838690757751, - 0.018008941784501076, - 0.002307919319719076, - 0.1052071750164032 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7429871559143066, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1582859754562378, - 0.008539012633264065, - 0.3445882797241211, - 0.00735535379499197, - 0.48123133182525635 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 24033271808, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6458242535591125, - "y_min": 0.5753597021102905, - "x_max": 0.6868898272514343, - "y_max": 0.6598989963531494 - }, - "confidence": 0.9999994039535522, - "label_id": 1 - }, - "h": 92, - "w": 79, - "x": 1240, - "y": 621 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14465510845184326, - "y_min": 0.5532053112983704, - "x_max": 0.18023008108139038, - "y_max": 0.6367111802101135 - }, - "confidence": 0.7354252338409424, - "label_id": 1 - }, - "h": 91, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999994039535522, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.13476575911045074, - 0.6051898002624512, - 0.03160900995135307, - 0.002475549466907978, - 0.22595977783203125 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7354252338409424, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.16988225281238556, - 0.01060472708195448, - 0.3451573848724365, - 0.007387659512460232, - 0.4669681489467621 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 24066605056, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6455864906311035, - "y_min": 0.5754773616790771, - "x_max": 0.6869088411331177, - "y_max": 0.6601748466491699 - }, - "confidence": 0.9999995231628418, - "label_id": 1 - }, - "h": 91, - "w": 79, - "x": 1240, - "y": 622 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14457350969314575, - "y_min": 0.5532492399215698, - "x_max": 0.18024057149887085, - "y_max": 0.6367313861846924 - }, - "confidence": 0.7377609014511108, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999995231628418, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.14152227342128754, - 0.6366333961486816, - 0.0397871769964695, - 0.0017228677170351148, - 0.18033429980278015 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7377609014511108, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.19615863263607025, - 0.010778624564409256, - 0.291462779045105, - 0.0070364936254918575, - 0.49456343054771423 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 24099938304, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6454786062240601, - "y_min": 0.57598477602005, - "x_max": 0.6867308616638184, - "y_max": 0.6604889035224915 - }, - "confidence": 0.9999995231628418, - "label_id": 1 - }, - "h": 91, - "w": 80, - "x": 1239, - "y": 622 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1446569561958313, - "y_min": 0.5529336333274841, - "x_max": 0.18026727437973022, - "y_max": 0.6367664933204651 - }, - "confidence": 0.73814857006073, - "label_id": 1 - }, - "h": 91, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999995231628418, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.12049351632595062, - 0.5663674473762512, - 0.05138445645570755, - 0.002089443150907755, - 0.25966519117355347 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.73814857006073, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.20891310274600983, - 0.012254108674824238, - 0.31332528591156006, - 0.006863789167255163, - 0.45864367485046387 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 24133271552, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6454327702522278, - "y_min": 0.5760751366615295, - "x_max": 0.6868636012077332, - "y_max": 0.6607221961021423 - }, - "confidence": 0.9999991655349731, - "label_id": 1 - }, - "h": 92, - "w": 80, - "x": 1239, - "y": 622 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.144745871424675, - "y_min": 0.5528836250305176, - "x_max": 0.1804346889257431, - "y_max": 0.6369900703430176 - }, - "confidence": 0.7405028343200684, - "label_id": 1 - }, - "h": 91, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999991655349731, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.16196757555007935, - 0.5149182677268982, - 0.0522189661860466, - 0.0025625634007155895, - 0.2683326303958893 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7405028343200684, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.20486606657505035, - 0.01008603349328041, - 0.29200878739356995, - 0.006698196288198233, - 0.48634088039398193 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 24166604800, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6456308364868164, - "y_min": 0.5761774182319641, - "x_max": 0.6868712902069092, - "y_max": 0.6608113646507263 - }, - "confidence": 0.9999990463256836, - "label_id": 1 - }, - "h": 92, - "w": 79, - "x": 1240, - "y": 622 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14475469291210175, - "y_min": 0.5530391335487366, - "x_max": 0.18049867451190948, - "y_max": 0.6371006369590759 - }, - "confidence": 0.7362222075462341, - "label_id": 1 - }, - "h": 91, - "w": 69, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999990463256836, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.14198733866214752, - 0.4654122591018677, - 0.05843731015920639, - 0.0019757563713937998, - 0.33218732476234436 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7362222075462341, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23357553780078888, - 0.014178399927914143, - 0.29279905557632446, - 0.006595876067876816, - 0.45285114645957947 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 24199938048, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6454685926437378, - "y_min": 0.5764835476875305, - "x_max": 0.6867260932922363, - "y_max": 0.6609633564949036 - }, - "confidence": 0.9999990463256836, - "label_id": 1 - }, - "h": 91, - "w": 80, - "x": 1239, - "y": 623 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14474865794181824, - "y_min": 0.5529777407646179, - "x_max": 0.18045315146446228, - "y_max": 0.6369801163673401 - }, - "confidence": 0.7406508326530457, - "label_id": 1 - }, - "h": 91, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999990463256836, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.17382466793060303, - 0.4177843928337097, - 0.07594157755374908, - 0.001782805658876896, - 0.33066660165786743 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7406508326530457, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23859846591949463, - 0.0175384022295475, - 0.2915942370891571, - 0.007178359664976597, - 0.44509056210517883 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 24233271296, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6453641653060913, - "y_min": 0.5766482353210449, - "x_max": 0.686630129814148, - "y_max": 0.6612609624862671 - }, - "confidence": 0.9999991655349731, - "label_id": 1 - }, - "h": 91, - "w": 79, - "x": 1239, - "y": 623 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14478252828121185, - "y_min": 0.5531892776489258, - "x_max": 0.18036766350269318, - "y_max": 0.6366233825683594 - }, - "confidence": 0.7318209409713745, - "label_id": 1 - }, - "h": 91, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999991655349731, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.13412196934223175, - 0.5276030898094177, - 0.0680520236492157, - 0.0015920886071398854, - 0.26863086223602295 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7318209409713745, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.25086450576782227, - 0.019061166793107986, - 0.28539136052131653, - 0.00692672049626708, - 0.43775615096092224 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 24266604544, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6453675031661987, - "y_min": 0.5766299962997437, - "x_max": 0.6866542100906372, - "y_max": 0.6611871719360352 - }, - "confidence": 0.9999994039535522, - "label_id": 1 - }, - "h": 91, - "w": 79, - "x": 1239, - "y": 623 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1447303742170334, - "y_min": 0.5534701347351074, - "x_max": 0.18023563921451569, - "y_max": 0.6367491483688354 - }, - "confidence": 0.7337177991867065, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999994039535522, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.12262117862701416, - 0.5309663414955139, - 0.068463996052742, - 0.0017142464639618993, - 0.2762341797351837 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7337177991867065, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2459937483072281, - 0.020342105999588966, - 0.2623906135559082, - 0.006135189905762672, - 0.46513840556144714 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 24299937792, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6451216340065002, - "y_min": 0.5764162540435791, - "x_max": 0.6867515444755554, - "y_max": 0.6614987850189209 - }, - "confidence": 0.9999995231628418, - "label_id": 1 - }, - "h": 91, - "w": 80, - "x": 1239, - "y": 623 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14480796456336975, - "y_min": 0.5534693002700806, - "x_max": 0.18028205633163452, - "y_max": 0.6368334293365479 - }, - "confidence": 0.7334271669387817, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999995231628418, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.12275052070617676, - 0.5448706746101379, - 0.05960680916905403, - 0.002182776341214776, - 0.270589143037796 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7334271669387817, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2645873427391052, - 0.022438757121562958, - 0.241269052028656, - 0.00674063665792346, - 0.46496427059173584 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 24333271040, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6453801393508911, - "y_min": 0.576665461063385, - "x_max": 0.6866798400878906, - "y_max": 0.6611126065254211 - }, - "confidence": 0.9999992847442627, - "label_id": 1 - }, - "h": 91, - "w": 79, - "x": 1239, - "y": 623 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1448211669921875, - "y_min": 0.5533838868141174, - "x_max": 0.18033498525619507, - "y_max": 0.6369453072547913 - }, - "confidence": 0.7360857725143433, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999992847442627, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.08909886330366135, - 0.6027344465255737, - 0.06532036513090134, - 0.0023332592099905014, - 0.24051310122013092 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7360857725143433, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2743085026741028, - 0.022569946944713593, - 0.242428719997406, - 0.006539746653288603, - 0.45415303111076355 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 24366604288, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6452323198318481, - "y_min": 0.5762244462966919, - "x_max": 0.6866500377655029, - "y_max": 0.6616902351379395 - }, - "confidence": 0.9999992847442627, - "label_id": 1 - }, - "h": 93, - "w": 79, - "x": 1239, - "y": 622 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14484916627407074, - "y_min": 0.5533267855644226, - "x_max": 0.18042241036891937, - "y_max": 0.6370710730552673 - }, - "confidence": 0.7357486486434937, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999992847442627, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.08870016038417816, - 0.5599043965339661, - 0.07082152366638184, - 0.0022410680539906025, - 0.2783328890800476 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7357486486434937, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2761906385421753, - 0.02252473495900631, - 0.2372637391090393, - 0.006271456368267536, - 0.4577494263648987 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 24399937536, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.645097553730011, - "y_min": 0.5760510563850403, - "x_max": 0.6867914795875549, - "y_max": 0.6615888476371765 - }, - "confidence": 0.9999992847442627, - "label_id": 1 - }, - "h": 93, - "w": 80, - "x": 1239, - "y": 622 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14484499394893646, - "y_min": 0.5535678863525391, - "x_max": 0.18035803735256195, - "y_max": 0.637151837348938 - }, - "confidence": 0.7248148918151855, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999992847442627, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.08230993896722794, - 0.6940256953239441, - 0.04809553548693657, - 0.002587995957583189, - 0.17298083007335663 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7248148918151855, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2786492705345154, - 0.020276818424463272, - 0.24086523056030273, - 0.007147613447159529, - 0.45306113362312317 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 24433270784, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6450029611587524, - "y_min": 0.5758575797080994, - "x_max": 0.6866897344589233, - "y_max": 0.6610834002494812 - }, - "confidence": 0.9999994039535522, - "label_id": 1 - }, - "h": 92, - "w": 80, - "x": 1238, - "y": 622 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14476846158504486, - "y_min": 0.5534148812294006, - "x_max": 0.1803758591413498, - "y_max": 0.6372520327568054 - }, - "confidence": 0.7404493093490601, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999994039535522, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.05280439555644989, - 0.6856631636619568, - 0.06374351680278778, - 0.003456820733845234, - 0.1943320780992508 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7404493093490601, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.24703824520111084, - 0.019303010776638985, - 0.2841801643371582, - 0.008416755124926567, - 0.4410618543624878 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 24466604032, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6449927091598511, - "y_min": 0.5760117173194885, - "x_max": 0.6866328716278076, - "y_max": 0.6610826849937439 - }, - "confidence": 0.9999995231628418, - "label_id": 1 - }, - "h": 92, - "w": 80, - "x": 1238, - "y": 622 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14480918645858765, - "y_min": 0.553356409072876, - "x_max": 0.18023541569709778, - "y_max": 0.6370935440063477 - }, - "confidence": 0.7390424013137817, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999995231628418, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.052388254553079605, - 0.6806324124336243, - 0.06465333700180054, - 0.0032395292073488235, - 0.19908647239208221 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7390424013137817, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23022571206092834, - 0.017662229016423225, - 0.3028816878795624, - 0.008893286809325218, - 0.44033703207969666 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 24499937280, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.645087480545044, - "y_min": 0.575969398021698, - "x_max": 0.6865397691726685, - "y_max": 0.660573422908783 - }, - "confidence": 0.9999996423721313, - "label_id": 1 - }, - "h": 91, - "w": 79, - "x": 1239, - "y": 622 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1447647213935852, - "y_min": 0.5533031821250916, - "x_max": 0.18026024103164673, - "y_max": 0.6369238495826721 - }, - "confidence": 0.7367768883705139, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999996423721313, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.044671230018138885, - 0.6450851559638977, - 0.07567979395389557, - 0.0027187976520508528, - 0.23184500634670258 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7367768883705139, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.22870294749736786, - 0.02320075035095215, - 0.31263595819473267, - 0.010873892344534397, - 0.42458656430244446 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 24533270528, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6450281143188477, - "y_min": 0.5759896039962769, - "x_max": 0.6862609386444092, - "y_max": 0.6605713367462158 - }, - "confidence": 0.9999995231628418, - "label_id": 1 - }, - "h": 91, - "w": 80, - "x": 1238, - "y": 622 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1448172926902771, - "y_min": 0.5531070232391357, - "x_max": 0.18007299304008484, - "y_max": 0.6366293430328369 - }, - "confidence": 0.7403481602668762, - "label_id": 1 - }, - "h": 91, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999995231628418, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.03984793275594711, - 0.7275034785270691, - 0.06040632724761963, - 0.0029960989486426115, - 0.169246107339859 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7403481602668762, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.21452762186527252, - 0.022126371040940285, - 0.34755846858024597, - 0.010636713355779648, - 0.4051509201526642 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 24566603776, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6448854804039001, - "y_min": 0.5762043595314026, - "x_max": 0.6860564351081848, - "y_max": 0.6606099009513855 - }, - "confidence": 0.9999994039535522, - "label_id": 1 - }, - "h": 91, - "w": 79, - "x": 1238, - "y": 622 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14485099911689758, - "y_min": 0.5530593991279602, - "x_max": 0.180190771818161, - "y_max": 0.6364896893501282 - }, - "confidence": 0.7436407208442688, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999994039535522, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.03697700798511505, - 0.7377796769142151, - 0.06099902465939522, - 0.002803055802360177, - 0.16144119203090668 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7436407208442688, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.20895442366600037, - 0.021081823855638504, - 0.32166990637779236, - 0.01209425088018179, - 0.4361995756626129 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 24599937024, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6445766687393188, - "y_min": 0.5763856768608093, - "x_max": 0.685821533203125, - "y_max": 0.660668671131134 - }, - "confidence": 0.9999994039535522, - "label_id": 1 - }, - "h": 92, - "w": 79, - "x": 1238, - "y": 622 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14483654499053955, - "y_min": 0.5530719757080078, - "x_max": 0.18036943674087524, - "y_max": 0.6369283199310303 - }, - "confidence": 0.7438915967941284, - "label_id": 1 - }, - "h": 91, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999994039535522, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.028066683560609818, - 0.7796162962913513, - 0.0644669383764267, - 0.0026750050019472837, - 0.12517501413822174 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7438915967941284, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.20803803205490112, - 0.02277325466275215, - 0.3123442232608795, - 0.009595487266778946, - 0.44724902510643005 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 24633270272, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6444990634918213, - "y_min": 0.5764513611793518, - "x_max": 0.6856069564819336, - "y_max": 0.6606438755989075 - }, - "confidence": 0.9999994039535522, - "label_id": 1 - }, - "h": 90, - "w": 79, - "x": 1237, - "y": 623 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14479930698871613, - "y_min": 0.5533041954040527, - "x_max": 0.18032054603099823, - "y_max": 0.6368541717529297 - }, - "confidence": 0.7435073852539062, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999994039535522, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.03132454678416252, - 0.7787542343139648, - 0.0719086155295372, - 0.0026708014775067568, - 0.11534185707569122 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7435073852539062, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.22810661792755127, - 0.025482267141342163, - 0.2847125828266144, - 0.009119577705860138, - 0.45257896184921265 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 24666603520, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6444798111915588, - "y_min": 0.5769840478897095, - "x_max": 0.6853794455528259, - "y_max": 0.6605443954467773 - }, - "confidence": 0.9999992847442627, - "label_id": 1 - }, - "h": 90, - "w": 79, - "x": 1237, - "y": 623 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14478716254234314, - "y_min": 0.5532532930374146, - "x_max": 0.18026146292686462, - "y_max": 0.636924147605896 - }, - "confidence": 0.7393099665641785, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999992847442627, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.03126981109380722, - 0.8165113925933838, - 0.06204785406589508, - 0.0026590374764055014, - 0.08751194179058075 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7393099665641785, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23097145557403564, - 0.022271886467933655, - 0.28923559188842773, - 0.008902356959879398, - 0.44861865043640137 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 24699936768, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.644854724407196, - "y_min": 0.5775066614151001, - "x_max": 0.6855737566947937, - "y_max": 0.6603140830993652 - }, - "confidence": 0.999998927116394, - "label_id": 1 - }, - "h": 89, - "w": 78, - "x": 1238, - "y": 624 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1448555439710617, - "y_min": 0.5531498193740845, - "x_max": 0.18028055131435394, - "y_max": 0.6366415023803711 - }, - "confidence": 0.7396106123924255, - "label_id": 1 - }, - "h": 91, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.999998927116394, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.029193788766860962, - 0.736828088760376, - 0.09747776389122009, - 0.0018816684605553746, - 0.13461869955062866 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7396106123924255, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2021665722131729, - 0.016123570501804352, - 0.32397639751434326, - 0.009128634817898273, - 0.44860485196113586 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 24733270016, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6450462937355042, - "y_min": 0.5774427056312561, - "x_max": 0.6859337687492371, - "y_max": 0.6608731150627136 - }, - "confidence": 0.9999990463256836, - "label_id": 1 - }, - "h": 90, - "w": 79, - "x": 1238, - "y": 624 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14483532309532166, - "y_min": 0.5532678961753845, - "x_max": 0.18021175265312195, - "y_max": 0.6367598176002502 - }, - "confidence": 0.7386258840560913, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999990463256836, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.03633468225598335, - 0.6972830891609192, - 0.09589666873216629, - 0.0025743795558810234, - 0.16791114211082458 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7386258840560913, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.22781352698802948, - 0.01987377740442753, - 0.2754581868648529, - 0.007451885845512152, - 0.4694027006626129 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 24766603264, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6450918912887573, - "y_min": 0.5777469277381897, - "x_max": 0.6857264041900635, - "y_max": 0.6604871153831482 - }, - "confidence": 0.9999990463256836, - "label_id": 1 - }, - "h": 89, - "w": 78, - "x": 1239, - "y": 624 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14491496980190277, - "y_min": 0.5533609986305237, - "x_max": 0.18025507032871246, - "y_max": 0.636603057384491 - }, - "confidence": 0.7390890717506409, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999990463256836, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.04614417999982834, - 0.6245939135551453, - 0.09782575070858002, - 0.0026784040965139866, - 0.22875772416591644 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7390890717506409, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.22764913737773895, - 0.018677739426493645, - 0.2749074101448059, - 0.007108137011528015, - 0.47165757417678833 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 24799936512, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6455695629119873, - "y_min": 0.5785857439041138, - "x_max": 0.685915470123291, - "y_max": 0.6611050367355347 - }, - "confidence": 0.9999984502792358, - "label_id": 1 - }, - "h": 89, - "w": 78, - "x": 1239, - "y": 625 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14482465386390686, - "y_min": 0.5534840226173401, - "x_max": 0.18018782138824463, - "y_max": 0.6364724040031433 - }, - "confidence": 0.7237282991409302, - "label_id": 1 - }, - "h": 89, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999984502792358, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.050093624740839005, - 0.7345452904701233, - 0.07353711128234863, - 0.0026168322656303644, - 0.13920705020427704 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7237282991409302, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.19969028234481812, - 0.012012019753456116, - 0.33023396134376526, - 0.0076393913477659225, - 0.4504244327545166 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 24833269760, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6455331444740295, - "y_min": 0.5778833627700806, - "x_max": 0.6861444115638733, - "y_max": 0.6606593132019043 - }, - "confidence": 0.9999992847442627, - "label_id": 1 - }, - "h": 90, - "w": 78, - "x": 1239, - "y": 624 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1448957771062851, - "y_min": 0.5533859729766846, - "x_max": 0.1802169233560562, - "y_max": 0.6365758180618286 - }, - "confidence": 0.724073052406311, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999992847442627, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.060876548290252686, - 0.65379798412323, - 0.09646597504615784, - 0.0026381411589682102, - 0.18622136116027832 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.724073052406311, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.21971437335014343, - 0.012112134136259556, - 0.28163257241249084, - 0.006650166120380163, - 0.4798906743526459 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 24866603008, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6457579731941223, - "y_min": 0.5772890448570251, - "x_max": 0.686348021030426, - "y_max": 0.661235511302948 - }, - "confidence": 0.9999995231628418, - "label_id": 1 - }, - "h": 91, - "w": 78, - "x": 1240, - "y": 623 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14493827521800995, - "y_min": 0.5535036325454712, - "x_max": 0.18027029931545258, - "y_max": 0.6365602016448975 - }, - "confidence": 0.7331933975219727, - "label_id": 1 - }, - "h": 89, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999995231628418, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.07819920033216476, - 0.5537350177764893, - 0.06654700636863708, - 0.0026048324070870876, - 0.29891401529312134 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7331933975219727, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.20312874019145966, - 0.008638331666588783, - 0.2851734757423401, - 0.006404395680874586, - 0.49665510654449463 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 24899936256, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6457821130752563, - "y_min": 0.5772293210029602, - "x_max": 0.6864192485809326, - "y_max": 0.6612444519996643 - }, - "confidence": 0.9999995231628418, - "label_id": 1 - }, - "h": 91, - "w": 78, - "x": 1240, - "y": 623 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14502543210983276, - "y_min": 0.5534251928329468, - "x_max": 0.18032419681549072, - "y_max": 0.6365586519241333 - }, - "confidence": 0.7308268547058105, - "label_id": 1 - }, - "h": 89, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999995231628418, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.11884940415620804, - 0.3769562244415283, - 0.08077815920114517, - 0.0027926950715482235, - 0.4206235110759735 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7308268547058105, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.19919873774051666, - 0.00828210636973381, - 0.2831268310546875, - 0.006503712851554155, - 0.502888560295105 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 24933269504, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6458687782287598, - "y_min": 0.5778133869171143, - "x_max": 0.686805248260498, - "y_max": 0.6616250276565552 - }, - "confidence": 0.9999995231628418, - "label_id": 1 - }, - "h": 91, - "w": 79, - "x": 1240, - "y": 624 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14495770633220673, - "y_min": 0.5533885955810547, - "x_max": 0.18030790984630585, - "y_max": 0.6371665000915527 - }, - "confidence": 0.7322882413864136, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999995231628418, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.11916455626487732, - 0.33548471331596375, - 0.08613986521959305, - 0.0024208007380366325, - 0.45679011940956116 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7322882413864136, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.18278947472572327, - 0.005827942863106728, - 0.26062002778053284, - 0.00489794323220849, - 0.5458645224571228 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 24966602752, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6460837125778198, - "y_min": 0.5787678956985474, - "x_max": 0.6871803998947144, - "y_max": 0.6619408130645752 - }, - "confidence": 0.9999995231628418, - "label_id": 1 - }, - "h": 90, - "w": 79, - "x": 1240, - "y": 625 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14494402706623077, - "y_min": 0.55345618724823, - "x_max": 0.180320605635643, - "y_max": 0.6372203826904297 - }, - "confidence": 0.7318937182426453, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999995231628418, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.13225869834423065, - 0.36201781034469604, - 0.09305715560913086, - 0.0028353051748126745, - 0.4098309874534607 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7318937182426453, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.17889344692230225, - 0.006023318972438574, - 0.2688567638397217, - 0.005204770248383284, - 0.5410217046737671 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 24999936000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6459569334983826, - "y_min": 0.5795925855636597, - "x_max": 0.687027633190155, - "y_max": 0.6611754894256592 - }, - "confidence": 0.9999992847442627, - "label_id": 1 - }, - "h": 88, - "w": 79, - "x": 1240, - "y": 626 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14446523785591125, - "y_min": 0.553267240524292, - "x_max": 0.18002411723136902, - "y_max": 0.6382590532302856 - }, - "confidence": 0.7017809152603149, - "label_id": 1 - }, - "h": 91, - "w": 69, - "x": 277, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999992847442627, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23813943564891815, - 0.3277628421783447, - 0.08101316541433334, - 0.0025719646364450455, - 0.35051265358924866 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7017809152603149, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.20760835707187653, - 0.007854806259274483, - 0.20813405513763428, - 0.006047196686267853, - 0.5703555941581726 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 25033269248, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6463270783424377, - "y_min": 0.5800978541374207, - "x_max": 0.6869744658470154, - "y_max": 0.6612686514854431 - }, - "confidence": 0.9999985694885254, - "label_id": 1 - }, - "h": 87, - "w": 78, - "x": 1241, - "y": 627 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14448225498199463, - "y_min": 0.5535465478897095, - "x_max": 0.17997774481773376, - "y_max": 0.6376758813858032 - }, - "confidence": 0.6936360597610474, - "label_id": 1 - }, - "h": 91, - "w": 69, - "x": 277, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999985694885254, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.18564116954803467, - 0.3708053231239319, - 0.08074826747179031, - 0.0032855630852282047, - 0.3595196604728699 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6936360597610474, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.20162533223628998, - 0.00606905110180378, - 0.1872442066669464, - 0.005919783841818571, - 0.5991415977478027 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 25066602496, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.646554172039032, - "y_min": 0.580357015132904, - "x_max": 0.6871456503868103, - "y_max": 0.6612806916236877 - }, - "confidence": 0.9999973773956299, - "label_id": 1 - }, - "h": 87, - "w": 78, - "x": 1241, - "y": 627 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.144663468003273, - "y_min": 0.5534511208534241, - "x_max": 0.18009693920612335, - "y_max": 0.6379618048667908 - }, - "confidence": 0.7037975788116455, - "label_id": 1 - }, - "h": 91, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999973773956299, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2297956794500351, - 0.24819253385066986, - 0.0913129448890686, - 0.00526433764025569, - 0.42543452978134155 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7037975788116455, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.22092093527317047, - 0.007463781628757715, - 0.1811124086380005, - 0.005827644374221563, - 0.5846753120422363 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 25099935744, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6465446352958679, - "y_min": 0.5806772112846375, - "x_max": 0.6871350407600403, - "y_max": 0.6614239811897278 - }, - "confidence": 0.9999970197677612, - "label_id": 1 - }, - "h": 87, - "w": 78, - "x": 1241, - "y": 627 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14468491077423096, - "y_min": 0.5532963275909424, - "x_max": 0.17997902631759644, - "y_max": 0.6377884149551392 - }, - "confidence": 0.7085011601448059, - "label_id": 1 - }, - "h": 91, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999970197677612, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.21256045997142792, - 0.2838396430015564, - 0.10253416746854782, - 0.011216551996767521, - 0.38984912633895874 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7085011601448059, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.22337910532951355, - 0.006970551330596209, - 0.150226891040802, - 0.004888318013399839, - 0.6145350933074951 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 25133268992, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6464396715164185, - "y_min": 0.5801693201065063, - "x_max": 0.687175989151001, - "y_max": 0.6618411540985107 - }, - "confidence": 0.9999974966049194, - "label_id": 1 - }, - "h": 88, - "w": 78, - "x": 1241, - "y": 627 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1446455866098404, - "y_min": 0.5531821846961975, - "x_max": 0.180083766579628, - "y_max": 0.6377198100090027 - }, - "confidence": 0.7207891941070557, - "label_id": 1 - }, - "h": 92, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999974966049194, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2848794162273407, - 0.19685542583465576, - 0.12511584162712097, - 0.009484423324465752, - 0.38366490602493286 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7207891941070557, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.27356478571891785, - 0.009255043230950832, - 0.1478404551744461, - 0.008112016133964062, - 0.5612276792526245 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 25166602240, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6465229392051697, - "y_min": 0.5801268815994263, - "x_max": 0.6871022582054138, - "y_max": 0.6617375612258911 - }, - "confidence": 0.9999970197677612, - "label_id": 1 - }, - "h": 88, - "w": 78, - "x": 1241, - "y": 627 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14473621547222137, - "y_min": 0.552914023399353, - "x_max": 0.1803053766489029, - "y_max": 0.6374731063842773 - }, - "confidence": 0.726044774055481, - "label_id": 1 - }, - "h": 91, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999970197677612, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.24782411754131317, - 0.23951366543769836, - 0.12989333271980286, - 0.013389073312282562, - 0.3693799078464508 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.726044774055481, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.21905602514743805, - 0.007083641365170479, - 0.16042622923851013, - 0.007306600920855999, - 0.6061274409294128 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 25199935488, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6465905904769897, - "y_min": 0.5802156925201416, - "x_max": 0.6872614622116089, - "y_max": 0.6620038747787476 - }, - "confidence": 0.9999972581863403, - "label_id": 1 - }, - "h": 88, - "w": 79, - "x": 1241, - "y": 627 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1447989046573639, - "y_min": 0.5531129240989685, - "x_max": 0.18055954575538635, - "y_max": 0.6370691657066345 - }, - "confidence": 0.727611243724823, - "label_id": 1 - }, - "h": 91, - "w": 69, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999972581863403, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.20762668550014496, - 0.22553937137126923, - 0.11996527761220932, - 0.026832712814211845, - 0.4200359880924225 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.727611243724823, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.21675409376621246, - 0.007716130930930376, - 0.18343043327331543, - 0.00587485870346427, - 0.5862244367599487 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 25233268736, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6467083096504211, - "y_min": 0.580237090587616, - "x_max": 0.6870891451835632, - "y_max": 0.6617231965065002 - }, - "confidence": 0.9999972581863403, - "label_id": 1 - }, - "h": 88, - "w": 77, - "x": 1242, - "y": 627 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14474649727344513, - "y_min": 0.5532557368278503, - "x_max": 0.18040011823177338, - "y_max": 0.6365430951118469 - }, - "confidence": 0.719752848148346, - "label_id": 1 - }, - "h": 89, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999972581863403, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.18010832369327545, - 0.18012340366840363, - 0.12611038982868195, - 0.015659112483263016, - 0.4979987144470215 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.719752848148346, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.13712993264198303, - 0.005225692875683308, - 0.16968126595020294, - 0.004561963025480509, - 0.6834011077880859 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 25266601984, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.646905779838562, - "y_min": 0.5800217986106873, - "x_max": 0.6869544982910156, - "y_max": 0.6614564061164856 - }, - "confidence": 0.9999971389770508, - "label_id": 1 - }, - "h": 88, - "w": 77, - "x": 1242, - "y": 626 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14478786289691925, - "y_min": 0.553144097328186, - "x_max": 0.1803959161043167, - "y_max": 0.6365087032318115 - }, - "confidence": 0.7221001982688904, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999971389770508, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.19482459127902985, - 0.09406428039073944, - 0.14874552190303802, - 0.018778720870614052, - 0.5435869097709656 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7221001982688904, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1564418226480484, - 0.004927850794047117, - 0.18657827377319336, - 0.006041045766323805, - 0.6460109949111938 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 25299935232, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6466748714447021, - "y_min": 0.5804378986358643, - "x_max": 0.686969518661499, - "y_max": 0.6619404554367065 - }, - "confidence": 0.9999977350234985, - "label_id": 1 - }, - "h": 88, - "w": 77, - "x": 1242, - "y": 627 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1449451595544815, - "y_min": 0.5532568097114563, - "x_max": 0.18046067655086517, - "y_max": 0.635734498500824 - }, - "confidence": 0.7099334001541138, - "label_id": 1 - }, - "h": 89, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999977350234985, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.19160151481628418, - 0.12090229988098145, - 0.11958547681570053, - 0.012868118472397327, - 0.5550425052642822 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7099334001541138, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.13322606682777405, - 0.005113841965794563, - 0.1691068857908249, - 0.004423605743795633, - 0.6881295442581177 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 25333268480, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6466671824455261, - "y_min": 0.5805710554122925, - "x_max": 0.6868796944618225, - "y_max": 0.6619216203689575 - }, - "confidence": 0.9999967813491821, - "label_id": 1 - }, - "h": 88, - "w": 77, - "x": 1242, - "y": 627 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1449560672044754, - "y_min": 0.5531241297721863, - "x_max": 0.1806519776582718, - "y_max": 0.6356068253517151 - }, - "confidence": 0.7150636315345764, - "label_id": 1 - }, - "h": 89, - "w": 69, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999967813491821, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.20282316207885742, - 0.1257825642824173, - 0.13693253695964813, - 0.011048402637243271, - 0.523413360118866 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7150636315345764, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1708282232284546, - 0.005597293376922607, - 0.18592944741249084, - 0.004576082807034254, - 0.6330690383911133 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 25366601728, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6465755105018616, - "y_min": 0.5808272957801819, - "x_max": 0.6867256760597229, - "y_max": 0.6619054675102234 - }, - "confidence": 0.9999969005584717, - "label_id": 1 - }, - "h": 88, - "w": 78, - "x": 1241, - "y": 627 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14507298171520233, - "y_min": 0.552937388420105, - "x_max": 0.18079300224781036, - "y_max": 0.6354310512542725 - }, - "confidence": 0.7103676199913025, - "label_id": 1 - }, - "h": 89, - "w": 68, - "x": 279, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999969005584717, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.21136833727359772, - 0.11160561442375183, - 0.1285768300294876, - 0.01046671997755766, - 0.5379825234413147 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7103676199913025, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.19989673793315887, - 0.0072877900674939156, - 0.17641137540340424, - 0.0054889852181077, - 0.6109150648117065 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 25399934976, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6466168761253357, - "y_min": 0.5807734727859497, - "x_max": 0.6866492629051208, - "y_max": 0.662211537361145 - }, - "confidence": 0.9999973773956299, - "label_id": 1 - }, - "h": 88, - "w": 76, - "x": 1242, - "y": 627 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14516040682792664, - "y_min": 0.5527309775352478, - "x_max": 0.18081489205360413, - "y_max": 0.6352006793022156 - }, - "confidence": 0.6993099451065063, - "label_id": 1 - }, - "h": 89, - "w": 68, - "x": 279, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999973773956299, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.19340366125106812, - 0.08648490160703659, - 0.1493530571460724, - 0.0060052452608942986, - 0.5647531747817993 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6993099451065063, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1982005536556244, - 0.007837013341486454, - 0.1844126433134079, - 0.005721257999539375, - 0.6038285493850708 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 25433268224, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6467083692550659, - "y_min": 0.5806366205215454, - "x_max": 0.6867016553878784, - "y_max": 0.6620692014694214 - }, - "confidence": 0.9999971389770508, - "label_id": 1 - }, - "h": 88, - "w": 76, - "x": 1242, - "y": 627 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1451110988855362, - "y_min": 0.5525628328323364, - "x_max": 0.18089111149311066, - "y_max": 0.6347440481185913 - }, - "confidence": 0.6962380409240723, - "label_id": 1 - }, - "h": 89, - "w": 68, - "x": 279, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999971389770508, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1922747939825058, - 0.09807392954826355, - 0.14833775162696838, - 0.005210239440202713, - 0.5561032891273499 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6962380409240723, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2084764838218689, - 0.008089954033493996, - 0.16688816249370575, - 0.0053988294675946236, - 0.6111465692520142 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 25466601472, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6469910740852356, - "y_min": 0.5807703733444214, - "x_max": 0.686603844165802, - "y_max": 0.6618150472640991 - }, - "confidence": 0.9999959468841553, - "label_id": 1 - }, - "h": 88, - "w": 76, - "x": 1242, - "y": 627 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14498355984687805, - "y_min": 0.5525528192520142, - "x_max": 0.1809777021408081, - "y_max": 0.6347250938415527 - }, - "confidence": 0.6988731622695923, - "label_id": 1 - }, - "h": 89, - "w": 69, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999959468841553, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.19516561925411224, - 0.12127424776554108, - 0.15559571981430054, - 0.005280301906168461, - 0.5226841568946838 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6988731622695923, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.21116644144058228, - 0.009136680513620377, - 0.16167868673801422, - 0.005598226096481085, - 0.6124199032783508 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 25499934720, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6471133828163147, - "y_min": 0.5807814598083496, - "x_max": 0.6866844296455383, - "y_max": 0.6618608236312866 - }, - "confidence": 0.9999934434890747, - "label_id": 1 - }, - "h": 88, - "w": 76, - "x": 1242, - "y": 627 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14501067996025085, - "y_min": 0.5527016520500183, - "x_max": 0.18099740147590637, - "y_max": 0.6348281502723694 - }, - "confidence": 0.7030957341194153, - "label_id": 1 - }, - "h": 89, - "w": 70, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999934434890747, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.18282334506511688, - 0.13492637872695923, - 0.1599605679512024, - 0.005932151805609465, - 0.5163576006889343 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7030957341194153, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2337421327829361, - 0.010478226467967033, - 0.16819603741168976, - 0.005560148507356644, - 0.5820233225822449 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 25533267968, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6471267938613892, - "y_min": 0.580839991569519, - "x_max": 0.686582088470459, - "y_max": 0.6614794731140137 - }, - "confidence": 0.9999912977218628, - "label_id": 1 - }, - "h": 87, - "w": 76, - "x": 1242, - "y": 627 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14498093724250793, - "y_min": 0.5527424812316895, - "x_max": 0.18093720078468323, - "y_max": 0.6347033977508545 - }, - "confidence": 0.6971009373664856, - "label_id": 1 - }, - "h": 88, - "w": 69, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999912977218628, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.17309126257896423, - 0.192796990275383, - 0.14333565533161163, - 0.006548167672008276, - 0.4842280149459839 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6971009373664856, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2471936196088791, - 0.012468461878597736, - 0.14679329097270966, - 0.00586745236068964, - 0.5876771807670593 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 25566601216, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6467874050140381, - "y_min": 0.5807982087135315, - "x_max": 0.6865837574005127, - "y_max": 0.6622180342674255 - }, - "confidence": 0.9999939203262329, - "label_id": 1 - }, - "h": 88, - "w": 76, - "x": 1242, - "y": 627 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1450343281030655, - "y_min": 0.5527185201644897, - "x_max": 0.18090005218982697, - "y_max": 0.6353212594985962 - }, - "confidence": 0.7121544480323792, - "label_id": 1 - }, - "h": 89, - "w": 69, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999939203262329, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.11867387592792511, - 0.28292468190193176, - 0.14252083003520966, - 0.005645746365189552, - 0.4502348005771637 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7121544480323792, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.24376781284809113, - 0.010522550903260708, - 0.15672017633914948, - 0.0058333841152489185, - 0.5831560492515564 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 25599934464, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6466651558876038, - "y_min": 0.5811722874641418, - "x_max": 0.6862781643867493, - "y_max": 0.6622961163520813 - }, - "confidence": 0.9999920129776001, - "label_id": 1 - }, - "h": 87, - "w": 76, - "x": 1242, - "y": 628 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1448313593864441, - "y_min": 0.5528616905212402, - "x_max": 0.18120837211608887, - "y_max": 0.6357183456420898 - }, - "confidence": 0.7191494703292847, - "label_id": 1 - }, - "h": 90, - "w": 70, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999920129776001, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.08614248037338257, - 0.5968927145004272, - 0.08976896852254868, - 0.005697009619325399, - 0.2214987725019455 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7191494703292847, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23986035585403442, - 0.00949305109679699, - 0.15952275693416595, - 0.005313679110258818, - 0.5858100652694702 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 25633267712, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6463935375213623, - "y_min": 0.5812530517578125, - "x_max": 0.6863008737564087, - "y_max": 0.6626313924789429 - }, - "confidence": 0.9999951124191284, - "label_id": 1 - }, - "h": 88, - "w": 77, - "x": 1241, - "y": 628 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14471794664859772, - "y_min": 0.5529974699020386, - "x_max": 0.18122218549251556, - "y_max": 0.6360651254653931 - }, - "confidence": 0.7200387716293335, - "label_id": 1 - }, - "h": 90, - "w": 70, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999951124191284, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.12687835097312927, - 0.4909754991531372, - 0.12499810010194778, - 0.003769116709008813, - 0.25337883830070496 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7200387716293335, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23260945081710815, - 0.008829166181385517, - 0.15526817739009857, - 0.00554943922907114, - 0.597743809223175 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 25666600960, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6461783647537231, - "y_min": 0.5812191963195801, - "x_max": 0.6862704753875732, - "y_max": 0.6630845069885254 - }, - "confidence": 0.9999957084655762, - "label_id": 1 - }, - "h": 88, - "w": 77, - "x": 1241, - "y": 628 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14449331164360046, - "y_min": 0.5528849959373474, - "x_max": 0.1812608540058136, - "y_max": 0.635845959186554 - }, - "confidence": 0.7159767746925354, - "label_id": 1 - }, - "h": 90, - "w": 71, - "x": 277, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999957084655762, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.16761574149131775, - 0.4723068177700043, - 0.12070862948894501, - 0.003634008811786771, - 0.23573486506938934 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7159767746925354, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23630037903785706, - 0.007543994579464197, - 0.14689064025878906, - 0.0060900296084582806, - 0.6031749844551086 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 25699934208, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6457827687263489, - "y_min": 0.580375075340271, - "x_max": 0.6859144568443298, - "y_max": 0.6633089780807495 - }, - "confidence": 0.9999977350234985, - "label_id": 1 - }, - "h": 89, - "w": 77, - "x": 1240, - "y": 627 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14473947882652283, - "y_min": 0.5529148578643799, - "x_max": 0.181224524974823, - "y_max": 0.6361690759658813 - }, - "confidence": 0.7251306176185608, - "label_id": 1 - }, - "h": 90, - "w": 70, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999977350234985, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.13714279234409332, - 0.452682763338089, - 0.11693469434976578, - 0.0032559370156377554, - 0.289983868598938 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7251306176185608, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23947632312774658, - 0.008895214647054672, - 0.15017563104629517, - 0.006241553463041782, - 0.5952112674713135 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 25733267456, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6455540060997009, - "y_min": 0.5799255967140198, - "x_max": 0.6857796311378479, - "y_max": 0.6634114384651184 - }, - "confidence": 0.9999984502792358, - "label_id": 1 - }, - "h": 90, - "w": 78, - "x": 1239, - "y": 626 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1448119878768921, - "y_min": 0.5527669191360474, - "x_max": 0.18128490447998047, - "y_max": 0.6365195512771606 - }, - "confidence": 0.7346739172935486, - "label_id": 1 - }, - "h": 90, - "w": 70, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999984502792358, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.12118585407733917, - 0.4225887060165405, - 0.10062092542648315, - 0.003901340067386627, - 0.35170313715934753 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7346739172935486, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.24235916137695312, - 0.010250648483633995, - 0.15185031294822693, - 0.006828023586422205, - 0.5887117981910706 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 25766600704, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6455574631690979, - "y_min": 0.5793459415435791, - "x_max": 0.6856681704521179, - "y_max": 0.6630185842514038 - }, - "confidence": 0.9999992847442627, - "label_id": 1 - }, - "h": 90, - "w": 77, - "x": 1239, - "y": 626 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14480145275592804, - "y_min": 0.55290687084198, - "x_max": 0.18116234242916107, - "y_max": 0.6365741491317749 - }, - "confidence": 0.729701578617096, - "label_id": 1 - }, - "h": 91, - "w": 70, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999992847442627, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.11553637683391571, - 0.41120094060897827, - 0.09525541216135025, - 0.0035110730677843094, - 0.3744962513446808 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.729701578617096, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.22999782860279083, - 0.011010945774614811, - 0.15249651670455933, - 0.005977494176477194, - 0.600517213344574 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 25799933952, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6457627415657043, - "y_min": 0.5796008706092834, - "x_max": 0.6850934624671936, - "y_max": 0.6620658040046692 - }, - "confidence": 0.9999986886978149, - "label_id": 1 - }, - "h": 89, - "w": 75, - "x": 1240, - "y": 626 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14481906592845917, - "y_min": 0.5530028939247131, - "x_max": 0.18096990883350372, - "y_max": 0.6364945769309998 - }, - "confidence": 0.7199722528457642, - "label_id": 1 - }, - "h": 90, - "w": 69, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999986886978149, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.11935903877019882, - 0.43078333139419556, - 0.08644647151231766, - 0.005172121338546276, - 0.3582390248775482 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7199722528457642, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.27399879693984985, - 0.014521925710141659, - 0.17706725001335144, - 0.00781676359474659, - 0.5265952944755554 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 25833267200, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6452731490135193, - "y_min": 0.579974889755249, - "x_max": 0.6845201849937439, - "y_max": 0.6620862483978271 - }, - "confidence": 0.9999980926513672, - "label_id": 1 - }, - "h": 89, - "w": 75, - "x": 1239, - "y": 626 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14465779066085815, - "y_min": 0.5532399415969849, - "x_max": 0.1808585524559021, - "y_max": 0.6366400718688965 - }, - "confidence": 0.7091805338859558, - "label_id": 1 - }, - "h": 91, - "w": 69, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999980926513672, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.11302754282951355, - 0.363447368144989, - 0.08039658516645432, - 0.005217376630753279, - 0.43791115283966064 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7091805338859558, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2504538595676422, - 0.013931500725448132, - 0.1683117002248764, - 0.006800376810133457, - 0.5605025291442871 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 25866600448, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6452221870422363, - "y_min": 0.5811970829963684, - "x_max": 0.684870719909668, - "y_max": 0.6623253226280212 - }, - "confidence": 0.9999963045120239, - "label_id": 1 - }, - "h": 87, - "w": 76, - "x": 1239, - "y": 628 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1446378082036972, - "y_min": 0.5530509948730469, - "x_max": 0.18071173131465912, - "y_max": 0.6367738246917725 - }, - "confidence": 0.7214369773864746, - "label_id": 1 - }, - "h": 91, - "w": 69, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999963045120239, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.15674376487731934, - 0.4642728567123413, - 0.11031994968652725, - 0.0033233219292014837, - 0.26534008979797363 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7214369773864746, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2321930080652237, - 0.012342389672994614, - 0.16959458589553833, - 0.006422606762498617, - 0.5794473886489868 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 25899933696, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6451314091682434, - "y_min": 0.5825679898262024, - "x_max": 0.6841394305229187, - "y_max": 0.6616919636726379 - }, - "confidence": 0.9999914169311523, - "label_id": 1 - }, - "h": 86, - "w": 75, - "x": 1239, - "y": 629 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1446915715932846, - "y_min": 0.5527893304824829, - "x_max": 0.18067137897014618, - "y_max": 0.6364213228225708 - }, - "confidence": 0.7198628187179565, - "label_id": 1 - }, - "h": 90, - "w": 69, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999914169311523, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.14608000218868256, - 0.48744383454322815, - 0.0786343514919281, - 0.003602417651563883, - 0.28423944115638733 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7198628187179565, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.25155016779899597, - 0.012554020620882511, - 0.18065354228019714, - 0.009316098876297474, - 0.5459261536598206 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 25933266944, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6443942189216614, - "y_min": 0.5816031694412231, - "x_max": 0.6833650469779968, - "y_max": 0.6615502834320068 - }, - "confidence": 0.9999879598617554, - "label_id": 1 - }, - "h": 86, - "w": 75, - "x": 1237, - "y": 628 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.144749715924263, - "y_min": 0.5530648231506348, - "x_max": 0.1805226355791092, - "y_max": 0.635425329208374 - }, - "confidence": 0.7062310576438904, - "label_id": 1 - }, - "h": 89, - "w": 69, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999879598617554, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.22048601508140564, - 0.4450303912162781, - 0.06860198080539703, - 0.00476108118891716, - 0.26112061738967896 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7062310576438904, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2315547913312912, - 0.010948729701340199, - 0.19585883617401123, - 0.0071925013326108456, - 0.5544451475143433 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 25966600192, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6441254615783691, - "y_min": 0.5828129053115845, - "x_max": 0.6827880144119263, - "y_max": 0.6607390642166138 - }, - "confidence": 0.999993085861206, - "label_id": 1 - }, - "h": 85, - "w": 74, - "x": 1237, - "y": 629 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14474081993103027, - "y_min": 0.5531386733055115, - "x_max": 0.18045827746391296, - "y_max": 0.6359588503837585 - }, - "confidence": 0.7135720252990723, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.999993085861206, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.26752957701683044, - 0.4424102306365967, - 0.07624083757400513, - 0.003680085763335228, - 0.21013927459716797 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7135720252990723, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.22702249884605408, - 0.011921701952815056, - 0.17791414260864258, - 0.009828769601881504, - 0.5733128786087036 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 25999933440, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6426690220832825, - "y_min": 0.5820357799530029, - "x_max": 0.6825962662696838, - "y_max": 0.6603946685791016 - }, - "confidence": 0.9999977350234985, - "label_id": 1 - }, - "h": 84, - "w": 77, - "x": 1234, - "y": 629 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14478206634521484, - "y_min": 0.5532181859016418, - "x_max": 0.18031609058380127, - "y_max": 0.6359753012657166 - }, - "confidence": 0.727111279964447, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999977350234985, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.35198065638542175, - 0.41984376311302185, - 0.06038583815097809, - 0.01894466020166874, - 0.14884519577026367 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.727111279964447, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23320873081684113, - 0.01366123091429472, - 0.18053972721099854, - 0.011066330596804619, - 0.5615240335464478 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 26033266688, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6423479318618774, - "y_min": 0.5826475620269775, - "x_max": 0.6819394826889038, - "y_max": 0.6608849763870239 - }, - "confidence": 0.9999961853027344, - "label_id": 1 - }, - "h": 85, - "w": 76, - "x": 1233, - "y": 629 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14484211802482605, - "y_min": 0.5531875491142273, - "x_max": 0.1803722083568573, - "y_max": 0.6361834406852722 - }, - "confidence": 0.7335484027862549, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999961853027344, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3047901391983032, - 0.46198606491088867, - 0.0730818659067154, - 0.009819616563618183, - 0.1503223180770874 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7335484027862549, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.22876764833927155, - 0.013697687536478043, - 0.19264373183250427, - 0.013139395043253899, - 0.5517514944076538 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 26066599936, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6419710516929626, - "y_min": 0.583114504814148, - "x_max": 0.6813051104545593, - "y_max": 0.6620039939880371 - }, - "confidence": 0.9999874830245972, - "label_id": 1 - }, - "h": 85, - "w": 75, - "x": 1233, - "y": 630 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14458443224430084, - "y_min": 0.5530422925949097, - "x_max": 0.1801714450120926, - "y_max": 0.6369407176971436 - }, - "confidence": 0.7376762628555298, - "label_id": 1 - }, - "h": 91, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999874830245972, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.35595348477363586, - 0.40826085209846497, - 0.08975812047719955, - 0.014159278944134712, - 0.13186824321746826 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7376762628555298, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.24518105387687683, - 0.012752670794725418, - 0.17445595562458038, - 0.009876279160380363, - 0.5577340126037598 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 26099933184, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6408437490463257, - "y_min": 0.5848239660263062, - "x_max": 0.6812676191329956, - "y_max": 0.6636056900024414 - }, - "confidence": 0.9999922513961792, - "label_id": 1 - }, - "h": 85, - "w": 78, - "x": 1230, - "y": 632 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14472396671772003, - "y_min": 0.5527383089065552, - "x_max": 0.18024633824825287, - "y_max": 0.6370632648468018 - }, - "confidence": 0.738671600818634, - "label_id": 1 - }, - "h": 91, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999922513961792, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.30924713611602783, - 0.5703145265579224, - 0.04196794331073761, - 0.008172713220119476, - 0.07029770314693451 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.738671600818634, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.22988231480121613, - 0.010893668048083782, - 0.1862240880727768, - 0.009159878827631474, - 0.5638401508331299 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 26133266432, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6408859491348267, - "y_min": 0.5859037041664124, - "x_max": 0.6818908452987671, - "y_max": 0.66449373960495 - }, - "confidence": 0.9999909400939941, - "label_id": 1 - }, - "h": 85, - "w": 78, - "x": 1231, - "y": 633 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14467856287956238, - "y_min": 0.5530916452407837, - "x_max": 0.18010437488555908, - "y_max": 0.6365460157394409 - }, - "confidence": 0.7257634997367859, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999909400939941, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.321336954832077, - 0.6031443476676941, - 0.02026061899960041, - 0.004797753877937794, - 0.05046027898788452 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7257634997367859, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.252903550863266, - 0.015153223648667336, - 0.19864395260810852, - 0.013275965116918087, - 0.5200232863426208 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 26166599680, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6409788131713867, - "y_min": 0.5872991681098938, - "x_max": 0.6822768449783325, - "y_max": 0.6636137366294861 - }, - "confidence": 0.999919056892395, - "label_id": 1 - }, - "h": 83, - "w": 79, - "x": 1231, - "y": 634 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14474232494831085, - "y_min": 0.5532811880111694, - "x_max": 0.18017162382602692, - "y_max": 0.6365158557891846 - }, - "confidence": 0.7176117897033691, - "label_id": 1 - }, - "h": 89, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.999919056892395, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.31891247630119324, - 0.5563488006591797, - 0.03293338418006897, - 0.0069127376191318035, - 0.08489257097244263 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7176117897033691, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.21449890732765198, - 0.010852498933672905, - 0.19707654416561127, - 0.005915842950344086, - 0.5716562271118164 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 26199932928, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6403442025184631, - "y_min": 0.5872068405151367, - "x_max": 0.6815195679664612, - "y_max": 0.6637550592422485 - }, - "confidence": 0.9999277591705322, - "label_id": 1 - }, - "h": 83, - "w": 80, - "x": 1229, - "y": 634 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1445479691028595, - "y_min": 0.5533962845802307, - "x_max": 0.1800025999546051, - "y_max": 0.6365638375282288 - }, - "confidence": 0.7131018042564392, - "label_id": 1 - }, - "h": 89, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999277591705322, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3701665699481964, - 0.47529157996177673, - 0.04615335538983345, - 0.00818592682480812, - 0.10020266473293304 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7131018042564392, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2078321874141693, - 0.010013719089329243, - 0.21362149715423584, - 0.00611313758417964, - 0.5624194145202637 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 26233266176, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6401088833808899, - "y_min": 0.5866091847419739, - "x_max": 0.681505024433136, - "y_max": 0.664613664150238 - }, - "confidence": 0.9999659061431885, - "label_id": 1 - }, - "h": 84, - "w": 79, - "x": 1229, - "y": 634 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14474128186702728, - "y_min": 0.5532186031341553, - "x_max": 0.18015630543231964, - "y_max": 0.6364861726760864 - }, - "confidence": 0.7173213958740234, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999659061431885, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.35316574573516846, - 0.5317896008491516, - 0.037447720766067505, - 0.005876215640455484, - 0.07172077894210815 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7173213958740234, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.26333603262901306, - 0.014498409815132618, - 0.21891367435455322, - 0.01267065480351448, - 0.490581214427948 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 26266599424, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6400032043457031, - "y_min": 0.5861923694610596, - "x_max": 0.6812047958374023, - "y_max": 0.6657125949859619 - }, - "confidence": 0.9999673366546631, - "label_id": 1 - }, - "h": 86, - "w": 79, - "x": 1229, - "y": 633 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14473363757133484, - "y_min": 0.5531908273696899, - "x_max": 0.18000727891921997, - "y_max": 0.6362310647964478 - }, - "confidence": 0.7091366648674011, - "label_id": 1 - }, - "h": 90, - "w": 68, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999673366546631, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.33017197251319885, - 0.5103782415390015, - 0.044480521231889725, - 0.00834506656974554, - 0.10662420094013214 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7091366648674011, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2743283808231354, - 0.018870681524276733, - 0.2136053591966629, - 0.013109828345477581, - 0.48008573055267334 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 26299932672, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6397225260734558, - "y_min": 0.5857158899307251, - "x_max": 0.6811640858650208, - "y_max": 0.6662867069244385 - }, - "confidence": 0.9999866485595703, - "label_id": 1 - }, - "h": 87, - "w": 80, - "x": 1228, - "y": 633 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14479844272136688, - "y_min": 0.553241491317749, - "x_max": 0.18006740510463715, - "y_max": 0.6361678838729858 - }, - "confidence": 0.6932660937309265, - "label_id": 1 - }, - "h": 89, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999866485595703, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.33268386125564575, - 0.5238173604011536, - 0.0465058870613575, - 0.007052332162857056, - 0.08994053304195404 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6932660937309265, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.20129919052124023, - 0.01008702628314495, - 0.2558000683784485, - 0.007741459645330906, - 0.5250722765922546 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 26333265920, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6398818492889404, - "y_min": 0.5858558416366577, - "x_max": 0.6812520027160645, - "y_max": 0.6662919521331787 - }, - "confidence": 0.9999911785125732, - "label_id": 1 - }, - "h": 87, - "w": 79, - "x": 1229, - "y": 633 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14476191997528076, - "y_min": 0.5531793236732483, - "x_max": 0.1799200475215912, - "y_max": 0.6364566683769226 - }, - "confidence": 0.6854307651519775, - "label_id": 1 - }, - "h": 90, - "w": 67, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999911785125732, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4357997179031372, - 0.3389017581939697, - 0.06046241149306297, - 0.0073343124240636826, - 0.15750180184841156 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6854307651519775, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.18439091742038727, - 0.011208156123757362, - 0.40337124466896057, - 0.011540068313479424, - 0.38948968052864075 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 26366599168, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6398144960403442, - "y_min": 0.5862564444541931, - "x_max": 0.6809535026550293, - "y_max": 0.6668418049812317 - }, - "confidence": 0.9999829530715942, - "label_id": 1 - }, - "h": 87, - "w": 79, - "x": 1228, - "y": 633 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14458392560482025, - "y_min": 0.5530833601951599, - "x_max": 0.1798006147146225, - "y_max": 0.6362455487251282 - }, - "confidence": 0.6826348304748535, - "label_id": 1 - }, - "h": 90, - "w": 67, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999829530715942, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4297361373901367, - 0.24871216714382172, - 0.08101825416088104, - 0.006199762690812349, - 0.23433370888233185 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6826348304748535, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.18472766876220703, - 0.009607314132153988, - 0.36994585394859314, - 0.010431559756398201, - 0.4252876341342926 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 26399932416, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6390307545661926, - "y_min": 0.585946798324585, - "x_max": 0.6805630326271057, - "y_max": 0.6675957441329956 - }, - "confidence": 0.9999768733978271, - "label_id": 1 - }, - "h": 88, - "w": 80, - "x": 1227, - "y": 633 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1446506232023239, - "y_min": 0.5533527135848999, - "x_max": 0.1798219233751297, - "y_max": 0.6365280151367188 - }, - "confidence": 0.6951962113380432, - "label_id": 1 - }, - "h": 89, - "w": 67, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999768733978271, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3630305230617523, - 0.41440463066101074, - 0.06979211419820786, - 0.008060862310230732, - 0.14471186697483063 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6951962113380432, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.20183904469013214, - 0.010876157321035862, - 0.23026211559772491, - 0.006161533761769533, - 0.5508610606193542 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 26433265664, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6388334035873413, - "y_min": 0.5861192941665649, - "x_max": 0.6799218654632568, - "y_max": 0.6678743362426758 - }, - "confidence": 0.9999349117279053, - "label_id": 1 - }, - "h": 88, - "w": 78, - "x": 1227, - "y": 633 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1446075439453125, - "y_min": 0.5535547733306885, - "x_max": 0.17985552549362183, - "y_max": 0.6359922885894775 - }, - "confidence": 0.6908280849456787, - "label_id": 1 - }, - "h": 89, - "w": 67, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999349117279053, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.36270660161972046, - 0.3670634329319, - 0.07883159816265106, - 0.006776976864784956, - 0.18462136387825012 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6908280849456787, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.22287005186080933, - 0.011736894026398659, - 0.19766250252723694, - 0.006470350082963705, - 0.5612602233886719 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 26466598912, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6388291120529175, - "y_min": 0.5861475467681885, - "x_max": 0.6799271106719971, - "y_max": 0.6675653457641602 - }, - "confidence": 0.999923825263977, - "label_id": 1 - }, - "h": 88, - "w": 78, - "x": 1227, - "y": 633 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14469705522060394, - "y_min": 0.5536416172981262, - "x_max": 0.17993031442165375, - "y_max": 0.6357197165489197 - }, - "confidence": 0.689793586730957, - "label_id": 1 - }, - "h": 89, - "w": 67, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.999923825263977, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.35086002945899963, - 0.2641373872756958, - 0.10629623383283615, - 0.008865010924637318, - 0.2698413133621216 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.689793586730957, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.18713626265525818, - 0.011717913672327995, - 0.18315599858760834, - 0.00565679557621479, - 0.6123330593109131 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 26499932160, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6385105848312378, - "y_min": 0.5859804153442383, - "x_max": 0.6798821687698364, - "y_max": 0.667244553565979 - }, - "confidence": 0.9999207258224487, - "label_id": 1 - }, - "h": 88, - "w": 79, - "x": 1226, - "y": 633 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14461389183998108, - "y_min": 0.5537030696868896, - "x_max": 0.18012544512748718, - "y_max": 0.6355270147323608 - }, - "confidence": 0.6895425915718079, - "label_id": 1 - }, - "h": 88, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999207258224487, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3492850661277771, - 0.25961217284202576, - 0.09574536979198456, - 0.00913732685148716, - 0.28622010350227356 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6895425915718079, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.21855305135250092, - 0.013718795031309128, - 0.158422589302063, - 0.005513184703886509, - 0.6037923693656921 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 26533265408, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6383066773414612, - "y_min": 0.5865952372550964, - "x_max": 0.6797893643379211, - "y_max": 0.6662741303443909 - }, - "confidence": 0.9998471736907959, - "label_id": 1 - }, - "h": 86, - "w": 79, - "x": 1226, - "y": 634 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14462512731552124, - "y_min": 0.5536681413650513, - "x_max": 0.18019062280654907, - "y_max": 0.6357535123825073 - }, - "confidence": 0.7015538811683655, - "label_id": 1 - }, - "h": 89, - "w": 68, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9998471736907959, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.42202362418174744, - 0.2608341872692108, - 0.09076157957315445, - 0.00864711869508028, - 0.2177334874868393 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7015538811683655, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2218281328678131, - 0.015001090243458748, - 0.18214650452136993, - 0.006730121560394764, - 0.5742940902709961 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 26566598656, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6382508277893066, - "y_min": 0.587566614151001, - "x_max": 0.6793566942214966, - "y_max": 0.66607666015625 - }, - "confidence": 0.9996275901794434, - "label_id": 1 - }, - "h": 84, - "w": 79, - "x": 1225, - "y": 635 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14452242851257324, - "y_min": 0.5535344481468201, - "x_max": 0.18039697408676147, - "y_max": 0.6364739537239075 - }, - "confidence": 0.718278169631958, - "label_id": 1 - }, - "h": 89, - "w": 69, - "x": 277, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9996275901794434, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.39305391907691956, - 0.20327463746070862, - 0.09622801840305328, - 0.008213561959564686, - 0.29922980070114136 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.718278169631958, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2077663540840149, - 0.01129092462360859, - 0.20440725982189178, - 0.006624951027333736, - 0.5699105858802795 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 26599931904, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.638535737991333, - "y_min": 0.5887672901153564, - "x_max": 0.6795536279678345, - "y_max": 0.6658427715301514 - }, - "confidence": 0.999394416809082, - "label_id": 1 - }, - "h": 83, - "w": 79, - "x": 1226, - "y": 636 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14443138241767883, - "y_min": 0.5536158680915833, - "x_max": 0.18034803867340088, - "y_max": 0.6365829110145569 - }, - "confidence": 0.7158970832824707, - "label_id": 1 - }, - "h": 90, - "w": 69, - "x": 277, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.999394416809082, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.46972888708114624, - 0.16159385442733765, - 0.1239456906914711, - 0.006645235698670149, - 0.23808637261390686 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7158970832824707, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.24445968866348267, - 0.01573869027197361, - 0.20197051763534546, - 0.007967055775225163, - 0.5298641324043274 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 26633265152, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6389271020889282, - "y_min": 0.5890450477600098, - "x_max": 0.6798998117446899, - "y_max": 0.666239857673645 - }, - "confidence": 0.9995635151863098, - "label_id": 1 - }, - "h": 84, - "w": 78, - "x": 1227, - "y": 636 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14431579411029816, - "y_min": 0.5535401105880737, - "x_max": 0.18034522235393524, - "y_max": 0.6366274356842041 - }, - "confidence": 0.7111462950706482, - "label_id": 1 - }, - "h": 90, - "w": 69, - "x": 277, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9995635151863098, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4211408793926239, - 0.19717618823051453, - 0.10783577710390091, - 0.008237103000283241, - 0.26561009883880615 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7111462950706482, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.24720150232315063, - 0.015748625621199608, - 0.19403128325939178, - 0.007570399437099695, - 0.5354481935501099 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 26666598400, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6389188766479492, - "y_min": 0.588747501373291, - "x_max": 0.6804921627044678, - "y_max": 0.666851282119751 - }, - "confidence": 0.9998189806938171, - "label_id": 1 - }, - "h": 84, - "w": 80, - "x": 1227, - "y": 636 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1442411243915558, - "y_min": 0.5534960031509399, - "x_max": 0.1802818477153778, - "y_max": 0.6371933221817017 - }, - "confidence": 0.7165456414222717, - "label_id": 1 - }, - "h": 90, - "w": 69, - "x": 277, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9998189806938171, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4469621181488037, - 0.13404810428619385, - 0.12574274837970734, - 0.009633020497858524, - 0.28361400961875916 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7165456414222717, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2542595863342285, - 0.016930395737290382, - 0.18753191828727722, - 0.00748381856828928, - 0.5337942242622375 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 26699931648, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6385887265205383, - "y_min": 0.5885761976242065, - "x_max": 0.6807937026023865, - "y_max": 0.6671285629272461 - }, - "confidence": 0.9998413324356079, - "label_id": 1 - }, - "h": 84, - "w": 81, - "x": 1226, - "y": 636 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14413484930992126, - "y_min": 0.5534542798995972, - "x_max": 0.18043014407157898, - "y_max": 0.6373885869979858 - }, - "confidence": 0.7254995703697205, - "label_id": 1 - }, - "h": 90, - "w": 69, - "x": 277, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9998413324356079, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4788152873516083, - 0.1325322836637497, - 0.11893357336521149, - 0.010546715930104256, - 0.2591721713542938 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7254995703697205, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2614041864871979, - 0.017218513414263725, - 0.18438172340393066, - 0.007971368730068207, - 0.5290242433547974 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 26733264896, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6388505101203918, - "y_min": 0.5890223979949951, - "x_max": 0.680851399898529, - "y_max": 0.6668635606765747 - }, - "confidence": 0.9998078942298889, - "label_id": 1 - }, - "h": 84, - "w": 80, - "x": 1227, - "y": 636 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14410333335399628, - "y_min": 0.5532054901123047, - "x_max": 0.18055890500545502, - "y_max": 0.6378785371780396 - }, - "confidence": 0.7313902378082275, - "label_id": 1 - }, - "h": 92, - "w": 70, - "x": 277, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9998078942298889, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4596458375453949, - 0.17333325743675232, - 0.11411876976490021, - 0.014554103836417198, - 0.23834805190563202 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7313902378082275, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.253374844789505, - 0.01584033854305744, - 0.19844022393226624, - 0.008663807064294815, - 0.5236807465553284 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 26766598144, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6388837695121765, - "y_min": 0.5891870856285095, - "x_max": 0.6805917620658875, - "y_max": 0.6670828461647034 - }, - "confidence": 0.9997885823249817, - "label_id": 1 - }, - "h": 84, - "w": 80, - "x": 1227, - "y": 636 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14424847066402435, - "y_min": 0.5534881949424744, - "x_max": 0.1807727962732315, - "y_max": 0.637695848941803 - }, - "confidence": 0.7443517446517944, - "label_id": 1 - }, - "h": 91, - "w": 70, - "x": 277, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9997885823249817, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.46788468956947327, - 0.13389761745929718, - 0.13719075918197632, - 0.012918165884912014, - 0.24810880422592163 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7443517446517944, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.266887366771698, - 0.014439498074352741, - 0.1687464416027069, - 0.006338161416351795, - 0.5435885190963745 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 26799931392, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6389952898025513, - "y_min": 0.5892282128334045, - "x_max": 0.6802623271942139, - "y_max": 0.667294442653656 - }, - "confidence": 0.9997285008430481, - "label_id": 1 - }, - "h": 85, - "w": 79, - "x": 1227, - "y": 636 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14446625113487244, - "y_min": 0.5534172654151917, - "x_max": 0.18063288927078247, - "y_max": 0.6374289393424988 - }, - "confidence": 0.733506441116333, - "label_id": 1 - }, - "h": 90, - "w": 70, - "x": 277, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9997285008430481, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4013470411300659, - 0.2280903458595276, - 0.15163566172122955, - 0.009453344158828259, - 0.20947356522083282 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.733506441116333, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2896789014339447, - 0.023413697257637978, - 0.19381240010261536, - 0.010659896768629551, - 0.48243507742881775 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 26833264640, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6390718817710876, - "y_min": 0.589503288269043, - "x_max": 0.6803539395332336, - "y_max": 0.6671497821807861 - }, - "confidence": 0.9998003840446472, - "label_id": 1 - }, - "h": 84, - "w": 79, - "x": 1227, - "y": 637 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1446770578622818, - "y_min": 0.5535863041877747, - "x_max": 0.18066371977329254, - "y_max": 0.6369946599006653 - }, - "confidence": 0.7335067987442017, - "label_id": 1 - }, - "h": 90, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9998003840446472, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.49955645203590393, - 0.14143739640712738, - 0.11215882003307343, - 0.008076738566160202, - 0.2387705147266388 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7335067987442017, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.27289626002311707, - 0.01942494325339794, - 0.19247186183929443, - 0.011579292826354504, - 0.503627598285675 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 26866597888, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6392159461975098, - "y_min": 0.5894935727119446, - "x_max": 0.6803117990493774, - "y_max": 0.6668475270271301 - }, - "confidence": 0.999792754650116, - "label_id": 1 - }, - "h": 83, - "w": 79, - "x": 1227, - "y": 637 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14484097063541412, - "y_min": 0.553745448589325, - "x_max": 0.1807582825422287, - "y_max": 0.6365978121757507 - }, - "confidence": 0.7288177609443665, - "label_id": 1 - }, - "h": 90, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.999792754650116, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4667731523513794, - 0.208922877907753, - 0.11621849983930588, - 0.01004354190081358, - 0.1980419009923935 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7288177609443665, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.26883143186569214, - 0.017189547419548035, - 0.2053869068622589, - 0.010694640688598156, - 0.49789750576019287 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 26899931136, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6388465166091919, - "y_min": 0.5894913673400879, - "x_max": 0.6801104545593262, - "y_max": 0.666547417640686 - }, - "confidence": 0.9997990727424622, - "label_id": 1 - }, - "h": 83, - "w": 79, - "x": 1227, - "y": 637 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1447155475616455, - "y_min": 0.5535068511962891, - "x_max": 0.18077996373176575, - "y_max": 0.637055516242981 - }, - "confidence": 0.7283610105514526, - "label_id": 1 - }, - "h": 90, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9997990727424622, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.46464475989341736, - 0.2295600026845932, - 0.10747085511684418, - 0.010970945470035076, - 0.18735341727733612 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7283610105514526, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.27643269300460815, - 0.01884632371366024, - 0.1966896951198578, - 0.012127328664064407, - 0.49590399861335754 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 26933264384, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.637847900390625, - "y_min": 0.588271975517273, - "x_max": 0.6796044111251831, - "y_max": 0.6663920879364014 - }, - "confidence": 0.9997484087944031, - "label_id": 1 - }, - "h": 85, - "w": 80, - "x": 1225, - "y": 635 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14464136958122253, - "y_min": 0.5536867380142212, - "x_max": 0.18082377314567566, - "y_max": 0.6370471715927124 - }, - "confidence": 0.7299996614456177, - "label_id": 1 - }, - "h": 90, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9997484087944031, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.36867818236351013, - 0.4294584393501282, - 0.0647101104259491, - 0.009108161553740501, - 0.12804509699344635 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7299996614456177, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2746821641921997, - 0.020954612642526627, - 0.20821894705295563, - 0.01219263393431902, - 0.483951598405838 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 26966597632, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6371418237686157, - "y_min": 0.5875099897384644, - "x_max": 0.6791549921035767, - "y_max": 0.6671872138977051 - }, - "confidence": 0.9999115467071533, - "label_id": 1 - }, - "h": 86, - "w": 81, - "x": 1223, - "y": 635 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14466315507888794, - "y_min": 0.5535526275634766, - "x_max": 0.18104907870292664, - "y_max": 0.6374082565307617 - }, - "confidence": 0.7344630360603333, - "label_id": 1 - }, - "h": 90, - "w": 70, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999115467071533, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.32706591486930847, - 0.5377705097198486, - 0.04572741687297821, - 0.008074215613305569, - 0.08136191219091415 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7344630360603333, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2650827169418335, - 0.02396603301167488, - 0.2280833125114441, - 0.012114634737372398, - 0.4707532525062561 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 26999930880, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6366093158721924, - "y_min": 0.5870198011398315, - "x_max": 0.6791026592254639, - "y_max": 0.6665729284286499 - }, - "confidence": 0.9998284578323364, - "label_id": 1 - }, - "h": 86, - "w": 82, - "x": 1222, - "y": 634 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14464913308620453, - "y_min": 0.5538249015808105, - "x_max": 0.1808059960603714, - "y_max": 0.6373422145843506 - }, - "confidence": 0.7175778746604919, - "label_id": 1 - }, - "h": 90, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9998284578323364, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4107512831687927, - 0.3813317120075226, - 0.06058302894234657, - 0.011923286132514477, - 0.13541072607040405 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7175778746604919, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2749621868133545, - 0.02714192308485508, - 0.21920326352119446, - 0.01355330366641283, - 0.46513938903808594 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 27033264128, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6361122131347656, - "y_min": 0.5861591696739197, - "x_max": 0.6784152984619141, - "y_max": 0.6647050976753235 - }, - "confidence": 0.9995051622390747, - "label_id": 1 - }, - "h": 85, - "w": 82, - "x": 1221, - "y": 633 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14464329183101654, - "y_min": 0.5538076758384705, - "x_max": 0.18079020082950592, - "y_max": 0.6370208859443665 - }, - "confidence": 0.7165106534957886, - "label_id": 1 - }, - "h": 90, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9995051622390747, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2969606816768646, - 0.5253134965896606, - 0.060527361929416656, - 0.009922848083078861, - 0.10727562010288239 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7165106534957886, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.27012166380882263, - 0.027193062007427216, - 0.21010398864746094, - 0.01198966521769762, - 0.48059165477752686 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 27066597376, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6363063454627991, - "y_min": 0.5852627754211426, - "x_max": 0.6774089932441711, - "y_max": 0.6636046171188354 - }, - "confidence": 0.9985690116882324, - "label_id": 1 - }, - "h": 85, - "w": 79, - "x": 1222, - "y": 632 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14458931982517242, - "y_min": 0.553718626499176, - "x_max": 0.18065239489078522, - "y_max": 0.6366046071052551 - }, - "confidence": 0.7119592428207397, - "label_id": 1 - }, - "h": 90, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9985690116882324, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.26673424243927, - 0.5654777884483337, - 0.04717084392905235, - 0.01247209869325161, - 0.10814506560564041 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7119592428207397, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.28294864296913147, - 0.030612794682383537, - 0.20378918945789337, - 0.012446213513612747, - 0.47020313143730164 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 27099930624, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6367954611778259, - "y_min": 0.5852841734886169, - "x_max": 0.6772928833961487, - "y_max": 0.6636897921562195 - }, - "confidence": 0.9988934397697449, - "label_id": 1 - }, - "h": 85, - "w": 77, - "x": 1223, - "y": 632 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14463041722774506, - "y_min": 0.5539459586143494, - "x_max": 0.18067552149295807, - "y_max": 0.6365267634391785 - }, - "confidence": 0.7136915326118469, - "label_id": 1 - }, - "h": 89, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9988934397697449, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.20479649305343628, - 0.6111170053482056, - 0.058124277740716934, - 0.013686321675777435, - 0.1122758612036705 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7136915326118469, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.24132610857486725, - 0.03287714719772339, - 0.2307492196559906, - 0.012841025367379189, - 0.4822064936161041 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 27133263872, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6372790932655334, - "y_min": 0.5864478945732117, - "x_max": 0.676699697971344, - "y_max": 0.6640370488166809 - }, - "confidence": 0.9991499185562134, - "label_id": 1 - }, - "h": 84, - "w": 75, - "x": 1224, - "y": 633 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1445450633764267, - "y_min": 0.5543003082275391, - "x_max": 0.18049652874469757, - "y_max": 0.6364924907684326 - }, - "confidence": 0.7065248489379883, - "label_id": 1 - }, - "h": 88, - "w": 69, - "x": 278, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9991499185562134, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2294967621564865, - 0.6002354621887207, - 0.05502988025546074, - 0.009825969114899635, - 0.10541187971830368 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7065248489379883, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3248283267021179, - 0.05629570409655571, - 0.16631880402565002, - 0.013912003487348557, - 0.4386451244354248 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 27166597120, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6372391581535339, - "y_min": 0.5852988958358765, - "x_max": 0.676352322101593, - "y_max": 0.6633361577987671 - }, - "confidence": 0.9991273283958435, - "label_id": 1 - }, - "h": 84, - "w": 76, - "x": 1223, - "y": 632 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14462557435035706, - "y_min": 0.554135262966156, - "x_max": 0.18064120411872864, - "y_max": 0.6365448832511902 - }, - "confidence": 0.7120506763458252, - "label_id": 1 - }, - "h": 89, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9991273283958435, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.34159836173057556, - 0.43531763553619385, - 0.057518891990184784, - 0.013533496297895908, - 0.15203164517879486 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7120506763458252, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.25609272718429565, - 0.031640585511922836, - 0.2399699091911316, - 0.011826430447399616, - 0.46047037839889526 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 27199930368, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6369842290878296, - "y_min": 0.5852420330047607, - "x_max": 0.6764950752258301, - "y_max": 0.6622601747512817 - }, - "confidence": 0.9990289211273193, - "label_id": 1 - }, - "h": 83, - "w": 76, - "x": 1223, - "y": 632 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14473071694374084, - "y_min": 0.5540579557418823, - "x_max": 0.18064653873443604, - "y_max": 0.6358580589294434 - }, - "confidence": 0.7037562727928162, - "label_id": 1 - }, - "h": 89, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9990289211273193, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3372979462146759, - 0.3663228154182434, - 0.07297869026660919, - 0.014241433702409267, - 0.20915910601615906 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7037562727928162, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.248480886220932, - 0.0275237038731575, - 0.2140968143939972, - 0.00784611888229847, - 0.5020524859428406 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 27233263616, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6368480920791626, - "y_min": 0.5856114029884338, - "x_max": 0.6772528886795044, - "y_max": 0.6625871062278748 - }, - "confidence": 0.9992306232452393, - "label_id": 1 - }, - "h": 84, - "w": 77, - "x": 1223, - "y": 632 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1447375863790512, - "y_min": 0.553972601890564, - "x_max": 0.1806478649377823, - "y_max": 0.6357924938201904 - }, - "confidence": 0.713445246219635, - "label_id": 1 - }, - "h": 89, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9992306232452393, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2884046137332916, - 0.40461787581443787, - 0.0853998064994812, - 0.014551294036209583, - 0.20702630281448364 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.713445246219635, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.237416073679924, - 0.024472353979945183, - 0.21028836071491241, - 0.008009110577404499, - 0.519814133644104 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 27266596864, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6367372274398804, - "y_min": 0.5856801271438599, - "x_max": 0.6781903505325317, - "y_max": 0.6626485586166382 - }, - "confidence": 0.9997408986091614, - "label_id": 1 - }, - "h": 83, - "w": 79, - "x": 1223, - "y": 633 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14471079409122467, - "y_min": 0.5541890263557434, - "x_max": 0.18044914305210114, - "y_max": 0.635206401348114 - }, - "confidence": 0.6974722146987915, - "label_id": 1 - }, - "h": 87, - "w": 68, - "x": 278, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9997408986091614, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.31858280301094055, - 0.3691692352294922, - 0.08783502876758575, - 0.04236366227269173, - 0.1820491999387741 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6974722146987915, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.27679404616355896, - 0.033293288201093674, - 0.16152454912662506, - 0.007189693860709667, - 0.5211983919143677 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 27299930112, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6367132663726807, - "y_min": 0.585327684879303, - "x_max": 0.6794037818908691, - "y_max": 0.6631519198417664 - }, - "confidence": 0.9999475479125977, - "label_id": 1 - }, - "h": 84, - "w": 82, - "x": 1222, - "y": 632 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14461317658424377, - "y_min": 0.5540722608566284, - "x_max": 0.1804984211921692, - "y_max": 0.6351284980773926 - }, - "confidence": 0.6999104619026184, - "label_id": 1 - }, - "h": 88, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999475479125977, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.36131805181503296, - 0.36789631843566895, - 0.07492165267467499, - 0.037482790648937225, - 0.1583811342716217 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6999104619026184, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.24732787907123566, - 0.022790025919675827, - 0.19590362906455994, - 0.006674648262560368, - 0.5273037552833557 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 27333263360, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.637421727180481, - "y_min": 0.5846385955810547, - "x_max": 0.6801548004150391, - "y_max": 0.6621760129928589 - }, - "confidence": 0.9999792575836182, - "label_id": 1 - }, - "h": 84, - "w": 82, - "x": 1224, - "y": 631 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1445917934179306, - "y_min": 0.5541486144065857, - "x_max": 0.18048791587352753, - "y_max": 0.6352075934410095 - }, - "confidence": 0.7005856037139893, - "label_id": 1 - }, - "h": 88, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999792575836182, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.32333284616470337, - 0.3335104286670685, - 0.08953910320997238, - 0.08363570272922516, - 0.1699819564819336 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7005856037139893, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.24391768872737885, - 0.024872807785868645, - 0.19767363369464874, - 0.005884765647351742, - 0.5276511907577515 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 27366596608, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6376433968544006, - "y_min": 0.5846306681632996, - "x_max": 0.6801665425300598, - "y_max": 0.6616505980491638 - }, - "confidence": 0.9999548196792603, - "label_id": 1 - }, - "h": 84, - "w": 82, - "x": 1224, - "y": 631 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14467880129814148, - "y_min": 0.5539748072624207, - "x_max": 0.18054437637329102, - "y_max": 0.6349127888679504 - }, - "confidence": 0.7003469467163086, - "label_id": 1 - }, - "h": 88, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999548196792603, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3811965584754944, - 0.3178873360157013, - 0.08972181379795074, - 0.047542229294776917, - 0.16365206241607666 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7003469467163086, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23945458233356476, - 0.02137305960059166, - 0.20040810108184814, - 0.005777744110673666, - 0.5329865217208862 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 27399929856, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6375355124473572, - "y_min": 0.5844718217849731, - "x_max": 0.6798933148384094, - "y_max": 0.6612217426300049 - }, - "confidence": 0.9999246597290039, - "label_id": 1 - }, - "h": 83, - "w": 81, - "x": 1224, - "y": 631 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14469397068023682, - "y_min": 0.5540062189102173, - "x_max": 0.18056070804595947, - "y_max": 0.6350287199020386 - }, - "confidence": 0.7062035202980042, - "label_id": 1 - }, - "h": 88, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999246597290039, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.35922446846961975, - 0.301472932100296, - 0.10189851373434067, - 0.04049138352274895, - 0.19691266119480133 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7062035202980042, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.25089022517204285, - 0.02918185293674469, - 0.19073797762393951, - 0.006209331564605236, - 0.5229806303977966 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 27433263104, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6374826431274414, - "y_min": 0.5846521258354187, - "x_max": 0.6796042919158936, - "y_max": 0.661331832408905 - }, - "confidence": 0.9998441934585571, - "label_id": 1 - }, - "h": 83, - "w": 81, - "x": 1224, - "y": 631 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14469116926193237, - "y_min": 0.5541067123413086, - "x_max": 0.18064594268798828, - "y_max": 0.6351629495620728 - }, - "confidence": 0.7090917229652405, - "label_id": 1 - }, - "h": 88, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9998441934585571, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3888176679611206, - 0.3290172815322876, - 0.10010063648223877, - 0.027971981093287468, - 0.15409237146377563 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7090917229652405, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2526145875453949, - 0.03082997351884842, - 0.18639010190963745, - 0.005943480413407087, - 0.5242217779159546 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 27466596352, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6375006437301636, - "y_min": 0.5846291184425354, - "x_max": 0.6793935298919678, - "y_max": 0.6606050133705139 - }, - "confidence": 0.9997254014015198, - "label_id": 1 - }, - "h": 82, - "w": 80, - "x": 1224, - "y": 631 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1446528434753418, - "y_min": 0.5542091131210327, - "x_max": 0.18069049715995789, - "y_max": 0.6355226039886475 - }, - "confidence": 0.7121133208274841, - "label_id": 1 - }, - "h": 87, - "w": 69, - "x": 278, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9997254014015198, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2909916937351227, - 0.3549138307571411, - 0.13293276727199554, - 0.03805495426058769, - 0.1831067055463791 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7121133208274841, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2551291286945343, - 0.03635165095329285, - 0.17156675457954407, - 0.006259818095713854, - 0.5306926965713501 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 27499929600, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6372839212417603, - "y_min": 0.5843907594680786, - "x_max": 0.6791681051254272, - "y_max": 0.6601901054382324 - }, - "confidence": 0.9996328353881836, - "label_id": 1 - }, - "h": 82, - "w": 80, - "x": 1224, - "y": 631 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1446615606546402, - "y_min": 0.5542405247688293, - "x_max": 0.1808181256055832, - "y_max": 0.635482132434845 - }, - "confidence": 0.7102547883987427, - "label_id": 1 - }, - "h": 87, - "w": 69, - "x": 278, - "y": 599 - } - ], - "tensors": [ - { - "confidence": 0.9996328353881836, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.30610141158103943, - 0.3016791343688965, - 0.1454893946647644, - 0.04748033732175827, - 0.19924966990947723 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7102547883987427, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2473062127828598, - 0.031132670119404793, - 0.1745309829711914, - 0.0064444891177117825, - 0.5405855774879456 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 27533262848, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6370275616645813, - "y_min": 0.5849358439445496, - "x_max": 0.678618848323822, - "y_max": 0.6600865721702576 - }, - "confidence": 0.9993769526481628, - "label_id": 1 - }, - "h": 81, - "w": 80, - "x": 1223, - "y": 632 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1447322517633438, - "y_min": 0.5541172027587891, - "x_max": 0.18100376427173615, - "y_max": 0.6358678340911865 - }, - "confidence": 0.715576708316803, - "label_id": 1 - }, - "h": 89, - "w": 70, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9993769526481628, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.22273921966552734, - 0.3610003590583801, - 0.12683723866939545, - 0.03346359729766846, - 0.25595951080322266 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.715576708316803, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.22486436367034912, - 0.026162169873714447, - 0.21006543934345245, - 0.005847526248544455, - 0.5330604910850525 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 27566596096, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6375598907470703, - "y_min": 0.5850254893302917, - "x_max": 0.6792436838150024, - "y_max": 0.6603855490684509 - }, - "confidence": 0.9996883869171143, - "label_id": 1 - }, - "h": 81, - "w": 80, - "x": 1224, - "y": 632 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1448325216770172, - "y_min": 0.5541161298751831, - "x_max": 0.18106091022491455, - "y_max": 0.635536789894104 - }, - "confidence": 0.7234009504318237, - "label_id": 1 - }, - "h": 88, - "w": 70, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9996883869171143, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.246559277176857, - 0.3133024275302887, - 0.13269606232643127, - 0.03705139830708504, - 0.27039074897766113 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7234009504318237, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.22885183990001678, - 0.026488177478313446, - 0.21221372485160828, - 0.0065731750801205635, - 0.5258731245994568 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 27599929344, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6374384164810181, - "y_min": 0.5846940279006958, - "x_max": 0.67928147315979, - "y_max": 0.6597955226898193 - }, - "confidence": 0.9997491240501404, - "label_id": 1 - }, - "h": 82, - "w": 80, - "x": 1224, - "y": 631 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14491680264472961, - "y_min": 0.5540614128112793, - "x_max": 0.18120244145393372, - "y_max": 0.6355395317077637 - }, - "confidence": 0.7087509036064148, - "label_id": 1 - }, - "h": 88, - "w": 70, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9997491240501404, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.24848784506320953, - 0.36450573801994324, - 0.1152917891740799, - 0.045921098440885544, - 0.22579360008239746 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7087509036064148, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2221662402153015, - 0.023145802319049835, - 0.23092958331108093, - 0.0070905666798353195, - 0.5166678428649902 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 27633262592, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6374282836914062, - "y_min": 0.5847679972648621, - "x_max": 0.6793222427368164, - "y_max": 0.6604184508323669 - }, - "confidence": 0.9997978806495667, - "label_id": 1 - }, - "h": 81, - "w": 80, - "x": 1224, - "y": 632 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14515338838100433, - "y_min": 0.5537713170051575, - "x_max": 0.18127001821994781, - "y_max": 0.6357319951057434 - }, - "confidence": 0.7162654399871826, - "label_id": 1 - }, - "h": 89, - "w": 69, - "x": 279, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9997978806495667, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.24892236292362213, - 0.337140291929245, - 0.1143813207745552, - 0.05954431742429733, - 0.24001175165176392 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7162654399871826, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.26417261362075806, - 0.030187807977199554, - 0.22610503435134888, - 0.00773820374161005, - 0.4717963635921478 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 27666595840, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6369476318359375, - "y_min": 0.5844385027885437, - "x_max": 0.6794286966323853, - "y_max": 0.6604772210121155 - }, - "confidence": 0.9998131394386292, - "label_id": 1 - }, - "h": 82, - "w": 82, - "x": 1223, - "y": 631 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1451885998249054, - "y_min": 0.5538290143013, - "x_max": 0.18140247464179993, - "y_max": 0.6353276371955872 - }, - "confidence": 0.7087631821632385, - "label_id": 1 - }, - "h": 88, - "w": 69, - "x": 279, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9998131394386292, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.21366983652114868, - 0.3654748797416687, - 0.11174948513507843, - 0.05742403119802475, - 0.2516818344593048 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7087631821632385, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23008941113948822, - 0.024289846420288086, - 0.22068654000759125, - 0.0074153137393295765, - 0.5175188779830933 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 27699929088, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.63707435131073, - "y_min": 0.5850762128829956, - "x_max": 0.6791644096374512, - "y_max": 0.6618912220001221 - }, - "confidence": 0.9998733997344971, - "label_id": 1 - }, - "h": 83, - "w": 81, - "x": 1223, - "y": 632 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1450982242822647, - "y_min": 0.5538710355758667, - "x_max": 0.18130137026309967, - "y_max": 0.6348276138305664 - }, - "confidence": 0.6900086402893066, - "label_id": 1 - }, - "h": 88, - "w": 69, - "x": 279, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9998733997344971, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.36737996339797974, - 0.35732242465019226, - 0.10225982964038849, - 0.010454477742314339, - 0.16258330643177032 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6900086402893066, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23907065391540527, - 0.025539088994264603, - 0.20456884801387787, - 0.006627083756029606, - 0.5241943001747131 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 27733262336, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.636921226978302, - "y_min": 0.5860574245452881, - "x_max": 0.6783012747764587, - "y_max": 0.6640467643737793 - }, - "confidence": 0.9997199177742004, - "label_id": 1 - }, - "h": 84, - "w": 79, - "x": 1223, - "y": 633 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1451023668050766, - "y_min": 0.5538333654403687, - "x_max": 0.18135876953601837, - "y_max": 0.6347864866256714 - }, - "confidence": 0.6913023591041565, - "label_id": 1 - }, - "h": 88, - "w": 69, - "x": 279, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9997199177742004, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.30796778202056885, - 0.3981318771839142, - 0.11178820580244064, - 0.01190467644482851, - 0.17020747065544128 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6913023591041565, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.25445133447647095, - 0.031337670981884, - 0.19587881863117218, - 0.007121013477444649, - 0.5112112164497375 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 27766595584, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6370160579681396, - "y_min": 0.5856698751449585, - "x_max": 0.67629075050354, - "y_max": 0.6646028757095337 - }, - "confidence": 0.9983009696006775, - "label_id": 1 - }, - "h": 85, - "w": 75, - "x": 1223, - "y": 633 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14502224326133728, - "y_min": 0.5537674427032471, - "x_max": 0.1813240349292755, - "y_max": 0.6345467567443848 - }, - "confidence": 0.6908095479011536, - "label_id": 1 - }, - "h": 87, - "w": 70, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9983009696006775, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.20610691606998444, - 0.48463794589042664, - 0.10894589871168137, - 0.012666634283959866, - 0.18764258921146393 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6908095479011536, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2526640295982361, - 0.02016131766140461, - 0.20849865674972534, - 0.006527306511998177, - 0.5121486186981201 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 27799928832, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.636250913143158, - "y_min": 0.5861948728561401, - "x_max": 0.6759946942329407, - "y_max": 0.6646385192871094 - }, - "confidence": 0.9972608089447021, - "label_id": 1 - }, - "h": 85, - "w": 76, - "x": 1222, - "y": 633 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14496275782585144, - "y_min": 0.5537706613540649, - "x_max": 0.18121486902236938, - "y_max": 0.6346490383148193 - }, - "confidence": 0.690181314945221, - "label_id": 1 - }, - "h": 87, - "w": 70, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9972608089447021, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.19505922496318817, - 0.43581080436706543, - 0.1265040934085846, - 0.017137516289949417, - 0.22548836469650269 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.690181314945221, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2574440836906433, - 0.023644594475626945, - 0.1979999840259552, - 0.006173308473080397, - 0.5147380828857422 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 27833262080, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6356679797172546, - "y_min": 0.5851064324378967, - "x_max": 0.6758098006248474, - "y_max": 0.6645583510398865 - }, - "confidence": 0.9964854717254639, - "label_id": 1 - }, - "h": 86, - "w": 78, - "x": 1220, - "y": 632 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14487680792808533, - "y_min": 0.5534255504608154, - "x_max": 0.1813417375087738, - "y_max": 0.6355196237564087 - }, - "confidence": 0.7062745690345764, - "label_id": 1 - }, - "h": 88, - "w": 70, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9964854717254639, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2477567195892334, - 0.3464395999908447, - 0.16228224337100983, - 0.02009483426809311, - 0.22342659533023834 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7062745690345764, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2684831917285919, - 0.03290737792849541, - 0.18529698252677917, - 0.008153480477631092, - 0.5051589012145996 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 27866595328, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6349658966064453, - "y_min": 0.5849277377128601, - "x_max": 0.67615807056427, - "y_max": 0.6642381548881531 - }, - "confidence": 0.994252622127533, - "label_id": 1 - }, - "h": 85, - "w": 79, - "x": 1219, - "y": 632 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14505690336227417, - "y_min": 0.5534654259681702, - "x_max": 0.18141978979110718, - "y_max": 0.6351378560066223 - }, - "confidence": 0.7009158134460449, - "label_id": 1 - }, - "h": 88, - "w": 69, - "x": 279, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.994252622127533, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.27555927634239197, - 0.33202093839645386, - 0.13164912164211273, - 0.027098745107650757, - 0.2336718887090683 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7009158134460449, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2628726363182068, - 0.03501560911536217, - 0.1692521572113037, - 0.006061203312128782, - 0.5267983675003052 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 27899928576, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6344118714332581, - "y_min": 0.5847358107566833, - "x_max": 0.6762341856956482, - "y_max": 0.6637664437294006 - }, - "confidence": 0.9930885434150696, - "label_id": 1 - }, - "h": 85, - "w": 80, - "x": 1218, - "y": 632 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14516699314117432, - "y_min": 0.5533705353736877, - "x_max": 0.18155217170715332, - "y_max": 0.6356276869773865 - }, - "confidence": 0.7092753052711487, - "label_id": 1 - }, - "h": 88, - "w": 70, - "x": 279, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9930885434150696, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2432313710451126, - 0.3339494466781616, - 0.1513819843530655, - 0.026356153190135956, - 0.2450810819864273 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7092753052711487, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23029735684394836, - 0.026191549375653267, - 0.19865930080413818, - 0.005498678423464298, - 0.53935307264328 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 27933261824, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6345769762992859, - "y_min": 0.5856238007545471, - "x_max": 0.6762757897377014, - "y_max": 0.6628374457359314 - }, - "confidence": 0.9912672638893127, - "label_id": 1 - }, - "h": 84, - "w": 80, - "x": 1218, - "y": 632 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14521406590938568, - "y_min": 0.5530077815055847, - "x_max": 0.18154318630695343, - "y_max": 0.6358006596565247 - }, - "confidence": 0.7121154069900513, - "label_id": 1 - }, - "h": 90, - "w": 70, - "x": 279, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9912672638893127, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2994319498538971, - 0.27917903661727905, - 0.15375572443008423, - 0.03449009358882904, - 0.23314310610294342 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7121154069900513, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2447347193956375, - 0.023999975994229317, - 0.23855754733085632, - 0.007634043227881193, - 0.4850737452507019 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 27966595072, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6346310377120972, - "y_min": 0.5861943960189819, - "x_max": 0.6752599477767944, - "y_max": 0.6621330976486206 - }, - "confidence": 0.9842840433120728, - "label_id": 1 - }, - "h": 82, - "w": 78, - "x": 1218, - "y": 633 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14506599307060242, - "y_min": 0.5531150102615356, - "x_max": 0.18157249689102173, - "y_max": 0.6360803842544556 - }, - "confidence": 0.7283989787101746, - "label_id": 1 - }, - "h": 90, - "w": 70, - "x": 279, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9842840433120728, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.34005874395370483, - 0.17818042635917664, - 0.1770997792482376, - 0.02762516401708126, - 0.27703583240509033 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7283989787101746, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2257026880979538, - 0.022847967222332954, - 0.24411967396736145, - 0.00866120308637619, - 0.49866846203804016 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 27999928320, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6342369914054871, - "y_min": 0.5861243009567261, - "x_max": 0.6747179627418518, - "y_max": 0.6632678508758545 - }, - "confidence": 0.9789896607398987, - "label_id": 1 - }, - "h": 83, - "w": 77, - "x": 1218, - "y": 633 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14495021104812622, - "y_min": 0.5532166957855225, - "x_max": 0.18146151304244995, - "y_max": 0.6365495920181274 - }, - "confidence": 0.7401165962219238, - "label_id": 1 - }, - "h": 90, - "w": 70, - "x": 278, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9789896607398987, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.306100070476532, - 0.26737871766090393, - 0.15361826121807098, - 0.03505171462893486, - 0.23785124719142914 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7401165962219238, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.24221381545066833, - 0.02597302570939064, - 0.24490030109882355, - 0.013853268697857857, - 0.47305962443351746 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 28033261568, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6335479617118835, - "y_min": 0.5853348970413208, - "x_max": 0.6747588515281677, - "y_max": 0.6638699769973755 - }, - "confidence": 0.9832645058631897, - "label_id": 1 - }, - "h": 85, - "w": 80, - "x": 1216, - "y": 632 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14504900574684143, - "y_min": 0.5533661842346191, - "x_max": 0.18132507801055908, - "y_max": 0.6366021633148193 - }, - "confidence": 0.7253580093383789, - "label_id": 1 - }, - "h": 90, - "w": 70, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9832645058631897, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2988925278186798, - 0.15390434861183167, - 0.1826513260602951, - 0.04632768779993057, - 0.31822407245635986 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7253580093383789, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.24699410796165466, - 0.03486110642552376, - 0.2224406749010086, - 0.010819328017532825, - 0.48488473892211914 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 28066594816, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6322631239891052, - "y_min": 0.5854271054267883, - "x_max": 0.6743507981300354, - "y_max": 0.6650232672691345 - }, - "confidence": 0.9792231321334839, - "label_id": 1 - }, - "h": 86, - "w": 81, - "x": 1214, - "y": 632 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14508236944675446, - "y_min": 0.5533090829849243, - "x_max": 0.18130283057689667, - "y_max": 0.6366280317306519 - }, - "confidence": 0.7291164398193359, - "label_id": 1 - }, - "h": 90, - "w": 69, - "x": 279, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9792231321334839, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2682904303073883, - 0.13183344900608063, - 0.14538103342056274, - 0.075743667781353, - 0.3787514567375183 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7291164398193359, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.27116864919662476, - 0.04292811080813408, - 0.21179741621017456, - 0.009007405489683151, - 0.46509838104248047 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 28099928064, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6321449279785156, - "y_min": 0.5850112438201904, - "x_max": 0.6740851402282715, - "y_max": 0.6652289628982544 - }, - "confidence": 0.9867645502090454, - "label_id": 1 - }, - "h": 86, - "w": 80, - "x": 1214, - "y": 632 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14508752524852753, - "y_min": 0.5532683730125427, - "x_max": 0.18130572140216827, - "y_max": 0.636637270450592 - }, - "confidence": 0.7176540493965149, - "label_id": 1 - }, - "h": 90, - "w": 69, - "x": 279, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9867645502090454, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.25250911712646484, - 0.1965249478816986, - 0.1651524156332016, - 0.06824910640716553, - 0.3175645172595978 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7176540493965149, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.27772268652915955, - 0.051083043217659, - 0.21270138025283813, - 0.009245221503078938, - 0.44924765825271606 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 28133261312, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6319659948348999, - "y_min": 0.5855144262313843, - "x_max": 0.6738842725753784, - "y_max": 0.6647541522979736 - }, - "confidence": 0.985686719417572, - "label_id": 1 - }, - "h": 86, - "w": 81, - "x": 1213, - "y": 632 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14505131542682648, - "y_min": 0.5534204244613647, - "x_max": 0.18128938972949982, - "y_max": 0.636440634727478 - }, - "confidence": 0.7107477188110352, - "label_id": 1 - }, - "h": 89, - "w": 70, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.985686719417572, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23180751502513885, - 0.2719551920890808, - 0.15915946662425995, - 0.04424478858709335, - 0.29283297061920166 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7107477188110352, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.21980959177017212, - 0.03548095375299454, - 0.24503067135810852, - 0.008472403511404991, - 0.4912063479423523 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 28166594560, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6322828531265259, - "y_min": 0.5850281119346619, - "x_max": 0.6743564605712891, - "y_max": 0.6646057963371277 - }, - "confidence": 0.9899014234542847, - "label_id": 1 - }, - "h": 86, - "w": 81, - "x": 1214, - "y": 632 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14501571655273438, - "y_min": 0.5533957481384277, - "x_max": 0.18121042847633362, - "y_max": 0.6364785432815552 - }, - "confidence": 0.7072006464004517, - "label_id": 1 - }, - "h": 89, - "w": 70, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9899014234542847, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.24970394372940063, - 0.23360110819339752, - 0.17211273312568665, - 0.047212518751621246, - 0.29736968874931335 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7072006464004517, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2247273474931717, - 0.037178777158260345, - 0.24855847656726837, - 0.008421138860285282, - 0.48111429810523987 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 28199927808, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6322745680809021, - "y_min": 0.5847641229629517, - "x_max": 0.6748644709587097, - "y_max": 0.6647965908050537 - }, - "confidence": 0.9924919009208679, - "label_id": 1 - }, - "h": 86, - "w": 82, - "x": 1214, - "y": 632 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14507651329040527, - "y_min": 0.5534255504608154, - "x_max": 0.18111556768417358, - "y_max": 0.6364827156066895 - }, - "confidence": 0.6969416737556458, - "label_id": 1 - }, - "h": 89, - "w": 69, - "x": 279, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9924919009208679, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.25035029649734497, - 0.24480833113193512, - 0.162995845079422, - 0.046400345861911774, - 0.29544520378112793 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6969416737556458, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.21641844511032104, - 0.030341248959302902, - 0.25594571232795715, - 0.008587626740336418, - 0.48870694637298584 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 28233261056, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6336515545845032, - "y_min": 0.5840374827384949, - "x_max": 0.6751099228858948, - "y_max": 0.6644133925437927 - }, - "confidence": 0.994331955909729, - "label_id": 1 - }, - "h": 87, - "w": 79, - "x": 1217, - "y": 631 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1450084149837494, - "y_min": 0.5535663962364197, - "x_max": 0.18144211173057556, - "y_max": 0.6372936367988586 - }, - "confidence": 0.7221056222915649, - "label_id": 1 - }, - "h": 90, - "w": 70, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.994331955909729, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2588779330253601, - 0.34097325801849365, - 0.14330418407917023, - 0.03375448286533356, - 0.22309021651744843 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7221056222915649, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.26718440651893616, - 0.02801605872809887, - 0.25250351428985596, - 0.007577530574053526, - 0.44471853971481323 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 28266594304, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6353536248207092, - "y_min": 0.5837833285331726, - "x_max": 0.6755735278129578, - "y_max": 0.6653961539268494 - }, - "confidence": 0.9969442486763, - "label_id": 1 - }, - "h": 89, - "w": 77, - "x": 1220, - "y": 630 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1450507789850235, - "y_min": 0.5537773370742798, - "x_max": 0.1813008040189743, - "y_max": 0.636947512626648 - }, - "confidence": 0.7137930989265442, - "label_id": 1 - }, - "h": 90, - "w": 70, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9969442486763, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1967366486787796, - 0.39610323309898376, - 0.18929623067378998, - 0.012829173356294632, - 0.20503468811511993 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7137930989265442, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.24781790375709534, - 0.021551279351115227, - 0.26180174946784973, - 0.005950628314167261, - 0.4628784954547882 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 28299927552, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6376053094863892, - "y_min": 0.5856123566627502, - "x_max": 0.6756882667541504, - "y_max": 0.6646907925605774 - }, - "confidence": 0.9980804920196533, - "label_id": 1 - }, - "h": 86, - "w": 73, - "x": 1224, - "y": 632 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1450432986021042, - "y_min": 0.5535951852798462, - "x_max": 0.18126700818538666, - "y_max": 0.6367499828338623 - }, - "confidence": 0.7229122519493103, - "label_id": 1 - }, - "h": 90, - "w": 70, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9980804920196533, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09387349337339401, - 0.6966861486434937, - 0.11622894555330276, - 0.011465049348771572, - 0.08174628019332886 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7229122519493103, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.24663417041301727, - 0.021189142018556595, - 0.2629520893096924, - 0.00701288552954793, - 0.4622117578983307 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 28333260800, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.636683464050293, - "y_min": 0.5847907066345215, - "x_max": 0.6771758794784546, - "y_max": 0.6621886491775513 - }, - "confidence": 0.9983502626419067, - "label_id": 1 - }, - "h": 83, - "w": 78, - "x": 1222, - "y": 632 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14501944184303284, - "y_min": 0.5537493824958801, - "x_max": 0.18080130219459534, - "y_max": 0.6356865763664246 - }, - "confidence": 0.7236557006835938, - "label_id": 1 - }, - "h": 89, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9983502626419067, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2401365041732788, - 0.5394196510314941, - 0.10999087989330292, - 0.009240626357495785, - 0.10121232271194458 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7236557006835938, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.24682648479938507, - 0.024627797305583954, - 0.26470234990119934, - 0.0072705731727182865, - 0.45657283067703247 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 28366594048, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.637536346912384, - "y_min": 0.5834274291992188, - "x_max": 0.6779833436012268, - "y_max": 0.6621612310409546 - }, - "confidence": 0.99982750415802, - "label_id": 1 - }, - "h": 85, - "w": 78, - "x": 1224, - "y": 630 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14498920738697052, - "y_min": 0.5535824298858643, - "x_max": 0.18087516725063324, - "y_max": 0.6356217861175537 - }, - "confidence": 0.7273511290550232, - "label_id": 1 - }, - "h": 88, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.99982750415802, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1846117377281189, - 0.5805919170379639, - 0.09524092823266983, - 0.017461556941270828, - 0.12209394574165344 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7273511290550232, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.28303179144859314, - 0.029650690034031868, - 0.22356265783309937, - 0.006334120873361826, - 0.45742079615592957 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 28399927296, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.639631986618042, - "y_min": 0.5830979943275452, - "x_max": 0.6782348155975342, - "y_max": 0.660451352596283 - }, - "confidence": 0.9999148845672607, - "label_id": 1 - }, - "h": 83, - "w": 74, - "x": 1228, - "y": 630 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1450619399547577, - "y_min": 0.5537376403808594, - "x_max": 0.18090075254440308, - "y_max": 0.6354761123657227 - }, - "confidence": 0.7220382690429688, - "label_id": 1 - }, - "h": 88, - "w": 68, - "x": 279, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999148845672607, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1692143827676773, - 0.6308152079582214, - 0.07564149796962738, - 0.012805829755961895, - 0.11152304708957672 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7220382690429688, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.29318901896476746, - 0.023064810782670975, - 0.19458448886871338, - 0.005137907341122627, - 0.4840238690376282 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 28433260544, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6378649473190308, - "y_min": 0.5824759006500244, - "x_max": 0.679885745048523, - "y_max": 0.6611411571502686 - }, - "confidence": 0.999976634979248, - "label_id": 1 - }, - "h": 85, - "w": 80, - "x": 1225, - "y": 629 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1452283412218094, - "y_min": 0.5537963509559631, - "x_max": 0.18101660907268524, - "y_max": 0.6352648138999939 - }, - "confidence": 0.6989325284957886, - "label_id": 1 - }, - "h": 88, - "w": 69, - "x": 279, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.999976634979248, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.150435671210289, - 0.7092857956886292, - 0.041933637112379074, - 0.026277557015419006, - 0.07206735014915466 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6989325284957886, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2896352708339691, - 0.02870776318013668, - 0.1970391720533371, - 0.004206560086458921, - 0.48041120171546936 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 28466593792, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6393385529518127, - "y_min": 0.5788074135780334, - "x_max": 0.6814616322517395, - "y_max": 0.6608789563179016 - }, - "confidence": 0.9999997615814209, - "label_id": 1 - }, - "h": 89, - "w": 80, - "x": 1228, - "y": 625 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14503099024295807, - "y_min": 0.5538357496261597, - "x_max": 0.181086465716362, - "y_max": 0.6361960172653198 - }, - "confidence": 0.718347430229187, - "label_id": 1 - }, - "h": 89, - "w": 70, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999997615814209, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.18159908056259155, - 0.6777097582817078, - 0.041390977799892426, - 0.02855025604367256, - 0.07074989378452301 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.718347430229187, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2854895293712616, - 0.028942152857780457, - 0.21124166250228882, - 0.0065773408859968185, - 0.4677492678165436 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 28499927040, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6405889987945557, - "y_min": 0.5768992900848389, - "x_max": 0.681625247001648, - "y_max": 0.6576958894729614 - }, - "confidence": 0.9999997615814209, - "label_id": 1 - }, - "h": 87, - "w": 79, - "x": 1230, - "y": 623 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1451302319765091, - "y_min": 0.5536227226257324, - "x_max": 0.1810334175825119, - "y_max": 0.6360695362091064 - }, - "confidence": 0.7043682336807251, - "label_id": 1 - }, - "h": 89, - "w": 69, - "x": 279, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999997615814209, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1732484996318817, - 0.6576851010322571, - 0.047853536903858185, - 0.03931388631463051, - 0.08189889788627625 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7043682336807251, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.28933608531951904, - 0.029328959062695503, - 0.20064924657344818, - 0.005142353009432554, - 0.4755432605743408 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 28533260288, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6407695412635803, - "y_min": 0.5777483582496643, - "x_max": 0.6817813515663147, - "y_max": 0.6594443917274475 - }, - "confidence": 0.9999996423721313, - "label_id": 1 - }, - "h": 88, - "w": 79, - "x": 1230, - "y": 624 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14501848816871643, - "y_min": 0.5534846186637878, - "x_max": 0.1809087097644806, - "y_max": 0.6361908316612244 - }, - "confidence": 0.7174935340881348, - "label_id": 1 - }, - "h": 89, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999996423721313, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.27307209372520447, - 0.5244453549385071, - 0.10044363141059875, - 0.011836848221719265, - 0.09020209312438965 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7174935340881348, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2599867880344391, - 0.02176467329263687, - 0.21565821766853333, - 0.006534643936902285, - 0.4960557222366333 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 28566593536, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.642383337020874, - "y_min": 0.5783640146255493, - "x_max": 0.6830798387527466, - "y_max": 0.6573324203491211 - }, - "confidence": 0.9999997615814209, - "label_id": 1 - }, - "h": 85, - "w": 79, - "x": 1233, - "y": 625 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14499598741531372, - "y_min": 0.5533375144004822, - "x_max": 0.18081456422805786, - "y_max": 0.636114776134491 - }, - "confidence": 0.7027276754379272, - "label_id": 1 - }, - "h": 89, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999997615814209, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2005750834941864, - 0.5541978478431702, - 0.14116118848323822, - 0.023123685270547867, - 0.08094219118356705 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7027276754379272, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.24172671139240265, - 0.01957116648554802, - 0.23323529958724976, - 0.006357147358357906, - 0.4991096556186676 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 28599926784, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6420928835868835, - "y_min": 0.5785782933235168, - "x_max": 0.6825302243232727, - "y_max": 0.6593913435935974 - }, - "confidence": 0.9999998807907104, - "label_id": 1 - }, - "h": 87, - "w": 77, - "x": 1233, - "y": 625 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14489737153053284, - "y_min": 0.5534988045692444, - "x_max": 0.18089938163757324, - "y_max": 0.6362473368644714 - }, - "confidence": 0.716084361076355, - "label_id": 1 - }, - "h": 89, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999998807907104, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.13112343847751617, - 0.7737431526184082, - 0.04714411124587059, - 0.010248449631035328, - 0.037740856409072876 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.716084361076355, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.22501274943351746, - 0.019848870113492012, - 0.23677383363246918, - 0.006585252471268177, - 0.5117793083190918 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 28633260032, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6444078683853149, - "y_min": 0.5782846212387085, - "x_max": 0.6845464706420898, - "y_max": 0.6587892770767212 - }, - "confidence": 1.0, - "label_id": 1 - }, - "h": 86, - "w": 77, - "x": 1237, - "y": 625 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14496883749961853, - "y_min": 0.5535960793495178, - "x_max": 0.1809147596359253, - "y_max": 0.6361594796180725 - }, - "confidence": 0.7115293145179749, - "label_id": 1 - }, - "h": 89, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 1.0, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.10838096588850021, - 0.7523983120918274, - 0.0738268718123436, - 0.012681007385253906, - 0.05271278694272041 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7115293145179749, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23225359618663788, - 0.021401993930339813, - 0.22731173038482666, - 0.006986395455896854, - 0.5120463371276855 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 28666593280, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6438727378845215, - "y_min": 0.5767189264297485, - "x_max": 0.6850861310958862, - "y_max": 0.6578892469406128 - }, - "confidence": 1.0, - "label_id": 1 - }, - "h": 88, - "w": 79, - "x": 1236, - "y": 623 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14502131938934326, - "y_min": 0.5535869598388672, - "x_max": 0.18095600605010986, - "y_max": 0.6360640525817871 - }, - "confidence": 0.7045154571533203, - "label_id": 1 - }, - "h": 89, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 1.0, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.06741073727607727, - 0.7459720969200134, - 0.07078871876001358, - 0.03941936418414116, - 0.0764090046286583 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7045154571533203, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23417295515537262, - 0.022106898948550224, - 0.22031718492507935, - 0.006341877393424511, - 0.5170611143112183 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 28699926528, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6454812288284302, - "y_min": 0.5766922235488892, - "x_max": 0.6863895654678345, - "y_max": 0.6590273380279541 - }, - "confidence": 1.0, - "label_id": 1 - }, - "h": 89, - "w": 79, - "x": 1239, - "y": 623 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14502975344657898, - "y_min": 0.5537734627723694, - "x_max": 0.18098929524421692, - "y_max": 0.636038601398468 - }, - "confidence": 0.6975216865539551, - "label_id": 1 - }, - "h": 89, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 1.0, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.08130818605422974, - 0.7182925343513489, - 0.0843796357512474, - 0.028392480686306953, - 0.0876271203160286 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6975216865539551, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.22921933233737946, - 0.020399130880832672, - 0.22530516982078552, - 0.006227671634405851, - 0.518848717212677 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 28733259776, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6473579406738281, - "y_min": 0.5776019096374512, - "x_max": 0.6880319118499756, - "y_max": 0.6579344272613525 - }, - "confidence": 0.9999983310699463, - "label_id": 1 - }, - "h": 87, - "w": 78, - "x": 1243, - "y": 624 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1449802666902542, - "y_min": 0.5536709427833557, - "x_max": 0.18080030381679535, - "y_max": 0.6361863017082214 - }, - "confidence": 0.7017000317573547, - "label_id": 1 - }, - "h": 89, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999983310699463, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.04101043567061424, - 0.8383225202560425, - 0.03874814137816429, - 0.023196915164589882, - 0.05872196704149246 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7017000317573547, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2323622703552246, - 0.014274499379098415, - 0.22237136960029602, - 0.007647194433957338, - 0.5233447551727295 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 28766593024, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.648015558719635, - "y_min": 0.5790172815322876, - "x_max": 0.6890390515327454, - "y_max": 0.658815860748291 - }, - "confidence": 0.9999995231628418, - "label_id": 1 - }, - "h": 87, - "w": 79, - "x": 1244, - "y": 625 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14492663741111755, - "y_min": 0.5536792278289795, - "x_max": 0.18066054582595825, - "y_max": 0.6361445188522339 - }, - "confidence": 0.6917669773101807, - "label_id": 1 - }, - "h": 89, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999995231628418, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.045576151460409164, - 0.8149778246879578, - 0.058014657348394394, - 0.016415053978562355, - 0.06501626968383789 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6917669773101807, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.18278589844703674, - 0.00860357005149126, - 0.22754791378974915, - 0.006379797589033842, - 0.5746828317642212 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 28799926272, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.648831844329834, - "y_min": 0.5780470371246338, - "x_max": 0.6894434690475464, - "y_max": 0.6581625938415527 - }, - "confidence": 0.999998927116394, - "label_id": 1 - }, - "h": 87, - "w": 78, - "x": 1246, - "y": 624 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14486514031887054, - "y_min": 0.5537201166152954, - "x_max": 0.1808621734380722, - "y_max": 0.6366680860519409 - }, - "confidence": 0.7033171653747559, - "label_id": 1 - }, - "h": 90, - "w": 69, - "x": 278, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.999998927116394, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.028843039646744728, - 0.7772214412689209, - 0.05235501006245613, - 0.027794742956757545, - 0.1137857511639595 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7033171653747559, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2250247448682785, - 0.010580831207334995, - 0.21902763843536377, - 0.007616408169269562, - 0.5377504229545593 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 28833259520, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6486949920654297, - "y_min": 0.5773277282714844, - "x_max": 0.6900146007537842, - "y_max": 0.6568927764892578 - }, - "confidence": 0.9999986886978149, - "label_id": 1 - }, - "h": 85, - "w": 80, - "x": 1245, - "y": 624 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14507371187210083, - "y_min": 0.5532021522521973, - "x_max": 0.18124470114707947, - "y_max": 0.6371031999588013 - }, - "confidence": 0.7070035934448242, - "label_id": 1 - }, - "h": 91, - "w": 69, - "x": 279, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999986886978149, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.03815251216292381, - 0.8181748390197754, - 0.05216657370328903, - 0.028373228386044502, - 0.06313281506299973 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7070035934448242, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.31356632709503174, - 0.02298247255384922, - 0.209883913397789, - 0.006247382145375013, - 0.44731995463371277 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 28866592768, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6499435901641846, - "y_min": 0.5785064697265625, - "x_max": 0.6889785528182983, - "y_max": 0.6567856073379517 - }, - "confidence": 0.9999904632568359, - "label_id": 1 - }, - "h": 84, - "w": 75, - "x": 1248, - "y": 625 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14535313844680786, - "y_min": 0.553217887878418, - "x_max": 0.1811884045600891, - "y_max": 0.6362804174423218 - }, - "confidence": 0.6822857856750488, - "label_id": 1 - }, - "h": 90, - "w": 69, - "x": 279, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999904632568359, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.020386630669236183, - 0.8798986077308655, - 0.03163021057844162, - 0.01894943229854107, - 0.0491352304816246 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6822857856750488, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2560045123100281, - 0.008415326476097107, - 0.17485599219799042, - 0.010564600117504597, - 0.5501595735549927 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 28899926016, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.649381697177887, - "y_min": 0.5775746703147888, - "x_max": 0.6894249320030212, - "y_max": 0.6583437323570251 - }, - "confidence": 0.9999904632568359, - "label_id": 1 - }, - "h": 87, - "w": 77, - "x": 1247, - "y": 624 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14565442502498627, - "y_min": 0.553347110748291, - "x_max": 0.18173415958881378, - "y_max": 0.635647177696228 - }, - "confidence": 0.6400125622749329, - "label_id": 1 - }, - "h": 88, - "w": 69, - "x": 280, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999904632568359, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.02824840322136879, - 0.801114022731781, - 0.06395293772220612, - 0.03210616111755371, - 0.07457855343818665 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6400125622749329, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3267093002796173, - 0.013348420150578022, - 0.1491832584142685, - 0.010876699350774288, - 0.4998822510242462 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 28933259264, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6499383449554443, - "y_min": 0.5766200423240662, - "x_max": 0.6912496089935303, - "y_max": 0.6590556502342224 - }, - "confidence": 0.9999970197677612, - "label_id": 1 - }, - "h": 89, - "w": 79, - "x": 1248, - "y": 623 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14578618109226227, - "y_min": 0.5536645650863647, - "x_max": 0.18230830132961273, - "y_max": 0.6354963779449463 - }, - "confidence": 0.5929661393165588, - "label_id": 1 - }, - "h": 88, - "w": 70, - "x": 280, - "y": 598 - } - ], - "tensors": [ - { - "confidence": 0.9999970197677612, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.028902119025588036, - 0.8005679845809937, - 0.06826871633529663, - 0.027404746040701866, - 0.07485643774271011 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5929661393165588, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2916768193244934, - 0.006405433639883995, - 0.19346080720424652, - 0.012412519194185734, - 0.49604445695877075 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 28966592512, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6488022208213806, - "y_min": 0.5762909650802612, - "x_max": 0.6908324360847473, - "y_max": 0.6598401069641113 - }, - "confidence": 0.9999947547912598, - "label_id": 1 - }, - "h": 91, - "w": 80, - "x": 1246, - "y": 622 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14597463607788086, - "y_min": 0.5528383851051331, - "x_max": 0.18302735686302185, - "y_max": 0.6331806778907776 - }, - "confidence": 0.5584930181503296, - "label_id": 1 - }, - "h": 87, - "w": 71, - "x": 280, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.9999947547912598, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.02617957442998886, - 0.753413736820221, - 0.06623852998018265, - 0.0370747335255146, - 0.117093525826931 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5584930181503296, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2888866364955902, - 0.013173144310712814, - 0.25713402032852173, - 0.013799945823848248, - 0.427006334066391 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 28999925760, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6503742337226868, - "y_min": 0.5793588757514954, - "x_max": 0.6912840008735657, - "y_max": 0.6598712801933289 - }, - "confidence": 0.9999756813049316, - "label_id": 1 - }, - "h": 87, - "w": 78, - "x": 1249, - "y": 626 - } - ], - "tensors": [ - { - "confidence": 0.9999756813049316, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.032104890793561935, - 0.7355495095252991, - 0.07036758214235306, - 0.02386472001671791, - 0.13811331987380981 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 29033259008, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6515358090400696, - "y_min": 0.5793091058731079, - "x_max": 0.6933823227882385, - "y_max": 0.6605266332626343 - }, - "confidence": 0.9999886751174927, - "label_id": 1 - }, - "h": 87, - "w": 80, - "x": 1251, - "y": 626 - } - ], - "tensors": [ - { - "confidence": 0.9999886751174927, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.0692155510187149, - 0.7048656940460205, - 0.09836259484291077, - 0.012828883714973927, - 0.11472722887992859 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 29066592256, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6507309079170227, - "y_min": 0.5812658071517944, - "x_max": 0.6940329670906067, - "y_max": 0.6635347604751587 - }, - "confidence": 0.999954342842102, - "label_id": 1 - }, - "h": 89, - "w": 84, - "x": 1249, - "y": 628 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1463940143585205, - "y_min": 0.5527130365371704, - "x_max": 0.18454140424728394, - "y_max": 0.6340519189834595 - }, - "confidence": 0.51173335313797, - "label_id": 1 - }, - "h": 88, - "w": 73, - "x": 281, - "y": 597 - } - ], - "tensors": [ - { - "confidence": 0.999954342842102, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.08935046941041946, - 0.6729270219802856, - 0.09955565631389618, - 0.01632564514875412, - 0.1218411773443222 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.51173335313797, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4145044982433319, - 0.012196611613035202, - 0.18486396968364716, - 0.0199719425290823, - 0.36846303939819336 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 29099925504, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6518462300300598, - "y_min": 0.5805662870407104, - "x_max": 0.6949061751365662, - "y_max": 0.6626029014587402 - }, - "confidence": 0.9998733997344971, - "label_id": 1 - }, - "h": 89, - "w": 82, - "x": 1252, - "y": 627 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14940737187862396, - "y_min": 0.5613701939582825, - "x_max": 0.18585313856601715, - "y_max": 0.6336100697517395 - }, - "confidence": 0.523823082447052, - "label_id": 1 - }, - "h": 78, - "w": 70, - "x": 287, - "y": 606 - } - ], - "tensors": [ - { - "confidence": 0.9998733997344971, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.10919699817895889, - 0.5378905534744263, - 0.1555970460176468, - 0.03990376368165016, - 0.15741170942783356 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.523823082447052, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3636757731437683, - 0.00973487552255392, - 0.3265146315097809, - 0.00948867667466402, - 0.29058602452278137 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 29133258752, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6519467830657959, - "y_min": 0.5789510607719421, - "x_max": 0.6945765018463135, - "y_max": 0.6619623303413391 - }, - "confidence": 0.9999592304229736, - "label_id": 1 - }, - "h": 90, - "w": 82, - "x": 1252, - "y": 625 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14930030703544617, - "y_min": 0.5610023736953735, - "x_max": 0.18651404976844788, - "y_max": 0.633228063583374 - }, - "confidence": 0.5356956124305725, - "label_id": 1 - }, - "h": 78, - "w": 71, - "x": 287, - "y": 606 - } - ], - "tensors": [ - { - "confidence": 0.9999592304229736, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1834680289030075, - 0.4286883771419525, - 0.21328231692314148, - 0.02748923934996128, - 0.14707206189632416 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5356956124305725, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4175170660018921, - 0.009361744858324528, - 0.3015592694282532, - 0.012398692779242992, - 0.25916317105293274 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 29166592000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6519401669502258, - "y_min": 0.5792505145072937, - "x_max": 0.6946256756782532, - "y_max": 0.6616362929344177 - }, - "confidence": 0.9999637603759766, - "label_id": 1 - }, - "h": 89, - "w": 82, - "x": 1252, - "y": 626 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1491657942533493, - "y_min": 0.5608464479446411, - "x_max": 0.1865483671426773, - "y_max": 0.6331157684326172 - }, - "confidence": 0.5195299386978149, - "label_id": 1 - }, - "h": 78, - "w": 72, - "x": 286, - "y": 606 - } - ], - "tensors": [ - { - "confidence": 0.9999637603759766, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2547716796398163, - 0.4230213165283203, - 0.18219977617263794, - 0.008183379657566547, - 0.13182379305362701 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5195299386978149, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.43549880385398865, - 0.01134429033845663, - 0.24810893833637238, - 0.017936909571290016, - 0.2871110737323761 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 29199925248, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6520251631736755, - "y_min": 0.5802945494651794, - "x_max": 0.6942384839057922, - "y_max": 0.6609885096549988 - }, - "confidence": 0.9999537467956543, - "label_id": 1 - }, - "h": 87, - "w": 81, - "x": 1252, - "y": 627 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.14970511198043823, - "y_min": 0.5602439641952515, - "x_max": 0.18689659237861633, - "y_max": 0.6325467824935913 - }, - "confidence": 0.5163048505783081, - "label_id": 1 - }, - "h": 78, - "w": 72, - "x": 287, - "y": 605 - } - ], - "tensors": [ - { - "confidence": 0.9999537467956543, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.27544352412223816, - 0.41901907324790955, - 0.17508423328399658, - 0.007784266024827957, - 0.12266891449689865 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5163048505783081, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4840305745601654, - 0.012142295017838478, - 0.18677638471126556, - 0.021440668031573296, - 0.2956101596355438 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 29233258496, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6526479125022888, - "y_min": 0.5807719826698303, - "x_max": 0.6945776343345642, - "y_max": 0.6593082547187805 - }, - "confidence": 0.9998462200164795, - "label_id": 1 - }, - "h": 85, - "w": 81, - "x": 1253, - "y": 627 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15002425014972687, - "y_min": 0.5596436858177185, - "x_max": 0.1873508244752884, - "y_max": 0.6321097016334534 - }, - "confidence": 0.5261436104774475, - "label_id": 1 - }, - "h": 79, - "w": 72, - "x": 288, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9998462200164795, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3458506464958191, - 0.32850173115730286, - 0.15349489450454712, - 0.009880916215479374, - 0.16227179765701294 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5261436104774475, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.39548930525779724, - 0.011934344656765461, - 0.27648892998695374, - 0.020132027566432953, - 0.2959553599357605 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 29266591744, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6522150635719299, - "y_min": 0.5803886651992798, - "x_max": 0.6943708062171936, - "y_max": 0.6590690612792969 - }, - "confidence": 0.9999020099639893, - "label_id": 1 - }, - "h": 85, - "w": 81, - "x": 1252, - "y": 627 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1500011682510376, - "y_min": 0.5596480369567871, - "x_max": 0.18737339973449707, - "y_max": 0.6323676109313965 - }, - "confidence": 0.5300354957580566, - "label_id": 1 - }, - "h": 79, - "w": 72, - "x": 288, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9999020099639893, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.32967108488082886, - 0.30847904086112976, - 0.1621268093585968, - 0.02213800698518753, - 0.17758505046367645 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5300354957580566, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.35834571719169617, - 0.009956642985343933, - 0.2623988687992096, - 0.018001237884163857, - 0.351297527551651 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 29299924992, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6517343521118164, - "y_min": 0.5804947018623352, - "x_max": 0.693996787071228, - "y_max": 0.6593384146690369 - }, - "confidence": 0.9999359846115112, - "label_id": 1 - }, - "h": 85, - "w": 81, - "x": 1251, - "y": 627 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15039372444152832, - "y_min": 0.559456467628479, - "x_max": 0.1875605285167694, - "y_max": 0.6321821212768555 - }, - "confidence": 0.562981367111206, - "label_id": 1 - }, - "h": 79, - "w": 71, - "x": 289, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9999359846115112, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.32026445865631104, - 0.2371823787689209, - 0.17198611795902252, - 0.05735217034816742, - 0.21321488916873932 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.562981367111206, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3686305582523346, - 0.009034833870828152, - 0.24998092651367188, - 0.017732063308358192, - 0.3546215891838074 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 29333258240, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6514700055122375, - "y_min": 0.5800055861473083, - "x_max": 0.6937817931175232, - "y_max": 0.65861576795578 - }, - "confidence": 0.9999454021453857, - "label_id": 1 - }, - "h": 85, - "w": 81, - "x": 1251, - "y": 626 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1505979597568512, - "y_min": 0.5594467520713806, - "x_max": 0.18760806322097778, - "y_max": 0.6317397952079773 - }, - "confidence": 0.5596003532409668, - "label_id": 1 - }, - "h": 78, - "w": 71, - "x": 289, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9999454021453857, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.30414265394210815, - 0.2359353005886078, - 0.16336828470230103, - 0.057918909937143326, - 0.23863476514816284 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5596003532409668, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3954901099205017, - 0.009406384080648422, - 0.2251252979040146, - 0.010837282054126263, - 0.35914093255996704 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 29366591488, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6506214737892151, - "y_min": 0.5798971056938171, - "x_max": 0.6930964589118958, - "y_max": 0.6593689322471619 - }, - "confidence": 0.9999372959136963, - "label_id": 1 - }, - "h": 86, - "w": 82, - "x": 1249, - "y": 626 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15078850090503693, - "y_min": 0.5592947006225586, - "x_max": 0.18771915137767792, - "y_max": 0.6315790414810181 - }, - "confidence": 0.5776677131652832, - "label_id": 1 - }, - "h": 78, - "w": 70, - "x": 290, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9999372959136963, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3011944591999054, - 0.289994478225708, - 0.1719415783882141, - 0.0459219329059124, - 0.19094759225845337 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.5776677131652832, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4006870687007904, - 0.01213452685624361, - 0.2230520397424698, - 0.010365989059209824, - 0.35376036167144775 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 29399924736, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6505464911460876, - "y_min": 0.5819713473320007, - "x_max": 0.6923967003822327, - "y_max": 0.6604210734367371 - }, - "confidence": 0.999970555305481, - "label_id": 1 - }, - "h": 84, - "w": 80, - "x": 1249, - "y": 629 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1512168049812317, - "y_min": 0.5592350959777832, - "x_max": 0.18794608116149902, - "y_max": 0.631436824798584 - }, - "confidence": 0.6288236379623413, - "label_id": 1 - }, - "h": 78, - "w": 71, - "x": 290, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.999970555305481, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3136465847492218, - 0.2796629071235657, - 0.19877728819847107, - 0.01645362749695778, - 0.19145961105823517 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6288236379623413, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.38704001903533936, - 0.007100580260157585, - 0.22785605490207672, - 0.01254301331937313, - 0.3654603660106659 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 29433257984, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.649852454662323, - "y_min": 0.5821849703788757, - "x_max": 0.6915348172187805, - "y_max": 0.660650908946991 - }, - "confidence": 0.9999852180480957, - "label_id": 1 - }, - "h": 85, - "w": 80, - "x": 1248, - "y": 629 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1513490080833435, - "y_min": 0.5592607855796814, - "x_max": 0.18793842196464539, - "y_max": 0.6314296126365662 - }, - "confidence": 0.6517339944839478, - "label_id": 1 - }, - "h": 78, - "w": 70, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9999852180480957, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.25822901725769043, - 0.4129815101623535, - 0.1619938462972641, - 0.013621301390230656, - 0.1531742960214615 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6517339944839478, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4092468321323395, - 0.012175315991044044, - 0.23863965272903442, - 0.011719496920704842, - 0.3282186985015869 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 29466591232, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.649957537651062, - "y_min": 0.5795753002166748, - "x_max": 0.6913025379180908, - "y_max": 0.6599411964416504 - }, - "confidence": 0.9999904632568359, - "label_id": 1 - }, - "h": 87, - "w": 79, - "x": 1248, - "y": 626 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15125441551208496, - "y_min": 0.5592926740646362, - "x_max": 0.1879093050956726, - "y_max": 0.6316348314285278 - }, - "confidence": 0.6548057198524475, - "label_id": 1 - }, - "h": 78, - "w": 71, - "x": 290, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9999904632568359, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2617817223072052, - 0.34708693623542786, - 0.2236059159040451, - 0.00580974668264389, - 0.16171568632125854 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6548057198524475, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.40473881363868713, - 0.008839215151965618, - 0.23894990980625153, - 0.011505493894219398, - 0.3359665870666504 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 29499924480, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6490046381950378, - "y_min": 0.5788349509239197, - "x_max": 0.6907692551612854, - "y_max": 0.6603565812110901 - }, - "confidence": 0.999996542930603, - "label_id": 1 - }, - "h": 88, - "w": 80, - "x": 1246, - "y": 625 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15148873627185822, - "y_min": 0.559238076210022, - "x_max": 0.18814189732074738, - "y_max": 0.631557822227478 - }, - "confidence": 0.6867814064025879, - "label_id": 1 - }, - "h": 78, - "w": 70, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.999996542930603, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.30227360129356384, - 0.31876686215400696, - 0.20511463284492493, - 0.007150236051529646, - 0.16669467091560364 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6867814064025879, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.45701441168785095, - 0.012677076272666454, - 0.21573969721794128, - 0.013594417832791805, - 0.3009743392467499 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 29533257728, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.648431658744812, - "y_min": 0.5783148407936096, - "x_max": 0.6906063556671143, - "y_max": 0.6598760485649109 - }, - "confidence": 0.9999966621398926, - "label_id": 1 - }, - "h": 88, - "w": 81, - "x": 1245, - "y": 625 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15137964487075806, - "y_min": 0.5593397617340088, - "x_max": 0.18810376524925232, - "y_max": 0.6318495273590088 - }, - "confidence": 0.6645543575286865, - "label_id": 1 - }, - "h": 78, - "w": 70, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9999966621398926, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2913183569908142, - 0.33167359232902527, - 0.19487716257572174, - 0.007722876500338316, - 0.17440803349018097 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6645543575286865, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4312724173069, - 0.011248404160141945, - 0.23133696615695953, - 0.013799887150526047, - 0.3123423159122467 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 29566590976, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6472609639167786, - "y_min": 0.5768490433692932, - "x_max": 0.6903387904167175, - "y_max": 0.6596407294273376 - }, - "confidence": 0.999995231628418, - "label_id": 1 - }, - "h": 89, - "w": 82, - "x": 1243, - "y": 623 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15150012075901031, - "y_min": 0.5594924688339233, - "x_max": 0.18814434111118317, - "y_max": 0.6314965486526489 - }, - "confidence": 0.6637870669364929, - "label_id": 1 - }, - "h": 78, - "w": 70, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.999995231628418, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2684190571308136, - 0.3447381556034088, - 0.1552671194076538, - 0.024107832461595535, - 0.20746782422065735 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6637870669364929, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.40581536293029785, - 0.009605735540390015, - 0.24243594706058502, - 0.012187273241579533, - 0.3299556076526642 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 29599924224, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.646397590637207, - "y_min": 0.5756455659866333, - "x_max": 0.6894525289535522, - "y_max": 0.6606365442276001 - }, - "confidence": 0.9999927282333374, - "label_id": 1 - }, - "h": 91, - "w": 83, - "x": 1241, - "y": 622 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15154683589935303, - "y_min": 0.5592895746231079, - "x_max": 0.18805772066116333, - "y_max": 0.6313395500183105 - }, - "confidence": 0.6269047856330872, - "label_id": 1 - }, - "h": 78, - "w": 70, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9999927282333374, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.18305566906929016, - 0.43630144000053406, - 0.14820115268230438, - 0.026097914204001427, - 0.20634378492832184 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6269047856330872, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.41268596053123474, - 0.009765495546162128, - 0.23338928818702698, - 0.012228978797793388, - 0.3319303095340729 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 29633257472, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6464084982872009, - "y_min": 0.5781446695327759, - "x_max": 0.6888056397438049, - "y_max": 0.6613606214523315 - }, - "confidence": 0.9999961853027344, - "label_id": 1 - }, - "h": 90, - "w": 82, - "x": 1241, - "y": 624 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15158414840698242, - "y_min": 0.5592375993728638, - "x_max": 0.18796879053115845, - "y_max": 0.6313070058822632 - }, - "confidence": 0.6453306078910828, - "label_id": 1 - }, - "h": 78, - "w": 70, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9999961853027344, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.18453790247440338, - 0.3771677613258362, - 0.2147098332643509, - 0.011530237272381783, - 0.21205422282218933 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6453306078910828, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.36893388628959656, - 0.008367419242858887, - 0.24085603654384613, - 0.012972552329301834, - 0.3688700497150421 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 29666590720, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6468578577041626, - "y_min": 0.5792151093482971, - "x_max": 0.6891100406646729, - "y_max": 0.6613346934318542 - }, - "confidence": 0.9999957084655762, - "label_id": 1 - }, - "h": 88, - "w": 81, - "x": 1242, - "y": 626 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15159210562705994, - "y_min": 0.5595844388008118, - "x_max": 0.18799808621406555, - "y_max": 0.6310588717460632 - }, - "confidence": 0.6823509931564331, - "label_id": 1 - }, - "h": 78, - "w": 70, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9999957084655762, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.17076630890369415, - 0.44680914282798767, - 0.1815323680639267, - 0.013417213223874569, - 0.1874750703573227 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6823509931564331, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3888956904411316, - 0.009206704795360565, - 0.2249070107936859, - 0.011750572361052036, - 0.3652399182319641 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 29699923968, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6469566822052002, - "y_min": 0.5784787535667419, - "x_max": 0.6883859634399414, - "y_max": 0.6612662672996521 - }, - "confidence": 0.999984622001648, - "label_id": 1 - }, - "h": 89, - "w": 80, - "x": 1242, - "y": 625 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15162286162376404, - "y_min": 0.5595481991767883, - "x_max": 0.1879938542842865, - "y_max": 0.6309728026390076 - }, - "confidence": 0.6898435950279236, - "label_id": 1 - }, - "h": 77, - "w": 70, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.999984622001648, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.17505545914173126, - 0.45710211992263794, - 0.16081543266773224, - 0.015103938989341259, - 0.19192302227020264 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6898435950279236, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.37742531299591064, - 0.008048326708376408, - 0.22119057178497314, - 0.009841379709541798, - 0.38349443674087524 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 29733257216, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6466230750083923, - "y_min": 0.5806258916854858, - "x_max": 0.6878507733345032, - "y_max": 0.6631007194519043 - }, - "confidence": 0.9999592304229736, - "label_id": 1 - }, - "h": 89, - "w": 79, - "x": 1242, - "y": 627 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.151575967669487, - "y_min": 0.5597661733627319, - "x_max": 0.18797661364078522, - "y_max": 0.6307142972946167 - }, - "confidence": 0.7049444913864136, - "label_id": 1 - }, - "h": 76, - "w": 70, - "x": 291, - "y": 605 - } - ], - "tensors": [ - { - "confidence": 0.9999592304229736, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.16439320147037506, - 0.5349236130714417, - 0.11140459030866623, - 0.015369639731943607, - 0.17390891909599304 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7049444913864136, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.43225526809692383, - 0.01013491116464138, - 0.21141347289085388, - 0.010099019855260849, - 0.3360973596572876 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 29766590464, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6469179391860962, - "y_min": 0.5828370451927185, - "x_max": 0.6874639987945557, - "y_max": 0.6630955338478088 - }, - "confidence": 0.9999912977218628, - "label_id": 1 - }, - "h": 87, - "w": 78, - "x": 1242, - "y": 629 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15139494836330414, - "y_min": 0.5597256422042847, - "x_max": 0.18784551322460175, - "y_max": 0.6303905248641968 - }, - "confidence": 0.6715150475502014, - "label_id": 1 - }, - "h": 76, - "w": 70, - "x": 291, - "y": 605 - } - ], - "tensors": [ - { - "confidence": 0.9999912977218628, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.14208167791366577, - 0.5862581133842468, - 0.09799405932426453, - 0.0080592455342412, - 0.1656068116426468 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6715150475502014, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4491608142852783, - 0.011982963420450687, - 0.20549848675727844, - 0.011199794709682465, - 0.32215791940689087 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 29799923712, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6468281745910645, - "y_min": 0.5830561518669128, - "x_max": 0.68620765209198, - "y_max": 0.6642131209373474 - }, - "confidence": 0.999996542930603, - "label_id": 1 - }, - "h": 87, - "w": 76, - "x": 1242, - "y": 630 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15129992365837097, - "y_min": 0.5600487589836121, - "x_max": 0.18769791722297668, - "y_max": 0.6308180689811707 - }, - "confidence": 0.6906639337539673, - "label_id": 1 - }, - "h": 76, - "w": 70, - "x": 290, - "y": 605 - } - ], - "tensors": [ - { - "confidence": 0.999996542930603, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1470102071762085, - 0.5439451336860657, - 0.10973340272903442, - 0.00806421972811222, - 0.19124704599380493 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6906639337539673, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4532806873321533, - 0.012278333306312561, - 0.20535337924957275, - 0.011572298593819141, - 0.31751537322998047 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 29833256960, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6463623046875, - "y_min": 0.5830626487731934, - "x_max": 0.6863930225372314, - "y_max": 0.6643068790435791 - }, - "confidence": 0.999996542930603, - "label_id": 1 - }, - "h": 87, - "w": 77, - "x": 1241, - "y": 630 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1515772044658661, - "y_min": 0.5599383115768433, - "x_max": 0.1878446340560913, - "y_max": 0.6309497356414795 - }, - "confidence": 0.6950218081474304, - "label_id": 1 - }, - "h": 76, - "w": 70, - "x": 291, - "y": 605 - } - ], - "tensors": [ - { - "confidence": 0.999996542930603, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.14355073869228363, - 0.47803598642349243, - 0.1091749370098114, - 0.008325970731675625, - 0.26091235876083374 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6950218081474304, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4422120153903961, - 0.012956660240888596, - 0.2095334231853485, - 0.013176250271499157, - 0.32212167978286743 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 29866590208, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6459715366363525, - "y_min": 0.583611786365509, - "x_max": 0.6859985589981079, - "y_max": 0.6641365885734558 - }, - "confidence": 0.9999784231185913, - "label_id": 1 - }, - "h": 87, - "w": 77, - "x": 1240, - "y": 630 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15155254304409027, - "y_min": 0.5598465204238892, - "x_max": 0.18784697353839874, - "y_max": 0.631116509437561 - }, - "confidence": 0.6950362324714661, - "label_id": 1 - }, - "h": 77, - "w": 70, - "x": 291, - "y": 605 - } - ], - "tensors": [ - { - "confidence": 0.9999784231185913, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.12642145156860352, - 0.23019792139530182, - 0.18358652293682098, - 0.011508984491229057, - 0.44828513264656067 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6950362324714661, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.423055499792099, - 0.011840388178825378, - 0.22345340251922607, - 0.014900881797075272, - 0.3267498314380646 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 29899923456, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6456463932991028, - "y_min": 0.585059404373169, - "x_max": 0.683853805065155, - "y_max": 0.665249228477478 - }, - "confidence": 0.9999431371688843, - "label_id": 1 - }, - "h": 86, - "w": 73, - "x": 1240, - "y": 632 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15145251154899597, - "y_min": 0.5597743988037109, - "x_max": 0.1877405345439911, - "y_max": 0.6315428018569946 - }, - "confidence": 0.6815004944801331, - "label_id": 1 - }, - "h": 77, - "w": 69, - "x": 291, - "y": 605 - } - ], - "tensors": [ - { - "confidence": 0.9999431371688843, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.11918388307094574, - 0.21495623886585236, - 0.20066307485103607, - 0.0032767262309789658, - 0.46192002296447754 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6815004944801331, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3962121903896332, - 0.010603678412735462, - 0.21713659167289734, - 0.0111284414306283, - 0.36491915583610535 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 29933256704, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.644148051738739, - "y_min": 0.5856874585151672, - "x_max": 0.6827715039253235, - "y_max": 0.6658048033714294 - }, - "confidence": 0.9999538660049438, - "label_id": 1 - }, - "h": 86, - "w": 74, - "x": 1237, - "y": 633 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1512901932001114, - "y_min": 0.5599158406257629, - "x_max": 0.18770186603069305, - "y_max": 0.631391704082489 - }, - "confidence": 0.6755149960517883, - "label_id": 1 - }, - "h": 77, - "w": 70, - "x": 290, - "y": 605 - } - ], - "tensors": [ - { - "confidence": 0.9999538660049438, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.10597322136163712, - 0.45833778381347656, - 0.13062186539173126, - 0.004713644273579121, - 0.3003534972667694 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6755149960517883, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4052979350090027, - 0.01210042741149664, - 0.20698365569114685, - 0.014185856096446514, - 0.3614320755004883 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 29966589952, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6437553763389587, - "y_min": 0.5855706930160522, - "x_max": 0.6831286549568176, - "y_max": 0.6656036376953125 - }, - "confidence": 0.9999783039093018, - "label_id": 1 - }, - "h": 87, - "w": 76, - "x": 1236, - "y": 632 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15124845504760742, - "y_min": 0.559954822063446, - "x_max": 0.18764778971672058, - "y_max": 0.63140469789505 - }, - "confidence": 0.6697988510131836, - "label_id": 1 - }, - "h": 77, - "w": 70, - "x": 290, - "y": 605 - } - ], - "tensors": [ - { - "confidence": 0.9999783039093018, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.12020908296108246, - 0.30087828636169434, - 0.17652668058872223, - 0.005038100760430098, - 0.3973477780818939 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6697988510131836, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.39713528752326965, - 0.012528735212981701, - 0.22113460302352905, - 0.013021879829466343, - 0.35617950558662415 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 29999923200, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6429047584533691, - "y_min": 0.5862843990325928, - "x_max": 0.6831607818603516, - "y_max": 0.6647173166275024 - }, - "confidence": 0.9999911785125732, - "label_id": 1 - }, - "h": 85, - "w": 78, - "x": 1234, - "y": 633 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15126122534275055, - "y_min": 0.559644341468811, - "x_max": 0.18763230741024017, - "y_max": 0.630751371383667 - }, - "confidence": 0.6274387240409851, - "label_id": 1 - }, - "h": 77, - "w": 70, - "x": 290, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9999911785125732, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09522703289985657, - 0.5165684223175049, - 0.11182338744401932, - 0.009776989929378033, - 0.2666041851043701 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6274387240409851, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3940688371658325, - 0.013661748729646206, - 0.24340173602104187, - 0.008837963454425335, - 0.3400297164916992 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 30033256448, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6415014266967773, - "y_min": 0.5865568518638611, - "x_max": 0.6828203201293945, - "y_max": 0.664654552936554 - }, - "confidence": 0.9999681711196899, - "label_id": 1 - }, - "h": 85, - "w": 79, - "x": 1232, - "y": 633 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15106064081192017, - "y_min": 0.5597168803215027, - "x_max": 0.18753784894943237, - "y_max": 0.6310479044914246 - }, - "confidence": 0.6473211050033569, - "label_id": 1 - }, - "h": 78, - "w": 70, - "x": 290, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9999681711196899, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.08037476241588593, - 0.46702829003334045, - 0.11711191385984421, - 0.019535264000296593, - 0.31594976782798767 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6473211050033569, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4015594720840454, - 0.015070890076458454, - 0.23364073038101196, - 0.0104898726567626, - 0.33923912048339844 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 30066589696, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6420506238937378, - "y_min": 0.5856814384460449, - "x_max": 0.6817706823348999, - "y_max": 0.6616300344467163 - }, - "confidence": 0.9999531507492065, - "label_id": 1 - }, - "h": 82, - "w": 76, - "x": 1233, - "y": 633 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15114006400108337, - "y_min": 0.5596669316291809, - "x_max": 0.1875787377357483, - "y_max": 0.6314043402671814 - }, - "confidence": 0.6426042914390564, - "label_id": 1 - }, - "h": 78, - "w": 70, - "x": 290, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9999531507492065, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.08982272446155548, - 0.48377862572669983, - 0.1008521020412445, - 0.02779071219265461, - 0.29775580763816833 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6426042914390564, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.398602157831192, - 0.014396581798791885, - 0.2459113597869873, - 0.008983459323644638, - 0.3321065306663513 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 30099922944, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6397162675857544, - "y_min": 0.5866709351539612, - "x_max": 0.6801267862319946, - "y_max": 0.6632738709449768 - }, - "confidence": 0.9999678134918213, - "label_id": 1 - }, - "h": 82, - "w": 78, - "x": 1228, - "y": 634 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15094402432441711, - "y_min": 0.5598896741867065, - "x_max": 0.1873866319656372, - "y_max": 0.631514310836792 - }, - "confidence": 0.6344876289367676, - "label_id": 1 - }, - "h": 77, - "w": 70, - "x": 290, - "y": 605 - } - ], - "tensors": [ - { - "confidence": 0.9999678134918213, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.06864370405673981, - 0.4647693634033203, - 0.09329181909561157, - 0.01977033168077469, - 0.3535248935222626 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6344876289367676, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.39148688316345215, - 0.012967635877430439, - 0.24555523693561554, - 0.010482422076165676, - 0.3395078480243683 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 30133256192, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6377226710319519, - "y_min": 0.5852199792861938, - "x_max": 0.6786646246910095, - "y_max": 0.6642910242080688 - }, - "confidence": 0.999896764755249, - "label_id": 1 - }, - "h": 85, - "w": 79, - "x": 1224, - "y": 632 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1509961187839508, - "y_min": 0.5597848892211914, - "x_max": 0.187537282705307, - "y_max": 0.6316224336624146 - }, - "confidence": 0.6368732452392578, - "label_id": 1 - }, - "h": 77, - "w": 70, - "x": 290, - "y": 605 - } - ], - "tensors": [ - { - "confidence": 0.999896764755249, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1023443341255188, - 0.5345401167869568, - 0.0873648077249527, - 0.0199558325111866, - 0.25579485297203064 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6368732452392578, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.39227384328842163, - 0.013218815438449383, - 0.24571114778518677, - 0.012018262408673763, - 0.336777925491333 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 30166589440, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6361576914787292, - "y_min": 0.5856083631515503, - "x_max": 0.6778432726860046, - "y_max": 0.66526198387146 - }, - "confidence": 0.9996097683906555, - "label_id": 1 - }, - "h": 86, - "w": 80, - "x": 1221, - "y": 632 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15103408694267273, - "y_min": 0.5600707530975342, - "x_max": 0.1873856782913208, - "y_max": 0.6318056583404541 - }, - "confidence": 0.6726599931716919, - "label_id": 1 - }, - "h": 77, - "w": 70, - "x": 290, - "y": 605 - } - ], - "tensors": [ - { - "confidence": 0.9996097683906555, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.08593043684959412, - 0.6999577879905701, - 0.04680350422859192, - 0.010694518685340881, - 0.15661367774009705 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6726599931716919, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.36717453598976135, - 0.012545687146484852, - 0.24762864410877228, - 0.01296735554933548, - 0.3596837818622589 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 30199922688, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6347837448120117, - "y_min": 0.5854018926620483, - "x_max": 0.6778587102890015, - "y_max": 0.6654775142669678 - }, - "confidence": 0.9997661709785461, - "label_id": 1 - }, - "h": 87, - "w": 82, - "x": 1219, - "y": 632 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15086880326271057, - "y_min": 0.5601322054862976, - "x_max": 0.18751150369644165, - "y_max": 0.6322084069252014 - }, - "confidence": 0.6399639248847961, - "label_id": 1 - }, - "h": 78, - "w": 70, - "x": 290, - "y": 605 - } - ], - "tensors": [ - { - "confidence": 0.9997661709785461, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1505357325077057, - 0.528447151184082, - 0.05699533224105835, - 0.017238030210137367, - 0.2467837780714035 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6399639248847961, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3972190022468567, - 0.01744558848440647, - 0.2313821166753769, - 0.013405842706561089, - 0.3405473828315735 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 30233255936, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6336830854415894, - "y_min": 0.5844773650169373, - "x_max": 0.6770802736282349, - "y_max": 0.6654911637306213 - }, - "confidence": 0.9987140893936157, - "label_id": 1 - }, - "h": 88, - "w": 83, - "x": 1217, - "y": 631 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15095004439353943, - "y_min": 0.5598467588424683, - "x_max": 0.18761801719665527, - "y_max": 0.6322053670883179 - }, - "confidence": 0.6377447843551636, - "label_id": 1 - }, - "h": 78, - "w": 70, - "x": 290, - "y": 605 - } - ], - "tensors": [ - { - "confidence": 0.9987140893936157, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09764789044857025, - 0.6080761551856995, - 0.03202065825462341, - 0.03680410236120224, - 0.22545114159584045 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6377447843551636, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.41624200344085693, - 0.02081470750272274, - 0.23332831263542175, - 0.013962911441922188, - 0.315652072429657 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 30266589184, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6338869333267212, - "y_min": 0.5845507383346558, - "x_max": 0.6763747930526733, - "y_max": 0.6664338111877441 - }, - "confidence": 0.9950609803199768, - "label_id": 1 - }, - "h": 89, - "w": 82, - "x": 1217, - "y": 631 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15097561478614807, - "y_min": 0.559853196144104, - "x_max": 0.18767744302749634, - "y_max": 0.6322457790374756 - }, - "confidence": 0.6373478174209595, - "label_id": 1 - }, - "h": 78, - "w": 70, - "x": 290, - "y": 605 - } - ], - "tensors": [ - { - "confidence": 0.9950609803199768, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09642212092876434, - 0.6904100179672241, - 0.038119249045848846, - 0.024402793496847153, - 0.1506458818912506 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6373478174209595, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.42863672971725464, - 0.01931651309132576, - 0.23759791254997253, - 0.013544691726565361, - 0.30090421438217163 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 30299922432, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6342578530311584, - "y_min": 0.5849933624267578, - "x_max": 0.6759883761405945, - "y_max": 0.6654905080795288 - }, - "confidence": 0.9959226846694946, - "label_id": 1 - }, - "h": 87, - "w": 80, - "x": 1218, - "y": 632 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15097308158874512, - "y_min": 0.5598098039627075, - "x_max": 0.187617689371109, - "y_max": 0.6321982145309448 - }, - "confidence": 0.6463547945022583, - "label_id": 1 - }, - "h": 78, - "w": 70, - "x": 290, - "y": 605 - } - ], - "tensors": [ - { - "confidence": 0.9959226846694946, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.11569095402956009, - 0.6881656646728516, - 0.046975027769804, - 0.01684122532606125, - 0.13232716917991638 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6463547945022583, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4454205334186554, - 0.020272528752684593, - 0.22656647861003876, - 0.012385147623717785, - 0.2953553795814514 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 30333255680, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6336286067962646, - "y_min": 0.5853182673454285, - "x_max": 0.6761014461517334, - "y_max": 0.66721111536026 - }, - "confidence": 0.9938608407974243, - "label_id": 1 - }, - "h": 89, - "w": 81, - "x": 1217, - "y": 632 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1507139354944229, - "y_min": 0.5601668357849121, - "x_max": 0.1872459203004837, - "y_max": 0.6321135759353638 - }, - "confidence": 0.6511451005935669, - "label_id": 1 - }, - "h": 78, - "w": 71, - "x": 289, - "y": 605 - } - ], - "tensors": [ - { - "confidence": 0.9938608407974243, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.06191195547580719, - 0.7353717088699341, - 0.053379833698272705, - 0.008012250065803528, - 0.1413242071866989 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6511451005935669, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4775611460208893, - 0.022038163617253304, - 0.21376703679561615, - 0.014190168119966984, - 0.2724435031414032 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 30366588928, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6328831911087036, - "y_min": 0.5852901339530945, - "x_max": 0.6754570007324219, - "y_max": 0.6664345860481262 - }, - "confidence": 0.9899589419364929, - "label_id": 1 - }, - "h": 88, - "w": 82, - "x": 1215, - "y": 632 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15090008080005646, - "y_min": 0.560000479221344, - "x_max": 0.1874323934316635, - "y_max": 0.6323532462120056 - }, - "confidence": 0.6605947613716125, - "label_id": 1 - }, - "h": 78, - "w": 70, - "x": 290, - "y": 605 - } - ], - "tensors": [ - { - "confidence": 0.9899589419364929, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.05480743944644928, - 0.8191149234771729, - 0.03165996074676514, - 0.01363375037908554, - 0.08078392595052719 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6605947613716125, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4588378369808197, - 0.019287358969449997, - 0.22052182257175446, - 0.013578650541603565, - 0.2877742648124695 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 30399922176, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6320231556892395, - "y_min": 0.5845317840576172, - "x_max": 0.6753721833229065, - "y_max": 0.6664590835571289 - }, - "confidence": 0.9873735308647156, - "label_id": 1 - }, - "h": 89, - "w": 84, - "x": 1213, - "y": 631 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15107311308383942, - "y_min": 0.5596877932548523, - "x_max": 0.18740348517894745, - "y_max": 0.632036030292511 - }, - "confidence": 0.6706961393356323, - "label_id": 1 - }, - "h": 79, - "w": 70, - "x": 290, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9873735308647156, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.05081966519355774, - 0.8175471425056458, - 0.04309525713324547, - 0.013666589744389057, - 0.07487134635448456 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6706961393356323, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.362640917301178, - 0.011553150601685047, - 0.27397263050079346, - 0.015518836677074432, - 0.33631449937820435 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 30433255424, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.632344663143158, - "y_min": 0.5848162174224854, - "x_max": 0.675068199634552, - "y_max": 0.6669045686721802 - }, - "confidence": 0.987464427947998, - "label_id": 1 - }, - "h": 88, - "w": 82, - "x": 1214, - "y": 632 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1509704440832138, - "y_min": 0.5597043633460999, - "x_max": 0.18750305473804474, - "y_max": 0.6317915320396423 - }, - "confidence": 0.6479933261871338, - "label_id": 1 - }, - "h": 78, - "w": 70, - "x": 290, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.987464427947998, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.05173267796635628, - 0.8210630416870117, - 0.040373895317316055, - 0.011369754560291767, - 0.07546065747737885 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6479933261871338, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4152246117591858, - 0.015094466507434845, - 0.2647550106048584, - 0.013416210189461708, - 0.2915096580982208 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 30466588672, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6324440836906433, - "y_min": 0.5855977535247803, - "x_max": 0.674900233745575, - "y_max": 0.6699714660644531 - }, - "confidence": 0.9820442199707031, - "label_id": 1 - }, - "h": 92, - "w": 82, - "x": 1214, - "y": 632 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15081602334976196, - "y_min": 0.5598549246788025, - "x_max": 0.18729442358016968, - "y_max": 0.6319542527198792 - }, - "confidence": 0.6257054209709167, - "label_id": 1 - }, - "h": 78, - "w": 70, - "x": 290, - "y": 605 - } - ], - "tensors": [ - { - "confidence": 0.9820442199707031, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.025443026795983315, - 0.9055551290512085, - 0.024016045033931732, - 0.006668632384389639, - 0.038317155092954636 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6257054209709167, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.45179176330566406, - 0.017292100936174393, - 0.22977662086486816, - 0.01318210456520319, - 0.2879573702812195 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 30499921920, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6326690912246704, - "y_min": 0.5858891606330872, - "x_max": 0.6743723154067993, - "y_max": 0.6704588532447815 - }, - "confidence": 0.9780105948448181, - "label_id": 1 - }, - "h": 91, - "w": 80, - "x": 1215, - "y": 633 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15087231993675232, - "y_min": 0.5598081946372986, - "x_max": 0.18738096952438354, - "y_max": 0.6319847702980042 - }, - "confidence": 0.6247952580451965, - "label_id": 1 - }, - "h": 78, - "w": 70, - "x": 290, - "y": 605 - } - ], - "tensors": [ - { - "confidence": 0.9780105948448181, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.03083820641040802, - 0.8471384644508362, - 0.05224292352795601, - 0.006035546772181988, - 0.06374482065439224 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6247952580451965, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4472445845603943, - 0.016777440905570984, - 0.22800059616565704, - 0.013623428530991077, - 0.2943539619445801 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 30533255168, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6326903104782104, - "y_min": 0.5865042805671692, - "x_max": 0.6734001636505127, - "y_max": 0.6688342690467834 - }, - "confidence": 0.9802547097206116, - "label_id": 1 - }, - "h": 89, - "w": 78, - "x": 1215, - "y": 633 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1506364792585373, - "y_min": 0.5599034428596497, - "x_max": 0.1871919482946396, - "y_max": 0.6318190693855286 - }, - "confidence": 0.615392804145813, - "label_id": 1 - }, - "h": 77, - "w": 70, - "x": 289, - "y": 605 - } - ], - "tensors": [ - { - "confidence": 0.9802547097206116, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.03595553711056709, - 0.8402407765388489, - 0.05671234056353569, - 0.0039607081562280655, - 0.0631306990981102 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.615392804145813, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4148564338684082, - 0.013720493763685226, - 0.20479971170425415, - 0.01644040457904339, - 0.3501830995082855 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 30566588416, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6322236061096191, - "y_min": 0.5868657827377319, - "x_max": 0.6723507642745972, - "y_max": 0.6668746471405029 - }, - "confidence": 0.9765573143959045, - "label_id": 1 - }, - "h": 86, - "w": 77, - "x": 1214, - "y": 634 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15072423219680786, - "y_min": 0.5597771406173706, - "x_max": 0.1873835325241089, - "y_max": 0.6320745944976807 - }, - "confidence": 0.6311343908309937, - "label_id": 1 - }, - "h": 78, - "w": 71, - "x": 289, - "y": 605 - } - ], - "tensors": [ - { - "confidence": 0.9765573143959045, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.03091118298470974, - 0.8631171584129333, - 0.04808294400572777, - 0.0036137981805950403, - 0.05427490919828415 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6311343908309937, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.41133207082748413, - 0.01569301448762417, - 0.21348440647125244, - 0.015444887802004814, - 0.3440457284450531 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 30599921664, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6319578886032104, - "y_min": 0.5870652794837952, - "x_max": 0.6722694635391235, - "y_max": 0.6655206084251404 - }, - "confidence": 0.9782719016075134, - "label_id": 1 - }, - "h": 85, - "w": 78, - "x": 1213, - "y": 634 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15085521340370178, - "y_min": 0.5597472786903381, - "x_max": 0.18743354082107544, - "y_max": 0.6319676041603088 - }, - "confidence": 0.6243851780891418, - "label_id": 1 - }, - "h": 78, - "w": 70, - "x": 290, - "y": 605 - } - ], - "tensors": [ - { - "confidence": 0.9782719016075134, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.04291659966111183, - 0.7942108511924744, - 0.07293995469808578, - 0.00400148332118988, - 0.085931196808815 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6243851780891418, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4220839738845825, - 0.016453027725219727, - 0.21956390142440796, - 0.013280010782182217, - 0.3286190927028656 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 30633254912, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6316258311271667, - "y_min": 0.5868570804595947, - "x_max": 0.6722758412361145, - "y_max": 0.6650298833847046 - }, - "confidence": 0.9725552797317505, - "label_id": 1 - }, - "h": 84, - "w": 78, - "x": 1213, - "y": 634 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1510448008775711, - "y_min": 0.559617280960083, - "x_max": 0.1875598281621933, - "y_max": 0.6318588256835938 - }, - "confidence": 0.6287488341331482, - "label_id": 1 - }, - "h": 78, - "w": 70, - "x": 290, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9725552797317505, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.03920506685972214, - 0.8504329323768616, - 0.05459228530526161, - 0.005826245062053204, - 0.04994340240955353 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6287488341331482, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3872876465320587, - 0.012686191126704216, - 0.24477790296077728, - 0.014269613660871983, - 0.3409786820411682 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 30666588160, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6313173174858093, - "y_min": 0.5864382386207581, - "x_max": 0.672009289264679, - "y_max": 0.6642188429832458 - }, - "confidence": 0.9682932496070862, - "label_id": 1 - }, - "h": 84, - "w": 78, - "x": 1212, - "y": 633 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1512027233839035, - "y_min": 0.5597286820411682, - "x_max": 0.18752361834049225, - "y_max": 0.631931722164154 - }, - "confidence": 0.671417236328125, - "label_id": 1 - }, - "h": 77, - "w": 70, - "x": 290, - "y": 605 - } - ], - "tensors": [ - { - "confidence": 0.9682932496070862, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.03624098747968674, - 0.8780059218406677, - 0.028793007135391235, - 0.005992969032377005, - 0.05096709728240967 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.671417236328125, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.37246182560920715, - 0.011282127350568771, - 0.22132866084575653, - 0.010873469524085522, - 0.38405391573905945 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 30699921408, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6312605738639832, - "y_min": 0.5860080718994141, - "x_max": 0.6720057129859924, - "y_max": 0.6646856069564819 - }, - "confidence": 0.9700348377227783, - "label_id": 1 - }, - "h": 85, - "w": 78, - "x": 1212, - "y": 633 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15118002891540527, - "y_min": 0.559596061706543, - "x_max": 0.187517911195755, - "y_max": 0.6318337917327881 - }, - "confidence": 0.6531009674072266, - "label_id": 1 - }, - "h": 78, - "w": 70, - "x": 290, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9700348377227783, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.04091823473572731, - 0.848346471786499, - 0.03772411867976189, - 0.005339496303349733, - 0.0676717460155487 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6531009674072266, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3624829649925232, - 0.011509028263390064, - 0.24509769678115845, - 0.013037861324846745, - 0.367872416973114 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 30733254656, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6312756538391113, - "y_min": 0.5854341387748718, - "x_max": 0.671859860420227, - "y_max": 0.6639557480812073 - }, - "confidence": 0.96966952085495, - "label_id": 1 - }, - "h": 85, - "w": 78, - "x": 1212, - "y": 632 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15097306668758392, - "y_min": 0.5598663091659546, - "x_max": 0.1875566989183426, - "y_max": 0.6320308446884155 - }, - "confidence": 0.6541778445243835, - "label_id": 1 - }, - "h": 78, - "w": 70, - "x": 290, - "y": 605 - } - ], - "tensors": [ - { - "confidence": 0.96966952085495, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.036339547485113144, - 0.8844934105873108, - 0.03187865763902664, - 0.006165020167827606, - 0.041123341768980026 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6541778445243835, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4028324782848358, - 0.012580770067870617, - 0.21696850657463074, - 0.0116655258461833, - 0.35595276951789856 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 30766587904, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6312800049781799, - "y_min": 0.5854560136795044, - "x_max": 0.6717676520347595, - "y_max": 0.6633696556091309 - }, - "confidence": 0.9696958661079407, - "label_id": 1 - }, - "h": 84, - "w": 78, - "x": 1212, - "y": 632 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15103627741336823, - "y_min": 0.5598424077033997, - "x_max": 0.18748585879802704, - "y_max": 0.6320945620536804 - }, - "confidence": 0.6440702080726624, - "label_id": 1 - }, - "h": 78, - "w": 70, - "x": 290, - "y": 605 - } - ], - "tensors": [ - { - "confidence": 0.9696958661079407, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.05015427991747856, - 0.8938770890235901, - 0.01874876767396927, - 0.010023156180977821, - 0.027196621522307396 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6440702080726624, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4038258492946625, - 0.012353570200502872, - 0.21490751206874847, - 0.01412882562726736, - 0.35478419065475464 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 30799921152, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6313953399658203, - "y_min": 0.5846167206764221, - "x_max": 0.6718490123748779, - "y_max": 0.6631661057472229 - }, - "confidence": 0.9740726947784424, - "label_id": 1 - }, - "h": 85, - "w": 78, - "x": 1212, - "y": 631 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15095533430576324, - "y_min": 0.5598903894424438, - "x_max": 0.1875099390745163, - "y_max": 0.6318371295928955 - }, - "confidence": 0.6651115417480469, - "label_id": 1 - }, - "h": 77, - "w": 70, - "x": 290, - "y": 605 - } - ], - "tensors": [ - { - "confidence": 0.9740726947784424, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.06798446178436279, - 0.8541192412376404, - 0.024895820766687393, - 0.009674151428043842, - 0.04332632198929787 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6651115417480469, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.42662298679351807, - 0.010878416709601879, - 0.21161037683486938, - 0.013592636212706566, - 0.3372955918312073 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 30833254400, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6315635442733765, - "y_min": 0.5851552486419678, - "x_max": 0.6718893051147461, - "y_max": 0.663799524307251 - }, - "confidence": 0.9742764830589294, - "label_id": 1 - }, - "h": 85, - "w": 77, - "x": 1213, - "y": 632 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15078142285346985, - "y_min": 0.5598657131195068, - "x_max": 0.18745002150535583, - "y_max": 0.632201075553894 - }, - "confidence": 0.6367475986480713, - "label_id": 1 - }, - "h": 78, - "w": 70, - "x": 290, - "y": 605 - } - ], - "tensors": [ - { - "confidence": 0.9742764830589294, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.06660666316747665, - 0.8629210591316223, - 0.02585649862885475, - 0.006172254215925932, - 0.03844344988465309 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6367475986480713, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4267213046550751, - 0.012740868143737316, - 0.20420078933238983, - 0.01189616322517395, - 0.34444090723991394 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 30866587648, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6318212151527405, - "y_min": 0.5863068103790283, - "x_max": 0.671999990940094, - "y_max": 0.6649302244186401 - }, - "confidence": 0.9706699252128601, - "label_id": 1 - }, - "h": 85, - "w": 77, - "x": 1213, - "y": 633 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15090566873550415, - "y_min": 0.5598137974739075, - "x_max": 0.18759167194366455, - "y_max": 0.6322208046913147 - }, - "confidence": 0.6457332372665405, - "label_id": 1 - }, - "h": 78, - "w": 70, - "x": 290, - "y": 605 - } - ], - "tensors": [ - { - "confidence": 0.9706699252128601, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.10654815286397934, - 0.796717643737793, - 0.035031240433454514, - 0.005169631447643042, - 0.05653334781527519 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6457332372665405, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3801003396511078, - 0.01138918474316597, - 0.21059682965278625, - 0.012523946352303028, - 0.38538968563079834 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 30899920896, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6319810152053833, - "y_min": 0.5864219069480896, - "x_max": 0.6719075441360474, - "y_max": 0.6660493016242981 - }, - "confidence": 0.9620373845100403, - "label_id": 1 - }, - "h": 86, - "w": 77, - "x": 1213, - "y": 633 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15107055008411407, - "y_min": 0.559813916683197, - "x_max": 0.1875203400850296, - "y_max": 0.6316707730293274 - }, - "confidence": 0.6463754177093506, - "label_id": 1 - }, - "h": 77, - "w": 70, - "x": 290, - "y": 605 - } - ], - "tensors": [ - { - "confidence": 0.9620373845100403, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.11758477240800858, - 0.7716057896614075, - 0.03675592318177223, - 0.00433933874592185, - 0.06971415132284164 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6463754177093506, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.423470675945282, - 0.013018114492297173, - 0.1996465027332306, - 0.011545348912477493, - 0.3523193895816803 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 30933254144, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6320053935050964, - "y_min": 0.5857701897621155, - "x_max": 0.6723684668540955, - "y_max": 0.6671379208564758 - }, - "confidence": 0.9632371664047241, - "label_id": 1 - }, - "h": 88, - "w": 78, - "x": 1213, - "y": 633 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15112285315990448, - "y_min": 0.5597013235092163, - "x_max": 0.18753670156002045, - "y_max": 0.6319552659988403 - }, - "confidence": 0.6471004486083984, - "label_id": 1 - }, - "h": 79, - "w": 70, - "x": 290, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9632371664047241, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09891961514949799, - 0.7701706290245056, - 0.040570542216300964, - 0.004099269863218069, - 0.08623989671468735 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6471004486083984, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.37811657786369324, - 0.010882770642638206, - 0.222861647605896, - 0.014115134254097939, - 0.3740239441394806 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 30966587392, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6320421695709229, - "y_min": 0.5860201716423035, - "x_max": 0.6732124090194702, - "y_max": 0.6669308543205261 - }, - "confidence": 0.9692204594612122, - "label_id": 1 - }, - "h": 87, - "w": 79, - "x": 1214, - "y": 633 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1511920690536499, - "y_min": 0.5598124861717224, - "x_max": 0.187445729970932, - "y_max": 0.6311950087547302 - }, - "confidence": 0.6696388721466064, - "label_id": 1 - }, - "h": 77, - "w": 70, - "x": 290, - "y": 605 - } - ], - "tensors": [ - { - "confidence": 0.9692204594612122, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09957011789083481, - 0.8252590894699097, - 0.02659415639936924, - 0.003325598780065775, - 0.04525109753012657 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6696388721466064, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3610452711582184, - 0.011018703691661358, - 0.2118137627840042, - 0.009741587564349174, - 0.4063807725906372 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 30999920640, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.632080078125, - "y_min": 0.5862427353858948, - "x_max": 0.6733347177505493, - "y_max": 0.6673564314842224 - }, - "confidence": 0.9787130355834961, - "label_id": 1 - }, - "h": 88, - "w": 79, - "x": 1214, - "y": 633 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15128064155578613, - "y_min": 0.5595628619194031, - "x_max": 0.18764472007751465, - "y_max": 0.6321223378181458 - }, - "confidence": 0.6880708932876587, - "label_id": 1 - }, - "h": 79, - "w": 70, - "x": 290, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9787130355834961, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.08140519261360168, - 0.8596228957176208, - 0.021234262734651566, - 0.004092843271791935, - 0.03364482522010803 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6880708932876587, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3579224944114685, - 0.009892124682664871, - 0.21827775239944458, - 0.014397908002138138, - 0.3995096981525421 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 31033253888, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6320713758468628, - "y_min": 0.5859854817390442, - "x_max": 0.6736087799072266, - "y_max": 0.6679213643074036 - }, - "confidence": 0.9798816442489624, - "label_id": 1 - }, - "h": 88, - "w": 79, - "x": 1214, - "y": 633 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15132614970207214, - "y_min": 0.5596207976341248, - "x_max": 0.1876029074192047, - "y_max": 0.6319701075553894 - }, - "confidence": 0.7038496732711792, - "label_id": 1 - }, - "h": 79, - "w": 69, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9798816442489624, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.06078490987420082, - 0.9054626822471619, - 0.011474479921162128, - 0.004756432492285967, - 0.01752144657075405 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7038496732711792, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.39514559507369995, - 0.012202522717416286, - 0.21918445825576782, - 0.013883525505661964, - 0.3595839738845825 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 31066587136, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6315293908119202, - "y_min": 0.5854017734527588, - "x_max": 0.6736802458763123, - "y_max": 0.6684141159057617 - }, - "confidence": 0.9777257442474365, - "label_id": 1 - }, - "h": 90, - "w": 80, - "x": 1213, - "y": 632 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1513424813747406, - "y_min": 0.5595823526382446, - "x_max": 0.18763750791549683, - "y_max": 0.6319589614868164 - }, - "confidence": 0.6994754672050476, - "label_id": 1 - }, - "h": 79, - "w": 69, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9777257442474365, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.046659454703330994, - 0.9208229780197144, - 0.010549759492278099, - 0.006095764227211475, - 0.015871988609433174 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6994754672050476, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4030555188655853, - 0.012912768870592117, - 0.21256546676158905, - 0.015668246895074844, - 0.35579797625541687 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 31099920384, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6312304139137268, - "y_min": 0.5856361389160156, - "x_max": 0.6731551289558411, - "y_max": 0.6683845520019531 - }, - "confidence": 0.967356264591217, - "label_id": 1 - }, - "h": 90, - "w": 80, - "x": 1212, - "y": 632 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15137332677841187, - "y_min": 0.5595918893814087, - "x_max": 0.18757739663124084, - "y_max": 0.6320109367370605 - }, - "confidence": 0.6991682052612305, - "label_id": 1 - }, - "h": 79, - "w": 69, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.967356264591217, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.05222665145993233, - 0.9214835166931152, - 0.00827094167470932, - 0.00713198771700263, - 0.010886885225772858 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6991682052612305, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.383792906999588, - 0.01256933156400919, - 0.21460437774658203, - 0.014670523814857006, - 0.37436291575431824 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 31133253632, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6312227249145508, - "y_min": 0.5858821868896484, - "x_max": 0.6726077795028687, - "y_max": 0.6684014797210693 - }, - "confidence": 0.9471590518951416, - "label_id": 1 - }, - "h": 89, - "w": 79, - "x": 1212, - "y": 633 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15142643451690674, - "y_min": 0.5595659613609314, - "x_max": 0.18779751658439636, - "y_max": 0.6321877837181091 - }, - "confidence": 0.7210903763771057, - "label_id": 1 - }, - "h": 79, - "w": 70, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9471590518951416, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.05465415120124817, - 0.9163042902946472, - 0.009379281662404537, - 0.00545223243534565, - 0.014210104942321777 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7210903763771057, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3549661338329315, - 0.010687809437513351, - 0.219732403755188, - 0.017380576580762863, - 0.39723312854766846 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 31166586880, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6315520405769348, - "y_min": 0.586903989315033, - "x_max": 0.6719947457313538, - "y_max": 0.6682890057563782 - }, - "confidence": 0.9180448651313782, - "label_id": 1 - }, - "h": 88, - "w": 77, - "x": 1213, - "y": 634 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1515078842639923, - "y_min": 0.5597501397132874, - "x_max": 0.1877327561378479, - "y_max": 0.6319120526313782 - }, - "confidence": 0.7331362962722778, - "label_id": 1 - }, - "h": 77, - "w": 69, - "x": 291, - "y": 605 - } - ], - "tensors": [ - { - "confidence": 0.9180448651313782, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.04784059524536133, - 0.9222114086151123, - 0.01086854375898838, - 0.0047279242426157, - 0.014351541176438332 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7331362962722778, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.40648654103279114, - 0.01268242858350277, - 0.2026216983795166, - 0.011348794214427471, - 0.36686044931411743 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 31199920128, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6321467161178589, - "y_min": 0.5875310301780701, - "x_max": 0.6715027093887329, - "y_max": 0.6681107878684998 - }, - "confidence": 0.9069615602493286, - "label_id": 1 - }, - "h": 87, - "w": 75, - "x": 1214, - "y": 635 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15149889886379242, - "y_min": 0.5598630905151367, - "x_max": 0.18763907253742218, - "y_max": 0.632125735282898 - }, - "confidence": 0.7081390023231506, - "label_id": 1 - }, - "h": 78, - "w": 69, - "x": 291, - "y": 605 - } - ], - "tensors": [ - { - "confidence": 0.9069615602493286, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.044485654681921005, - 0.9277206063270569, - 0.008215758018195629, - 0.004964396823197603, - 0.014613602310419083 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7081390023231506, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3984074890613556, - 0.010803773067891598, - 0.21232111752033234, - 0.009923573583364487, - 0.36854398250579834 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 31233253376, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6323927044868469, - "y_min": 0.5883090496063232, - "x_max": 0.6713247895240784, - "y_max": 0.6680392026901245 - }, - "confidence": 0.8995823860168457, - "label_id": 1 - }, - "h": 86, - "w": 75, - "x": 1214, - "y": 635 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1514654904603958, - "y_min": 0.5596649646759033, - "x_max": 0.1876692920923233, - "y_max": 0.6327338218688965 - }, - "confidence": 0.7275481820106506, - "label_id": 1 - }, - "h": 79, - "w": 69, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.8995823860168457, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.0531964935362339, - 0.9228802919387817, - 0.007735379505902529, - 0.004283927846699953, - 0.011903924867510796 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7275481820106506, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.34327206015586853, - 0.006691513583064079, - 0.23608489334583282, - 0.014398017898201942, - 0.399553507566452 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 31266586624, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6323870420455933, - "y_min": 0.5885132551193237, - "x_max": 0.6718556880950928, - "y_max": 0.6685055494308472 - }, - "confidence": 0.8949815630912781, - "label_id": 1 - }, - "h": 86, - "w": 76, - "x": 1214, - "y": 636 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15154801309108734, - "y_min": 0.5594757795333862, - "x_max": 0.18777357041835785, - "y_max": 0.6320815086364746 - }, - "confidence": 0.7047951221466064, - "label_id": 1 - }, - "h": 79, - "w": 70, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.8949815630912781, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.046279121190309525, - 0.9243804216384888, - 0.010426245629787445, - 0.0067559196613729, - 0.012158265337347984 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7047951221466064, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3162928819656372, - 0.005485194735229015, - 0.22789216041564941, - 0.015173060819506645, - 0.4351566731929779 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 31299919872, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6320691108703613, - "y_min": 0.5873146653175354, - "x_max": 0.672656774520874, - "y_max": 0.6681486964225769 - }, - "confidence": 0.9124325513839722, - "label_id": 1 - }, - "h": 88, - "w": 78, - "x": 1214, - "y": 634 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1515078842639923, - "y_min": 0.5594070553779602, - "x_max": 0.18775317072868347, - "y_max": 0.6321175694465637 - }, - "confidence": 0.691764235496521, - "label_id": 1 - }, - "h": 79, - "w": 69, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9124325513839722, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.06038961559534073, - 0.9051181077957153, - 0.007268109358847141, - 0.009022519923746586, - 0.01820169948041439 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.691764235496521, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3532225489616394, - 0.006514428649097681, - 0.24591054022312164, - 0.01811242662370205, - 0.3762400150299072 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 31333253120, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.631892740726471, - "y_min": 0.5869932174682617, - "x_max": 0.6737582087516785, - "y_max": 0.667940616607666 - }, - "confidence": 0.9410267472267151, - "label_id": 1 - }, - "h": 87, - "w": 81, - "x": 1213, - "y": 634 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15162961184978485, - "y_min": 0.559399425983429, - "x_max": 0.18770278990268707, - "y_max": 0.6316637396812439 - }, - "confidence": 0.6919135451316833, - "label_id": 1 - }, - "h": 78, - "w": 69, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9410267472267151, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.08607304841279984, - 0.8739097714424133, - 0.010097247548401356, - 0.010442744940519333, - 0.019477229565382004 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6919135451316833, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.37478750944137573, - 0.008378507569432259, - 0.23536545038223267, - 0.012935694307088852, - 0.36853286623954773 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 31366586368, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6322238445281982, - "y_min": 0.5865582823753357, - "x_max": 0.6744999885559082, - "y_max": 0.6671991944313049 - }, - "confidence": 0.9688905477523804, - "label_id": 1 - }, - "h": 88, - "w": 81, - "x": 1214, - "y": 633 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1515691876411438, - "y_min": 0.5594810247421265, - "x_max": 0.1877259612083435, - "y_max": 0.6316155195236206 - }, - "confidence": 0.6913590431213379, - "label_id": 1 - }, - "h": 78, - "w": 69, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9688905477523804, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1450144201517105, - 0.7873424887657166, - 0.017701406031847, - 0.0136429937556386, - 0.036298684775829315 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6913590431213379, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.39068910479545593, - 0.009038236923515797, - 0.23321786522865295, - 0.0139077203348279, - 0.35314711928367615 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 31399919616, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6322222352027893, - "y_min": 0.5863641500473022, - "x_max": 0.6749328970909119, - "y_max": 0.6667085886001587 - }, - "confidence": 0.9744174480438232, - "label_id": 1 - }, - "h": 87, - "w": 82, - "x": 1214, - "y": 633 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1517181098461151, - "y_min": 0.5594095587730408, - "x_max": 0.18781721591949463, - "y_max": 0.6312007308006287 - }, - "confidence": 0.6858406066894531, - "label_id": 1 - }, - "h": 78, - "w": 70, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9744174480438232, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.186697855591774, - 0.7484939098358154, - 0.018498878926038742, - 0.008882720954716206, - 0.037426628172397614 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6858406066894531, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3825480043888092, - 0.01000206358730793, - 0.2198934704065323, - 0.013590510934591293, - 0.37396591901779175 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 31433252864, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6327618360519409, - "y_min": 0.5852581262588501, - "x_max": 0.6746779680252075, - "y_max": 0.6665747165679932 - }, - "confidence": 0.9908377528190613, - "label_id": 1 - }, - "h": 88, - "w": 80, - "x": 1215, - "y": 632 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.151654452085495, - "y_min": 0.5595840811729431, - "x_max": 0.18774420022964478, - "y_max": 0.6313286423683167 - }, - "confidence": 0.6987591981887817, - "label_id": 1 - }, - "h": 78, - "w": 69, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9908377528190613, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2203606516122818, - 0.7103673219680786, - 0.02256649360060692, - 0.0067002251744270325, - 0.040005192160606384 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6987591981887817, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.37298306822776794, - 0.00913134217262268, - 0.2193191945552826, - 0.01171188335865736, - 0.38685449957847595 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 31466586112, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6323632001876831, - "y_min": 0.5839651226997375, - "x_max": 0.6749366521835327, - "y_max": 0.6669737696647644 - }, - "confidence": 0.9890614748001099, - "label_id": 1 - }, - "h": 89, - "w": 82, - "x": 1214, - "y": 631 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15168018639087677, - "y_min": 0.5595161318778992, - "x_max": 0.18768076598644257, - "y_max": 0.631386935710907 - }, - "confidence": 0.6816368699073792, - "label_id": 1 - }, - "h": 78, - "w": 69, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9890614748001099, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2056472897529602, - 0.717485249042511, - 0.020728953182697296, - 0.005997958593070507, - 0.050140537321567535 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6816368699073792, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.36818310618400574, - 0.008672828786075115, - 0.22005034983158112, - 0.01048879325389862, - 0.39260485768318176 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 31499919360, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6335240006446838, - "y_min": 0.5833216309547424, - "x_max": 0.6754658818244934, - "y_max": 0.6677176356315613 - }, - "confidence": 0.9943428039550781, - "label_id": 1 - }, - "h": 91, - "w": 81, - "x": 1216, - "y": 630 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15162277221679688, - "y_min": 0.5596714615821838, - "x_max": 0.18755468726158142, - "y_max": 0.6313944458961487 - }, - "confidence": 0.6859310865402222, - "label_id": 1 - }, - "h": 78, - "w": 69, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9943428039550781, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.23756423592567444, - 0.6562463045120239, - 0.028857974335551262, - 0.0073584397323429585, - 0.06997302919626236 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6859310865402222, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.34712743759155273, - 0.008082786574959755, - 0.20776903629302979, - 0.010191306471824646, - 0.42682945728302 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 31533252608, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6338817477226257, - "y_min": 0.5835369825363159, - "x_max": 0.6756978631019592, - "y_max": 0.6670068502426147 - }, - "confidence": 0.9975785613059998, - "label_id": 1 - }, - "h": 90, - "w": 80, - "x": 1217, - "y": 630 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15166307985782623, - "y_min": 0.5595731139183044, - "x_max": 0.18768174946308136, - "y_max": 0.6314532160758972 - }, - "confidence": 0.6873684525489807, - "label_id": 1 - }, - "h": 78, - "w": 69, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9975785613059998, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1307365596294403, - 0.8171815276145935, - 0.019237402826547623, - 0.0024311512243002653, - 0.030413437634706497 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6873684525489807, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.35870668292045593, - 0.008866894990205765, - 0.21048904955387115, - 0.010269702412188053, - 0.4116676151752472 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 31566585856, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6344090700149536, - "y_min": 0.5833116769790649, - "x_max": 0.6766191720962524, - "y_max": 0.6655998229980469 - }, - "confidence": 0.999221682548523, - "label_id": 1 - }, - "h": 89, - "w": 81, - "x": 1218, - "y": 630 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1516331136226654, - "y_min": 0.559563159942627, - "x_max": 0.18779709935188293, - "y_max": 0.631550669670105 - }, - "confidence": 0.6752796173095703, - "label_id": 1 - }, - "h": 78, - "w": 70, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.999221682548523, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.12532709538936615, - 0.8268688321113586, - 0.01878182962536812, - 0.0029215235263109207, - 0.02610071189701557 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6752796173095703, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3757055103778839, - 0.011562931351363659, - 0.19613146781921387, - 0.011170007288455963, - 0.4054300785064697 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 31599919104, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6355203986167908, - "y_min": 0.5824403762817383, - "x_max": 0.6775088906288147, - "y_max": 0.6647096872329712 - }, - "confidence": 0.9998743534088135, - "label_id": 1 - }, - "h": 89, - "w": 81, - "x": 1220, - "y": 629 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15178513526916504, - "y_min": 0.5592746734619141, - "x_max": 0.1877197027206421, - "y_max": 0.6313186883926392 - }, - "confidence": 0.6814766526222229, - "label_id": 1 - }, - "h": 78, - "w": 69, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9998743534088135, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.11038274317979813, - 0.8548855185508728, - 0.013942066580057144, - 0.005876264069229364, - 0.014913496561348438 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6814766526222229, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.40231582522392273, - 0.012022319249808788, - 0.23116743564605713, - 0.012061960063874722, - 0.34243252873420715 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 31633252352, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6350762844085693, - "y_min": 0.5816850066184998, - "x_max": 0.6772418022155762, - "y_max": 0.6649523377418518 - }, - "confidence": 0.9998866319656372, - "label_id": 1 - }, - "h": 90, - "w": 81, - "x": 1219, - "y": 628 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15185198187828064, - "y_min": 0.5591959357261658, - "x_max": 0.18789681792259216, - "y_max": 0.631123960018158 - }, - "confidence": 0.6978844404220581, - "label_id": 1 - }, - "h": 78, - "w": 69, - "x": 292, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9998866319656372, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.12620984017848969, - 0.8282325267791748, - 0.0166296549141407, - 0.006500964052975178, - 0.022427039220929146 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6978844404220581, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3772974908351898, - 0.0113162687048316, - 0.2499883472919464, - 0.012247391045093536, - 0.34915053844451904 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 31666585600, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6362587213516235, - "y_min": 0.5826380252838135, - "x_max": 0.6774469614028931, - "y_max": 0.6644606590270996 - }, - "confidence": 0.9998818635940552, - "label_id": 1 - }, - "h": 89, - "w": 79, - "x": 1222, - "y": 629 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15174613893032074, - "y_min": 0.5589587092399597, - "x_max": 0.18803520500659943, - "y_max": 0.6315197348594666 - }, - "confidence": 0.66595458984375, - "label_id": 1 - }, - "h": 78, - "w": 70, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9998818635940552, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1017109826207161, - 0.8325909972190857, - 0.03100912645459175, - 0.005151302553713322, - 0.029537564143538475 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.66595458984375, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.38933491706848145, - 0.011123165488243103, - 0.2296193540096283, - 0.010430056601762772, - 0.35949257016181946 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 31699918848, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6379142999649048, - "y_min": 0.5832555890083313, - "x_max": 0.6776036024093628, - "y_max": 0.6616278290748596 - }, - "confidence": 0.9998807907104492, - "label_id": 1 - }, - "h": 85, - "w": 76, - "x": 1225, - "y": 630 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15180079638957977, - "y_min": 0.5587915182113647, - "x_max": 0.18804390728473663, - "y_max": 0.6315251588821411 - }, - "confidence": 0.6714736223220825, - "label_id": 1 - }, - "h": 79, - "w": 70, - "x": 291, - "y": 603 - } - ], - "tensors": [ - { - "confidence": 0.9998807907104492, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1070326715707779, - 0.8411072492599487, - 0.026072634384036064, - 0.0036696288734674454, - 0.02211783453822136 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6714736223220825, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.35669103264808655, - 0.01121487095952034, - 0.23847132921218872, - 0.010577505454421043, - 0.38304534554481506 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 31733252096, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.638308584690094, - "y_min": 0.5825615525245667, - "x_max": 0.6781366467475891, - "y_max": 0.6610731482505798 - }, - "confidence": 0.9999576807022095, - "label_id": 1 - }, - "h": 85, - "w": 76, - "x": 1226, - "y": 629 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15172146260738373, - "y_min": 0.5588680505752563, - "x_max": 0.18784452974796295, - "y_max": 0.6311078071594238 - }, - "confidence": 0.6619387865066528, - "label_id": 1 - }, - "h": 78, - "w": 70, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9999576807022095, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09959232807159424, - 0.8464418053627014, - 0.02505658194422722, - 0.0061944629997015, - 0.022714773193001747 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6619387865066528, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4076942801475525, - 0.012122029438614845, - 0.23605792224407196, - 0.009634533897042274, - 0.3344912528991699 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 31766585344, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.63664311170578, - "y_min": 0.5803129076957703, - "x_max": 0.679115355014801, - "y_max": 0.6611583828926086 - }, - "confidence": 0.9999922513961792, - "label_id": 1 - }, - "h": 87, - "w": 82, - "x": 1222, - "y": 627 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15167994797229767, - "y_min": 0.5588642358779907, - "x_max": 0.1879175454378128, - "y_max": 0.6313809156417847 - }, - "confidence": 0.6502320766448975, - "label_id": 1 - }, - "h": 78, - "w": 70, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9999922513961792, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1531417816877365, - 0.7874298691749573, - 0.020837120711803436, - 0.007900289259850979, - 0.03069099597632885 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6502320766448975, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3908385932445526, - 0.0098887849599123, - 0.23784558475017548, - 0.008536852896213531, - 0.3528901934623718 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 31799918592, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6366622447967529, - "y_min": 0.5787676572799683, - "x_max": 0.6791889667510986, - "y_max": 0.6624031066894531 - }, - "confidence": 0.9999934434890747, - "label_id": 1 - }, - "h": 90, - "w": 82, - "x": 1222, - "y": 625 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15148499608039856, - "y_min": 0.5591157078742981, - "x_max": 0.18782183527946472, - "y_max": 0.6314018368721008 - }, - "confidence": 0.6441395282745361, - "label_id": 1 - }, - "h": 78, - "w": 70, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9999934434890747, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1459355503320694, - 0.8007643222808838, - 0.01845252886414528, - 0.008605694398283958, - 0.026241911575198174 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6441395282745361, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4064679443836212, - 0.01446149405092001, - 0.22819559276103973, - 0.00959387794137001, - 0.34128108620643616 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 31833251840, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6372790932655334, - "y_min": 0.5790590643882751, - "x_max": 0.6792849898338318, - "y_max": 0.66170734167099 - }, - "confidence": 0.9999933242797852, - "label_id": 1 - }, - "h": 90, - "w": 80, - "x": 1224, - "y": 625 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1514122635126114, - "y_min": 0.5591961741447449, - "x_max": 0.18787144124507904, - "y_max": 0.631570041179657 - }, - "confidence": 0.6488404273986816, - "label_id": 1 - }, - "h": 78, - "w": 70, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9999933242797852, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1261267215013504, - 0.7776594161987305, - 0.018710114061832428, - 0.008477546274662018, - 0.06902626901865005 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6488404273986816, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.390608549118042, - 0.013285761699080467, - 0.2215907871723175, - 0.009045814163982868, - 0.3654691278934479 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 31866585088, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.638620138168335, - "y_min": 0.5800860524177551, - "x_max": 0.6797231435775757, - "y_max": 0.6615100502967834 - }, - "confidence": 0.9999845027923584, - "label_id": 1 - }, - "h": 88, - "w": 79, - "x": 1226, - "y": 626 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15153498947620392, - "y_min": 0.5590779781341553, - "x_max": 0.18795453011989594, - "y_max": 0.6313788890838623 - }, - "confidence": 0.6622089743614197, - "label_id": 1 - }, - "h": 78, - "w": 70, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9999845027923584, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.11019092798233032, - 0.7353060841560364, - 0.034638550132513046, - 0.00878194160759449, - 0.1110825166106224 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6622089743614197, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.38064906001091003, - 0.015834007412195206, - 0.21449707448482513, - 0.008785299025475979, - 0.3802345395088196 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 31899918336, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6397916078567505, - "y_min": 0.5791495442390442, - "x_max": 0.6813603639602661, - "y_max": 0.6593839526176453 - }, - "confidence": 0.9999958276748657, - "label_id": 1 - }, - "h": 87, - "w": 80, - "x": 1228, - "y": 625 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.151731938123703, - "y_min": 0.5591407418251038, - "x_max": 0.1880190670490265, - "y_max": 0.6313837170600891 - }, - "confidence": 0.6650087237358093, - "label_id": 1 - }, - "h": 78, - "w": 70, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9999958276748657, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.07374405860900879, - 0.8721978068351746, - 0.014955664053559303, - 0.012021361850202084, - 0.027081158012151718 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6650087237358093, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.36460012197494507, - 0.01757291704416275, - 0.21275649964809418, - 0.00923014897853136, - 0.3958403468132019 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 31933251584, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6410117149353027, - "y_min": 0.5787859559059143, - "x_max": 0.6820839643478394, - "y_max": 0.6612088084220886 - }, - "confidence": 0.9999977350234985, - "label_id": 1 - }, - "h": 89, - "w": 79, - "x": 1231, - "y": 625 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15152111649513245, - "y_min": 0.5590834021568298, - "x_max": 0.18800169229507446, - "y_max": 0.6320361495018005 - }, - "confidence": 0.6719360947608948, - "label_id": 1 - }, - "h": 79, - "w": 70, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9999977350234985, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.061078041791915894, - 0.8585217595100403, - 0.02254451811313629, - 0.005510690156370401, - 0.05234498158097267 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6719360947608948, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.34198516607284546, - 0.011339307762682438, - 0.24692867696285248, - 0.008935565128922462, - 0.3908112645149231 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 31966584832, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6418386697769165, - "y_min": 0.5800333023071289, - "x_max": 0.6824440956115723, - "y_max": 0.6601543426513672 - }, - "confidence": 0.9999918937683105, - "label_id": 1 - }, - "h": 87, - "w": 78, - "x": 1232, - "y": 626 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1513814777135849, - "y_min": 0.5591036081314087, - "x_max": 0.18785734474658966, - "y_max": 0.6325438022613525 - }, - "confidence": 0.6661188006401062, - "label_id": 1 - }, - "h": 79, - "w": 70, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9999918937683105, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.05224277824163437, - 0.8518681526184082, - 0.030967416241765022, - 0.0017329243710264564, - 0.06318867951631546 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6661188006401062, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.36780503392219543, - 0.015445378609001637, - 0.23448359966278076, - 0.009085437282919884, - 0.3731805384159088 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 31999918080, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6433550119400024, - "y_min": 0.5791207551956177, - "x_max": 0.6819418668746948, - "y_max": 0.659045934677124 - }, - "confidence": 0.999998927116394, - "label_id": 1 - }, - "h": 87, - "w": 74, - "x": 1235, - "y": 625 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15149472653865814, - "y_min": 0.5592440962791443, - "x_max": 0.18764464557170868, - "y_max": 0.632373034954071 - }, - "confidence": 0.6789680123329163, - "label_id": 1 - }, - "h": 79, - "w": 69, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.999998927116394, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.04303458333015442, - 0.8111134767532349, - 0.05235118418931961, - 0.002779092639684677, - 0.09072164446115494 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6789680123329163, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3962002098560333, - 0.016897067427635193, - 0.22552092373371124, - 0.010274042375385761, - 0.3511078357696533 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 32033251328, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6436619758605957, - "y_min": 0.5779989957809448, - "x_max": 0.6817814111709595, - "y_max": 0.658448338508606 - }, - "confidence": 0.9999984502792358, - "label_id": 1 - }, - "h": 87, - "w": 73, - "x": 1236, - "y": 624 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15142284333705902, - "y_min": 0.559403121471405, - "x_max": 0.18751578032970428, - "y_max": 0.6324540972709656 - }, - "confidence": 0.6902259588241577, - "label_id": 1 - }, - "h": 79, - "w": 69, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9999984502792358, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.044535525143146515, - 0.7084099650382996, - 0.05901298671960831, - 0.0040982505306601524, - 0.18394331634044647 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6902259588241577, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3912453055381775, - 0.012634973973035812, - 0.2449144870042801, - 0.0071404376067221165, - 0.3440648317337036 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 32066584576, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.643975555896759, - "y_min": 0.5766779780387878, - "x_max": 0.6830442547798157, - "y_max": 0.6584587693214417 - }, - "confidence": 0.9999997615814209, - "label_id": 1 - }, - "h": 88, - "w": 75, - "x": 1236, - "y": 623 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15128032863140106, - "y_min": 0.5594150424003601, - "x_max": 0.18741892278194427, - "y_max": 0.6321834921836853 - }, - "confidence": 0.6891205906867981, - "label_id": 1 - }, - "h": 79, - "w": 70, - "x": 290, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9999997615814209, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.05094970017671585, - 0.7394554018974304, - 0.062060579657554626, - 0.005152314901351929, - 0.1423819661140442 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6891205906867981, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.39339861273765564, - 0.013170404359698296, - 0.24340401589870453, - 0.009256720542907715, - 0.3407701849937439 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 32099917824, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6441519856452942, - "y_min": 0.57771897315979, - "x_max": 0.6835020184516907, - "y_max": 0.659543514251709 - }, - "confidence": 0.9999992847442627, - "label_id": 1 - }, - "h": 88, - "w": 75, - "x": 1237, - "y": 624 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15143108367919922, - "y_min": 0.5592488646507263, - "x_max": 0.18753045797348022, - "y_max": 0.6320021748542786 - }, - "confidence": 0.6751353144645691, - "label_id": 1 - }, - "h": 79, - "w": 69, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9999992847442627, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.047639500349760056, - 0.7994875907897949, - 0.06220141053199768, - 0.0030368007719516754, - 0.08763468265533447 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6751353144645691, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4019069969654083, - 0.013874261640012264, - 0.248546302318573, - 0.008581600151956081, - 0.3270907700061798 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 32133251072, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6450904607772827, - "y_min": 0.5757425427436829, - "x_max": 0.6851444244384766, - "y_max": 0.6594309210777283 - }, - "confidence": 0.9999997615814209, - "label_id": 1 - }, - "h": 90, - "w": 76, - "x": 1239, - "y": 622 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15147201716899872, - "y_min": 0.5594008564949036, - "x_max": 0.1875375360250473, - "y_max": 0.6317121386528015 - }, - "confidence": 0.6856436729431152, - "label_id": 1 - }, - "h": 78, - "w": 69, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9999997615814209, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.05669061094522476, - 0.7651486396789551, - 0.05436008796095848, - 0.004157999996095896, - 0.11964260041713715 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6856436729431152, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4334481358528137, - 0.020077360793948174, - 0.24890127778053284, - 0.009206363931298256, - 0.2883669137954712 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 32166584320, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.645807147026062, - "y_min": 0.5772463083267212, - "x_max": 0.684799313545227, - "y_max": 0.6581945419311523 - }, - "confidence": 0.9999995231628418, - "label_id": 1 - }, - "h": 88, - "w": 75, - "x": 1240, - "y": 623 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15144884586334229, - "y_min": 0.5593670010566711, - "x_max": 0.18764284253120422, - "y_max": 0.6319063305854797 - }, - "confidence": 0.6733196377754211, - "label_id": 1 - }, - "h": 78, - "w": 69, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9999995231628418, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.09093005210161209, - 0.6201232075691223, - 0.08910035341978073, - 0.006892747711390257, - 0.1929536908864975 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6733196377754211, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4498623013496399, - 0.02391287125647068, - 0.24304607510566711, - 0.010393100790679455, - 0.27278563380241394 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 32199917568, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6462263464927673, - "y_min": 0.5771890878677368, - "x_max": 0.6846162676811218, - "y_max": 0.6591677665710449 - }, - "confidence": 0.9999995231628418, - "label_id": 1 - }, - "h": 89, - "w": 73, - "x": 1241, - "y": 623 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15164698660373688, - "y_min": 0.5592092871665955, - "x_max": 0.1877432018518448, - "y_max": 0.631982147693634 - }, - "confidence": 0.6770163774490356, - "label_id": 1 - }, - "h": 79, - "w": 69, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9999995231628418, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.11131761968135834, - 0.5265834927558899, - 0.15141189098358154, - 0.007282686419785023, - 0.2034042924642563 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6770163774490356, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4180774390697479, - 0.017836015671491623, - 0.25113099813461304, - 0.009977906011044979, - 0.3029777407646179 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 32233250816, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6462773084640503, - "y_min": 0.5766027569770813, - "x_max": 0.684604287147522, - "y_max": 0.6597234606742859 - }, - "confidence": 0.9999995231628418, - "label_id": 1 - }, - "h": 90, - "w": 73, - "x": 1241, - "y": 623 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1517234444618225, - "y_min": 0.5592871904373169, - "x_max": 0.18774467706680298, - "y_max": 0.6319608688354492 - }, - "confidence": 0.6770161390304565, - "label_id": 1 - }, - "h": 79, - "w": 69, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9999995231628418, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.19181399047374725, - 0.29192668199539185, - 0.21375343203544617, - 0.004819635767489672, - 0.29768621921539307 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6770161390304565, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4194498360157013, - 0.016176264733076096, - 0.24064776301383972, - 0.009991117753088474, - 0.31373506784439087 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 32266584064, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6458117961883545, - "y_min": 0.5748052597045898, - "x_max": 0.6852179765701294, - "y_max": 0.6594530344009399 - }, - "confidence": 0.9999998807907104, - "label_id": 1 - }, - "h": 91, - "w": 76, - "x": 1240, - "y": 621 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1518065333366394, - "y_min": 0.5592576861381531, - "x_max": 0.18783479928970337, - "y_max": 0.6319895386695862 - }, - "confidence": 0.6714881658554077, - "label_id": 1 - }, - "h": 79, - "w": 70, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9999998807907104, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2152981013059616, - 0.30995845794677734, - 0.1987890899181366, - 0.005898940376937389, - 0.2700553238391876 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6714881658554077, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.41025015711784363, - 0.016772709786891937, - 0.2542082369327545, - 0.011057617142796516, - 0.30771124362945557 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 32299917312, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6472063064575195, - "y_min": 0.5749484896659851, - "x_max": 0.6861575841903687, - "y_max": 0.6554960608482361 - }, - "confidence": 0.9999988079071045, - "label_id": 1 - }, - "h": 87, - "w": 74, - "x": 1243, - "y": 621 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1517210602760315, - "y_min": 0.5593337416648865, - "x_max": 0.18780016899108887, - "y_max": 0.6321019530296326 - }, - "confidence": 0.6593039035797119, - "label_id": 1 - }, - "h": 79, - "w": 70, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9999988079071045, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.10398469865322113, - 0.15724003314971924, - 0.18103450536727905, - 0.006424012593924999, - 0.5513167977333069 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6593039035797119, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.4046647846698761, - 0.01587243564426899, - 0.2538711130619049, - 0.011479821987450123, - 0.31411194801330566 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 32333250560, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6470150947570801, - "y_min": 0.575160026550293, - "x_max": 0.6869598627090454, - "y_max": 0.6565886735916138 - }, - "confidence": 0.9999991655349731, - "label_id": 1 - }, - "h": 88, - "w": 77, - "x": 1242, - "y": 621 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1516406238079071, - "y_min": 0.5593757033348083, - "x_max": 0.18769913911819458, - "y_max": 0.6320053935050964 - }, - "confidence": 0.6668329238891602, - "label_id": 1 - }, - "h": 79, - "w": 69, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9999991655349731, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.17384174466133118, - 0.27410051226615906, - 0.18295760452747345, - 0.006545675452798605, - 0.3625544607639313 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6668329238891602, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.41703975200653076, - 0.015510600060224533, - 0.24283134937286377, - 0.011274757795035839, - 0.3133435547351837 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 32366583808, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6465251445770264, - "y_min": 0.5743125081062317, - "x_max": 0.6874175071716309, - "y_max": 0.658067524433136 - }, - "confidence": 0.9999997615814209, - "label_id": 1 - }, - "h": 91, - "w": 79, - "x": 1241, - "y": 620 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1517850011587143, - "y_min": 0.559260904788971, - "x_max": 0.1876807063817978, - "y_max": 0.6319004893302917 - }, - "confidence": 0.6881342530250549, - "label_id": 1 - }, - "h": 78, - "w": 69, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9999997615814209, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.13562321662902832, - 0.29887402057647705, - 0.22043563425540924, - 0.0122861722484231, - 0.33278098702430725 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.6881342530250549, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.39135488867759705, - 0.01698964647948742, - 0.2358727902173996, - 0.010803242214024067, - 0.3449794352054596 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 32399917056, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6461716890335083, - "y_min": 0.5733420848846436, - "x_max": 0.68694007396698, - "y_max": 0.6585009098052979 - }, - "confidence": 0.9999996423721313, - "label_id": 1 - }, - "h": 92, - "w": 78, - "x": 1241, - "y": 619 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.151777982711792, - "y_min": 0.559387743473053, - "x_max": 0.18780454993247986, - "y_max": 0.6322036385536194 - }, - "confidence": 0.7252939939498901, - "label_id": 1 - }, - "h": 79, - "w": 70, - "x": 291, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9999996423721313, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.19098018109798431, - 0.40198642015457153, - 0.1453896015882492, - 0.024341804906725883, - 0.23730194568634033 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7252939939498901, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3869762718677521, - 0.01467085164040327, - 0.2439466416835785, - 0.010794169269502163, - 0.34361204504966736 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 32433250304, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.646308422088623, - "y_min": 0.5727260112762451, - "x_max": 0.6869267225265503, - "y_max": 0.6577545404434204 - }, - "confidence": 0.9999996423721313, - "label_id": 1 - }, - "h": 91, - "w": 78, - "x": 1241, - "y": 619 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15195050835609436, - "y_min": 0.5593099594116211, - "x_max": 0.1879296898841858, - "y_max": 0.6320338249206543 - }, - "confidence": 0.731448233127594, - "label_id": 1 - }, - "h": 79, - "w": 69, - "x": 292, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9999996423721313, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1740598827600479, - 0.42351552844047546, - 0.1274631917476654, - 0.02415722794830799, - 0.2508041560649872 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.731448233127594, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3465496003627777, - 0.010542549192905426, - 0.29819080233573914, - 0.007339967880398035, - 0.33737704157829285 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 32466583552, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6467593908309937, - "y_min": 0.573054313659668, - "x_max": 0.6883336305618286, - "y_max": 0.6583067178726196 - }, - "confidence": 0.9999997615814209, - "label_id": 1 - }, - "h": 92, - "w": 80, - "x": 1242, - "y": 619 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15191008150577545, - "y_min": 0.5593777298927307, - "x_max": 0.1878894418478012, - "y_max": 0.6319761872291565 - }, - "confidence": 0.732464075088501, - "label_id": 1 - }, - "h": 79, - "w": 69, - "x": 292, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9999997615814209, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1520843803882599, - 0.5640777945518494, - 0.0936121717095375, - 0.011032085865736008, - 0.17919357120990753 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.732464075088501, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.32882261276245117, - 0.008216189220547676, - 0.2838081419467926, - 0.007201361935585737, - 0.371951699256897 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 32499916800, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6468920707702637, - "y_min": 0.5750641822814941, - "x_max": 0.6895730495452881, - "y_max": 0.6594201326370239 - }, - "confidence": 0.9999988079071045, - "label_id": 1 - }, - "h": 91, - "w": 82, - "x": 1242, - "y": 621 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1519220769405365, - "y_min": 0.559447705745697, - "x_max": 0.18782871961593628, - "y_max": 0.6319380402565002 - }, - "confidence": 0.7274362444877625, - "label_id": 1 - }, - "h": 78, - "w": 69, - "x": 292, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9999988079071045, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.11901059001684189, - 0.6701794266700745, - 0.07504250109195709, - 0.012630283832550049, - 0.12313709408044815 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7274362444877625, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.33674347400665283, - 0.011964954435825348, - 0.2592969536781311, - 0.007569783832877874, - 0.38442474603652954 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 32533250048, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6464240550994873, - "y_min": 0.5756659507751465, - "x_max": 0.6900008916854858, - "y_max": 0.6592317819595337 - }, - "confidence": 0.9999986886978149, - "label_id": 1 - }, - "h": 90, - "w": 84, - "x": 1241, - "y": 622 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15191611647605896, - "y_min": 0.5593456029891968, - "x_max": 0.18787258863449097, - "y_max": 0.6320149898529053 - }, - "confidence": 0.7110406756401062, - "label_id": 1 - }, - "h": 79, - "w": 69, - "x": 292, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9999986886978149, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.1953001320362091, - 0.4654584228992462, - 0.12383514642715454, - 0.017615636810660362, - 0.1977906972169876 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7110406756401062, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.32661575078964233, - 0.009086734615266323, - 0.28232839703559875, - 0.007907046005129814, - 0.37406206130981445 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 32566583296, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6486896276473999, - "y_min": 0.5733289122581482, - "x_max": 0.6903063058853149, - "y_max": 0.6556666493415833 - }, - "confidence": 0.9999969005584717, - "label_id": 1 - }, - "h": 89, - "w": 80, - "x": 1245, - "y": 619 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.152049720287323, - "y_min": 0.5593138933181763, - "x_max": 0.187888503074646, - "y_max": 0.6320160627365112 - }, - "confidence": 0.7229158282279968, - "label_id": 1 - }, - "h": 79, - "w": 69, - "x": 292, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9999969005584717, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.13151493668556213, - 0.3032914102077484, - 0.0907510295510292, - 0.010226177982985973, - 0.4642164409160614 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7229158282279968, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3294406235218048, - 0.008968326263129711, - 0.27934515476226807, - 0.008153044618666172, - 0.37409281730651855 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 32599916544, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6481388807296753, - "y_min": 0.5740036368370056, - "x_max": 0.6902143955230713, - "y_max": 0.654961884021759 - }, - "confidence": 0.9999977350234985, - "label_id": 1 - }, - "h": 87, - "w": 81, - "x": 1244, - "y": 620 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.152034729719162, - "y_min": 0.5592212677001953, - "x_max": 0.1878989040851593, - "y_max": 0.6322300434112549 - }, - "confidence": 0.7188619375228882, - "label_id": 1 - }, - "h": 79, - "w": 69, - "x": 292, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9999977350234985, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2105962485074997, - 0.28783223032951355, - 0.13294900953769684, - 0.017427444458007812, - 0.3511950373649597 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7188619375228882, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.33229321241378784, - 0.00951682310551405, - 0.28444671630859375, - 0.008790131658315659, - 0.36495307087898254 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 32633249792, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6475094556808472, - "y_min": 0.5740763545036316, - "x_max": 0.6901317834854126, - "y_max": 0.6558660864830017 - }, - "confidence": 0.9999983310699463, - "label_id": 1 - }, - "h": 88, - "w": 82, - "x": 1243, - "y": 620 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1520082652568817, - "y_min": 0.5591914653778076, - "x_max": 0.18785026669502258, - "y_max": 0.6322927474975586 - }, - "confidence": 0.7219709753990173, - "label_id": 1 - }, - "h": 79, - "w": 69, - "x": 292, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9999983310699463, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.19485776126384735, - 0.2551717758178711, - 0.14929522573947906, - 0.02349393628537655, - 0.3771812915802002 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7219709753990173, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3243238627910614, - 0.008203215897083282, - 0.2871074676513672, - 0.00819376576691866, - 0.3721716105937958 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 32666583040, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6476972699165344, - "y_min": 0.5731842517852783, - "x_max": 0.690417468547821, - "y_max": 0.6549614667892456 - }, - "confidence": 0.999996542930603, - "label_id": 1 - }, - "h": 88, - "w": 82, - "x": 1244, - "y": 619 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15218929946422577, - "y_min": 0.5592993497848511, - "x_max": 0.1878429800271988, - "y_max": 0.632013201713562 - }, - "confidence": 0.7451170682907104, - "label_id": 1 - }, - "h": 79, - "w": 69, - "x": 292, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.999996542930603, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.18195562064647675, - 0.30017897486686707, - 0.10244804620742798, - 0.03162147477269173, - 0.38379594683647156 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7451170682907104, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.34869852662086487, - 0.009371547028422356, - 0.2893265187740326, - 0.008862875401973724, - 0.3437404930591583 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 32699916288, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6473636031150818, - "y_min": 0.5717464685440063, - "x_max": 0.6903174519538879, - "y_max": 0.6551392078399658 - }, - "confidence": 0.999997615814209, - "label_id": 1 - }, - "h": 91, - "w": 82, - "x": 1243, - "y": 617 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1520567536354065, - "y_min": 0.5591548681259155, - "x_max": 0.18778786063194275, - "y_max": 0.6324269771575928 - }, - "confidence": 0.7384142875671387, - "label_id": 1 - }, - "h": 79, - "w": 69, - "x": 292, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.999997615814209, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.19509048759937286, - 0.264447420835495, - 0.1711876541376114, - 0.01323525607585907, - 0.3560391664505005 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7384142875671387, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.334640771150589, - 0.008012007921934128, - 0.28778451681137085, - 0.009004959836602211, - 0.3605577349662781 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 32733249536, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6477920413017273, - "y_min": 0.5720269680023193, - "x_max": 0.6915772557258606, - "y_max": 0.6562883853912354 - }, - "confidence": 0.9999974966049194, - "label_id": 1 - }, - "h": 91, - "w": 84, - "x": 1244, - "y": 618 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15184453129768372, - "y_min": 0.5592555999755859, - "x_max": 0.18778389692306519, - "y_max": 0.6323622465133667 - }, - "confidence": 0.7306545376777649, - "label_id": 1 - }, - "h": 79, - "w": 69, - "x": 292, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9999974966049194, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.2230723649263382, - 0.17807835340499878, - 0.15094122290611267, - 0.019288793206214905, - 0.42861923575401306 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7306545376777649, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3431253135204315, - 0.009403624571859837, - 0.27925559878349304, - 0.00982794538140297, - 0.35838747024536133 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 1920, - "height": 1080 - }, - "source": "file:///home/pipeline-server/samples/classroom.mp4", - "tags": {}, - "timestamp": 32766582784, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6485132575035095, - "y_min": 0.5723303556442261, - "x_max": 0.6915108561515808, - "y_max": 0.6557682752609253 - }, - "confidence": 0.9999855756759644, - "label_id": 1 - }, - "h": 90, - "w": 83, - "x": 1245, - "y": 618 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.15201108157634735, - "y_min": 0.5591787695884705, - "x_max": 0.18782322108745575, - "y_max": 0.6325650811195374 - }, - "confidence": 0.7380393147468567, - "label_id": 1 - }, - "h": 79, - "w": 69, - "x": 292, - "y": 604 - } - ], - "tensors": [ - { - "confidence": 0.9999855756759644, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.21004769206047058, - 0.23251724243164062, - 0.1485212743282318, - 0.01827627792954445, - 0.3906375467777252 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - }, - { - "confidence": 0.7380393147468567, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "cnn_fd_004_sq_light_ssd", - "name": "detection", - "precision": "FP32" - }, - { - "data": [ - 0.3543739914894104, - 0.009160313755273819, - 0.27805230021476746, - 0.01008217129856348, - 0.3483312726020813 - ], - "layer_name": "prob_emotion", - "layout": "NCHW", - "model_name": "0003_EmoNet_ResNet10", - "name": "default", - "precision": "FP32" - } - ] - } - ] -} \ No newline at end of file diff --git a/tests/test_cases/pipeline_stability/cpu/stability_object_classification_gstreamer.json b/tests/test_cases/pipeline_stability/cpu/stability_object_classification_gstreamer.json deleted file mode 100644 index 6031726..0000000 --- a/tests/test_cases/pipeline_stability/cpu/stability_object_classification_gstreamer.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "options": {}, - "pipeline": { - "name": "object_classification", - "version": "vehicle_attributes" - }, - "request": { - "source": { - "type": "gst", - "element": "multifilesrc", - "postproc": "decodebin ! videoconvert ! video/x-raw,format=NV12", - "capsfilter": "image/png,framerate=(fraction)30/1", - "properties": { - "location": "/home/pipeline-server/tests/media/sample01.png", - "loop": true - } - }, - "destination": { - "type": "file", - "path": "/dev/null", - "format": "json-lines" - } - }, - "stability_duration": 10800, - "relaunch_on_complete": false -} diff --git a/tests/test_cases/pipeline_stability/cpu/stability_object_classification_many_gstreamer.json b/tests/test_cases/pipeline_stability/cpu/stability_object_classification_many_gstreamer.json deleted file mode 100644 index 1d28ef1..0000000 --- a/tests/test_cases/pipeline_stability/cpu/stability_object_classification_many_gstreamer.json +++ /dev/null @@ -1,9994 +0,0 @@ -{ - "options": {}, - "pipeline": { - "name": "object_classification", - "version": "vehicle_attributes" - }, - "request": { - "source": { - "type": "uri", - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4" - }, - "destination": { - "type": "file", - "path": "/tmp/object_classification_many_results.json", - "format": "json-lines" - }, - "parameters": { - "detection-model-instance-id": "stability3" - } - }, - "stability_duration": 10800, - "relaunch_on_complete": true, - "numerical_tolerance": 0.01, - "result": [ - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7448995113372803, - "x_min": 0.6734093427658081, - "y_max": 0.9991495609283447, - "y_min": 0.8781012296676636 - }, - "confidence": 0.5402477979660034, - "label": "person", - "label_id": 1 - }, - "h": 52, - "region_id": 709, - "roi_type": "person", - "w": 55, - "x": 517, - "y": 379 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7442193031311035, - "x_min": 0.6763269901275635, - "y_max": 1.0, - "y_min": 0.8277983069419861 - }, - "confidence": 0.5505855679512024, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 710, - "roi_type": "person", - "w": 52, - "x": 519, - "y": 358 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7465137243270874, - "x_min": 0.6821863651275635, - "y_max": 1.0, - "y_min": 0.810469388961792 - }, - "confidence": 0.6447376608848572, - "label": "person", - "label_id": 1 - }, - "h": 82, - "region_id": 711, - "roi_type": "person", - "w": 49, - "x": 524, - "y": 350 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7481285929679871, - "x_min": 0.6836653351783752, - "y_max": 0.9999656677246094, - "y_min": 0.7867168188095093 - }, - "confidence": 0.8825288414955139, - "label": "person", - "label_id": 1 - }, - "h": 92, - "region_id": 712, - "roi_type": "person", - "w": 50, - "x": 525, - "y": 340 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7502986788749695, - "x_min": 0.6836960911750793, - "y_max": 0.9965758919715881, - "y_min": 0.7709739804267883 - }, - "confidence": 0.9252141714096069, - "label": "person", - "label_id": 1 - }, - "h": 97, - "region_id": 713, - "roi_type": "person", - "w": 51, - "x": 525, - "y": 333 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7533045411109924, - "x_min": 0.6833932995796204, - "y_max": 0.9992515444755554, - "y_min": 0.7517306208610535 - }, - "confidence": 0.9160445928573608, - "label": "person", - "label_id": 1 - }, - "h": 107, - "region_id": 714, - "roi_type": "person", - "w": 54, - "x": 525, - "y": 325 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7569091320037842, - "x_min": 0.6831721067428589, - "y_max": 0.9893119931221008, - "y_min": 0.7454761862754822 - }, - "confidence": 0.9452297687530518, - "label": "person", - "label_id": 1 - }, - "h": 105, - "region_id": 717, - "roi_type": "person", - "w": 57, - "x": 525, - "y": 322 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7582204341888428, - "x_min": 0.6869715452194214, - "y_max": 0.974425196647644, - "y_min": 0.7232375144958496 - }, - "confidence": 0.9522713422775269, - "label": "person", - "label_id": 1 - }, - "h": 109, - "region_id": 718, - "roi_type": "person", - "w": 55, - "x": 528, - "y": 312 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7575154900550842, - "x_min": 0.690883457660675, - "y_max": 0.948596715927124, - "y_min": 0.7128697633743286 - }, - "confidence": 0.8796283006668091, - "label": "person", - "label_id": 1 - }, - "h": 102, - "region_id": 716, - "roi_type": "person", - "w": 51, - "x": 531, - "y": 308 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7562522292137146, - "x_min": 0.6947104334831238, - "y_max": 0.8969831466674805, - "y_min": 0.7029378414154053 - }, - "confidence": 0.8928083777427673, - "label": "person", - "label_id": 1 - }, - "h": 84, - "region_id": 719, - "roi_type": "person", - "w": 47, - "x": 534, - "y": 304 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7574295997619629, - "x_min": 0.6979045867919922, - "y_max": 0.8754801750183105, - "y_min": 0.6884984970092773 - }, - "confidence": 0.872053325176239, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 720, - "roi_type": "person", - "w": 46, - "x": 536, - "y": 297 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.762875497341156, - "x_min": 0.6962667107582092, - "y_max": 0.9012863636016846, - "y_min": 0.6672508716583252 - }, - "confidence": 0.6989083290100098, - "label": "person", - "label_id": 1 - }, - "h": 101, - "region_id": 721, - "roi_type": "person", - "w": 51, - "x": 535, - "y": 288 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.764236569404602, - "x_min": 0.6945128440856934, - "y_max": 0.8976410627365112, - "y_min": 0.6511141061782837 - }, - "confidence": 0.695422887802124, - "label": "person", - "label_id": 1 - }, - "h": 106, - "region_id": 722, - "roi_type": "person", - "w": 54, - "x": 533, - "y": 281 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.76410311460495, - "x_min": 0.7028637528419495, - "y_max": 0.8516805171966553, - "y_min": 0.6483858823776245 - }, - "confidence": 0.6670759916305542, - "label": "person", - "label_id": 1 - }, - "h": 88, - "region_id": 723, - "roi_type": "person", - "w": 47, - "x": 540, - "y": 280 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7670164108276367, - "x_min": 0.7064443826675415, - "y_max": 0.8298263549804688, - "y_min": 0.6299617290496826 - }, - "confidence": 0.9295311570167542, - "label": "person", - "label_id": 1 - }, - "h": 86, - "region_id": 724, - "roi_type": "person", - "w": 47, - "x": 543, - "y": 272 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7725508213043213, - "x_min": 0.7098292112350464, - "y_max": 0.8254446387290955, - "y_min": 0.6173176169395447 - }, - "confidence": 0.6896170377731323, - "label": "person", - "label_id": 1 - }, - "h": 90, - "region_id": 725, - "roi_type": "person", - "w": 48, - "x": 545, - "y": 267 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7741845846176147, - "x_min": 0.7090356349945068, - "y_max": 0.8218123316764832, - "y_min": 0.6104785799980164 - }, - "confidence": 0.760479211807251, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 726, - "roi_type": "person", - "w": 50, - "x": 545, - "y": 264 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7783714532852173, - "x_min": 0.7181830406188965, - "y_max": 0.7849858999252319, - "y_min": 0.5744112730026245 - }, - "confidence": 0.502738356590271, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 727, - "roi_type": "person", - "w": 46, - "x": 552, - "y": 248 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7834279537200928, - "x_min": 0.7257949113845825, - "y_max": 0.7589361667633057, - "y_min": 0.5519590377807617 - }, - "confidence": 0.7043059468269348, - "label": "person", - "label_id": 1 - }, - "h": 89, - "region_id": 728, - "roi_type": "person", - "w": 44, - "x": 557, - "y": 238 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7895295023918152, - "x_min": 0.7326744198799133, - "y_max": 0.7261120676994324, - "y_min": 0.5483003258705139 - }, - "confidence": 0.9756484627723694, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 730, - "roi_type": "person", - "w": 44, - "x": 563, - "y": 237 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7890371680259705, - "x_min": 0.7377203106880188, - "y_max": 0.7031307816505432, - "y_min": 0.5400574803352356 - }, - "confidence": 0.8415109515190125, - "label": "person", - "label_id": 1 - }, - "h": 70, - "region_id": 729, - "roi_type": "person", - "w": 39, - "x": 567, - "y": 233 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7952909469604492, - "x_min": 0.7402902841567993, - "y_max": 0.6921250224113464, - "y_min": 0.521691620349884 - }, - "confidence": 0.771628201007843, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 731, - "roi_type": "person", - "w": 42, - "x": 569, - "y": 225 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8006463646888733, - "x_min": 0.746234118938446, - "y_max": 0.6880521178245544, - "y_min": 0.5218417048454285 - }, - "confidence": 0.8759827613830566, - "label": "person", - "label_id": 1 - }, - "h": 72, - "region_id": 732, - "roi_type": "person", - "w": 42, - "x": 573, - "y": 225 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.809805691242218, - "x_min": 0.7457361817359924, - "y_max": 0.703031063079834, - "y_min": 0.5026630163192749 - }, - "confidence": 0.910108745098114, - "label": "person", - "label_id": 1 - }, - "h": 87, - "region_id": 733, - "roi_type": "person", - "w": 49, - "x": 573, - "y": 217 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8131636381149292, - "x_min": 0.7560372352600098, - "y_max": 0.68419349193573, - "y_min": 0.4961233139038086 - }, - "confidence": 0.9086403846740723, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 734, - "roi_type": "person", - "w": 44, - "x": 581, - "y": 214 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.823058545589447, - "x_min": 0.7637491822242737, - "y_max": 0.6855756640434265, - "y_min": 0.4885023236274719 - }, - "confidence": 0.8248202204704285, - "label": "person", - "label_id": 1 - }, - "h": 85, - "region_id": 740, - "roi_type": "person", - "w": 46, - "x": 587, - "y": 211 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8232852816581726, - "x_min": 0.7605671286582947, - "y_max": 0.6924914121627808, - "y_min": 0.4750782549381256 - }, - "confidence": 0.6950253248214722, - "label": "person", - "label_id": 1 - }, - "h": 94, - "region_id": 737, - "roi_type": "person", - "w": 48, - "x": 584, - "y": 205 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8322222232818604, - "x_min": 0.7602421045303345, - "y_max": 0.6941540837287903, - "y_min": 0.46584221720695496 - }, - "confidence": 0.5867411494255066, - "label": "person", - "label_id": 1 - }, - "h": 99, - "region_id": 741, - "roi_type": "person", - "w": 55, - "x": 584, - "y": 201 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8429374098777771, - "x_min": 0.7935228943824768, - "y_max": 0.6419347524642944, - "y_min": 0.4380990266799927 - }, - "confidence": 0.9679194092750549, - "label": "person", - "label_id": 1 - }, - "h": 88, - "region_id": 742, - "roi_type": "person", - "w": 38, - "x": 609, - "y": 189 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.849794328212738, - "x_min": 0.796667754650116, - "y_max": 0.6153375506401062, - "y_min": 0.4430392384529114 - }, - "confidence": 0.8853103518486023, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 743, - "roi_type": "person", - "w": 41, - "x": 612, - "y": 191 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8533491492271423, - "x_min": 0.8009874224662781, - "y_max": 0.6051763892173767, - "y_min": 0.4295733571052551 - }, - "confidence": 0.9033117294311523, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 746, - "roi_type": "person", - "w": 40, - "x": 615, - "y": 186 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8604122996330261, - "x_min": 0.806064784526825, - "y_max": 0.5924712419509888, - "y_min": 0.42701777815818787 - }, - "confidence": 0.8053393363952637, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 748, - "roi_type": "person", - "w": 42, - "x": 619, - "y": 184 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8663099408149719, - "x_min": 0.8105942606925964, - "y_max": 0.5942342281341553, - "y_min": 0.42083391547203064 - }, - "confidence": 0.769930899143219, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 750, - "roi_type": "person", - "w": 43, - "x": 623, - "y": 182 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8744010329246521, - "x_min": 0.817695677280426, - "y_max": 0.5900759100914001, - "y_min": 0.4136963486671448 - }, - "confidence": 0.9554973840713501, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 751, - "roi_type": "person", - "w": 44, - "x": 628, - "y": 179 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8855565190315247, - "x_min": 0.8264035582542419, - "y_max": 0.586060106754303, - "y_min": 0.4029603898525238 - }, - "confidence": 0.8228972554206848, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 753, - "roi_type": "person", - "w": 45, - "x": 635, - "y": 174 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8908533453941345, - "x_min": 0.8350780606269836, - "y_max": 0.5897727012634277, - "y_min": 0.3878403902053833 - }, - "confidence": 0.8011425137519836, - "label": "person", - "label_id": 1 - }, - "h": 87, - "region_id": 754, - "roi_type": "person", - "w": 43, - "x": 641, - "y": 168 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9007776379585266, - "x_min": 0.8356189131736755, - "y_max": 0.5877959728240967, - "y_min": 0.3941260576248169 - }, - "confidence": 0.6489099860191345, - "label": "person", - "label_id": 1 - }, - "h": 84, - "region_id": 755, - "roi_type": "person", - "w": 50, - "x": 642, - "y": 170 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9088491201400757, - "x_min": 0.8531066179275513, - "y_max": 0.5604838132858276, - "y_min": 0.376047819852829 - }, - "confidence": 0.6436930298805237, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 756, - "roi_type": "person", - "w": 43, - "x": 655, - "y": 162 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.91246098279953, - "x_min": 0.8664992451667786, - "y_max": 0.5441792607307434, - "y_min": 0.36725082993507385 - }, - "confidence": 0.8806084990501404, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 757, - "roi_type": "person", - "w": 35, - "x": 665, - "y": 159 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9204215407371521, - "x_min": 0.8713714480400085, - "y_max": 0.5294153094291687, - "y_min": 0.3520965576171875 - }, - "confidence": 0.9779549241065979, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 758, - "roi_type": "person", - "w": 38, - "x": 669, - "y": 152 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9224029779434204, - "x_min": 0.8775302171707153, - "y_max": 0.5218915939331055, - "y_min": 0.3505917191505432 - }, - "confidence": 0.928396463394165, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 759, - "roi_type": "person", - "w": 34, - "x": 674, - "y": 151 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.928156316280365, - "x_min": 0.8720093369483948, - "y_max": 0.5194041728973389, - "y_min": 0.3446289896965027 - }, - "confidence": 0.7565134763717651, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 761, - "roi_type": "person", - "w": 43, - "x": 670, - "y": 149 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9374079704284668, - "x_min": 0.8853236436843872, - "y_max": 0.5107859373092651, - "y_min": 0.34274014830589294 - }, - "confidence": 0.9505770802497864, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 760, - "roi_type": "person", - "w": 40, - "x": 680, - "y": 148 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9449758529663086, - "x_min": 0.8897075653076172, - "y_max": 0.5037586092948914, - "y_min": 0.33645254373550415 - }, - "confidence": 0.9099647998809814, - "label": "person", - "label_id": 1 - }, - "h": 72, - "region_id": 762, - "roi_type": "person", - "w": 42, - "x": 683, - "y": 145 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9549130797386169, - "x_min": 0.8982008099555969, - "y_max": 0.5104894042015076, - "y_min": 0.32427412271499634 - }, - "confidence": 0.7820343971252441, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 763, - "roi_type": "person", - "w": 44, - "x": 690, - "y": 140 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9616369009017944, - "x_min": 0.9061300754547119, - "y_max": 0.5176384449005127, - "y_min": 0.32654041051864624 - }, - "confidence": 0.7776963710784912, - "label": "person", - "label_id": 1 - }, - "h": 83, - "region_id": 764, - "roi_type": "person", - "w": 43, - "x": 696, - "y": 141 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9738940000534058, - "x_min": 0.9141020774841309, - "y_max": 0.49157699942588806, - "y_min": 0.3181222975254059 - }, - "confidence": 0.7904176115989685, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 765, - "roi_type": "person", - "w": 46, - "x": 702, - "y": 137 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9759961366653442, - "x_min": 0.9256719350814819, - "y_max": 0.48557397723197937, - "y_min": 0.30408164858818054 - }, - "confidence": 0.7352938055992126, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 766, - "roi_type": "person", - "w": 39, - "x": 711, - "y": 131 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9818256497383118, - "x_min": 0.928584635257721, - "y_max": 0.4778039753437042, - "y_min": 0.29464688897132874 - }, - "confidence": 0.8346171975135803, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 767, - "roi_type": "person", - "w": 41, - "x": 713, - "y": 127 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9829865097999573, - "x_min": 0.9321264624595642, - "y_max": 0.46189284324645996, - "y_min": 0.29097121953964233 - }, - "confidence": 0.9709595441818237, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 768, - "roi_type": "person", - "w": 39, - "x": 716, - "y": 126 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9856051206588745, - "x_min": 0.9314626455307007, - "y_max": 0.4595509171485901, - "y_min": 0.28902602195739746 - }, - "confidence": 0.6953383684158325, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 769, - "roi_type": "person", - "w": 42, - "x": 715, - "y": 125 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9974536299705505, - "x_min": 0.9289860129356384, - "y_max": 0.46979764103889465, - "y_min": 0.25890347361564636 - }, - "confidence": 0.5784743428230286, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 770, - "roi_type": "person", - "w": 53, - "x": 713, - "y": 112 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9965776801109314, - "x_min": 0.9486775994300842, - "y_max": 0.4469355344772339, - "y_min": 0.26758038997650146 - }, - "confidence": 0.5522655844688416, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 771, - "roi_type": "person", - "w": 37, - "x": 729, - "y": 116 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7891653776168823, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.1190483570098877, - "y_max": 0.9856837391853333, - "y_min": 0.01998382806777954 - }, - "confidence": 0.5811724066734314, - "label": "vehicle", - "label_id": 2 - }, - "h": 417, - "region_id": 772, - "roi_type": "vehicle", - "type": { - "confidence": 0.9973425269126892, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 677, - "x": 91, - "y": 9 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 13916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999992847442627, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3472718968987465, - "x_min": 0.12164703756570816, - "y_max": 1.0, - "y_min": 0.839308500289917 - }, - "confidence": 0.6197883486747742, - "label": "vehicle", - "label_id": 2 - }, - "h": 69, - "region_id": 773, - "roi_type": "vehicle", - "type": { - "confidence": 0.9978079199790955, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 173, - "x": 93, - "y": 363 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999407529830933, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3529694080352783, - "x_min": 0.12145501375198364, - "y_max": 1.0, - "y_min": 0.8094808459281921 - }, - "confidence": 0.7172144055366516, - "label": "vehicle", - "label_id": 2 - }, - "h": 82, - "region_id": 774, - "roi_type": "vehicle", - "type": { - "confidence": 0.9810753464698792, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 178, - "x": 93, - "y": 350 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9996539354324341, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35698962211608887, - "x_min": 0.120272696018219, - "y_max": 0.996704638004303, - "y_min": 0.7838299870491028 - }, - "confidence": 0.8247232437133789, - "label": "vehicle", - "label_id": 2 - }, - "h": 92, - "region_id": 775, - "roi_type": "vehicle", - "type": { - "confidence": 0.7544028162956238, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 182, - "x": 92, - "y": 339 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.999993085861206, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3593756780028343, - "x_min": 0.11301174014806747, - "y_max": 0.99638831615448, - "y_min": 0.7641627788543701 - }, - "confidence": 0.8237622976303101, - "label": "vehicle", - "label_id": 2 - }, - "h": 100, - "region_id": 777, - "roi_type": "vehicle", - "type": { - "confidence": 0.9930737018585205, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 189, - "x": 87, - "y": 330 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9995425939559937, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36954784393310547, - "x_min": 0.11453872919082642, - "y_max": 1.0, - "y_min": 0.7280344367027283 - }, - "confidence": 0.7173951864242554, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 776, - "roi_type": "vehicle", - "type": { - "confidence": 0.5033738613128662, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 196, - "x": 88, - "y": 315 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9991163611412048, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3680807948112488, - "x_min": 0.10083681344985962, - "y_max": 0.9959658980369568, - "y_min": 0.7031351923942566 - }, - "confidence": 0.8457773327827454, - "label": "vehicle", - "label_id": 2 - }, - "h": 127, - "region_id": 780, - "roi_type": "vehicle", - "type": { - "confidence": 0.8348417282104492, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 205, - "x": 77, - "y": 304 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9991899132728577, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3770086318254471, - "x_min": 0.10729165375232697, - "y_max": 0.999495804309845, - "y_min": 0.6779972910881042 - }, - "confidence": 0.9278464913368225, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "region_id": 778, - "roi_type": "vehicle", - "type": { - "confidence": 0.9957727789878845, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 207, - "x": 82, - "y": 293 - }, - { - "color": { - "confidence": 0.764388382434845, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.12105095386505127, - "y_max": 0.9884703457355499, - "y_min": 0.031230241060256958 - }, - "confidence": 0.6490622162818909, - "label": "vehicle", - "label_id": 2 - }, - "h": 414, - "region_id": 779, - "roi_type": "vehicle", - "type": { - "confidence": 0.9641011953353882, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 675, - "x": 93, - "y": 13 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9966446161270142, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.37933245301246643, - "x_min": 0.10664257407188416, - "y_max": 1.0, - "y_min": 0.6494538187980652 - }, - "confidence": 0.9569666385650635, - "label": "vehicle", - "label_id": 2 - }, - "h": 151, - "region_id": 781, - "roi_type": "vehicle", - "type": { - "confidence": 0.9936966300010681, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 209, - "x": 82, - "y": 281 - }, - { - "color": { - "confidence": 0.562263548374176, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.12350070476531982, - "y_max": 0.9561543166637421, - "y_min": 0.036142319440841675 - }, - "confidence": 0.6475480198860168, - "label": "vehicle", - "label_id": 2 - }, - "h": 397, - "region_id": 782, - "roi_type": "vehicle", - "type": { - "confidence": 0.9848966598510742, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 673, - "x": 95, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9998095631599426, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3790186643600464, - "x_min": 0.1055452823638916, - "y_max": 1.0, - "y_min": 0.6312700510025024 - }, - "confidence": 0.9906975626945496, - "label": "vehicle", - "label_id": 2 - }, - "h": 159, - "region_id": 783, - "roi_type": "vehicle", - "type": { - "confidence": 0.9978911280632019, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 210, - "x": 81, - "y": 273 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999986886978149, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.37920166552066803, - "x_min": 0.11973930895328522, - "y_max": 0.9997226595878601, - "y_min": 0.6097801327705383 - }, - "confidence": 0.9947448968887329, - "label": "vehicle", - "label_id": 2 - }, - "h": 168, - "region_id": 784, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998151659965515, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 199, - "x": 92, - "y": 263 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999973773956299, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.37608885765075684, - "x_min": 0.11783003807067871, - "y_max": 0.9969019889831543, - "y_min": 0.5848081111907959 - }, - "confidence": 0.9949920773506165, - "label": "vehicle", - "label_id": 2 - }, - "h": 178, - "region_id": 785, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999407529830933, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 198, - "x": 90, - "y": 253 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999994039535522, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.37699654698371887, - "x_min": 0.11793932318687439, - "y_max": 0.9975460767745972, - "y_min": 0.5624507665634155 - }, - "confidence": 0.9885395169258118, - "label": "vehicle", - "label_id": 2 - }, - "h": 188, - "region_id": 786, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999685287475586, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 199, - "x": 91, - "y": 243 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999995231628418, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.37293967604637146, - "x_min": 0.1103682816028595, - "y_max": 1.0, - "y_min": 0.5396615266799927 - }, - "confidence": 0.9783475399017334, - "label": "vehicle", - "label_id": 2 - }, - "h": 199, - "region_id": 787, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998794794082642, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 202, - "x": 85, - "y": 233 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999992847442627, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3659246265888214, - "x_min": 0.13214662671089172, - "y_max": 1.0, - "y_min": 0.5241052508354187 - }, - "confidence": 0.977293074131012, - "label": "vehicle", - "label_id": 2 - }, - "h": 206, - "region_id": 788, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998465776443481, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 180, - "x": 101, - "y": 226 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999992847442627, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3634260296821594, - "x_min": 0.13490885496139526, - "y_max": 1.0, - "y_min": 0.5041918754577637 - }, - "confidence": 0.9919345378875732, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "region_id": 789, - "roi_type": "vehicle", - "type": { - "confidence": 0.9955381751060486, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 176, - "x": 104, - "y": 218 - }, - { - "color": { - "confidence": 0.5667802691459656, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.960458904504776, - "x_min": 0.1433190405368805, - "y_max": 0.8030799925327301, - "y_min": 0.047403484582901 - }, - "confidence": 0.6497754454612732, - "label": "vehicle", - "label_id": 2 - }, - "h": 326, - "region_id": 790, - "roi_type": "vehicle", - "type": { - "confidence": 0.9822282195091248, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 628, - "x": 110, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999997615814209, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3554345369338989, - "x_min": 0.14201140403747559, - "y_max": 0.9914808869361877, - "y_min": 0.49649709463119507 - }, - "confidence": 0.9959779381752014, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "region_id": 793, - "roi_type": "vehicle", - "type": { - "confidence": 0.9852773547172546, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 164, - "x": 109, - "y": 214 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3545818626880646, - "x_min": 0.14792534708976746, - "y_max": 0.998590499162674, - "y_min": 0.4749157726764679 - }, - "confidence": 0.9977288842201233, - "label": "vehicle", - "label_id": 2 - }, - "h": 226, - "region_id": 791, - "roi_type": "vehicle", - "type": { - "confidence": 0.9812223315238953, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 159, - "x": 114, - "y": 205 - }, - { - "color": { - "confidence": 0.6801047325134277, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.946483701467514, - "x_min": 0.37183746695518494, - "y_max": 0.8923514187335968, - "y_min": 0.04037526249885559 - }, - "confidence": 0.5507270097732544, - "label": "vehicle", - "label_id": 2 - }, - "h": 368, - "region_id": 792, - "roi_type": "vehicle", - "type": { - "confidence": 0.9994076490402222, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 441, - "x": 286, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999994039535522, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.356282114982605, - "x_min": 0.15392696857452393, - "y_max": 0.983318567276001, - "y_min": 0.45039117336273193 - }, - "confidence": 0.9942495822906494, - "label": "vehicle", - "label_id": 2 - }, - "h": 230, - "region_id": 794, - "roi_type": "vehicle", - "type": { - "confidence": 0.9980984330177307, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 155, - "x": 118, - "y": 195 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999985694885254, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3493104577064514, - "x_min": 0.15961939096450806, - "y_max": 0.9475722014904022, - "y_min": 0.43192610144615173 - }, - "confidence": 0.9976758360862732, - "label": "vehicle", - "label_id": 2 - }, - "h": 223, - "region_id": 795, - "roi_type": "vehicle", - "type": { - "confidence": 0.9835510849952698, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 146, - "x": 123, - "y": 187 - }, - { - "color": { - "confidence": 0.6149883270263672, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9634913802146912, - "x_min": 0.35563451051712036, - "y_max": 0.7470855712890625, - "y_min": 0.06608182191848755 - }, - "confidence": 0.7034837007522583, - "label": "vehicle", - "label_id": 2 - }, - "h": 294, - "region_id": 796, - "roi_type": "vehicle", - "type": { - "confidence": 0.998102605342865, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 467, - "x": 273, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999997615814209, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3447079062461853, - "x_min": 0.16244035959243774, - "y_max": 0.935673177242279, - "y_min": 0.4222027659416199 - }, - "confidence": 0.9976540207862854, - "label": "vehicle", - "label_id": 2 - }, - "h": 222, - "region_id": 797, - "roi_type": "vehicle", - "type": { - "confidence": 0.9667878150939941, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 140, - "x": 125, - "y": 182 - }, - { - "color": { - "confidence": 0.5594090819358826, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9825345277786255, - "x_min": 0.34150218963623047, - "y_max": 0.9223847687244415, - "y_min": 0.0489061176776886 - }, - "confidence": 0.5919329524040222, - "label": "vehicle", - "label_id": 2 - }, - "h": 377, - "region_id": 798, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998914003372192, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 492, - "x": 262, - "y": 21 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.999996542930603, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3389112949371338, - "x_min": 0.16517682373523712, - "y_max": 0.9076910316944122, - "y_min": 0.4019249975681305 - }, - "confidence": 0.9994926452636719, - "label": "vehicle", - "label_id": 2 - }, - "h": 218, - "region_id": 799, - "roi_type": "vehicle", - "type": { - "confidence": 0.5476965308189392, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 133, - "x": 127, - "y": 174 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999867677688599, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.33601245284080505, - "x_min": 0.1654420793056488, - "y_max": 0.8818582892417908, - "y_min": 0.3884504437446594 - }, - "confidence": 0.9987764954566956, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "region_id": 800, - "roi_type": "vehicle", - "type": { - "confidence": 0.885420560836792, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 131, - "x": 127, - "y": 168 - }, - { - "color": { - "confidence": 0.4273470342159271, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9590832889080048, - "x_min": 0.31476983428001404, - "y_max": 0.857620358467102, - "y_min": 0.07268017530441284 - }, - "confidence": 0.5271487832069397, - "label": "vehicle", - "label_id": 2 - }, - "h": 339, - "region_id": 801, - "roi_type": "vehicle", - "type": { - "confidence": 0.999447762966156, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 495, - "x": 242, - "y": 31 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999828338623047, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3323298692703247, - "x_min": 0.1626337766647339, - "y_max": 0.8597559928894043, - "y_min": 0.3726102113723755 - }, - "confidence": 0.9985212683677673, - "label": "vehicle", - "label_id": 2 - }, - "h": 210, - "region_id": 802, - "roi_type": "vehicle", - "type": { - "confidence": 0.9828891754150391, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 130, - "x": 125, - "y": 161 - }, - { - "color": { - "confidence": 0.7075181603431702, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.974656492471695, - "x_min": 0.33645811676979065, - "y_max": 0.9104884266853333, - "y_min": 0.05241858959197998 - }, - "confidence": 0.5714099407196045, - "label": "vehicle", - "label_id": 2 - }, - "h": 371, - "region_id": 803, - "roi_type": "vehicle", - "type": { - "confidence": 0.9997761845588684, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 490, - "x": 258, - "y": 23 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999812841415405, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.330049991607666, - "x_min": 0.1618494838476181, - "y_max": 0.8313447833061218, - "y_min": 0.35449475049972534 - }, - "confidence": 0.9997923970222473, - "label": "vehicle", - "label_id": 2 - }, - "h": 206, - "region_id": 804, - "roi_type": "vehicle", - "type": { - "confidence": 0.9883469939231873, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 129, - "x": 124, - "y": 153 - }, - { - "color": { - "confidence": 0.5001233816146851, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9590034484863281, - "x_min": 0.3254728317260742, - "y_max": 0.8569568693637848, - "y_min": 0.067400723695755 - }, - "confidence": 0.7003794312477112, - "label": "vehicle", - "label_id": 2 - }, - "h": 341, - "region_id": 805, - "roi_type": "vehicle", - "type": { - "confidence": 0.9997856020927429, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 487, - "x": 250, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3289366066455841, - "x_min": 0.15743154287338257, - "y_max": 0.8062316179275513, - "y_min": 0.343867689371109 - }, - "confidence": 0.9998531341552734, - "label": "vehicle", - "label_id": 2 - }, - "h": 200, - "region_id": 806, - "roi_type": "vehicle", - "type": { - "confidence": 0.9963167905807495, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 132, - "x": 121, - "y": 149 - }, - { - "color": { - "confidence": 0.4022374153137207, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9643826484680176, - "x_min": 0.32466578483581543, - "y_max": 0.8281525671482086, - "y_min": 0.050448328256607056 - }, - "confidence": 0.7298584580421448, - "label": "vehicle", - "label_id": 2 - }, - "h": 336, - "region_id": 807, - "roi_type": "vehicle", - "type": { - "confidence": 0.9992221593856812, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 491, - "x": 249, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999998807907104, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.32749873399734497, - "x_min": 0.15210942924022675, - "y_max": 0.7838114500045776, - "y_min": 0.3270362317562103 - }, - "confidence": 0.9998413324356079, - "label": "vehicle", - "label_id": 2 - }, - "h": 197, - "region_id": 808, - "roi_type": "vehicle", - "type": { - "confidence": 0.9661584496498108, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 135, - "x": 117, - "y": 141 - }, - { - "color": { - "confidence": 0.40823519229888916, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9622263312339783, - "x_min": 0.3427172303199768, - "y_max": 0.8725208938121796, - "y_min": 0.04009386897087097 - }, - "confidence": 0.5856862664222717, - "label": "vehicle", - "label_id": 2 - }, - "h": 360, - "region_id": 809, - "roi_type": "vehicle", - "type": { - "confidence": 0.9991716146469116, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 476, - "x": 263, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.999996542930603, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.32336118817329407, - "x_min": 0.1428644359111786, - "y_max": 0.7728332877159119, - "y_min": 0.320098340511322 - }, - "confidence": 0.9999895095825195, - "label": "vehicle", - "label_id": 2 - }, - "h": 196, - "region_id": 810, - "roi_type": "vehicle", - "type": { - "confidence": 0.9968463778495789, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 139, - "x": 110, - "y": 138 - }, - { - "color": { - "confidence": 0.329062283039093, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.975044846534729, - "x_min": 0.2974846363067627, - "y_max": 0.8784034550189972, - "y_min": 0.026116639375686646 - }, - "confidence": 0.6027874946594238, - "label": "vehicle", - "label_id": 2 - }, - "h": 368, - "region_id": 811, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998162388801575, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 520, - "x": 228, - "y": 11 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999997615814209, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.32014694809913635, - "x_min": 0.1364186704158783, - "y_max": 0.7574480175971985, - "y_min": 0.3098655343055725 - }, - "confidence": 0.9999890327453613, - "label": "vehicle", - "label_id": 2 - }, - "h": 193, - "region_id": 812, - "roi_type": "vehicle", - "type": { - "confidence": 0.9931427240371704, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 141, - "x": 105, - "y": 134 - }, - { - "color": { - "confidence": 0.5577104687690735, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9672453999519348, - "x_min": 0.28611689805984497, - "y_max": 0.835792601108551, - "y_min": 0.03851372003555298 - }, - "confidence": 0.7227157354354858, - "label": "vehicle", - "label_id": 2 - }, - "h": 344, - "region_id": 813, - "roi_type": "vehicle", - "type": { - "confidence": 0.999649167060852, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 523, - "x": 220, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.31699714064598083, - "x_min": 0.13015073537826538, - "y_max": 0.7375566959381104, - "y_min": 0.29937517642974854 - }, - "confidence": 0.9999899864196777, - "label": "vehicle", - "label_id": 2 - }, - "h": 189, - "region_id": 814, - "roi_type": "vehicle", - "type": { - "confidence": 0.9005990028381348, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 143, - "x": 100, - "y": 129 - }, - { - "color": { - "confidence": 0.48685577511787415, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.951544463634491, - "x_min": 0.33267778158187866, - "y_max": 0.8539562225341797, - "y_min": 0.03351706266403198 - }, - "confidence": 0.808168888092041, - "label": "vehicle", - "label_id": 2 - }, - "h": 354, - "region_id": 815, - "roi_type": "vehicle", - "type": { - "confidence": 0.9985513091087341, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 475, - "x": 255, - "y": 14 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.31399670988321304, - "x_min": 0.11789140850305557, - "y_max": 0.7212228775024414, - "y_min": 0.286960244178772 - }, - "confidence": 0.9999879598617554, - "label": "vehicle", - "label_id": 2 - }, - "h": 188, - "region_id": 818, - "roi_type": "vehicle", - "type": { - "confidence": 0.49623578786849976, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 151, - "x": 91, - "y": 124 - }, - { - "color": { - "confidence": 0.5879708528518677, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9608637392520905, - "x_min": 0.32193413376808167, - "y_max": 0.87295863032341, - "y_min": 0.03886529803276062 - }, - "confidence": 0.6383565664291382, - "label": "vehicle", - "label_id": 2 - }, - "h": 360, - "region_id": 819, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998008608818054, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 491, - "x": 247, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.31122130155563354, - "x_min": 0.10584886372089386, - "y_max": 0.7095152139663696, - "y_min": 0.28365978598594666 - }, - "confidence": 0.9999860525131226, - "label": "vehicle", - "label_id": 2 - }, - "h": 184, - "region_id": 816, - "roi_type": "vehicle", - "type": { - "confidence": 0.7103959918022156, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 158, - "x": 81, - "y": 123 - }, - { - "color": { - "confidence": 0.6019464135169983, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9637053310871124, - "x_min": 0.3220804035663605, - "y_max": 0.8715959191322327, - "y_min": 0.040416836738586426 - }, - "confidence": 0.6495591998100281, - "label": "vehicle", - "label_id": 2 - }, - "h": 359, - "region_id": 817, - "roi_type": "vehicle", - "type": { - "confidence": 0.9997046589851379, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 493, - "x": 247, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.30708833783864975, - "x_min": 0.08848126977682114, - "y_max": 0.6941936612129211, - "y_min": 0.27684885263442993 - }, - "confidence": 0.9999517202377319, - "label": "vehicle", - "label_id": 2 - }, - "h": 180, - "region_id": 820, - "roi_type": "vehicle", - "type": { - "confidence": 0.5102664232254028, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 168, - "x": 68, - "y": 120 - }, - { - "color": { - "confidence": 0.6668007373809814, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9554711878299713, - "x_min": 0.34027138352394104, - "y_max": 0.8380113542079926, - "y_min": 0.048275917768478394 - }, - "confidence": 0.71632981300354, - "label": "vehicle", - "label_id": 2 - }, - "h": 341, - "region_id": 821, - "roi_type": "vehicle", - "type": { - "confidence": 0.9969905614852905, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 472, - "x": 261, - "y": 21 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3021142706274986, - "x_min": 0.08180790394544601, - "y_max": 0.6738345623016357, - "y_min": 0.2771810293197632 - }, - "confidence": 0.9999845027923584, - "label": "vehicle", - "label_id": 2 - }, - "h": 171, - "region_id": 822, - "roi_type": "vehicle", - "type": { - "confidence": 0.8760332465171814, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 169, - "x": 63, - "y": 120 - }, - { - "color": { - "confidence": 0.7902387976646423, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9660831391811371, - "x_min": 0.33971044421195984, - "y_max": 0.8525653183460236, - "y_min": 0.06687751412391663 - }, - "confidence": 0.5413610935211182, - "label": "vehicle", - "label_id": 2 - }, - "h": 339, - "region_id": 823, - "roi_type": "vehicle", - "type": { - "confidence": 0.9997109770774841, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 481, - "x": 261, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.29426703602075577, - "x_min": 0.07385555654764175, - "y_max": 0.6565670371055603, - "y_min": 0.2726742625236511 - }, - "confidence": 0.9999916553497314, - "label": "vehicle", - "label_id": 2 - }, - "h": 166, - "region_id": 824, - "roi_type": "vehicle", - "type": { - "confidence": 0.9852901697158813, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 169, - "x": 57, - "y": 118 - }, - { - "color": { - "confidence": 0.5901666283607483, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9926848709583282, - "x_min": 0.30496659874916077, - "y_max": 0.84866863489151, - "y_min": 0.05000710487365723 - }, - "confidence": 0.5592050552368164, - "label": "vehicle", - "label_id": 2 - }, - "h": 345, - "region_id": 825, - "roi_type": "vehicle", - "type": { - "confidence": 0.9996962547302246, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 528, - "x": 234, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.28687434643507004, - "x_min": 0.06621810048818588, - "y_max": 0.6433696746826172, - "y_min": 0.2654877007007599 - }, - "confidence": 0.9999983310699463, - "label": "vehicle", - "label_id": 2 - }, - "h": 163, - "region_id": 826, - "roi_type": "vehicle", - "type": { - "confidence": 0.9969984292984009, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 169, - "x": 51, - "y": 115 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2829515337944031, - "x_min": 0.055335864424705505, - "y_max": 0.6373207569122314, - "y_min": 0.261656790971756 - }, - "confidence": 0.9999963045120239, - "label": "vehicle", - "label_id": 2 - }, - "h": 162, - "region_id": 827, - "roi_type": "vehicle", - "type": { - "confidence": 0.9995378255844116, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 175, - "x": 42, - "y": 113 - }, - { - "color": { - "confidence": 0.7691948413848877, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9582633972167969, - "x_min": 0.35544872283935547, - "y_max": 0.7013504207134247, - "y_min": 0.06135174632072449 - }, - "confidence": 0.652894914150238, - "label": "vehicle", - "label_id": 2 - }, - "h": 276, - "region_id": 828, - "roi_type": "vehicle", - "type": { - "confidence": 0.998582124710083, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 463, - "x": 273, - "y": 27 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2785479202866554, - "x_min": 0.04411584883928299, - "y_max": 0.6277320384979248, - "y_min": 0.2605409622192383 - }, - "confidence": 0.999983549118042, - "label": "vehicle", - "label_id": 2 - }, - "h": 159, - "region_id": 829, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999783039093018, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 180, - "x": 34, - "y": 113 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2703113779425621, - "x_min": 0.03065609186887741, - "y_max": 0.6122255325317383, - "y_min": 0.25753241777420044 - }, - "confidence": 0.9999444484710693, - "label": "vehicle", - "label_id": 2 - }, - "h": 153, - "region_id": 830, - "roi_type": "vehicle", - "type": { - "confidence": 0.99994957447052, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 184, - "x": 24, - "y": 111 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.26181748509407043, - "x_min": 0.019270271062850952, - "y_max": 0.6008050441741943, - "y_min": 0.25276121497154236 - }, - "confidence": 0.9999783039093018, - "label": "vehicle", - "label_id": 2 - }, - "h": 150, - "region_id": 831, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999005794525146, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 186, - "x": 15, - "y": 109 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.252112053334713, - "x_min": 0.006787620484828949, - "y_max": 0.5942615270614624, - "y_min": 0.2512364387512207 - }, - "confidence": 0.999976396560669, - "label": "vehicle", - "label_id": 2 - }, - "h": 148, - "region_id": 832, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999986886978149, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 188, - "x": 5, - "y": 109 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.24557729065418243, - "x_min": 0.0038529038429260254, - "y_max": 0.5852656960487366, - "y_min": 0.2511763572692871 - }, - "confidence": 0.999962568283081, - "label": "vehicle", - "label_id": 2 - }, - "h": 144, - "region_id": 833, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999997615814209, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 186, - "x": 3, - "y": 109 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2341841384768486, - "x_min": 0.0019001886248588562, - "y_max": 0.5771202445030212, - "y_min": 0.24817216396331787 - }, - "confidence": 0.9999908208847046, - "label": "vehicle", - "label_id": 2 - }, - "h": 142, - "region_id": 834, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999977350234985, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 178, - "x": 1, - "y": 107 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2240803837776184, - "x_min": 0.0006275177001953125, - "y_max": 0.5654965043067932, - "y_min": 0.2458530068397522 - }, - "confidence": 0.9999959468841553, - "label": "vehicle", - "label_id": 2 - }, - "h": 138, - "region_id": 835, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999964237213135, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 172, - "x": 0, - "y": 106 - }, - { - "color": { - "confidence": 0.502937376499176, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9729481935501099, - "x_min": 0.39751899242401123, - "y_max": 0.7704345881938934, - "y_min": 0.06877526640892029 - }, - "confidence": 0.502589762210846, - "label": "vehicle", - "label_id": 2 - }, - "h": 303, - "region_id": 836, - "roi_type": "vehicle", - "type": { - "confidence": 0.999714195728302, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 442, - "x": 305, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.21542106568813324, - "x_min": 0.0, - "y_max": 0.5575774163007736, - "y_min": 0.24282817542552948 - }, - "confidence": 0.9999918937683105, - "label": "vehicle", - "label_id": 2 - }, - "h": 136, - "region_id": 837, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999957084655762, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 165, - "x": 0, - "y": 105 - }, - { - "color": { - "confidence": 0.617254912853241, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.976471871137619, - "x_min": 0.3866901099681854, - "y_max": 0.8177506625652313, - "y_min": 0.04834529757499695 - }, - "confidence": 0.5300043821334839, - "label": "vehicle", - "label_id": 2 - }, - "h": 332, - "region_id": 838, - "roi_type": "vehicle", - "type": { - "confidence": 0.9991831183433533, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 453, - "x": 297, - "y": 21 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.20652533322572708, - "x_min": 0.0, - "y_max": 0.5523457378149033, - "y_min": 0.2393653243780136 - }, - "confidence": 0.9999760389328003, - "label": "vehicle", - "label_id": 2 - }, - "h": 135, - "region_id": 839, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998032450675964, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 159, - "x": 0, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.19814255833625793, - "x_min": 9.648501873016357e-05, - "y_max": 0.5438297837972641, - "y_min": 0.23729966580867767 - }, - "confidence": 0.99991774559021, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 840, - "roi_type": "vehicle", - "type": { - "confidence": 0.9986026883125305, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 152, - "x": 0, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.18656978011131287, - "x_min": 0.0002609342336654663, - "y_max": 0.5406333208084106, - "y_min": 0.2289218008518219 - }, - "confidence": 0.999891996383667, - "label": "vehicle", - "label_id": 2 - }, - "h": 135, - "region_id": 841, - "roi_type": "vehicle", - "type": { - "confidence": 0.9873902797698975, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 143, - "x": 0, - "y": 99 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.1747794672846794, - "x_min": 0.0019946321845054626, - "y_max": 0.5303715318441391, - "y_min": 0.22543703019618988 - }, - "confidence": 0.9990342855453491, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 842, - "roi_type": "vehicle", - "type": { - "confidence": 0.9910529255867004, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 133, - "x": 2, - "y": 97 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.16638851165771484, - "x_min": 0.0, - "y_max": 0.5288656949996948, - "y_min": 0.22173666954040527 - }, - "confidence": 0.9978117346763611, - "label": "vehicle", - "label_id": 2 - }, - "h": 133, - "region_id": 843, - "roi_type": "vehicle", - "type": { - "confidence": 0.9547353982925415, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 128, - "x": 0, - "y": 96 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 1.0, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.1586654633283615, - "x_min": 0.0, - "y_max": 0.5260069370269775, - "y_min": 0.22341126203536987 - }, - "confidence": 0.996907651424408, - "label": "vehicle", - "label_id": 2 - }, - "h": 131, - "region_id": 844, - "roi_type": "vehicle", - "type": { - "confidence": 0.8816352486610413, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 122, - "x": 0, - "y": 97 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999998807907104, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.14424733817577362, - "x_min": 0.00047084689140319824, - "y_max": 0.5235310196876526, - "y_min": 0.2236045002937317 - }, - "confidence": 0.990739107131958, - "label": "vehicle", - "label_id": 2 - }, - "h": 130, - "region_id": 845, - "roi_type": "vehicle", - "type": { - "confidence": 0.9703207015991211, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 110, - "x": 0, - "y": 97 - }, - { - "color": { - "confidence": 0.862159788608551, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.11542642116546631, - "y_max": 0.9303589761257172, - "y_min": 0.03653082251548767 - }, - "confidence": 0.5644874572753906, - "label": "vehicle", - "label_id": 2 - }, - "h": 386, - "region_id": 846, - "roi_type": "vehicle", - "type": { - "confidence": 0.9965773224830627, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 679, - "x": 89, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999995231628418, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.13115231692790985, - "x_min": 0.001265600323677063, - "y_max": 0.5229741334915161, - "y_min": 0.23199278116226196 - }, - "confidence": 0.880063533782959, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 847, - "roi_type": "vehicle", - "type": { - "confidence": 0.6272938251495361, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 100, - "x": 1, - "y": 100 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999997615814209, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.12498544156551361, - "x_min": 0.0, - "y_max": 0.5163313150405884, - "y_min": 0.24239197373390198 - }, - "confidence": 0.7448704838752747, - "label": "vehicle", - "label_id": 2 - }, - "h": 118, - "region_id": 848, - "roi_type": "vehicle", - "type": { - "confidence": 0.8046661019325256, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 96, - "x": 0, - "y": 105 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999982118606567, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.11168627813458443, - "x_min": 0.0006903596222400665, - "y_max": 0.5155524462461472, - "y_min": 0.2402338832616806 - }, - "confidence": 0.8874063491821289, - "label": "vehicle", - "label_id": 2 - }, - "h": 119, - "region_id": 849, - "roi_type": "vehicle", - "type": { - "confidence": 0.9438392519950867, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 85, - "x": 1, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9998836517333984, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.0992303378880024, - "x_min": 0.0013336129486560822, - "y_max": 0.5189979821443558, - "y_min": 0.2373378425836563 - }, - "confidence": 0.6848468780517578, - "label": "vehicle", - "label_id": 2 - }, - "h": 122, - "region_id": 850, - "roi_type": "vehicle", - "type": { - "confidence": 0.910668671131134, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 75, - "x": 1, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9994813799858093, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.0881464034318924, - "x_min": 0.0, - "y_max": 0.5184168815612793, - "y_min": 0.23750647902488708 - }, - "confidence": 0.5477973818778992, - "label": "vehicle", - "label_id": 2 - }, - "h": 121, - "region_id": 852, - "roi_type": "vehicle", - "type": { - "confidence": 0.8611068725585938, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 68, - "x": 0, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9998313188552856, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.07822683081030846, - "x_min": 0.0, - "y_max": 0.5102934092283249, - "y_min": 0.23988066613674164 - }, - "confidence": 0.7760416269302368, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 851, - "roi_type": "vehicle", - "type": { - "confidence": 0.9552171230316162, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 60, - "x": 0, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9996935129165649, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.06671494990587234, - "x_min": 0.000488772988319397, - "y_max": 0.5063621252775192, - "y_min": 0.2407311648130417 - }, - "confidence": 0.7211974859237671, - "label": "vehicle", - "label_id": 2 - }, - "h": 115, - "region_id": 853, - "roi_type": "vehicle", - "type": { - "confidence": 0.8604605197906494, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 51, - "x": 0, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.999586284160614, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.058564458042383194, - "x_min": 0.00125909224152565, - "y_max": 0.49973833560943604, - "y_min": 0.25012868642807007 - }, - "confidence": 0.7428480982780457, - "label": "vehicle", - "label_id": 2 - }, - "h": 108, - "region_id": 854, - "roi_type": "vehicle", - "type": { - "confidence": 0.6633986830711365, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 44, - "x": 1, - "y": 108 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9998461008071899, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.047039588913321495, - "x_min": 0.0021373387426137924, - "y_max": 0.4919121265411377, - "y_min": 0.27300935983657837 - }, - "confidence": 0.5740194916725159, - "label": "vehicle", - "label_id": 2 - }, - "h": 95, - "region_id": 855, - "roi_type": "vehicle", - "type": { - "confidence": 0.799899160861969, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 34, - "x": 2, - "y": 118 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999052286148071, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.03855086490511894, - "x_min": 0.0, - "y_max": 0.48962897062301636, - "y_min": 0.2736286520957947 - }, - "confidence": 0.5253965258598328, - "label": "vehicle", - "label_id": 2 - }, - "h": 93, - "region_id": 856, - "roi_type": "vehicle", - "type": { - "confidence": 0.541810929775238, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 30, - "x": 0, - "y": 118 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7541286945343018, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9342341423034668, - "x_min": 0.04731488227844238, - "y_max": 0.9905591607093811, - "y_min": 0.005247056484222412 - }, - "confidence": 0.5478420257568359, - "label": "vehicle", - "label_id": 2 - }, - "h": 426, - "region_id": 863, - "roi_type": "vehicle", - "type": { - "confidence": 0.9800356030464172, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 681, - "x": 36, - "y": 2 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8263435959815979, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9340737760066986, - "x_min": 0.05626162886619568, - "y_max": 0.9993133544921875, - "y_min": 0.0 - }, - "confidence": 0.5252710580825806, - "label": "vehicle", - "label_id": 2 - }, - "h": 432, - "region_id": 864, - "roi_type": "vehicle", - "type": { - "confidence": 0.983135998249054, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 674, - "x": 43, - "y": 0 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8534268140792847, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9431893527507782, - "x_min": 0.05145809054374695, - "y_max": 0.989135354757309, - "y_min": 0.0 - }, - "confidence": 0.5604482889175415, - "label": "vehicle", - "label_id": 2 - }, - "h": 427, - "region_id": 865, - "roi_type": "vehicle", - "type": { - "confidence": 0.9693763852119446, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 685, - "x": 40, - "y": 0 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7200194597244263, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9341987669467926, - "x_min": 0.048943787813186646, - "y_max": 0.951789140701294, - "y_min": 0.0 - }, - "confidence": 0.5412704348564148, - "label": "vehicle", - "label_id": 2 - }, - "h": 411, - "region_id": 866, - "roi_type": "vehicle", - "type": { - "confidence": 0.9950308799743652, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 680, - "x": 38, - "y": 0 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.6869271993637085, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9681794941425323, - "x_min": 0.2243988811969757, - "y_max": 0.7959917783737183, - "y_min": 0.0800011157989502 - }, - "confidence": 0.6512565016746521, - "label": "vehicle", - "label_id": 2 - }, - "h": 309, - "region_id": 867, - "roi_type": "vehicle", - "type": { - "confidence": 0.9984293580055237, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 571, - "x": 172, - "y": 35 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 27333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.4468998610973358, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.11086827516555786, - "y_max": 0.922165036201477, - "y_min": 0.02447342872619629 - }, - "confidence": 0.5428391098976135, - "label": "vehicle", - "label_id": 2 - }, - "h": 388, - "region_id": 868, - "roi_type": "vehicle", - "type": { - "confidence": 0.991723358631134, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 683, - "x": 85, - "y": 11 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 28166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.6823841333389282, - "label": "black", - "label_id": 6, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.9668256342411041, - "x_min": 0.04019823670387268, - "y_max": 1.0, - "y_min": 0.018688559532165527 - }, - "confidence": 0.5183817744255066, - "label": "vehicle", - "label_id": 2 - }, - "h": 424, - "region_id": 871, - "roi_type": "vehicle", - "type": { - "confidence": 0.9840753674507141, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 712, - "x": 31, - "y": 8 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 28916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.05809924565255642, - "x_min": 0.0035658013075590134, - "y_max": 0.2681969404220581, - "y_min": 0.09560385346412659 - }, - "confidence": 0.7589452266693115, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 879, - "roi_type": "person", - "w": 42, - "x": 3, - "y": 41 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06384262442588806, - "x_min": 0.00795700028538704, - "y_max": 0.274237722158432, - "y_min": 0.10187298059463501 - }, - "confidence": 0.7985605001449585, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 880, - "roi_type": "person", - "w": 43, - "x": 6, - "y": 44 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07437353581190109, - "x_min": 0.015382565557956696, - "y_max": 0.2672903537750244, - "y_min": 0.09030728042125702 - }, - "confidence": 0.8939861059188843, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 881, - "roi_type": "person", - "w": 45, - "x": 12, - "y": 39 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06839279271662235, - "x_min": 0.02236810512840748, - "y_max": 0.26446550339460373, - "y_min": 0.09259640425443649 - }, - "confidence": 0.9461692571640015, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 882, - "roi_type": "person", - "w": 35, - "x": 17, - "y": 40 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06265866011381149, - "x_min": 0.028456948697566986, - "y_max": 0.26319263130426407, - "y_min": 0.08769587427377701 - }, - "confidence": 0.7030306458473206, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 883, - "roi_type": "person", - "w": 26, - "x": 22, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07015543431043625, - "x_min": 0.03897448629140854, - "y_max": 0.27089253067970276, - "y_min": 0.0872945785522461 - }, - "confidence": 0.8550819754600525, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 884, - "roi_type": "person", - "w": 24, - "x": 30, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.08978050947189331, - "x_min": 0.045074041932821274, - "y_max": 0.26029663532972336, - "y_min": 0.08790364116430283 - }, - "confidence": 0.977258026599884, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 885, - "roi_type": "person", - "w": 34, - "x": 35, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.10240231454372406, - "x_min": 0.05025818943977356, - "y_max": 0.2617960497736931, - "y_min": 0.08916287869215012 - }, - "confidence": 0.9634846448898315, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 886, - "roi_type": "person", - "w": 40, - "x": 39, - "y": 39 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11237835884094238, - "x_min": 0.05571077764034271, - "y_max": 0.2656613886356354, - "y_min": 0.08681020140647888 - }, - "confidence": 0.9638310074806213, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 887, - "roi_type": "person", - "w": 44, - "x": 43, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11509418487548828, - "x_min": 0.05989537760615349, - "y_max": 0.2609396353363991, - "y_min": 0.0872638002038002 - }, - "confidence": 0.9589013457298279, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 888, - "roi_type": "person", - "w": 42, - "x": 46, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.10801342129707336, - "x_min": 0.06892828643321991, - "y_max": 0.25731702893972397, - "y_min": 0.08888208121061325 - }, - "confidence": 0.7473635673522949, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 889, - "roi_type": "person", - "w": 30, - "x": 53, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11594519764184952, - "x_min": 0.08451759070158005, - "y_max": 0.2598235011100769, - "y_min": 0.08372171223163605 - }, - "confidence": 0.9428688287734985, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 890, - "roi_type": "person", - "w": 24, - "x": 65, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.14308206737041473, - "x_min": 0.08935529738664627, - "y_max": 0.25856077671051025, - "y_min": 0.08275482058525085 - }, - "confidence": 0.9797749519348145, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 891, - "roi_type": "person", - "w": 41, - "x": 69, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15327736735343933, - "x_min": 0.09761053323745728, - "y_max": 0.25556156039237976, - "y_min": 0.08270090818405151 - }, - "confidence": 0.9193064570426941, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 892, - "roi_type": "person", - "w": 43, - "x": 75, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15708915889263153, - "x_min": 0.0971888080239296, - "y_max": 0.2538744807243347, - "y_min": 0.08122579753398895 - }, - "confidence": 0.9810742735862732, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 893, - "roi_type": "person", - "w": 46, - "x": 75, - "y": 35 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15849237143993378, - "x_min": 0.10766854137182236, - "y_max": 0.2546975612640381, - "y_min": 0.07851302623748779 - }, - "confidence": 0.9863013029098511, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 894, - "roi_type": "person", - "w": 39, - "x": 83, - "y": 34 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1490345448255539, - "x_min": 0.11753658950328827, - "y_max": 0.2580205798149109, - "y_min": 0.07362674176692963 - }, - "confidence": 0.9098010659217834, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 895, - "roi_type": "person", - "w": 24, - "x": 90, - "y": 32 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15783964097499847, - "x_min": 0.13124407827854156, - "y_max": 0.250785730779171, - "y_min": 0.08267312496900558 - }, - "confidence": 0.5655203461647034, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 896, - "roi_type": "person", - "w": 20, - "x": 101, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1712721586227417, - "x_min": 0.13269367814064026, - "y_max": 0.2533987760543823, - "y_min": 0.07122509181499481 - }, - "confidence": 0.9201217293739319, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 897, - "roi_type": "person", - "w": 30, - "x": 102, - "y": 31 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1888122260570526, - "x_min": 0.1387018859386444, - "y_max": 0.24816679954528809, - "y_min": 0.06929013133049011 - }, - "confidence": 0.9727067947387695, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 898, - "roi_type": "person", - "w": 38, - "x": 107, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19876965880393982, - "x_min": 0.14241483807563782, - "y_max": 0.24410225450992584, - "y_min": 0.0699552446603775 - }, - "confidence": 0.9352012872695923, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 899, - "roi_type": "person", - "w": 43, - "x": 109, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19850021600723267, - "x_min": 0.14565402269363403, - "y_max": 0.24200065433979034, - "y_min": 0.0673425942659378 - }, - "confidence": 0.9604578614234924, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 900, - "roi_type": "person", - "w": 41, - "x": 112, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19670462608337402, - "x_min": 0.15936705470085144, - "y_max": 0.24713710695505142, - "y_min": 0.06951308995485306 - }, - "confidence": 0.9338949918746948, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 901, - "roi_type": "person", - "w": 29, - "x": 122, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19646278023719788, - "x_min": 0.1669870913028717, - "y_max": 0.24654807895421982, - "y_min": 0.05969580262899399 - }, - "confidence": 0.8135907649993896, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 902, - "roi_type": "person", - "w": 23, - "x": 128, - "y": 26 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.20714330673217773, - "x_min": 0.17688614130020142, - "y_max": 0.24033690989017487, - "y_min": 0.06553764641284943 - }, - "confidence": 0.8666298985481262, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 903, - "roi_type": "person", - "w": 23, - "x": 136, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.228765070438385, - "x_min": 0.17733928561210632, - "y_max": 0.23425962775945663, - "y_min": 0.06545140594244003 - }, - "confidence": 0.9463271498680115, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 904, - "roi_type": "person", - "w": 39, - "x": 136, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23787564039230347, - "x_min": 0.18617358803749084, - "y_max": 0.23289936035871506, - "y_min": 0.06733795255422592 - }, - "confidence": 0.8577978610992432, - "label": "person", - "label_id": 1 - }, - "h": 72, - "region_id": 905, - "roi_type": "person", - "w": 40, - "x": 143, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24495278298854828, - "x_min": 0.18914856016635895, - "y_max": 0.22868915647268295, - "y_min": 0.0633026584982872 - }, - "confidence": 0.940249502658844, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 906, - "roi_type": "person", - "w": 43, - "x": 145, - "y": 27 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2437451332807541, - "x_min": 0.19896607100963593, - "y_max": 0.22477787733078003, - "y_min": 0.06456568837165833 - }, - "confidence": 0.9167728424072266, - "label": "person", - "label_id": 1 - }, - "h": 69, - "region_id": 907, - "roi_type": "person", - "w": 34, - "x": 153, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23920002579689026, - "x_min": 0.2088455855846405, - "y_max": 0.23159783333539963, - "y_min": 0.05086781829595566 - }, - "confidence": 0.7405933737754822, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 908, - "roi_type": "person", - "w": 23, - "x": 160, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24580715596675873, - "x_min": 0.21504561603069305, - "y_max": 0.22459033876657486, - "y_min": 0.04561013728380203 - }, - "confidence": 0.8077885508537292, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 909, - "roi_type": "person", - "w": 24, - "x": 165, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.258386492729187, - "x_min": 0.2212424874305725, - "y_max": 0.22196874022483826, - "y_min": 0.04270258545875549 - }, - "confidence": 0.9389496445655823, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 910, - "roi_type": "person", - "w": 29, - "x": 170, - "y": 18 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.26862120628356934, - "x_min": 0.22306446731090546, - "y_max": 0.22240334004163742, - "y_min": 0.03721361607313156 - }, - "confidence": 0.8532379269599915, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 912, - "roi_type": "person", - "w": 35, - "x": 171, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27878499031066895, - "x_min": 0.2256825715303421, - "y_max": 0.2186889424920082, - "y_min": 0.04378647357225418 - }, - "confidence": 0.9401503205299377, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 911, - "roi_type": "person", - "w": 41, - "x": 173, - "y": 19 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2782132923603058, - "x_min": 0.22981300950050354, - "y_max": 0.21300850808620453, - "y_min": 0.040484681725502014 - }, - "confidence": 0.89540034532547, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 913, - "roi_type": "person", - "w": 37, - "x": 176, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27863311767578125, - "x_min": 0.2395809292793274, - "y_max": 0.2115735486149788, - "y_min": 0.02666909247636795 - }, - "confidence": 0.5580114722251892, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 914, - "roi_type": "person", - "w": 30, - "x": 184, - "y": 12 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.284572035074234, - "x_min": 0.2544802129268646, - "y_max": 0.21495239436626434, - "y_min": 0.026290133595466614 - }, - "confidence": 0.8008325695991516, - "label": "person", - "label_id": 1 - }, - "h": 82, - "region_id": 915, - "roi_type": "person", - "w": 23, - "x": 195, - "y": 11 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2907462418079376, - "x_min": 0.2599877417087555, - "y_max": 0.2078927382826805, - "y_min": 0.02282419055700302 - }, - "confidence": 0.8385707139968872, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 916, - "roi_type": "person", - "w": 24, - "x": 200, - "y": 10 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.30755069851875305, - "x_min": 0.265642374753952, - "y_max": 0.19290900975465775, - "y_min": 0.022242017090320587 - }, - "confidence": 0.9778803586959839, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 917, - "roi_type": "person", - "w": 32, - "x": 204, - "y": 10 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31079012155532837, - "x_min": 0.26772522926330566, - "y_max": 0.19722387939691544, - "y_min": 0.023035772144794464 - }, - "confidence": 0.965428352355957, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 918, - "roi_type": "person", - "w": 33, - "x": 206, - "y": 10 - }, - { - "color": { - "confidence": 0.7468731999397278, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.29563242197036743, - "x_min": 0.10331843793392181, - "y_max": 1.0, - "y_min": 0.8515569567680359 - }, - "confidence": 0.7615050673484802, - "label": "vehicle", - "label_id": 2 - }, - "h": 64, - "region_id": 919, - "roi_type": "vehicle", - "type": { - "confidence": 0.5458908677101135, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 148, - "x": 79, - "y": 368 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31590598821640015, - "x_min": 0.2741117477416992, - "y_max": 0.18277175724506378, - "y_min": 0.01914268732070923 - }, - "confidence": 0.9806784987449646, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 920, - "roi_type": "person", - "w": 32, - "x": 211, - "y": 8 - }, - { - "color": { - "confidence": 0.966917872428894, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.30253520607948303, - "x_min": 0.08773636817932129, - "y_max": 1.0, - "y_min": 0.8262225389480591 - }, - "confidence": 0.908382773399353, - "label": "vehicle", - "label_id": 2 - }, - "h": 75, - "region_id": 921, - "roi_type": "vehicle", - "type": { - "confidence": 0.7184171676635742, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 165, - "x": 67, - "y": 357 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3163120448589325, - "x_min": 0.27949169278144836, - "y_max": 0.18241427838802338, - "y_min": 0.00963611900806427 - }, - "confidence": 0.8560532331466675, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 922, - "roi_type": "person", - "w": 28, - "x": 215, - "y": 4 - }, - { - "color": { - "confidence": 0.966936469078064, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.30715903639793396, - "x_min": 0.08984959125518799, - "y_max": 1.0, - "y_min": 0.7983192205429077 - }, - "confidence": 0.9688752293586731, - "label": "vehicle", - "label_id": 2 - }, - "h": 87, - "region_id": 923, - "roi_type": "vehicle", - "type": { - "confidence": 0.8623598217964172, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 167, - "x": 69, - "y": 345 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31996291875839233, - "x_min": 0.28390347957611084, - "y_max": 0.17544174194335938, - "y_min": 0.002514079213142395 - }, - "confidence": 0.9317658543586731, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 924, - "roi_type": "person", - "w": 28, - "x": 218, - "y": 1 - }, - { - "color": { - "confidence": 0.9985125660896301, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3178534582257271, - "x_min": 0.09327427297830582, - "y_max": 0.9961552023887634, - "y_min": 0.7738481163978577 - }, - "confidence": 0.9980049729347229, - "label": "vehicle", - "label_id": 2 - }, - "h": 96, - "region_id": 925, - "roi_type": "vehicle", - "type": { - "confidence": 0.9990713596343994, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 172, - "x": 72, - "y": 334 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3244977593421936, - "x_min": 0.29137325286865234, - "y_max": 0.18117786198854446, - "y_min": 0.0 - }, - "confidence": 0.929945707321167, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 926, - "roi_type": "person", - "w": 25, - "x": 224, - "y": 0 - }, - { - "color": { - "confidence": 0.9868773818016052, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3211563155055046, - "x_min": 0.09341170638799667, - "y_max": 0.9977254271507263, - "y_min": 0.7558173537254333 - }, - "confidence": 0.9959222078323364, - "label": "vehicle", - "label_id": 2 - }, - "h": 105, - "region_id": 927, - "roi_type": "vehicle", - "type": { - "confidence": 0.9961318969726562, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 175, - "x": 72, - "y": 327 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33760935068130493, - "x_min": 0.2969669699668884, - "y_max": 0.1680586338043213, - "y_min": 0.0 - }, - "confidence": 0.9743756055831909, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 928, - "roi_type": "person", - "w": 31, - "x": 228, - "y": 0 - }, - { - "color": { - "confidence": 0.9531167149543762, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.32524099946022034, - "x_min": 0.09379330277442932, - "y_max": 0.9987420439720154, - "y_min": 0.7281789183616638 - }, - "confidence": 0.9982353448867798, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 929, - "roi_type": "vehicle", - "type": { - "confidence": 0.99638831615448, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 178, - "x": 72, - "y": 315 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3412308692932129, - "x_min": 0.2997239828109741, - "y_max": 0.1591828167438507, - "y_min": 0.0 - }, - "confidence": 0.9657355546951294, - "label": "person", - "label_id": 1 - }, - "h": 69, - "region_id": 930, - "roi_type": "person", - "w": 32, - "x": 230, - "y": 0 - }, - { - "color": { - "confidence": 0.9923230409622192, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3318568468093872, - "x_min": 0.0938652902841568, - "y_max": 0.9967383742332458, - "y_min": 0.7049053311347961 - }, - "confidence": 0.9962289929389954, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 931, - "roi_type": "vehicle", - "type": { - "confidence": 0.9930793642997742, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 183, - "x": 72, - "y": 305 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3466411232948303, - "x_min": 0.3028194308280945, - "y_max": 0.15620925277471542, - "y_min": 0.0 - }, - "confidence": 0.9846485257148743, - "label": "person", - "label_id": 1 - }, - "h": 67, - "region_id": 932, - "roi_type": "person", - "w": 34, - "x": 233, - "y": 0 - }, - { - "color": { - "confidence": 0.9815136194229126, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.33956659585237503, - "x_min": 0.08993614464998245, - "y_max": 0.9996479749679565, - "y_min": 0.6784218549728394 - }, - "confidence": 0.9955138564109802, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "region_id": 933, - "roi_type": "vehicle", - "type": { - "confidence": 0.9888793230056763, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 192, - "x": 69, - "y": 293 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34522512555122375, - "x_min": 0.3090610206127167, - "y_max": 0.15079191327095032, - "y_min": 0.0 - }, - "confidence": 0.944502055644989, - "label": "person", - "label_id": 1 - }, - "h": 65, - "region_id": 934, - "roi_type": "person", - "w": 28, - "x": 237, - "y": 0 - }, - { - "color": { - "confidence": 0.943954348564148, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3419874384999275, - "x_min": 0.09411356598138809, - "y_max": 1.0, - "y_min": 0.6525992155075073 - }, - "confidence": 0.9987126588821411, - "label": "vehicle", - "label_id": 2 - }, - "h": 150, - "region_id": 935, - "roi_type": "vehicle", - "type": { - "confidence": 0.9753091931343079, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 190, - "x": 72, - "y": 282 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3481338918209076, - "x_min": 0.3160833418369293, - "y_max": 0.14550428092479706, - "y_min": 0.0 - }, - "confidence": 0.9637501835823059, - "label": "person", - "label_id": 1 - }, - "h": 63, - "region_id": 936, - "roi_type": "person", - "w": 25, - "x": 243, - "y": 0 - }, - { - "color": { - "confidence": 0.8111642599105835, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34435366839170456, - "x_min": 0.09984951466321945, - "y_max": 0.9990872144699097, - "y_min": 0.6355067491531372 - }, - "confidence": 0.9971873164176941, - "label": "vehicle", - "label_id": 2 - }, - "h": 157, - "region_id": 937, - "roi_type": "vehicle", - "type": { - "confidence": 0.9859831929206848, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 188, - "x": 77, - "y": 275 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3530542850494385, - "x_min": 0.3201481103897095, - "y_max": 0.14842258393764496, - "y_min": 0.0 - }, - "confidence": 0.8752260804176331, - "label": "person", - "label_id": 1 - }, - "h": 64, - "region_id": 940, - "roi_type": "person", - "w": 25, - "x": 246, - "y": 0 - }, - { - "color": { - "confidence": 0.5280370712280273, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34952477365732193, - "x_min": 0.1070857122540474, - "y_max": 1.0, - "y_min": 0.6191878318786621 - }, - "confidence": 0.9986199140548706, - "label": "vehicle", - "label_id": 2 - }, - "h": 165, - "region_id": 941, - "roi_type": "vehicle", - "type": { - "confidence": 0.9884898066520691, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 186, - "x": 82, - "y": 267 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35819560289382935, - "x_min": 0.3240785002708435, - "y_max": 0.1449350342154503, - "y_min": 0.0 - }, - "confidence": 0.7914345860481262, - "label": "person", - "label_id": 1 - }, - "h": 63, - "region_id": 938, - "roi_type": "person", - "w": 26, - "x": 249, - "y": 0 - }, - { - "color": { - "confidence": 0.8881656527519226, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35786715149879456, - "x_min": 0.11816439032554626, - "y_max": 0.9963029623031616, - "y_min": 0.5943844318389893 - }, - "confidence": 0.9954742789268494, - "label": "vehicle", - "label_id": 2 - }, - "h": 174, - "region_id": 939, - "roi_type": "vehicle", - "type": { - "confidence": 0.9638090133666992, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 184, - "x": 91, - "y": 257 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36160674691200256, - "x_min": 0.3288991153240204, - "y_max": 0.14174100011587143, - "y_min": 0.0 - }, - "confidence": 0.619408369064331, - "label": "person", - "label_id": 1 - }, - "h": 61, - "region_id": 942, - "roi_type": "person", - "w": 25, - "x": 253, - "y": 0 - }, - { - "color": { - "confidence": 0.6927681565284729, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.356850802898407, - "x_min": 0.11790120601654053, - "y_max": 0.9961073994636536, - "y_min": 0.5718067288398743 - }, - "confidence": 0.994742751121521, - "label": "vehicle", - "label_id": 2 - }, - "h": 183, - "region_id": 943, - "roi_type": "vehicle", - "type": { - "confidence": 0.9615950584411621, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 184, - "x": 91, - "y": 247 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36447739601135254, - "x_min": 0.33208173513412476, - "y_max": 0.14312617480754852, - "y_min": 0.0 - }, - "confidence": 0.8804531693458557, - "label": "person", - "label_id": 1 - }, - "h": 62, - "region_id": 944, - "roi_type": "person", - "w": 25, - "x": 255, - "y": 0 - }, - { - "color": { - "confidence": 0.6090099811553955, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3610100597143173, - "x_min": 0.10920797288417816, - "y_max": 1.0, - "y_min": 0.551466703414917 - }, - "confidence": 0.9975082874298096, - "label": "vehicle", - "label_id": 2 - }, - "h": 194, - "region_id": 945, - "roi_type": "vehicle", - "type": { - "confidence": 0.9945594668388367, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 193, - "x": 84, - "y": 238 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3689320981502533, - "x_min": 0.33504197001457214, - "y_max": 0.13094882667064667, - "y_min": 0.0 - }, - "confidence": 0.5245118141174316, - "label": "person", - "label_id": 1 - }, - "h": 57, - "region_id": 946, - "roi_type": "person", - "w": 26, - "x": 257, - "y": 0 - }, - { - "color": { - "confidence": 0.8659558892250061, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36274421215057373, - "x_min": 0.11731858551502228, - "y_max": 1.0, - "y_min": 0.533694863319397 - }, - "confidence": 0.9914776682853699, - "label": "vehicle", - "label_id": 2 - }, - "h": 201, - "region_id": 947, - "roi_type": "vehicle", - "type": { - "confidence": 0.9782852530479431, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 188, - "x": 90, - "y": 231 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7261179089546204, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36594102531671524, - "x_min": 0.11780119687318802, - "y_max": 1.0, - "y_min": 0.518149197101593 - }, - "confidence": 0.9818967580795288, - "label": "vehicle", - "label_id": 2 - }, - "h": 208, - "region_id": 948, - "roi_type": "vehicle", - "type": { - "confidence": 0.9929179549217224, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 191, - "x": 90, - "y": 224 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7979229688644409, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3604143485426903, - "x_min": 0.11885427683591843, - "y_max": 1.0, - "y_min": 0.5062890648841858 - }, - "confidence": 0.9770737290382385, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "region_id": 949, - "roi_type": "vehicle", - "type": { - "confidence": 0.9997255206108093, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 186, - "x": 91, - "y": 219 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.6396360397338867, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.35873663425445557, - "x_min": 0.12577949464321136, - "y_max": 1.0, - "y_min": 0.4875483214855194 - }, - "confidence": 0.9604215621948242, - "label": "vehicle", - "label_id": 2 - }, - "h": 221, - "region_id": 950, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998347759246826, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 179, - "x": 97, - "y": 211 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9329295754432678, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3681987524032593, - "x_min": 0.1324247121810913, - "y_max": 1.0, - "y_min": 0.4729744493961334 - }, - "confidence": 0.9679283499717712, - "label": "vehicle", - "label_id": 2 - }, - "h": 228, - "region_id": 951, - "roi_type": "vehicle", - "type": { - "confidence": 0.9380544424057007, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 181, - "x": 102, - "y": 204 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9758689999580383, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.37145915627479553, - "x_min": 0.13698622584342957, - "y_max": 0.9822671115398407, - "y_min": 0.45337817072868347 - }, - "confidence": 0.9909036755561829, - "label": "vehicle", - "label_id": 2 - }, - "h": 228, - "region_id": 952, - "roi_type": "vehicle", - "type": { - "confidence": 0.8175617456436157, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 180, - "x": 105, - "y": 196 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9960182309150696, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3607513904571533, - "x_min": 0.1460217386484146, - "y_max": 0.9427908658981323, - "y_min": 0.44225311279296875 - }, - "confidence": 0.9961795806884766, - "label": "vehicle", - "label_id": 2 - }, - "h": 216, - "region_id": 953, - "roi_type": "vehicle", - "type": { - "confidence": 0.9925321936607361, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 165, - "x": 112, - "y": 191 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9773135781288147, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36652737855911255, - "x_min": 0.15879414975643158, - "y_max": 0.935760110616684, - "y_min": 0.4156017005443573 - }, - "confidence": 0.9988160133361816, - "label": "vehicle", - "label_id": 2 - }, - "h": 225, - "region_id": 954, - "roi_type": "vehicle", - "type": { - "confidence": 0.6141624450683594, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 160, - "x": 122, - "y": 180 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9930024743080139, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36519181728363037, - "x_min": 0.16240549087524414, - "y_max": 0.9030637443065643, - "y_min": 0.3991294801235199 - }, - "confidence": 0.99962317943573, - "label": "vehicle", - "label_id": 2 - }, - "h": 218, - "region_id": 955, - "roi_type": "vehicle", - "type": { - "confidence": 0.5760528445243835, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 156, - "x": 125, - "y": 172 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9986255168914795, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3651779890060425, - "x_min": 0.17351627349853516, - "y_max": 0.879246711730957, - "y_min": 0.3837733566761017 - }, - "confidence": 0.9997884631156921, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "region_id": 956, - "roi_type": "vehicle", - "type": { - "confidence": 0.533501386642456, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 147, - "x": 133, - "y": 166 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9977391958236694, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3610609471797943, - "x_min": 0.17901268601417542, - "y_max": 0.8557635545730591, - "y_min": 0.36366546154022217 - }, - "confidence": 0.9998449087142944, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "region_id": 957, - "roi_type": "vehicle", - "type": { - "confidence": 0.6246164441108704, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 140, - "x": 137, - "y": 157 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9996715784072876, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3628588616847992, - "x_min": 0.18275156617164612, - "y_max": 0.8229827284812927, - "y_min": 0.3428630232810974 - }, - "confidence": 0.9999336004257202, - "label": "vehicle", - "label_id": 2 - }, - "h": 207, - "region_id": 958, - "roi_type": "vehicle", - "type": { - "confidence": 0.7438144683837891, - "label": "bus", - "label_id": 3, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 138, - "x": 140, - "y": 148 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9991983771324158, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.36020204424858093, - "x_min": 0.189069002866745, - "y_max": 0.7855887413024902, - "y_min": 0.3225172758102417 - }, - "confidence": 0.9999699592590332, - "label": "vehicle", - "label_id": 2 - }, - "h": 200, - "region_id": 959, - "roi_type": "vehicle", - "type": { - "confidence": 0.7719506621360779, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 131, - "x": 145, - "y": 139 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9998089671134949, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3588583469390869, - "x_min": 0.19048963487148285, - "y_max": 0.7667083740234375, - "y_min": 0.3120533227920532 - }, - "confidence": 0.9999749660491943, - "label": "vehicle", - "label_id": 2 - }, - "h": 196, - "region_id": 960, - "roi_type": "vehicle", - "type": { - "confidence": 0.6637517809867859, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 129, - "x": 146, - "y": 135 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999306201934814, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.354780912399292, - "x_min": 0.19472241401672363, - "y_max": 0.7405030131340027, - "y_min": 0.29147499799728394 - }, - "confidence": 0.9999440908432007, - "label": "vehicle", - "label_id": 2 - }, - "h": 194, - "region_id": 961, - "roi_type": "vehicle", - "type": { - "confidence": 0.8586614727973938, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 123, - "x": 150, - "y": 126 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.971102774143219, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3499932885169983, - "x_min": 0.1945403814315796, - "y_max": 0.7187594175338745, - "y_min": 0.27680015563964844 - }, - "confidence": 0.9998922348022461, - "label": "vehicle", - "label_id": 2 - }, - "h": 191, - "region_id": 962, - "roi_type": "vehicle", - "type": { - "confidence": 0.9108664393424988, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 119, - "x": 149, - "y": 120 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9928416013717651, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.345708429813385, - "x_min": 0.20007973909378052, - "y_max": 0.6881218552589417, - "y_min": 0.2653037905693054 - }, - "confidence": 0.9998040795326233, - "label": "vehicle", - "label_id": 2 - }, - "h": 183, - "region_id": 963, - "roi_type": "vehicle", - "type": { - "confidence": 0.8837860226631165, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 112, - "x": 154, - "y": 115 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9985859394073486, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3446749746799469, - "x_min": 0.19982746243476868, - "y_max": 0.6525393128395081, - "y_min": 0.25481295585632324 - }, - "confidence": 0.9998615980148315, - "label": "vehicle", - "label_id": 2 - }, - "h": 172, - "region_id": 964, - "roi_type": "vehicle", - "type": { - "confidence": 0.6626150012016296, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 111, - "x": 153, - "y": 110 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9502972960472107, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.34181278944015503, - "x_min": 0.1947338730096817, - "y_max": 0.6376240253448486, - "y_min": 0.23916593194007874 - }, - "confidence": 0.9997871518135071, - "label": "vehicle", - "label_id": 2 - }, - "h": 172, - "region_id": 965, - "roi_type": "vehicle", - "type": { - "confidence": 0.7591854929924011, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 113, - "x": 150, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9493867754936218, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.33886438608169556, - "x_min": 0.19013744592666626, - "y_max": 0.630878210067749, - "y_min": 0.22272005677223206 - }, - "confidence": 0.9997004270553589, - "label": "vehicle", - "label_id": 2 - }, - "h": 176, - "region_id": 966, - "roi_type": "vehicle", - "type": { - "confidence": 0.5599352121353149, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 114, - "x": 146, - "y": 96 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.964870035648346, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.33750563859939575, - "x_min": 0.18740475177764893, - "y_max": 0.5995770543813705, - "y_min": 0.2067357748746872 - }, - "confidence": 0.9998914003372192, - "label": "vehicle", - "label_id": 2 - }, - "h": 170, - "region_id": 967, - "roi_type": "vehicle", - "type": { - "confidence": 0.6556665897369385, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 115, - "x": 144, - "y": 89 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8755224943161011, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3318178355693817, - "x_min": 0.17809423804283142, - "y_max": 0.5778812617063522, - "y_min": 0.19000540673732758 - }, - "confidence": 0.9998241066932678, - "label": "vehicle", - "label_id": 2 - }, - "h": 168, - "region_id": 968, - "roi_type": "vehicle", - "type": { - "confidence": 0.6206150650978088, - "label": "truck", - "label_id": 2, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 118, - "x": 137, - "y": 82 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.534389078617096, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3320658802986145, - "x_min": 0.16782958805561066, - "y_max": 0.5662892013788223, - "y_min": 0.17552168667316437 - }, - "confidence": 0.9969956874847412, - "label": "vehicle", - "label_id": 2 - }, - "h": 169, - "region_id": 969, - "roi_type": "vehicle", - "type": { - "confidence": 0.5632022619247437, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 126, - "x": 129, - "y": 76 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7536903023719788, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.33100447058677673, - "x_min": 0.15877380967140198, - "y_max": 0.5364058762788773, - "y_min": 0.16238071024417877 - }, - "confidence": 0.99989914894104, - "label": "vehicle", - "label_id": 2 - }, - "h": 162, - "region_id": 970, - "roi_type": "vehicle", - "type": { - "confidence": 0.9606966376304626, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 132, - "x": 122, - "y": 70 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7409474849700928, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.32596278190612793, - "x_min": 0.14729291200637817, - "y_max": 0.515276625752449, - "y_min": 0.1573212891817093 - }, - "confidence": 0.9999929666519165, - "label": "vehicle", - "label_id": 2 - }, - "h": 155, - "region_id": 971, - "roi_type": "vehicle", - "type": { - "confidence": 0.9005879163742065, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 137, - "x": 113, - "y": 68 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8630046248435974, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3235020935535431, - "x_min": 0.13618576526641846, - "y_max": 0.5010691285133362, - "y_min": 0.15680623054504395 - }, - "confidence": 0.999995231628418, - "label": "vehicle", - "label_id": 2 - }, - "h": 149, - "region_id": 972, - "roi_type": "vehicle", - "type": { - "confidence": 0.9633175730705261, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 144, - "x": 105, - "y": 68 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.517734169960022, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.31811434030532837, - "x_min": 0.12496481835842133, - "y_max": 0.4832286387681961, - "y_min": 0.1473962813615799 - }, - "confidence": 0.9999911785125732, - "label": "vehicle", - "label_id": 2 - }, - "h": 145, - "region_id": 973, - "roi_type": "vehicle", - "type": { - "confidence": 0.9834174513816833, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 148, - "x": 96, - "y": 64 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9002454876899719, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.31093743443489075, - "x_min": 0.10377117991447449, - "y_max": 0.4647507220506668, - "y_min": 0.14403755962848663 - }, - "confidence": 0.9999978542327881, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "region_id": 974, - "roi_type": "vehicle", - "type": { - "confidence": 0.9799692034721375, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 159, - "x": 80, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.532961905002594, - "label": "gray", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.3060436174273491, - "x_min": 0.08956282585859299, - "y_max": 0.45555543899536133, - "y_min": 0.13558465242385864 - }, - "confidence": 0.9999889135360718, - "label": "vehicle", - "label_id": 2 - }, - "h": 138, - "region_id": 975, - "roi_type": "vehicle", - "type": { - "confidence": 0.6467808485031128, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 166, - "x": 69, - "y": 59 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.8349924683570862, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.29430416971445084, - "x_min": 0.07462433725595474, - "y_max": 0.4425670653581619, - "y_min": 0.13647617399692535 - }, - "confidence": 0.9999735355377197, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 976, - "roi_type": "vehicle", - "type": { - "confidence": 0.8573592901229858, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 169, - "x": 57, - "y": 59 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9079897999763489, - "label": "blue", - "label_id": 5, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2883331850171089, - "x_min": 0.06440750509500504, - "y_max": 0.42713575065135956, - "y_min": 0.1353260725736618 - }, - "confidence": 0.9999496936798096, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 977, - "roi_type": "vehicle", - "type": { - "confidence": 0.9182763695716858, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 172, - "x": 49, - "y": 58 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9153874516487122, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.28060394525527954, - "x_min": 0.04651816189289093, - "y_max": 0.4131324589252472, - "y_min": 0.13239774107933044 - }, - "confidence": 0.9999241828918457, - "label": "vehicle", - "label_id": 2 - }, - "h": 121, - "region_id": 978, - "roi_type": "vehicle", - "type": { - "confidence": 0.9403809309005737, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 180, - "x": 36, - "y": 57 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9474497437477112, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.27025365829467773, - "x_min": 0.031960561871528625, - "y_max": 0.40551866590976715, - "y_min": 0.1313827782869339 - }, - "confidence": 0.9999902248382568, - "label": "vehicle", - "label_id": 2 - }, - "h": 118, - "region_id": 979, - "roi_type": "vehicle", - "type": { - "confidence": 0.9429291486740112, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 183, - "x": 25, - "y": 57 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47750000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9998084902763367, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.25744086503982544, - "x_min": 0.018124952912330627, - "y_max": 0.3981375992298126, - "y_min": 0.12768641114234924 - }, - "confidence": 0.9999737739562988, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 980, - "roi_type": "vehicle", - "type": { - "confidence": 0.889205276966095, - "label": "van", - "label_id": 1, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 184, - "x": 14, - "y": 55 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999219179153442, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.24728649854660034, - "x_min": 0.004216700792312622, - "y_max": 0.39357995986938477, - "y_min": 0.12342596054077148 - }, - "confidence": 0.999515175819397, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 981, - "roi_type": "vehicle", - "type": { - "confidence": 0.7226013541221619, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 187, - "x": 3, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.994304358959198, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.23507947474718094, - "x_min": 0.005596168339252472, - "y_max": 0.39097075164318085, - "y_min": 0.12340514361858368 - }, - "confidence": 0.9983310103416443, - "label": "vehicle", - "label_id": 2 - }, - "h": 116, - "region_id": 982, - "roi_type": "vehicle", - "type": { - "confidence": 0.9526732563972473, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 176, - "x": 4, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9984728693962097, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.2247968539595604, - "x_min": 0.0017654821276664734, - "y_max": 0.38544654846191406, - "y_min": 0.12457787990570068 - }, - "confidence": 0.9997488856315613, - "label": "vehicle", - "label_id": 2 - }, - "h": 113, - "region_id": 983, - "roi_type": "vehicle", - "type": { - "confidence": 0.9625148773193359, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 171, - "x": 1, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9998278617858887, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.21433762460947037, - "x_min": 0.001760043203830719, - "y_max": 0.3788324445486069, - "y_min": 0.12503574788570404 - }, - "confidence": 0.99918133020401, - "label": "vehicle", - "label_id": 2 - }, - "h": 110, - "region_id": 984, - "roi_type": "vehicle", - "type": { - "confidence": 0.9985003471374512, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 163, - "x": 1, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.999667763710022, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.20309092104434967, - "x_min": 0.000812336802482605, - "y_max": 0.37199313193559647, - "y_min": 0.12212661653757095 - }, - "confidence": 0.9997194409370422, - "label": "vehicle", - "label_id": 2 - }, - "h": 108, - "region_id": 985, - "roi_type": "vehicle", - "type": { - "confidence": 0.9995529055595398, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 155, - "x": 1, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48250000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999610185623169, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.18479624390602112, - "x_min": 0.0, - "y_max": 0.36851048469543457, - "y_min": 0.12228719890117645 - }, - "confidence": 0.9995477795600891, - "label": "vehicle", - "label_id": 2 - }, - "h": 106, - "region_id": 986, - "roi_type": "vehicle", - "type": { - "confidence": 0.9995977282524109, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 142, - "x": 0, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48333333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9997596144676208, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.17371168732643127, - "x_min": 0.0, - "y_max": 0.3637295439839363, - "y_min": 0.11915398389101028 - }, - "confidence": 0.9950659275054932, - "label": "vehicle", - "label_id": 2 - }, - "h": 106, - "region_id": 987, - "roi_type": "vehicle", - "type": { - "confidence": 0.9999232292175293, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 133, - "x": 0, - "y": 51 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48416666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999818801879883, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.16038890928030014, - "x_min": 0.0, - "y_max": 0.35889435559511185, - "y_min": 0.12057233601808548 - }, - "confidence": 0.9822057485580444, - "label": "vehicle", - "label_id": 2 - }, - "h": 103, - "region_id": 989, - "roi_type": "vehicle", - "type": { - "confidence": 0.999942421913147, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 123, - "x": 0, - "y": 52 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48500000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9999450445175171, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.14810675382614136, - "x_min": 0.0, - "y_max": 0.3565236106514931, - "y_min": 0.12085292488336563 - }, - "confidence": 0.9530163407325745, - "label": "vehicle", - "label_id": 2 - }, - "h": 102, - "region_id": 988, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998893737792969, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 114, - "x": 0, - "y": 52 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48583333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9992677569389343, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.13574011623859406, - "x_min": 0.0, - "y_max": 0.3567161560058594, - "y_min": 0.12330581247806549 - }, - "confidence": 0.7856714129447937, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "region_id": 990, - "roi_type": "vehicle", - "type": { - "confidence": 0.9998465776443481, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 104, - "x": 0, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48666666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9976156949996948, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.11242115125060081, - "x_min": 0.0019210241734981537, - "y_max": 0.3555034399032593, - "y_min": 0.12604720890522003 - }, - "confidence": 0.6798856258392334, - "label": "vehicle", - "label_id": 2 - }, - "h": 99, - "region_id": 991, - "roi_type": "vehicle", - "type": { - "confidence": 0.9904062151908875, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 85, - "x": 1, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48833333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9454762935638428, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.09885178878903389, - "x_min": 0.0036434121429920197, - "y_max": 0.35827890038490295, - "y_min": 0.12642857432365417 - }, - "confidence": 0.7773285508155823, - "label": "vehicle", - "label_id": 2 - }, - "h": 100, - "region_id": 992, - "roi_type": "vehicle", - "type": { - "confidence": 0.9880791306495667, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 73, - "x": 3, - "y": 55 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48916666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.3977396786212921, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.08784186467528343, - "x_min": 0.0017804913222789764, - "y_max": 0.3632158041000366, - "y_min": 0.12948638200759888 - }, - "confidence": 0.6258371472358704, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "region_id": 993, - "roi_type": "vehicle", - "type": { - "confidence": 0.9339537024497986, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 66, - "x": 1, - "y": 56 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49000000000 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9392623901367188, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.07318708673119545, - "x_min": 0.004130352288484573, - "y_max": 0.35117629170417786, - "y_min": 0.14347264170646667 - }, - "confidence": 0.6314257979393005, - "label": "vehicle", - "label_id": 2 - }, - "h": 90, - "region_id": 994, - "roi_type": "vehicle", - "type": { - "confidence": 0.5916847586631775, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 53, - "x": 3, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49083333333 - }, - { - "objects": [ - { - "color": { - "confidence": 0.9517310857772827, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.06266952492296696, - "x_min": 0.0, - "y_max": 0.3495759963989258, - "y_min": 0.14383479952812195 - }, - "confidence": 0.6896533370018005, - "label": "vehicle", - "label_id": 2 - }, - "h": 89, - "region_id": 995, - "roi_type": "vehicle", - "type": { - "confidence": 0.8126499652862549, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 48, - "x": 0, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49166666666 - }, - { - "objects": [ - { - "color": { - "confidence": 0.7189163565635681, - "label": "white", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "detection": { - "bounding_box": { - "x_max": 0.04970443993806839, - "x_min": 0.0, - "y_max": 0.34233346581459045, - "y_min": 0.14351695775985718 - }, - "confidence": 0.6430803537368774, - "label": "vehicle", - "label_id": 2 - }, - "h": 86, - "region_id": 996, - "roi_type": "vehicle", - "type": { - "confidence": 0.9153555035591125, - "label": "car", - "label_id": 0, - "model": { - "name": "vehicle-attributes-recognition-barrier-0039" - } - }, - "w": 38, - "x": 0, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49250000000 - } - ] -} \ No newline at end of file diff --git a/tests/test_cases/pipeline_stability/cpu/stability_object_detection_gstreamer.json b/tests/test_cases/pipeline_stability/cpu/stability_object_detection_gstreamer.json deleted file mode 100644 index 66954d8..0000000 --- a/tests/test_cases/pipeline_stability/cpu/stability_object_detection_gstreamer.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "options": {}, - "pipeline": { - "name": "object_detection", - "version": "person_vehicle_bike" - }, - "request": { - "source": { - "type": "gst", - "element": "multifilesrc", - "postproc": "decodebin ! videoconvert ! video/x-raw,format=NV12", - "capsfilter": "image/png,framerate=(fraction)30/1", - "properties": { - "location": "/home/pipeline-server/tests/media/sample01.png", - "loop": true - } - }, - "destination": { - "type": "file", - "path": "/dev/null", - "format": "json-lines" - } - }, - "stability_duration": 10800, - "relaunch_on_complete": false -} diff --git a/tests/test_cases/pipeline_stability/cpu/stability_object_detection_many_concurrent_trimmed_gstreamer.json b/tests/test_cases/pipeline_stability/cpu/stability_object_detection_many_concurrent_trimmed_gstreamer.json deleted file mode 100644 index 0060986..0000000 --- a/tests/test_cases/pipeline_stability/cpu/stability_object_detection_many_concurrent_trimmed_gstreamer.json +++ /dev/null @@ -1,1619 +0,0 @@ -{ - "options": { - "max_running_pipelines": 10 - }, - "pipeline": { - "name": "object_detection", - "version": "person_vehicle_bike" - }, - "request": { - "source": { - "type": "uri", - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4" - }, - "destination": { - "type": "file", - "path": "/tmp/object_detection_results.json", - "format": "json-lines" - }, - "parameters": { - "detection-model-instance-id": "stability1" - } - }, - "golden_results": true, - "stability_duration": 10800, - "relaunch_on_complete": true, - "numerical_tolerance": 0.01, - "result": [ - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7448995113372803, - "x_min": 0.6734092235565186, - "y_max": 0.9991496205329895, - "y_min": 0.8781012892723083 - }, - "confidence": 0.5402482151985168, - "label": "person", - "label_id": 1 - }, - "h": 52, - "region_id": 88233, - "roi_type": "person", - "w": 55, - "x": 517, - "y": 379 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 1500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7442193627357483, - "x_min": 0.6763269305229187, - "y_max": 1.0, - "y_min": 0.8277980089187622 - }, - "confidence": 0.5505859851837158, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 88234, - "roi_type": "person", - "w": 52, - "x": 519, - "y": 358 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 1666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7465136647224426, - "x_min": 0.6821861863136292, - "y_max": 1.0, - "y_min": 0.8104691505432129 - }, - "confidence": 0.6447347402572632, - "label": "person", - "label_id": 1 - }, - "h": 82, - "region_id": 88235, - "roi_type": "person", - "w": 49, - "x": 524, - "y": 350 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 1750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7481285929679871, - "x_min": 0.6836653351783752, - "y_max": 0.9999657869338989, - "y_min": 0.7867170572280884 - }, - "confidence": 0.8825269341468811, - "label": "person", - "label_id": 1 - }, - "h": 92, - "region_id": 88236, - "roi_type": "person", - "w": 50, - "x": 525, - "y": 340 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 1833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7502986788749695, - "x_min": 0.6836960911750793, - "y_max": 0.9965760111808777, - "y_min": 0.7709739804267883 - }, - "confidence": 0.9252129793167114, - "label": "person", - "label_id": 1 - }, - "h": 97, - "region_id": 88237, - "roi_type": "person", - "w": 51, - "x": 525, - "y": 333 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 1916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7533046007156372, - "x_min": 0.6833932399749756, - "y_max": 0.9992514848709106, - "y_min": 0.7517307996749878 - }, - "confidence": 0.9160431027412415, - "label": "person", - "label_id": 1 - }, - "h": 107, - "region_id": 88238, - "roi_type": "person", - "w": 54, - "x": 525, - "y": 325 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 2000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7569091320037842, - "x_min": 0.6831721067428589, - "y_max": 0.9893121123313904, - "y_min": 0.7454761862754822 - }, - "confidence": 0.945228099822998, - "label": "person", - "label_id": 1 - }, - "h": 105, - "region_id": 88240, - "roi_type": "person", - "w": 57, - "x": 525, - "y": 322 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 2083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.758220374584198, - "x_min": 0.6869714856147766, - "y_max": 0.9744250774383545, - "y_min": 0.7232376337051392 - }, - "confidence": 0.952269434928894, - "label": "person", - "label_id": 1 - }, - "h": 109, - "region_id": 88241, - "roi_type": "person", - "w": 55, - "x": 528, - "y": 312 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 2166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.757515549659729, - "x_min": 0.6908836364746094, - "y_max": 0.9485968947410583, - "y_min": 0.7128697037696838 - }, - "confidence": 0.879629909992218, - "label": "person", - "label_id": 1 - }, - "h": 102, - "region_id": 88242, - "roi_type": "person", - "w": 51, - "x": 531, - "y": 308 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 2250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7562522292137146, - "x_min": 0.6947104334831238, - "y_max": 0.8969831466674805, - "y_min": 0.7029379606246948 - }, - "confidence": 0.8928062319755554, - "label": "person", - "label_id": 1 - }, - "h": 84, - "region_id": 88243, - "roi_type": "person", - "w": 47, - "x": 534, - "y": 304 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 2333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7574296593666077, - "x_min": 0.6979045271873474, - "y_max": 0.8754802346229553, - "y_min": 0.6884984374046326 - }, - "confidence": 0.8720521330833435, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 88244, - "roi_type": "person", - "w": 46, - "x": 536, - "y": 297 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 2416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7628753781318665, - "x_min": 0.6962668299674988, - "y_max": 0.9012860655784607, - "y_min": 0.6672508120536804 - }, - "confidence": 0.6989009380340576, - "label": "person", - "label_id": 1 - }, - "h": 101, - "region_id": 88245, - "roi_type": "person", - "w": 51, - "x": 535, - "y": 288 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 2500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7642366886138916, - "x_min": 0.6945128440856934, - "y_max": 0.8976409435272217, - "y_min": 0.6511139869689941 - }, - "confidence": 0.6954115033149719, - "label": "person", - "label_id": 1 - }, - "h": 106, - "region_id": 88246, - "roi_type": "person", - "w": 54, - "x": 533, - "y": 281 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 2583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7641031742095947, - "x_min": 0.7028636932373047, - "y_max": 0.8516806364059448, - "y_min": 0.6483858823776245 - }, - "confidence": 0.6670745611190796, - "label": "person", - "label_id": 1 - }, - "h": 88, - "region_id": 88247, - "roi_type": "person", - "w": 47, - "x": 540, - "y": 280 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 2666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7670164108276367, - "x_min": 0.7064443826675415, - "y_max": 0.8298262357711792, - "y_min": 0.6299617290496826 - }, - "confidence": 0.9295324087142944, - "label": "person", - "label_id": 1 - }, - "h": 86, - "region_id": 88248, - "roi_type": "person", - "w": 47, - "x": 543, - "y": 272 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 2750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7725509405136108, - "x_min": 0.7098292112350464, - "y_max": 0.8254445195198059, - "y_min": 0.6173177361488342 - }, - "confidence": 0.6896133422851562, - "label": "person", - "label_id": 1 - }, - "h": 90, - "region_id": 88249, - "roi_type": "person", - "w": 48, - "x": 545, - "y": 267 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 2833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7741845846176147, - "x_min": 0.7090356349945068, - "y_max": 0.8218122124671936, - "y_min": 0.6104786992073059 - }, - "confidence": 0.7604836821556091, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 88250, - "roi_type": "person", - "w": 50, - "x": 545, - "y": 264 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 2916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7783714532852173, - "x_min": 0.7181830406188965, - "y_max": 0.7849859595298767, - "y_min": 0.5744112133979797 - }, - "confidence": 0.5027379989624023, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 88251, - "roi_type": "person", - "w": 46, - "x": 552, - "y": 248 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 3166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7834279537200928, - "x_min": 0.7257949113845825, - "y_max": 0.7589362263679504, - "y_min": 0.5519590973854065 - }, - "confidence": 0.7043126225471497, - "label": "person", - "label_id": 1 - }, - "h": 89, - "region_id": 88252, - "roi_type": "person", - "w": 44, - "x": 557, - "y": 238 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 3250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.78952956199646, - "x_min": 0.7326743602752686, - "y_max": 0.7261121273040771, - "y_min": 0.5483003854751587 - }, - "confidence": 0.9756479263305664, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 88253, - "roi_type": "person", - "w": 44, - "x": 563, - "y": 237 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 3333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7890371084213257, - "x_min": 0.737720251083374, - "y_max": 0.703130841255188, - "y_min": 0.5400574207305908 - }, - "confidence": 0.8415101170539856, - "label": "person", - "label_id": 1 - }, - "h": 70, - "region_id": 88254, - "roi_type": "person", - "w": 39, - "x": 567, - "y": 233 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 3416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7952908873558044, - "x_min": 0.7402903437614441, - "y_max": 0.6921250820159912, - "y_min": 0.5216915607452393 - }, - "confidence": 0.7716292142868042, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 88255, - "roi_type": "person", - "w": 42, - "x": 569, - "y": 225 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 3500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8006463646888733, - "x_min": 0.746234118938446, - "y_max": 0.6880521178245544, - "y_min": 0.5218417048454285 - }, - "confidence": 0.8759841322898865, - "label": "person", - "label_id": 1 - }, - "h": 72, - "region_id": 88256, - "roi_type": "person", - "w": 42, - "x": 573, - "y": 225 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 3583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8098055720329285, - "x_min": 0.7457361817359924, - "y_max": 0.7030310034751892, - "y_min": 0.5026633143424988 - }, - "confidence": 0.9101055860519409, - "label": "person", - "label_id": 1 - }, - "h": 87, - "region_id": 88257, - "roi_type": "person", - "w": 49, - "x": 573, - "y": 217 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 3666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8131635785102844, - "x_min": 0.7560372948646545, - "y_max": 0.68419349193573, - "y_min": 0.4961233139038086 - }, - "confidence": 0.9086403846740723, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 88258, - "roi_type": "person", - "w": 44, - "x": 581, - "y": 214 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 3750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.823058545589447, - "x_min": 0.7637491822242737, - "y_max": 0.6855756640434265, - "y_min": 0.4885023236274719 - }, - "confidence": 0.8248198628425598, - "label": "person", - "label_id": 1 - }, - "h": 85, - "region_id": 88261, - "roi_type": "person", - "w": 46, - "x": 587, - "y": 211 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 3833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8232852220535278, - "x_min": 0.760567307472229, - "y_max": 0.6924915313720703, - "y_min": 0.4750783145427704 - }, - "confidence": 0.6950201988220215, - "label": "person", - "label_id": 1 - }, - "h": 94, - "region_id": 88264, - "roi_type": "person", - "w": 48, - "x": 584, - "y": 205 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 3916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8322221040725708, - "x_min": 0.7602424621582031, - "y_max": 0.6941542625427246, - "y_min": 0.46584227681159973 - }, - "confidence": 0.5867345333099365, - "label": "person", - "label_id": 1 - }, - "h": 99, - "region_id": 88265, - "roi_type": "person", - "w": 55, - "x": 584, - "y": 201 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 4000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8429373502731323, - "x_min": 0.793522834777832, - "y_max": 0.6419347524642944, - "y_min": 0.4380990266799927 - }, - "confidence": 0.96792072057724, - "label": "person", - "label_id": 1 - }, - "h": 88, - "region_id": 88266, - "roi_type": "person", - "w": 38, - "x": 609, - "y": 189 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 4250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.849794328212738, - "x_min": 0.796667754650116, - "y_max": 0.615337610244751, - "y_min": 0.44303926825523376 - }, - "confidence": 0.885311484336853, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 88267, - "roi_type": "person", - "w": 41, - "x": 612, - "y": 191 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 4333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8533491492271423, - "x_min": 0.8009874224662781, - "y_max": 0.6051763892173767, - "y_min": 0.4295733571052551 - }, - "confidence": 0.9033098816871643, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 88270, - "roi_type": "person", - "w": 40, - "x": 615, - "y": 186 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 4416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8604123592376709, - "x_min": 0.8060647249221802, - "y_max": 0.5924712419509888, - "y_min": 0.42701780796051025 - }, - "confidence": 0.8053339719772339, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 88272, - "roi_type": "person", - "w": 42, - "x": 619, - "y": 184 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 4500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8663100004196167, - "x_min": 0.8105944395065308, - "y_max": 0.5942341089248657, - "y_min": 0.42083391547203064 - }, - "confidence": 0.7699308395385742, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 88274, - "roi_type": "person", - "w": 43, - "x": 623, - "y": 182 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 4583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8744010329246521, - "x_min": 0.817695677280426, - "y_max": 0.5900759696960449, - "y_min": 0.41369643807411194 - }, - "confidence": 0.9554976224899292, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 88275, - "roi_type": "person", - "w": 44, - "x": 628, - "y": 179 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 4666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8855565190315247, - "x_min": 0.8264035582542419, - "y_max": 0.5860601663589478, - "y_min": 0.4029603898525238 - }, - "confidence": 0.8228961229324341, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 88277, - "roi_type": "person", - "w": 45, - "x": 635, - "y": 174 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 4750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8908534049987793, - "x_min": 0.8350781202316284, - "y_max": 0.5897727608680725, - "y_min": 0.3878404200077057 - }, - "confidence": 0.8011395931243896, - "label": "person", - "label_id": 1 - }, - "h": 87, - "region_id": 88278, - "roi_type": "person", - "w": 43, - "x": 641, - "y": 168 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 4833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9007775187492371, - "x_min": 0.8356189131736755, - "y_max": 0.5877959728240967, - "y_min": 0.39412614703178406 - }, - "confidence": 0.6489150524139404, - "label": "person", - "label_id": 1 - }, - "h": 84, - "region_id": 88279, - "roi_type": "person", - "w": 50, - "x": 642, - "y": 170 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 4916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9088490605354309, - "x_min": 0.8531065583229065, - "y_max": 0.5604839324951172, - "y_min": 0.37604784965515137 - }, - "confidence": 0.6436930298805237, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 88280, - "roi_type": "person", - "w": 43, - "x": 655, - "y": 162 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 5166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.91246098279953, - "x_min": 0.8664992451667786, - "y_max": 0.5441793203353882, - "y_min": 0.36725082993507385 - }, - "confidence": 0.8806076645851135, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 88281, - "roi_type": "person", - "w": 35, - "x": 665, - "y": 159 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 5250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9204215407371521, - "x_min": 0.8713714480400085, - "y_max": 0.5294153094291687, - "y_min": 0.3520965278148651 - }, - "confidence": 0.9779548048973083, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 88282, - "roi_type": "person", - "w": 38, - "x": 669, - "y": 152 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 5333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9224029779434204, - "x_min": 0.8775302171707153, - "y_max": 0.5218915343284607, - "y_min": 0.35059165954589844 - }, - "confidence": 0.9283974766731262, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 88283, - "roi_type": "person", - "w": 34, - "x": 674, - "y": 151 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 5416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9281563758850098, - "x_min": 0.87200927734375, - "y_max": 0.5194041728973389, - "y_min": 0.3446289896965027 - }, - "confidence": 0.7565146088600159, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 88285, - "roi_type": "person", - "w": 43, - "x": 670, - "y": 149 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 5500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9374079704284668, - "x_min": 0.8853236436843872, - "y_max": 0.5107858180999756, - "y_min": 0.34274008870124817 - }, - "confidence": 0.9505764245986938, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 88286, - "roi_type": "person", - "w": 40, - "x": 680, - "y": 148 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 5583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9449759125709534, - "x_min": 0.8897075057029724, - "y_max": 0.5037586688995361, - "y_min": 0.33645254373550415 - }, - "confidence": 0.9099644422531128, - "label": "person", - "label_id": 1 - }, - "h": 72, - "region_id": 88287, - "roi_type": "person", - "w": 42, - "x": 683, - "y": 145 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 5666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9549130201339722, - "x_min": 0.8982007503509521, - "y_max": 0.5104894042015076, - "y_min": 0.3242742419242859 - }, - "confidence": 0.7820349335670471, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 88288, - "roi_type": "person", - "w": 44, - "x": 690, - "y": 140 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 5750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9616369009017944, - "x_min": 0.9061300754547119, - "y_max": 0.5176383852958679, - "y_min": 0.32654041051864624 - }, - "confidence": 0.7777015566825867, - "label": "person", - "label_id": 1 - }, - "h": 83, - "region_id": 88289, - "roi_type": "person", - "w": 43, - "x": 696, - "y": 141 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 5833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9738940000534058, - "x_min": 0.9141021966934204, - "y_max": 0.4915769696235657, - "y_min": 0.3181222677230835 - }, - "confidence": 0.7904208302497864, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 88290, - "roi_type": "person", - "w": 46, - "x": 702, - "y": 137 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 6083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.975996196269989, - "x_min": 0.9256718754768372, - "y_max": 0.4855738878250122, - "y_min": 0.30408161878585815 - }, - "confidence": 0.7352957129478455, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 88291, - "roi_type": "person", - "w": 39, - "x": 711, - "y": 131 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 6166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9818256497383118, - "x_min": 0.928584635257721, - "y_max": 0.4778039753437042, - "y_min": 0.29464688897132874 - }, - "confidence": 0.8346177935600281, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 88292, - "roi_type": "person", - "w": 41, - "x": 713, - "y": 127 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 6250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9829865097999573, - "x_min": 0.9321264624595642, - "y_max": 0.46189287304878235, - "y_min": 0.2909712493419647 - }, - "confidence": 0.9709599018096924, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 88293, - "roi_type": "person", - "w": 39, - "x": 716, - "y": 126 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 6333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9856051206588745, - "x_min": 0.9314626455307007, - "y_max": 0.4595508575439453, - "y_min": 0.28902602195739746 - }, - "confidence": 0.6953368186950684, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 88295, - "roi_type": "person", - "w": 42, - "x": 715, - "y": 125 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 6416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9974535703659058, - "x_min": 0.9289860725402832, - "y_max": 0.46979767084121704, - "y_min": 0.25890350341796875 - }, - "confidence": 0.5784767866134644, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 88294, - "roi_type": "person", - "w": 53, - "x": 713, - "y": 112 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 6500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9965777397155762, - "x_min": 0.948677659034729, - "y_max": 0.4469355344772339, - "y_min": 0.2675803303718567 - }, - "confidence": 0.5522581338882446, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 88297, - "roi_type": "person", - "w": 37, - "x": 729, - "y": 116 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 6583333333 - } - ] -} \ No newline at end of file diff --git a/tests/test_cases/pipeline_stability/cpu/stability_object_detection_many_ffmpeg.json b/tests/test_cases/pipeline_stability/cpu/stability_object_detection_many_ffmpeg.json deleted file mode 100644 index a692ae4..0000000 --- a/tests/test_cases/pipeline_stability/cpu/stability_object_detection_many_ffmpeg.json +++ /dev/null @@ -1,9059 +0,0 @@ -{ - "options": {}, - "pipeline": { - "name": "object_detection", - "version": 1 - }, - "request": { - "source": { - "type": "uri", - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4" - }, - "destination": { - "type": "file", - "path": "/tmp/object_detection_results.json", - "format": "json" - } - }, - "numerical_tolerance": 0.3, - "stability_duration": 10800, - "relaunch_on_complete": true, - "result": [ - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1499976000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6734127998352051, - "y_min": 0.8779282569885254, - "x_max": 0.7446080446243286, - "y_max": 0.999404788017273 - }, - "confidence": 0.5588181018829346, - "label_id": 1 - }, - "h": 53, - "w": 55, - "x": 517, - "y": 379 - } - ], - "tensors": [ - { - "confidence": 0.5588181018829346, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1666640000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6762180924415588, - "y_min": 0.8294872045516968, - "x_max": 0.7442803978919983, - "y_max": 1.00227689743042 - }, - "confidence": 0.5395121574401855, - "label_id": 1 - }, - "h": 74, - "w": 53, - "x": 519, - "y": 358 - } - ], - "tensors": [ - { - "confidence": 0.5395121574401855, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1749972000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6827850937843323, - "y_min": 0.8284579515457153, - "x_max": 0.7486807703971863, - "y_max": 0.9993635416030884 - }, - "confidence": 0.6294834017753601, - "label_id": 1 - }, - "h": 74, - "w": 51, - "x": 524, - "y": 358 - } - ], - "tensors": [ - { - "confidence": 0.6294834017753601, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1833304000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.683455228805542, - "y_min": 0.787131667137146, - "x_max": 0.7478116750717163, - "y_max": 0.9984563589096069 - }, - "confidence": 0.8601303100585938, - "label_id": 1 - }, - "h": 91, - "w": 49, - "x": 525, - "y": 340 - } - ], - "tensors": [ - { - "confidence": 0.8601303100585938, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1916636000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.683600902557373, - "y_min": 0.7701365947723389, - "x_max": 0.750867486000061, - "y_max": 0.9979418516159058 - }, - "confidence": 0.9280875325202942, - "label_id": 1 - }, - "h": 98, - "w": 52, - "x": 525, - "y": 333 - } - ], - "tensors": [ - { - "confidence": 0.9280875325202942, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1999968000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6832555532455444, - "y_min": 0.7529524564743042, - "x_max": 0.7522001266479492, - "y_max": 0.9987977743148804 - }, - "confidence": 0.927311897277832, - "label_id": 1 - }, - "h": 106, - "w": 53, - "x": 525, - "y": 325 - } - ], - "tensors": [ - { - "confidence": 0.927311897277832, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2083300000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6832446455955505, - "y_min": 0.7441677451133728, - "x_max": 0.7576422095298767, - "y_max": 0.9894292950630188 - }, - "confidence": 0.951309084892273, - "label_id": 1 - }, - "h": 106, - "w": 57, - "x": 525, - "y": 321 - } - ], - "tensors": [ - { - "confidence": 0.951309084892273, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2166632000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.68604975938797, - "y_min": 0.7247669100761414, - "x_max": 0.757122814655304, - "y_max": 0.9735121130943298 - }, - "confidence": 0.9686020612716675, - "label_id": 1 - }, - "h": 108, - "w": 54, - "x": 527, - "y": 313 - } - ], - "tensors": [ - { - "confidence": 0.9686020612716675, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2249964000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6904279589653015, - "y_min": 0.7114542126655579, - "x_max": 0.7573937773704529, - "y_max": 0.9489458203315735 - }, - "confidence": 0.9016656875610352, - "label_id": 1 - }, - "h": 103, - "w": 52, - "x": 530, - "y": 307 - } - ], - "tensors": [ - { - "confidence": 0.9016656875610352, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2333296000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6942427754402161, - "y_min": 0.7033036351203918, - "x_max": 0.7553828358650208, - "y_max": 0.8973957896232605 - }, - "confidence": 0.8900401592254639, - "label_id": 1 - }, - "h": 84, - "w": 47, - "x": 533, - "y": 304 - } - ], - "tensors": [ - { - "confidence": 0.8900401592254639, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2416628000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6978124380111694, - "y_min": 0.6883007287979126, - "x_max": 0.7573485374450684, - "y_max": 0.875929594039917 - }, - "confidence": 0.8667184710502625, - "label_id": 1 - }, - "h": 81, - "w": 46, - "x": 536, - "y": 297 - } - ], - "tensors": [ - { - "confidence": 0.8667184710502625, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2499960000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6973814964294434, - "y_min": 0.6681960225105286, - "x_max": 0.7628993988037109, - "y_max": 0.9051385521888733 - }, - "confidence": 0.6548436880111694, - "label_id": 1 - }, - "h": 102, - "w": 50, - "x": 536, - "y": 289 - } - ], - "tensors": [ - { - "confidence": 0.6548436880111694, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2583292000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.6956170201301575, - "y_min": 0.6510389447212219, - "x_max": 0.7642548680305481, - "y_max": 0.8986994624137878 - }, - "confidence": 0.6839810609817505, - "label_id": 1 - }, - "h": 107, - "w": 53, - "x": 534, - "y": 281 - } - ], - "tensors": [ - { - "confidence": 0.6839810609817505, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2666624000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7024138569831848, - "y_min": 0.6492985486984253, - "x_max": 0.7640038132667542, - "y_max": 0.8508652448654175 - }, - "confidence": 0.6671476364135742, - "label_id": 1 - }, - "h": 88, - "w": 48, - "x": 539, - "y": 280 - } - ], - "tensors": [ - { - "confidence": 0.6671476364135742, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2749956000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7056794166564941, - "y_min": 0.6312656402587891, - "x_max": 0.7669720649719238, - "y_max": 0.8299833536148071 - }, - "confidence": 0.9200981259346008, - "label_id": 1 - }, - "h": 86, - "w": 47, - "x": 542, - "y": 273 - } - ], - "tensors": [ - { - "confidence": 0.9200981259346008, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2833288000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7094249725341797, - "y_min": 0.6171458959579468, - "x_max": 0.7727304697036743, - "y_max": 0.8253974914550781 - }, - "confidence": 0.634685754776001, - "label_id": 1 - }, - "h": 90, - "w": 48, - "x": 545, - "y": 267 - } - ], - "tensors": [ - { - "confidence": 0.634685754776001, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2916620000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7092350721359253, - "y_min": 0.6104710102081299, - "x_max": 0.7733482122421265, - "y_max": 0.8216234445571899 - }, - "confidence": 0.7693196535110474, - "label_id": 1 - }, - "h": 91, - "w": 49, - "x": 545, - "y": 264 - } - ], - "tensors": [ - { - "confidence": 0.7693196535110474, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2999952000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7098239064216614, - "y_min": 0.6015931367874146, - "x_max": 0.7740373015403748, - "y_max": 0.8192803859710693 - }, - "confidence": 0.58549565076828, - "label_id": 1 - }, - "h": 94, - "w": 49, - "x": 545, - "y": 260 - } - ], - "tensors": [ - { - "confidence": 0.58549565076828, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3166616000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7187693119049072, - "y_min": 0.5737252235412598, - "x_max": 0.7778397798538208, - "y_max": 0.7852489948272705 - }, - "confidence": 0.5143183469772339, - "label_id": 1 - }, - "h": 91, - "w": 45, - "x": 552, - "y": 248 - } - ], - "tensors": [ - { - "confidence": 0.5143183469772339, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3249948000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7253412008285522, - "y_min": 0.5522810220718384, - "x_max": 0.783305287361145, - "y_max": 0.7603617906570435 - }, - "confidence": 0.7224569320678711, - "label_id": 1 - }, - "h": 89, - "w": 45, - "x": 557, - "y": 239 - } - ], - "tensors": [ - { - "confidence": 0.7224569320678711, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3333280000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7317022085189819, - "y_min": 0.5484567880630493, - "x_max": 0.7883855104446411, - "y_max": 0.7271184921264648 - }, - "confidence": 0.9818903207778931, - "label_id": 1 - }, - "h": 77, - "w": 43, - "x": 562, - "y": 237 - } - ], - "tensors": [ - { - "confidence": 0.9818903207778931, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3416612000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7372883558273315, - "y_min": 0.5409470796585083, - "x_max": 0.7887823581695557, - "y_max": 0.7027069330215454 - }, - "confidence": 0.8577883839607239, - "label_id": 1 - }, - "h": 70, - "w": 40, - "x": 566, - "y": 234 - } - ], - "tensors": [ - { - "confidence": 0.8577883839607239, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3499944000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7410135865211487, - "y_min": 0.5215580463409424, - "x_max": 0.7954019904136658, - "y_max": 0.691115140914917 - }, - "confidence": 0.8129976987838745, - "label_id": 1 - }, - "h": 74, - "w": 42, - "x": 569, - "y": 225 - } - ], - "tensors": [ - { - "confidence": 0.8129976987838745, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3583276000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.746177077293396, - "y_min": 0.5225647687911987, - "x_max": 0.7999571561813354, - "y_max": 0.6882461309432983 - }, - "confidence": 0.8982786536216736, - "label_id": 1 - }, - "h": 71, - "w": 41, - "x": 573, - "y": 226 - } - ], - "tensors": [ - { - "confidence": 0.8982786536216736, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3666608000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7465308904647827, - "y_min": 0.5088982582092285, - "x_max": 0.8079860210418701, - "y_max": 0.6892118453979492 - }, - "confidence": 0.9006739854812622, - "label_id": 1 - }, - "h": 78, - "w": 48, - "x": 573, - "y": 220 - } - ], - "tensors": [ - { - "confidence": 0.9006739854812622, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3749940000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7560437917709351, - "y_min": 0.4955936074256897, - "x_max": 0.8128681182861328, - "y_max": 0.6849269270896912 - }, - "confidence": 0.8902298212051392, - "label_id": 1 - }, - "h": 82, - "w": 43, - "x": 581, - "y": 214 - } - ], - "tensors": [ - { - "confidence": 0.8902298212051392, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3833272000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7638221383094788, - "y_min": 0.4877367913722992, - "x_max": 0.8224636912345886, - "y_max": 0.6864262223243713 - }, - "confidence": 0.8473277688026428, - "label_id": 1 - }, - "h": 86, - "w": 45, - "x": 587, - "y": 211 - } - ], - "tensors": [ - { - "confidence": 0.8473277688026428, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3916604000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7612079977989197, - "y_min": 0.4765152931213379, - "x_max": 0.8228948712348938, - "y_max": 0.6930429935455322 - }, - "confidence": 0.6922434568405151, - "label_id": 1 - }, - "h": 93, - "w": 47, - "x": 585, - "y": 206 - } - ], - "tensors": [ - { - "confidence": 0.6922434568405151, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3999936000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7600260376930237, - "y_min": 0.4642871618270874, - "x_max": 0.8323193192481995, - "y_max": 0.6960529088973999 - }, - "confidence": 0.6348036527633667, - "label_id": 1 - }, - "h": 100, - "w": 55, - "x": 584, - "y": 201 - } - ], - "tensors": [ - { - "confidence": 0.6348036527633667, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4249932000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.793422281742096, - "y_min": 0.4378095269203186, - "x_max": 0.8423773646354675, - "y_max": 0.6405870318412781 - }, - "confidence": 0.9644074440002441, - "label_id": 1 - }, - "h": 88, - "w": 38, - "x": 609, - "y": 189 - } - ], - "tensors": [ - { - "confidence": 0.9644074440002441, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4333264000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7964030504226685, - "y_min": 0.44299182295799255, - "x_max": 0.848788857460022, - "y_max": 0.6162917613983154 - }, - "confidence": 0.9073424935340881, - "label_id": 1 - }, - "h": 75, - "w": 40, - "x": 612, - "y": 191 - } - ], - "tensors": [ - { - "confidence": 0.9073424935340881, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4416596000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.7999505996704102, - "y_min": 0.4296761751174927, - "x_max": 0.8537043333053589, - "y_max": 0.6069327592849731 - }, - "confidence": 0.9073823690414429, - "label_id": 1 - }, - "h": 76, - "w": 42, - "x": 614, - "y": 186 - } - ], - "tensors": [ - { - "confidence": 0.9073823690414429, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4499928000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.8048784136772156, - "y_min": 0.4277309477329254, - "x_max": 0.8599335551261902, - "y_max": 0.5919975638389587 - }, - "confidence": 0.7847642302513123, - "label_id": 1 - }, - "h": 71, - "w": 42, - "x": 618, - "y": 185 - } - ], - "tensors": [ - { - "confidence": 0.7847642302513123, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4583260000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.8112742900848389, - "y_min": 0.42043614387512207, - "x_max": 0.8658212423324585, - "y_max": 0.5937005281448364 - }, - "confidence": 0.8251606225967407, - "label_id": 1 - }, - "h": 74, - "w": 42, - "x": 623, - "y": 182 - } - ], - "tensors": [ - { - "confidence": 0.8251606225967407, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4666592000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.8178002238273621, - "y_min": 0.41338473558425903, - "x_max": 0.8735348582267761, - "y_max": 0.5900363326072693 - }, - "confidence": 0.9657706022262573, - "label_id": 1 - }, - "h": 76, - "w": 43, - "x": 628, - "y": 179 - } - ], - "tensors": [ - { - "confidence": 0.9657706022262573, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4749924000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.8261576294898987, - "y_min": 0.40377795696258545, - "x_max": 0.8855487704277039, - "y_max": 0.5847491025924683 - }, - "confidence": 0.8051931262016296, - "label_id": 1 - }, - "h": 79, - "w": 46, - "x": 634, - "y": 174 - } - ], - "tensors": [ - { - "confidence": 0.8051931262016296, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4833256000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.8350329399108887, - "y_min": 0.3869829475879669, - "x_max": 0.8909602165222168, - "y_max": 0.5895990133285522 - }, - "confidence": 0.8279067277908325, - "label_id": 1 - }, - "h": 88, - "w": 43, - "x": 641, - "y": 167 - } - ], - "tensors": [ - { - "confidence": 0.8279067277908325, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4916588000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.8355488777160645, - "y_min": 0.3944133520126343, - "x_max": 0.9007455110549927, - "y_max": 0.5855798125267029 - }, - "confidence": 0.6674150824546814, - "label_id": 1 - }, - "h": 83, - "w": 50, - "x": 642, - "y": 170 - } - ], - "tensors": [ - { - "confidence": 0.6674150824546814, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5166584000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.8540040850639343, - "y_min": 0.37564727663993835, - "x_max": 0.910390317440033, - "y_max": 0.5681222081184387 - }, - "confidence": 0.6667394042015076, - "label_id": 1 - }, - "h": 83, - "w": 43, - "x": 656, - "y": 162 - } - ], - "tensors": [ - { - "confidence": 0.6667394042015076, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5249916000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.8664734363555908, - "y_min": 0.36737266182899475, - "x_max": 0.9125837087631226, - "y_max": 0.5437213182449341 - }, - "confidence": 0.8699319362640381, - "label_id": 1 - }, - "h": 76, - "w": 36, - "x": 665, - "y": 159 - } - ], - "tensors": [ - { - "confidence": 0.8699319362640381, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5333248000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.8701801896095276, - "y_min": 0.3528415262699127, - "x_max": 0.9201374650001526, - "y_max": 0.5304938554763794 - }, - "confidence": 0.9759781360626221, - "label_id": 1 - }, - "h": 77, - "w": 39, - "x": 668, - "y": 152 - } - ], - "tensors": [ - { - "confidence": 0.9759781360626221, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5416580000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.8758715987205505, - "y_min": 0.3517833948135376, - "x_max": 0.9223876595497131, - "y_max": 0.5213840007781982 - }, - "confidence": 0.928128719329834, - "label_id": 1 - }, - "h": 73, - "w": 35, - "x": 673, - "y": 152 - } - ], - "tensors": [ - { - "confidence": 0.928128719329834, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5499912000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.8702958822250366, - "y_min": 0.34546732902526855, - "x_max": 0.9282131195068359, - "y_max": 0.52052903175354 - }, - "confidence": 0.7125293612480164, - "label_id": 1 - }, - "h": 76, - "w": 45, - "x": 668, - "y": 149 - } - ], - "tensors": [ - { - "confidence": 0.7125293612480164, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5583244000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.8830148577690125, - "y_min": 0.342130184173584, - "x_max": 0.9376000761985779, - "y_max": 0.5108840465545654 - }, - "confidence": 0.9326930046081543, - "label_id": 1 - }, - "h": 73, - "w": 42, - "x": 678, - "y": 148 - } - ], - "tensors": [ - { - "confidence": 0.9326930046081543, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5666576000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.8888958096504211, - "y_min": 0.3362312614917755, - "x_max": 0.9449993968009949, - "y_max": 0.5033485889434814 - }, - "confidence": 0.9043325781822205, - "label_id": 1 - }, - "h": 72, - "w": 43, - "x": 683, - "y": 145 - } - ], - "tensors": [ - { - "confidence": 0.9043325781822205, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5749908000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.8988162279129028, - "y_min": 0.3228757381439209, - "x_max": 0.9546077251434326, - "y_max": 0.5100194811820984 - }, - "confidence": 0.7630113363265991, - "label_id": 1 - }, - "h": 81, - "w": 43, - "x": 690, - "y": 139 - } - ], - "tensors": [ - { - "confidence": 0.7630113363265991, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5833240000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.9052613973617554, - "y_min": 0.3268545866012573, - "x_max": 0.9607596397399902, - "y_max": 0.5165212154388428 - }, - "confidence": 0.8265350461006165, - "label_id": 1 - }, - "h": 82, - "w": 43, - "x": 695, - "y": 141 - } - ], - "tensors": [ - { - "confidence": 0.8265350461006165, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6083236000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.9133073091506958, - "y_min": 0.3186033368110657, - "x_max": 0.9737205505371094, - "y_max": 0.4934609532356262 - }, - "confidence": 0.7388848066329956, - "label_id": 1 - }, - "h": 75, - "w": 47, - "x": 701, - "y": 138 - } - ], - "tensors": [ - { - "confidence": 0.7388848066329956, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6166568000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.9246581196784973, - "y_min": 0.3043941855430603, - "x_max": 0.9762004017829895, - "y_max": 0.4826813340187073 - }, - "confidence": 0.7867417931556702, - "label_id": 1 - }, - "h": 78, - "w": 40, - "x": 710, - "y": 131 - } - ], - "tensors": [ - { - "confidence": 0.7867417931556702, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6249900000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.9278860688209534, - "y_min": 0.29626408219337463, - "x_max": 0.9816299080848694, - "y_max": 0.4776894152164459 - }, - "confidence": 0.7828896641731262, - "label_id": 1 - }, - "h": 78, - "w": 41, - "x": 713, - "y": 128 - } - ], - "tensors": [ - { - "confidence": 0.7828896641731262, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6333232000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.9321361780166626, - "y_min": 0.29067856073379517, - "x_max": 0.982731819152832, - "y_max": 0.4621286392211914 - }, - "confidence": 0.9645175933837891, - "label_id": 1 - }, - "h": 74, - "w": 39, - "x": 716, - "y": 126 - } - ], - "tensors": [ - { - "confidence": 0.9645175933837891, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6416564000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.9319441318511963, - "y_min": 0.28902244567871094, - "x_max": 0.9850153923034668, - "y_max": 0.4589899182319641 - }, - "confidence": 0.7262570261955261, - "label_id": 1 - }, - "h": 73, - "w": 40, - "x": 716, - "y": 125 - } - ], - "tensors": [ - { - "confidence": 0.7262570261955261, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6499896000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.9300705194473267, - "y_min": 0.261774480342865, - "x_max": 0.9973998069763184, - "y_max": 0.46789276599884033 - }, - "confidence": 0.5797560214996338, - "label_id": 1 - }, - "h": 89, - "w": 52, - "x": 714, - "y": 113 - } - ], - "tensors": [ - { - "confidence": 0.5797560214996338, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6583228000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.9475647211074829, - "y_min": 0.26791656017303467, - "x_max": 0.9966084957122803, - "y_max": 0.44728755950927734 - }, - "confidence": 0.5424327254295349, - "label_id": 1 - }, - "h": 77, - "w": 37, - "x": 728, - "y": 116 - } - ], - "tensors": [ - { - "confidence": 0.5424327254295349, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 13916444000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.11596640944480896, - "y_min": 0.019203782081604004, - "x_max": 1.00587797164917, - "y_max": 0.9972268342971802 - }, - "confidence": 0.5399076342582703, - "label_id": 2 - }, - "h": 423, - "w": 679, - "x": 89, - "y": 8 - } - ], - "tensors": [ - { - "confidence": 0.5399076342582703, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14333104000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.12354929745197296, - "y_min": 0.8424254655838013, - "x_max": 0.34599506855010986, - "y_max": 1.0025250911712646 - }, - "confidence": 0.6707731485366821, - "label_id": 2 - }, - "h": 68, - "w": 171, - "x": 95, - "y": 364 - } - ], - "tensors": [ - { - "confidence": 0.6707731485366821, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14416436000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1249007135629654, - "y_min": 0.814952552318573, - "x_max": 0.35160624980926514, - "y_max": 1.0036942958831787 - }, - "confidence": 0.7518407106399536, - "label_id": 2 - }, - "h": 80, - "w": 174, - "x": 96, - "y": 352 - } - ], - "tensors": [ - { - "confidence": 0.7518407106399536, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14499768000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.12201898545026779, - "y_min": 0.784342348575592, - "x_max": 0.3558673560619354, - "y_max": 0.9973203539848328 - }, - "confidence": 0.8715056777000427, - "label_id": 2 - }, - "h": 92, - "w": 179, - "x": 94, - "y": 339 - } - ], - "tensors": [ - { - "confidence": 0.8715056777000427, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14583100000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.11370580643415451, - "y_min": 0.7612596750259399, - "x_max": 0.3590538799762726, - "y_max": 0.9961638450622559 - }, - "confidence": 0.8592389822006226, - "label_id": 2 - }, - "h": 101, - "w": 189, - "x": 87, - "y": 329 - } - ], - "tensors": [ - { - "confidence": 0.8592389822006226, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14666432000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.11230173707008362, - "y_min": 0.7259582877159119, - "x_max": 0.3670547902584076, - "y_max": 1.0007786750793457 - }, - "confidence": 0.6108102202415466, - "label_id": 2 - }, - "h": 118, - "w": 196, - "x": 86, - "y": 314 - } - ], - "tensors": [ - { - "confidence": 0.6108102202415466, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14749764000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.10201224684715271, - "y_min": 0.7005279064178467, - "x_max": 0.3687931001186371, - "y_max": 0.9958691596984863 - }, - "confidence": 0.8610527515411377, - "label_id": 2 - }, - "h": 127, - "w": 205, - "x": 78, - "y": 303 - } - ], - "tensors": [ - { - "confidence": 0.8610527515411377, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14833096000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.10744209587574005, - "y_min": 0.6789625287055969, - "x_max": 0.3779268264770508, - "y_max": 1.0000035762786865 - }, - "confidence": 0.9127089381217957, - "label_id": 2 - }, - "h": 139, - "w": 207, - "x": 83, - "y": 293 - } - ], - "tensors": [ - { - "confidence": 0.9127089381217957, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14916428000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.10694557428359985, - "y_min": 0.648249089717865, - "x_max": 0.3799184560775757, - "y_max": 1.0021778345108032 - }, - "confidence": 0.9617993235588074, - "label_id": 2 - }, - "h": 152, - "w": 210, - "x": 82, - "y": 280 - } - ], - "tensors": [ - { - "confidence": 0.9617993235588074, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14999760000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.11665080487728119, - "y_min": 0.6377010345458984, - "x_max": 0.3768237829208374, - "y_max": 1.000298023223877 - }, - "confidence": 0.9927833080291748, - "label_id": 2 - }, - "h": 157, - "w": 199, - "x": 90, - "y": 275 - } - ], - "tensors": [ - { - "confidence": 0.9927833080291748, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15083092000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.11942803859710693, - "y_min": 0.6142627596855164, - "x_max": 0.37959182262420654, - "y_max": 1.0005748271942139 - }, - "confidence": 0.9954034090042114, - "label_id": 2 - }, - "h": 167, - "w": 200, - "x": 92, - "y": 265 - } - ], - "tensors": [ - { - "confidence": 0.9954034090042114, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15166424000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.11778374016284943, - "y_min": 0.5890892148017883, - "x_max": 0.37694019079208374, - "y_max": 0.9978364109992981 - }, - "confidence": 0.9948791265487671, - "label_id": 2 - }, - "h": 177, - "w": 199, - "x": 90, - "y": 254 - } - ], - "tensors": [ - { - "confidence": 0.9948791265487671, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15249756000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.11633364856243134, - "y_min": 0.5611193180084229, - "x_max": 0.37818074226379395, - "y_max": 0.9985551834106445 - }, - "confidence": 0.9884049892425537, - "label_id": 2 - }, - "h": 189, - "w": 201, - "x": 89, - "y": 242 - } - ], - "tensors": [ - { - "confidence": 0.9884049892425537, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15333088000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.11545005440711975, - "y_min": 0.5469850301742554, - "x_max": 0.37325653433799744, - "y_max": 1.0026047229766846 - }, - "confidence": 0.9741663932800293, - "label_id": 2 - }, - "h": 196, - "w": 198, - "x": 89, - "y": 236 - } - ], - "tensors": [ - { - "confidence": 0.9741663932800293, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15416420000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1327839493751526, - "y_min": 0.5260467529296875, - "x_max": 0.3650442361831665, - "y_max": 1.0008655786514282 - }, - "confidence": 0.9840590953826904, - "label_id": 2 - }, - "h": 205, - "w": 178, - "x": 102, - "y": 227 - } - ], - "tensors": [ - { - "confidence": 0.9840590953826904, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15499752000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1357005536556244, - "y_min": 0.5031139850616455, - "x_max": 0.3617941737174988, - "y_max": 0.9994630813598633 - }, - "confidence": 0.9928669929504395, - "label_id": 2 - }, - "h": 215, - "w": 174, - "x": 104, - "y": 217 - } - ], - "tensors": [ - { - "confidence": 0.9928669929504395, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15583084000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.14232614636421204, - "y_min": 0.4963996410369873, - "x_max": 0.3560277223587036, - "y_max": 0.9926905632019043 - }, - "confidence": 0.996005117893219, - "label_id": 2 - }, - "h": 215, - "w": 164, - "x": 109, - "y": 214 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.36816641688346863, - "y_min": 0.053846269845962524, - "x_max": 0.9435077905654907, - "y_max": 0.7589074373245239 - }, - "confidence": 0.7171570062637329, - "label_id": 2 - }, - "h": 305, - "w": 442, - "x": 283, - "y": 23 - } - ], - "tensors": [ - { - "confidence": 0.996005117893219, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.7171570062637329, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15666416000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.14830967783927917, - "y_min": 0.4742969870567322, - "x_max": 0.3563614785671234, - "y_max": 0.9999963641166687 - }, - "confidence": 0.9980700612068176, - "label_id": 2 - }, - "h": 227, - "w": 160, - "x": 114, - "y": 205 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.37656158208847046, - "y_min": 0.03842857480049133, - "x_max": 0.9512718319892883, - "y_max": 0.886086106300354 - }, - "confidence": 0.6958434581756592, - "label_id": 2 - }, - "h": 366, - "w": 442, - "x": 289, - "y": 17 - } - ], - "tensors": [ - { - "confidence": 0.9980700612068176, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.6958434581756592, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15749748000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.15359345078468323, - "y_min": 0.454115092754364, - "x_max": 0.35834595561027527, - "y_max": 0.9817675948143005 - }, - "confidence": 0.9975983500480652, - "label_id": 2 - }, - "h": 228, - "w": 157, - "x": 118, - "y": 196 - } - ], - "tensors": [ - { - "confidence": 0.9975983500480652, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15833080000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.15890049934387207, - "y_min": 0.43430987000465393, - "x_max": 0.3497201204299927, - "y_max": 0.9478054046630859 - }, - "confidence": 0.9978967905044556, - "label_id": 2 - }, - "h": 221, - "w": 147, - "x": 122, - "y": 188 - } - ], - "tensors": [ - { - "confidence": 0.9978967905044556, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15916412000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.16112689673900604, - "y_min": 0.423270583152771, - "x_max": 0.3455852270126343, - "y_max": 0.9355126619338989 - }, - "confidence": 0.9974404573440552, - "label_id": 2 - }, - "h": 221, - "w": 141, - "x": 124, - "y": 183 - } - ], - "tensors": [ - { - "confidence": 0.9974404573440552, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15999744000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.16597715020179749, - "y_min": 0.40152478218078613, - "x_max": 0.3381536304950714, - "y_max": 0.907120943069458 - }, - "confidence": 0.9992467164993286, - "label_id": 2 - }, - "h": 219, - "w": 133, - "x": 127, - "y": 173 - } - ], - "tensors": [ - { - "confidence": 0.9992467164993286, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16083076000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.16594967246055603, - "y_min": 0.3892979621887207, - "x_max": 0.335437148809433, - "y_max": 0.8842259645462036 - }, - "confidence": 0.9986107349395752, - "label_id": 2 - }, - "h": 214, - "w": 131, - "x": 127, - "y": 168 - } - ], - "tensors": [ - { - "confidence": 0.9986107349395752, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16166408000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1622767448425293, - "y_min": 0.37051695585250854, - "x_max": 0.3325601816177368, - "y_max": 0.863061249256134 - }, - "confidence": 0.9981282353401184, - "label_id": 2 - }, - "h": 213, - "w": 130, - "x": 125, - "y": 160 - } - ], - "tensors": [ - { - "confidence": 0.9981282353401184, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16249740000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1600649058818817, - "y_min": 0.3571774363517761, - "x_max": 0.3303433060646057, - "y_max": 0.8324565291404724 - }, - "confidence": 0.9998267292976379, - "label_id": 2 - }, - "h": 206, - "w": 131, - "x": 123, - "y": 154 - } - ], - "tensors": [ - { - "confidence": 0.9998267292976379, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16333072000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.15725673735141754, - "y_min": 0.3468477725982666, - "x_max": 0.3290403485298157, - "y_max": 0.8079231977462769 - }, - "confidence": 0.9999066591262817, - "label_id": 2 - }, - "h": 199, - "w": 132, - "x": 121, - "y": 150 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.2916393578052521, - "y_min": 0.07992970943450928, - "x_max": 0.9590095281600952, - "y_max": 0.836105465888977 - }, - "confidence": 0.6244098544120789, - "label_id": 2 - }, - "h": 326, - "w": 513, - "x": 224, - "y": 35 - } - ], - "tensors": [ - { - "confidence": 0.9999066591262817, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.6244098544120789, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16416404000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.15063917636871338, - "y_min": 0.3292410373687744, - "x_max": 0.32763391733169556, - "y_max": 0.7840467691421509 - }, - "confidence": 0.999896764755249, - "label_id": 2 - }, - "h": 197, - "w": 136, - "x": 116, - "y": 142 - } - ], - "tensors": [ - { - "confidence": 0.999896764755249, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16499736000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1435127705335617, - "y_min": 0.3213016986846924, - "x_max": 0.32459068298339844, - "y_max": 0.7735633850097656 - }, - "confidence": 0.9999921321868896, - "label_id": 2 - }, - "h": 195, - "w": 139, - "x": 110, - "y": 139 - } - ], - "tensors": [ - { - "confidence": 0.9999921321868896, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16583068000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.13695907592773438, - "y_min": 0.3108031153678894, - "x_max": 0.32061851024627686, - "y_max": 0.7566444277763367 - }, - "confidence": 0.9999939203262329, - "label_id": 2 - }, - "h": 193, - "w": 141, - "x": 105, - "y": 134 - } - ], - "tensors": [ - { - "confidence": 0.9999939203262329, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16666400000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.12993483245372772, - "y_min": 0.30137327313423157, - "x_max": 0.31766730546951294, - "y_max": 0.737349271774292 - }, - "confidence": 0.9999949932098389, - "label_id": 2 - }, - "h": 189, - "w": 144, - "x": 100, - "y": 130 - } - ], - "tensors": [ - { - "confidence": 0.9999949932098389, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16749732000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.11788306385278702, - "y_min": 0.2895679771900177, - "x_max": 0.31424927711486816, - "y_max": 0.7207177877426147 - }, - "confidence": 0.9999935626983643, - "label_id": 2 - }, - "h": 186, - "w": 150, - "x": 91, - "y": 125 - } - ], - "tensors": [ - { - "confidence": 0.9999935626983643, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16833064000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1054857075214386, - "y_min": 0.28520679473876953, - "x_max": 0.31248632073402405, - "y_max": 0.7089840769767761 - }, - "confidence": 0.9999861717224121, - "label_id": 2 - }, - "h": 183, - "w": 159, - "x": 81, - "y": 123 - } - ], - "tensors": [ - { - "confidence": 0.9999861717224121, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16916396000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.08972586691379547, - "y_min": 0.27886930108070374, - "x_max": 0.3075578212738037, - "y_max": 0.6949174404144287 - }, - "confidence": 0.999972939491272, - "label_id": 2 - }, - "h": 180, - "w": 167, - "x": 69, - "y": 120 - } - ], - "tensors": [ - { - "confidence": 0.999972939491272, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16999728000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.07992282509803772, - "y_min": 0.2789849638938904, - "x_max": 0.3025186061859131, - "y_max": 0.6752256751060486 - }, - "confidence": 0.999988317489624, - "label_id": 2 - }, - "h": 171, - "w": 171, - "x": 61, - "y": 121 - } - ], - "tensors": [ - { - "confidence": 0.999988317489624, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17083060000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.07284160703420639, - "y_min": 0.2735762596130371, - "x_max": 0.29544904828071594, - "y_max": 0.6568424105644226 - }, - "confidence": 0.999994158744812, - "label_id": 2 - }, - "h": 166, - "w": 171, - "x": 56, - "y": 118 - } - ], - "tensors": [ - { - "confidence": 0.999994158744812, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17166392000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.06546320021152496, - "y_min": 0.26595205068588257, - "x_max": 0.2877064347267151, - "y_max": 0.6416342854499817 - }, - "confidence": 0.9999986886978149, - "label_id": 2 - }, - "h": 162, - "w": 171, - "x": 50, - "y": 115 - } - ], - "tensors": [ - { - "confidence": 0.9999986886978149, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17249724000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.055775485932826996, - "y_min": 0.26049840450286865, - "x_max": 0.2822268307209015, - "y_max": 0.6367597579956055 - }, - "confidence": 0.9999972581863403, - "label_id": 2 - }, - "h": 162, - "w": 174, - "x": 43, - "y": 113 - } - ], - "tensors": [ - { - "confidence": 0.9999972581863403, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17333056000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.043870508670806885, - "y_min": 0.2601318061351776, - "x_max": 0.27794164419174194, - "y_max": 0.6270712614059448 - }, - "confidence": 0.9999901056289673, - "label_id": 2 - }, - "h": 159, - "w": 179, - "x": 34, - "y": 112 - } - ], - "tensors": [ - { - "confidence": 0.9999901056289673, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17416388000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.030381090939044952, - "y_min": 0.2578715980052948, - "x_max": 0.2703300714492798, - "y_max": 0.6141258478164673 - }, - "confidence": 0.999955415725708, - "label_id": 2 - }, - "h": 154, - "w": 185, - "x": 23, - "y": 111 - } - ], - "tensors": [ - { - "confidence": 0.999955415725708, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17499720000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.01892031729221344, - "y_min": 0.2529815137386322, - "x_max": 0.2617058753967285, - "y_max": 0.6005010604858398 - }, - "confidence": 0.999988317489624, - "label_id": 2 - }, - "h": 150, - "w": 186, - "x": 15, - "y": 109 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.3566780984401703, - "y_min": 0.04786303639411926, - "x_max": 0.966240406036377, - "y_max": 0.8461965322494507 - }, - "confidence": 0.53726726770401, - "label_id": 2 - }, - "h": 345, - "w": 468, - "x": 274, - "y": 21 - } - ], - "tensors": [ - { - "confidence": 0.999988317489624, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.53726726770401, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17583052000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.006406545639038086, - "y_min": 0.25011375546455383, - "x_max": 0.25181493163108826, - "y_max": 0.594420313835144 - }, - "confidence": 0.9999843835830688, - "label_id": 2 - }, - "h": 149, - "w": 188, - "x": 5, - "y": 108 - } - ], - "tensors": [ - { - "confidence": 0.9999843835830688, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17666384000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0034183859825134277, - "y_min": 0.24995212256908417, - "x_max": 0.24484217166900635, - "y_max": 0.5859204530715942 - }, - "confidence": 0.9999728202819824, - "label_id": 2 - }, - "h": 145, - "w": 185, - "x": 3, - "y": 108 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.6444863677024841, - "y_min": 0.06924453377723694, - "x_max": 1.0005388259887695, - "y_max": 0.7056286334991455 - }, - "confidence": 0.6336398720741272, - "label_id": 2 - }, - "h": 275, - "w": 273, - "x": 495, - "y": 30 - } - ], - "tensors": [ - { - "confidence": 0.9999728202819824, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.6336398720741272, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17749716000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0014565661549568176, - "y_min": 0.247770756483078, - "x_max": 0.23315390944480896, - "y_max": 0.5775051116943359 - }, - "confidence": 0.999992847442627, - "label_id": 2 - }, - "h": 142, - "w": 178, - "x": 1, - "y": 107 - } - ], - "tensors": [ - { - "confidence": 0.999992847442627, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17833048000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -4.07099723815918e-05, - "y_min": 0.2451421618461609, - "x_max": 0.22364945709705353, - "y_max": 0.5643712878227234 - }, - "confidence": 0.9999935626983643, - "label_id": 2 - }, - "h": 138, - "w": 172, - "x": 0, - "y": 106 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.39657267928123474, - "y_min": 0.06359893083572388, - "x_max": 0.9582223892211914, - "y_max": 0.7276898622512817 - }, - "confidence": 0.7043145895004272, - "label_id": 2 - }, - "h": 287, - "w": 431, - "x": 305, - "y": 27 - } - ], - "tensors": [ - { - "confidence": 0.9999935626983643, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.7043145895004272, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17916380000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -0.0005242079496383667, - "y_min": 0.24142062664031982, - "x_max": 0.21571695804595947, - "y_max": 0.5588368773460388 - }, - "confidence": 0.9999877214431763, - "label_id": 2 - }, - "h": 137, - "w": 166, - "x": 0, - "y": 104 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.3979666829109192, - "y_min": 0.04126647114753723, - "x_max": 0.9645771384239197, - "y_max": 0.7529500722885132 - }, - "confidence": 0.8434672355651855, - "label_id": 2 - }, - "h": 307, - "w": 435, - "x": 306, - "y": 18 - } - ], - "tensors": [ - { - "confidence": 0.9999877214431763, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.8434672355651855, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17999712000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -0.00018643587827682495, - "y_min": 0.2359994500875473, - "x_max": 0.20601454377174377, - "y_max": 0.5536378026008606 - }, - "confidence": 0.999954342842102, - "label_id": 2 - }, - "h": 137, - "w": 158, - "x": 0, - "y": 102 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.36403825879096985, - "y_min": 0.03846672177314758, - "x_max": 0.9718368053436279, - "y_max": 0.7574758529663086 - }, - "confidence": 0.9011961221694946, - "label_id": 2 - }, - "h": 310, - "w": 466, - "x": 280, - "y": 17 - } - ], - "tensors": [ - { - "confidence": 0.999954342842102, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.9011961221694946, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18083044000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0004027560353279114, - "y_min": 0.23479411005973816, - "x_max": 0.1985584795475006, - "y_max": 0.546837329864502 - }, - "confidence": 0.9998503923416138, - "label_id": 2 - }, - "h": 135, - "w": 152, - "x": 0, - "y": 101 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.36456364393234253, - "y_min": 0.054398298263549805, - "x_max": 0.9702922701835632, - "y_max": 0.778744101524353 - }, - "confidence": 0.657283365726471, - "label_id": 2 - }, - "h": 312, - "w": 465, - "x": 280, - "y": 24 - } - ], - "tensors": [ - { - "confidence": 0.9998503923416138, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.657283365726471, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18166376000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0004487261176109314, - "y_min": 0.22636054456233978, - "x_max": 0.18768197298049927, - "y_max": 0.5432202816009521 - }, - "confidence": 0.9998462200164795, - "label_id": 2 - }, - "h": 137, - "w": 144, - "x": 0, - "y": 98 - } - ], - "tensors": [ - { - "confidence": 0.9998462200164795, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18249708000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0021575093269348145, - "y_min": 0.22176212072372437, - "x_max": 0.17442119121551514, - "y_max": 0.5293576121330261 - }, - "confidence": 0.9989789724349976, - "label_id": 2 - }, - "h": 133, - "w": 132, - "x": 2, - "y": 96 - } - ], - "tensors": [ - { - "confidence": 0.9989789724349976, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18333040000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -0.0031266361474990845, - "y_min": 0.22026404738426208, - "x_max": 0.16523411870002747, - "y_max": 0.5301101207733154 - }, - "confidence": 0.9972135424613953, - "label_id": 2 - }, - "h": 134, - "w": 127, - "x": 0, - "y": 95 - } - ], - "tensors": [ - { - "confidence": 0.9972135424613953, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18416372000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -0.002452939748764038, - "y_min": 0.22297357022762299, - "x_max": 0.15728577971458435, - "y_max": 0.5269065499305725 - }, - "confidence": 0.9975874423980713, - "label_id": 2 - }, - "h": 132, - "w": 121, - "x": 0, - "y": 96 - } - ], - "tensors": [ - { - "confidence": 0.9975874423980713, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18499704000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.00047751516103744507, - "y_min": 0.22313344478607178, - "x_max": 0.14348477125167847, - "y_max": 0.5240911841392517 - }, - "confidence": 0.9912697076797485, - "label_id": 2 - }, - "h": 130, - "w": 110, - "x": 0, - "y": 96 - } - ], - "tensors": [ - { - "confidence": 0.9912697076797485, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18583036000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0009466856718063354, - "y_min": 0.23165319859981537, - "x_max": 0.13174189627170563, - "y_max": 0.5227310061454773 - }, - "confidence": 0.8885208964347839, - "label_id": 2 - }, - "h": 126, - "w": 100, - "x": 1, - "y": 100 - } - ], - "tensors": [ - { - "confidence": 0.8885208964347839, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18666368000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -0.0006035938858985901, - "y_min": 0.24140207469463348, - "x_max": 0.1251387596130371, - "y_max": 0.51657634973526 - }, - "confidence": 0.7441190481185913, - "label_id": 2 - }, - "h": 119, - "w": 96, - "x": 0, - "y": 104 - } - ], - "tensors": [ - { - "confidence": 0.7441190481185913, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18749700000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0006059370934963226, - "y_min": 0.239722341299057, - "x_max": 0.11157597601413727, - "y_max": 0.515325665473938 - }, - "confidence": 0.8880211710929871, - "label_id": 2 - }, - "h": 119, - "w": 86, - "x": 0, - "y": 104 - } - ], - "tensors": [ - { - "confidence": 0.8880211710929871, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18833032000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.001440584659576416, - "y_min": 0.23769088089466095, - "x_max": 0.09910853207111359, - "y_max": 0.5193971395492554 - }, - "confidence": 0.6941346526145935, - "label_id": 2 - }, - "h": 121, - "w": 75, - "x": 1, - "y": 103 - } - ], - "tensors": [ - { - "confidence": 0.6941346526145935, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18916364000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -0.0005200617015361786, - "y_min": 0.23709367215633392, - "x_max": 0.08774614334106445, - "y_max": 0.5180805325508118 - }, - "confidence": 0.5993965864181519, - "label_id": 2 - }, - "h": 122, - "w": 67, - "x": 0, - "y": 102 - } - ], - "tensors": [ - { - "confidence": 0.5993965864181519, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18999696000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -0.000714913010597229, - "y_min": 0.2377401441335678, - "x_max": 0.07843541353940964, - "y_max": 0.5105568170547485 - }, - "confidence": 0.809007465839386, - "label_id": 2 - }, - "h": 118, - "w": 60, - "x": 0, - "y": 103 - } - ], - "tensors": [ - { - "confidence": 0.809007465839386, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19083028000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0008385665714740753, - "y_min": 0.24205249547958374, - "x_max": 0.06598681211471558, - "y_max": 0.5057999491691589 - }, - "confidence": 0.599037230014801, - "label_id": 2 - }, - "h": 114, - "w": 50, - "x": 1, - "y": 105 - } - ], - "tensors": [ - { - "confidence": 0.599037230014801, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19166360000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0013178102672100067, - "y_min": 0.2496914565563202, - "x_max": 0.05882628262042999, - "y_max": 0.4988504946231842 - }, - "confidence": 0.7784414887428284, - "label_id": 2 - }, - "h": 108, - "w": 44, - "x": 1, - "y": 108 - } - ], - "tensors": [ - { - "confidence": 0.7784414887428284, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19249692000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.002132358029484749, - "y_min": 0.27205389738082886, - "x_max": 0.04692695289850235, - "y_max": 0.49076080322265625 - }, - "confidence": 0.5858582854270935, - "label_id": 2 - }, - "h": 94, - "w": 34, - "x": 2, - "y": 118 - } - ], - "tensors": [ - { - "confidence": 0.5858582854270935, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19333024000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -0.0004920084029436111, - "y_min": 0.275369256734848, - "x_max": 0.038340166211128235, - "y_max": 0.4887489378452301 - }, - "confidence": 0.545562744140625, - "label_id": 2 - }, - "h": 92, - "w": 29, - "x": 0, - "y": 119 - } - ], - "tensors": [ - { - "confidence": 0.545562744140625, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 22332976000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.827362060546875, - "y_min": 0.29114580154418945, - "x_max": 0.9260216951370239, - "y_max": 0.4126254916191101 - }, - "confidence": 0.5569565296173096, - "label_id": 2 - }, - "h": 52, - "w": 76, - "x": 635, - "y": 126 - } - ], - "tensors": [ - { - "confidence": 0.5569565296173096, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40582684000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.003520183265209198, - "y_min": 0.09614640474319458, - "x_max": 0.05852079391479492, - "y_max": 0.2684183716773987 - }, - "confidence": 0.7313483953475952, - "label_id": 1 - }, - "h": 74, - "w": 42, - "x": 3, - "y": 42 - } - ], - "tensors": [ - { - "confidence": 0.7313483953475952, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40666016000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.007050374522805214, - "y_min": 0.10089847445487976, - "x_max": 0.06405963748693466, - "y_max": 0.2735617160797119 - }, - "confidence": 0.800372838973999, - "label_id": 1 - }, - "h": 74, - "w": 44, - "x": 5, - "y": 44 - } - ], - "tensors": [ - { - "confidence": 0.800372838973999, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40749348000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.015278883278369904, - "y_min": 0.0923706516623497, - "x_max": 0.073765330016613, - "y_max": 0.26726222038269043 - }, - "confidence": 0.9022138118743896, - "label_id": 1 - }, - "h": 75, - "w": 45, - "x": 12, - "y": 40 - } - ], - "tensors": [ - { - "confidence": 0.9022138118743896, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40832680000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.022376151755452156, - "y_min": 0.09247265756130219, - "x_max": 0.06860356032848358, - "y_max": 0.2647438049316406 - }, - "confidence": 0.9541775584220886, - "label_id": 1 - }, - "h": 74, - "w": 36, - "x": 17, - "y": 40 - } - ], - "tensors": [ - { - "confidence": 0.9541775584220886, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40916012000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.028638632968068123, - "y_min": 0.08783772587776184, - "x_max": 0.06252329051494598, - "y_max": 0.2630442678928375 - }, - "confidence": 0.7064143419265747, - "label_id": 1 - }, - "h": 76, - "w": 26, - "x": 22, - "y": 38 - } - ], - "tensors": [ - { - "confidence": 0.7064143419265747, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40999344000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.03887544572353363, - "y_min": 0.08765244483947754, - "x_max": 0.0701574981212616, - "y_max": 0.27115845680236816 - }, - "confidence": 0.8522809147834778, - "label_id": 1 - }, - "h": 79, - "w": 24, - "x": 30, - "y": 38 - } - ], - "tensors": [ - { - "confidence": 0.8522809147834778, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41082676000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.04498003423213959, - "y_min": 0.08891790360212326, - "x_max": 0.08996370434761047, - "y_max": 0.2605549693107605 - }, - "confidence": 0.9793604612350464, - "label_id": 1 - }, - "h": 75, - "w": 34, - "x": 35, - "y": 38 - } - ], - "tensors": [ - { - "confidence": 0.9793604612350464, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41166008000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.05017882212996483, - "y_min": 0.0889800563454628, - "x_max": 0.1023634672164917, - "y_max": 0.261782169342041 - }, - "confidence": 0.9697669148445129, - "label_id": 1 - }, - "h": 75, - "w": 40, - "x": 39, - "y": 38 - } - ], - "tensors": [ - { - "confidence": 0.9697669148445129, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41249340000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.05578610301017761, - "y_min": 0.08782751113176346, - "x_max": 0.11190468072891235, - "y_max": 0.2647019624710083 - }, - "confidence": 0.9666902422904968, - "label_id": 1 - }, - "h": 76, - "w": 43, - "x": 43, - "y": 38 - } - ], - "tensors": [ - { - "confidence": 0.9666902422904968, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41332672000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.06013341248035431, - "y_min": 0.08757153153419495, - "x_max": 0.11493924260139465, - "y_max": 0.2610611021518707 - }, - "confidence": 0.9735053777694702, - "label_id": 1 - }, - "h": 75, - "w": 42, - "x": 46, - "y": 38 - } - ], - "tensors": [ - { - "confidence": 0.9735053777694702, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41416004000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.06902659684419632, - "y_min": 0.08824954926967621, - "x_max": 0.10748405009508133, - "y_max": 0.2566310167312622 - }, - "confidence": 0.743285596370697, - "label_id": 1 - }, - "h": 73, - "w": 30, - "x": 53, - "y": 38 - } - ], - "tensors": [ - { - "confidence": 0.743285596370697, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41499336000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.07710953801870346, - "y_min": 0.08698607981204987, - "x_max": 0.10798504203557968, - "y_max": 0.26228195428848267 - }, - "confidence": 0.5720993280410767, - "label_id": 1 - }, - "h": 75, - "w": 24, - "x": 59, - "y": 38 - } - ], - "tensors": [ - { - "confidence": 0.5720993280410767, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41582668000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.08448268473148346, - "y_min": 0.08256705105304718, - "x_max": 0.11586420238018036, - "y_max": 0.2598867416381836 - }, - "confidence": 0.94560706615448, - "label_id": 1 - }, - "h": 76, - "w": 24, - "x": 65, - "y": 36 - } - ], - "tensors": [ - { - "confidence": 0.94560706615448, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41666000000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0896417647600174, - "y_min": 0.0827476903796196, - "x_max": 0.14263710379600525, - "y_max": 0.2597101926803589 - }, - "confidence": 0.9793663620948792, - "label_id": 1 - }, - "h": 76, - "w": 41, - "x": 69, - "y": 36 - } - ], - "tensors": [ - { - "confidence": 0.9793663620948792, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41749332000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.09771757572889328, - "y_min": 0.08314508199691772, - "x_max": 0.15318679809570312, - "y_max": 0.2552943825721741 - }, - "confidence": 0.9093460440635681, - "label_id": 1 - }, - "h": 74, - "w": 43, - "x": 75, - "y": 36 - } - ], - "tensors": [ - { - "confidence": 0.9093460440635681, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41832664000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.097109355032444, - "y_min": 0.08081871271133423, - "x_max": 0.15628035366535187, - "y_max": 0.25459712743759155 - }, - "confidence": 0.9800829291343689, - "label_id": 1 - }, - "h": 75, - "w": 45, - "x": 75, - "y": 35 - } - ], - "tensors": [ - { - "confidence": 0.9800829291343689, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41915996000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.10745184123516083, - "y_min": 0.07760567963123322, - "x_max": 0.15793658792972565, - "y_max": 0.2539300322532654 - }, - "confidence": 0.9863324761390686, - "label_id": 1 - }, - "h": 76, - "w": 38, - "x": 83, - "y": 34 - } - ], - "tensors": [ - { - "confidence": 0.9863324761390686, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41999328000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.11774111539125443, - "y_min": 0.0729341059923172, - "x_max": 0.14843998849391937, - "y_max": 0.25854355096817017 - }, - "confidence": 0.9116137027740479, - "label_id": 1 - }, - "h": 80, - "w": 24, - "x": 90, - "y": 32 - } - ], - "tensors": [ - { - "confidence": 0.9116137027740479, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42082660000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.13104873895645142, - "y_min": 0.08312395215034485, - "x_max": 0.15758538246154785, - "y_max": 0.251211017370224 - }, - "confidence": 0.5447486042976379, - "label_id": 1 - }, - "h": 73, - "w": 20, - "x": 101, - "y": 36 - } - ], - "tensors": [ - { - "confidence": 0.5447486042976379, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42165992000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.13294978439807892, - "y_min": 0.0708828791975975, - "x_max": 0.1706470102071762, - "y_max": 0.25432801246643066 - }, - "confidence": 0.9172146916389465, - "label_id": 1 - }, - "h": 79, - "w": 29, - "x": 102, - "y": 31 - } - ], - "tensors": [ - { - "confidence": 0.9172146916389465, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42249324000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1384216845035553, - "y_min": 0.06915633380413055, - "x_max": 0.1878308355808258, - "y_max": 0.24908126890659332 - }, - "confidence": 0.9754457473754883, - "label_id": 1 - }, - "h": 78, - "w": 38, - "x": 106, - "y": 30 - } - ], - "tensors": [ - { - "confidence": 0.9754457473754883, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42332656000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1423514038324356, - "y_min": 0.06932604312896729, - "x_max": 0.1978525072336197, - "y_max": 0.24401411414146423 - }, - "confidence": 0.94728022813797, - "label_id": 1 - }, - "h": 75, - "w": 43, - "x": 109, - "y": 30 - } - ], - "tensors": [ - { - "confidence": 0.94728022813797, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42415988000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.14545604586601257, - "y_min": 0.06837218999862671, - "x_max": 0.19828087091445923, - "y_max": 0.24140188097953796 - }, - "confidence": 0.9623384475708008, - "label_id": 1 - }, - "h": 74, - "w": 40, - "x": 112, - "y": 30 - } - ], - "tensors": [ - { - "confidence": 0.9623384475708008, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42499320000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.15949654579162598, - "y_min": 0.06967361271381378, - "x_max": 0.1966705620288849, - "y_max": 0.24714766442775726 - }, - "confidence": 0.9421710968017578, - "label_id": 1 - }, - "h": 77, - "w": 29, - "x": 122, - "y": 30 - } - ], - "tensors": [ - { - "confidence": 0.9421710968017578, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42582652000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.16708043217658997, - "y_min": 0.059558719396591187, - "x_max": 0.19617226719856262, - "y_max": 0.24868381023406982 - }, - "confidence": 0.813447892665863, - "label_id": 1 - }, - "h": 81, - "w": 23, - "x": 128, - "y": 26 - } - ], - "tensors": [ - { - "confidence": 0.813447892665863, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42665984000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1770205795764923, - "y_min": 0.06683304905891418, - "x_max": 0.20688790082931519, - "y_max": 0.24025678634643555 - }, - "confidence": 0.8465343117713928, - "label_id": 1 - }, - "h": 75, - "w": 23, - "x": 136, - "y": 29 - } - ], - "tensors": [ - { - "confidence": 0.8465343117713928, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42749316000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.17684851586818695, - "y_min": 0.06626953929662704, - "x_max": 0.22825394570827484, - "y_max": 0.23396548628807068 - }, - "confidence": 0.9355576038360596, - "label_id": 1 - }, - "h": 72, - "w": 39, - "x": 136, - "y": 29 - } - ], - "tensors": [ - { - "confidence": 0.9355576038360596, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42832648000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.185580313205719, - "y_min": 0.06710120290517807, - "x_max": 0.23801594972610474, - "y_max": 0.23169371485710144 - }, - "confidence": 0.8719622492790222, - "label_id": 1 - }, - "h": 71, - "w": 40, - "x": 143, - "y": 29 - } - ], - "tensors": [ - { - "confidence": 0.8719622492790222, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42915980000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.18934984505176544, - "y_min": 0.06351666152477264, - "x_max": 0.24492235481739044, - "y_max": 0.22783349454402924 - }, - "confidence": 0.9465517997741699, - "label_id": 1 - }, - "h": 71, - "w": 43, - "x": 145, - "y": 27 - } - ], - "tensors": [ - { - "confidence": 0.9465517997741699, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42999312000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.19826054573059082, - "y_min": 0.0634077787399292, - "x_max": 0.2433423399925232, - "y_max": 0.22424951195716858 - }, - "confidence": 0.9223278760910034, - "label_id": 1 - }, - "h": 70, - "w": 35, - "x": 152, - "y": 27 - } - ], - "tensors": [ - { - "confidence": 0.9223278760910034, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43082644000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.20872804522514343, - "y_min": 0.05233736336231232, - "x_max": 0.2391643524169922, - "y_max": 0.2301691621541977 - }, - "confidence": 0.8002424836158752, - "label_id": 1 - }, - "h": 76, - "w": 24, - "x": 160, - "y": 23 - } - ], - "tensors": [ - { - "confidence": 0.8002424836158752, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43165976000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.21424375474452972, - "y_min": 0.04551645368337631, - "x_max": 0.24572424590587616, - "y_max": 0.22501105070114136 - }, - "confidence": 0.8372902274131775, - "label_id": 1 - }, - "h": 77, - "w": 24, - "x": 165, - "y": 20 - } - ], - "tensors": [ - { - "confidence": 0.8372902274131775, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43249308000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.2207432985305786, - "y_min": 0.04236235469579697, - "x_max": 0.2584760785102844, - "y_max": 0.2220311164855957 - }, - "confidence": 0.9497457146644592, - "label_id": 1 - }, - "h": 78, - "w": 29, - "x": 170, - "y": 18 - } - ], - "tensors": [ - { - "confidence": 0.9497457146644592, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43332640000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.22296249866485596, - "y_min": 0.038034990429878235, - "x_max": 0.2679644823074341, - "y_max": 0.22160767018795013 - }, - "confidence": 0.8677589297294617, - "label_id": 1 - }, - "h": 80, - "w": 35, - "x": 171, - "y": 16 - } - ], - "tensors": [ - { - "confidence": 0.8677589297294617, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43415972000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.2253321409225464, - "y_min": 0.04360928386449814, - "x_max": 0.27870678901672363, - "y_max": 0.2192666232585907 - }, - "confidence": 0.9470476508140564, - "label_id": 1 - }, - "h": 76, - "w": 41, - "x": 173, - "y": 19 - } - ], - "tensors": [ - { - "confidence": 0.9470476508140564, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43499304000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.22942356765270233, - "y_min": 0.04060845077037811, - "x_max": 0.2780565619468689, - "y_max": 0.2132491022348404 - }, - "confidence": 0.8956233859062195, - "label_id": 1 - }, - "h": 74, - "w": 38, - "x": 176, - "y": 18 - } - ], - "tensors": [ - { - "confidence": 0.8956233859062195, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43582636000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.23967245221138, - "y_min": 0.02633826434612274, - "x_max": 0.27834299206733704, - "y_max": 0.2121078073978424 - }, - "confidence": 0.5786580443382263, - "label_id": 1 - }, - "h": 81, - "w": 30, - "x": 184, - "y": 11 - } - ], - "tensors": [ - { - "confidence": 0.5786580443382263, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43665968000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.25442785024642944, - "y_min": 0.026687629520893097, - "x_max": 0.284124493598938, - "y_max": 0.21455299854278564 - }, - "confidence": 0.7779613137245178, - "label_id": 1 - }, - "h": 81, - "w": 23, - "x": 195, - "y": 12 - } - ], - "tensors": [ - { - "confidence": 0.7779613137245178, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43749300000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.2591593861579895, - "y_min": 0.021057195961475372, - "x_max": 0.29092317819595337, - "y_max": 0.20710113644599915 - }, - "confidence": 0.8207446336746216, - "label_id": 1 - }, - "h": 80, - "w": 24, - "x": 199, - "y": 9 - } - ], - "tensors": [ - { - "confidence": 0.8207446336746216, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43832632000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.265623539686203, - "y_min": 0.022368110716342926, - "x_max": 0.30720213055610657, - "y_max": 0.19281572103500366 - }, - "confidence": 0.9772182106971741, - "label_id": 1 - }, - "h": 73, - "w": 32, - "x": 204, - "y": 10 - } - ], - "tensors": [ - { - "confidence": 0.9772182106971741, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43915964000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.2676101326942444, - "y_min": 0.022761516273021698, - "x_max": 0.31084901094436646, - "y_max": 0.19687843322753906 - }, - "confidence": 0.9722139239311218, - "label_id": 1 - }, - "h": 75, - "w": 33, - "x": 206, - "y": 10 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.10303474962711334, - "y_min": 0.8516966700553894, - "x_max": 0.2944148778915405, - "y_max": 1.0023001432418823 - }, - "confidence": 0.7828809022903442, - "label_id": 2 - }, - "h": 64, - "w": 147, - "x": 79, - "y": 368 - } - ], - "tensors": [ - { - "confidence": 0.9722139239311218, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.7828809022903442, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43999296000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.27379584312438965, - "y_min": 0.01969006657600403, - "x_max": 0.31614619493484497, - "y_max": 0.1831187754869461 - }, - "confidence": 0.9839940071105957, - "label_id": 1 - }, - "h": 70, - "w": 33, - "x": 210, - "y": 9 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.08434255421161652, - "y_min": 0.8253540396690369, - "x_max": 0.3013109564781189, - "y_max": 1.0052653551101685 - }, - "confidence": 0.8690185546875, - "label_id": 2 - }, - "h": 75, - "w": 166, - "x": 65, - "y": 357 - } - ], - "tensors": [ - { - "confidence": 0.9839940071105957, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.8690185546875, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44082628000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.2792358100414276, - "y_min": 0.009584739804267883, - "x_max": 0.31608036160469055, - "y_max": 0.18175002932548523 - }, - "confidence": 0.8530219197273254, - "label_id": 1 - }, - "h": 75, - "w": 29, - "x": 214, - "y": 4 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.08915093541145325, - "y_min": 0.7983525395393372, - "x_max": 0.30604496598243713, - "y_max": 1.0010695457458496 - }, - "confidence": 0.9764792323112488, - "label_id": 2 - }, - "h": 87, - "w": 167, - "x": 68, - "y": 345 - } - ], - "tensors": [ - { - "confidence": 0.8530219197273254, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.9764792323112488, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44165960000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.28407979011535645, - "y_min": 0.002706773579120636, - "x_max": 0.31977325677871704, - "y_max": 0.1762460470199585 - }, - "confidence": 0.9413458108901978, - "label_id": 1 - }, - "h": 75, - "w": 28, - "x": 218, - "y": 1 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.09309807419776917, - "y_min": 0.7758338451385498, - "x_max": 0.3174420893192291, - "y_max": 0.9965120553970337 - }, - "confidence": 0.9990536570549011, - "label_id": 2 - }, - "h": 95, - "w": 173, - "x": 71, - "y": 335 - } - ], - "tensors": [ - { - "confidence": 0.9413458108901978, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.9990536570549011, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44249292000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.29081493616104126, - "y_min": -0.0069022104144096375, - "x_max": 0.324205219745636, - "y_max": 0.18154531717300415 - }, - "confidence": 0.9403790831565857, - "label_id": 1 - }, - "h": 78, - "w": 26, - "x": 223, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.09307057410478592, - "y_min": 0.7559618353843689, - "x_max": 0.32171231508255005, - "y_max": 0.9982390999794006 - }, - "confidence": 0.9966351389884949, - "label_id": 2 - }, - "h": 104, - "w": 176, - "x": 71, - "y": 327 - } - ], - "tensors": [ - { - "confidence": 0.9403790831565857, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.9966351389884949, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44332624000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.2964043915271759, - "y_min": -0.0003037452697753906, - "x_max": 0.3379308879375458, - "y_max": 0.1687522530555725 - }, - "confidence": 0.9741271138191223, - "label_id": 1 - }, - "h": 73, - "w": 32, - "x": 228, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.09235934168100357, - "y_min": 0.7268028259277344, - "x_max": 0.32596927881240845, - "y_max": 0.9985591173171997 - }, - "confidence": 0.9987518787384033, - "label_id": 2 - }, - "h": 117, - "w": 179, - "x": 71, - "y": 314 - } - ], - "tensors": [ - { - "confidence": 0.9741271138191223, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.9987518787384033, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44415956000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.2996630072593689, - "y_min": -0.0004722177982330322, - "x_max": 0.3412056565284729, - "y_max": 0.15967386960983276 - }, - "confidence": 0.9673275947570801, - "label_id": 1 - }, - "h": 69, - "w": 32, - "x": 230, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.09393153339624405, - "y_min": 0.7049237489700317, - "x_max": 0.3319951891899109, - "y_max": 0.9963676929473877 - }, - "confidence": 0.9973854422569275, - "label_id": 2 - }, - "h": 125, - "w": 183, - "x": 72, - "y": 305 - } - ], - "tensors": [ - { - "confidence": 0.9673275947570801, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.9973854422569275, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44499288000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.3023771643638611, - "y_min": -0.001138843595981598, - "x_max": 0.3466936945915222, - "y_max": 0.15592274069786072 - }, - "confidence": 0.9862332344055176, - "label_id": 1 - }, - "h": 67, - "w": 34, - "x": 232, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.09151753038167953, - "y_min": 0.6774777173995972, - "x_max": 0.33974748849868774, - "y_max": 0.9992778301239014 - }, - "confidence": 0.9967327117919922, - "label_id": 2 - }, - "h": 139, - "w": 191, - "x": 70, - "y": 293 - } - ], - "tensors": [ - { - "confidence": 0.9862332344055176, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.9967327117919922, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44582620000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.30892443656921387, - "y_min": -0.004717707633972168, - "x_max": 0.3456929326057434, - "y_max": 0.15049003064632416 - }, - "confidence": 0.9558308124542236, - "label_id": 1 - }, - "h": 65, - "w": 28, - "x": 237, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.09714695811271667, - "y_min": 0.6524867415428162, - "x_max": 0.34563007950782776, - "y_max": 1.0013536214828491 - }, - "confidence": 0.9961705803871155, - "label_id": 2 - }, - "h": 150, - "w": 190, - "x": 75, - "y": 282 - } - ], - "tensors": [ - { - "confidence": 0.9558308124542236, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.9961705803871155, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44665952000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.316145658493042, - "y_min": -0.0028254762291908264, - "x_max": 0.3478916883468628, - "y_max": 0.14547988772392273 - }, - "confidence": 0.9660082459449768, - "label_id": 1 - }, - "h": 63, - "w": 24, - "x": 243, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.11022000014781952, - "y_min": 0.632098376750946, - "x_max": 0.3487919569015503, - "y_max": 0.9972622990608215 - }, - "confidence": 0.9974126219749451, - "label_id": 2 - }, - "h": 158, - "w": 183, - "x": 85, - "y": 273 - } - ], - "tensors": [ - { - "confidence": 0.9660082459449768, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.9974126219749451, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44749284000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.32010510563850403, - "y_min": -0.005685113370418549, - "x_max": 0.35274139046669006, - "y_max": 0.14770928025245667 - }, - "confidence": 0.8981993794441223, - "label_id": 1 - }, - "h": 64, - "w": 25, - "x": 246, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.11684470623731613, - "y_min": 0.6131628751754761, - "x_max": 0.3530047833919525, - "y_max": 0.9939368963241577 - }, - "confidence": 0.9990528225898743, - "label_id": 2 - }, - "h": 164, - "w": 181, - "x": 90, - "y": 265 - } - ], - "tensors": [ - { - "confidence": 0.8981993794441223, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.9990528225898743, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44832616000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.32345181703567505, - "y_min": -0.0029996484518051147, - "x_max": 0.35825276374816895, - "y_max": 0.14560502767562866 - }, - "confidence": 0.8194749355316162, - "label_id": 1 - }, - "h": 63, - "w": 27, - "x": 248, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.11367812752723694, - "y_min": 0.5902449488639832, - "x_max": 0.3572065234184265, - "y_max": 0.9966704249382019 - }, - "confidence": 0.9964820146560669, - "label_id": 2 - }, - "h": 176, - "w": 187, - "x": 87, - "y": 255 - } - ], - "tensors": [ - { - "confidence": 0.8194749355316162, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.9964820146560669, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44915948000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.3286791741847992, - "y_min": -0.007402099668979645, - "x_max": 0.3615064322948456, - "y_max": 0.14312848448753357 - }, - "confidence": 0.6257444024085999, - "label_id": 1 - }, - "h": 62, - "w": 26, - "x": 252, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.11418077349662781, - "y_min": 0.570789098739624, - "x_max": 0.3560735881328583, - "y_max": 0.9964854717254639 - }, - "confidence": 0.9956169128417969, - "label_id": 2 - }, - "h": 183, - "w": 185, - "x": 88, - "y": 247 - } - ], - "tensors": [ - { - "confidence": 0.6257444024085999, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.9956169128417969, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44999280000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.3317735493183136, - "y_min": -0.0060748085379600525, - "x_max": 0.36417290568351746, - "y_max": 0.14243194460868835 - }, - "confidence": 0.8801973462104797, - "label_id": 1 - }, - "h": 62, - "w": 25, - "x": 255, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.10707895457744598, - "y_min": 0.550262451171875, - "x_max": 0.3620380759239197, - "y_max": 1.0060276985168457 - }, - "confidence": 0.9984036087989807, - "label_id": 2 - }, - "h": 194, - "w": 196, - "x": 82, - "y": 238 - } - ], - "tensors": [ - { - "confidence": 0.8801973462104797, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.9984036087989807, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45082612000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.3347332775592804, - "y_min": -0.006817735731601715, - "x_max": 0.36854955554008484, - "y_max": 0.13049811124801636 - }, - "confidence": 0.5752376317977905, - "label_id": 1 - }, - "h": 56, - "w": 26, - "x": 257, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_min": 0.1173052042722702, - "y_min": 0.5320181250572205, - "x_max": 0.36141467094421387, - "y_max": 1.003308892250061 - }, - "confidence": 0.9931515455245972, - "label_id": 2 - }, - "h": 202, - "w": 188, - "x": 90, - "y": 230 - } - ], - "tensors": [ - { - "confidence": 0.5752376317977905, - "label_id": 1, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - }, - { - "confidence": 0.9931515455245972, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45165944000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.11752931028604507, - "y_min": 0.5167419910430908, - "x_max": 0.36498358845710754, - "y_max": 1.0026801824569702 - }, - "confidence": 0.9842708706855774, - "label_id": 2 - }, - "h": 209, - "w": 190, - "x": 90, - "y": 223 - } - ], - "tensors": [ - { - "confidence": 0.9842708706855774, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45249276000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.11881844699382782, - "y_min": 0.5080917477607727, - "x_max": 0.359694242477417, - "y_max": 1.0054547786712646 - }, - "confidence": 0.9808247089385986, - "label_id": 2 - }, - "h": 213, - "w": 185, - "x": 91, - "y": 219 - } - ], - "tensors": [ - { - "confidence": 0.9808247089385986, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45332608000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1258331835269928, - "y_min": 0.4862575829029083, - "x_max": 0.35839664936065674, - "y_max": 1.0033698081970215 - }, - "confidence": 0.9583507776260376, - "label_id": 2 - }, - "h": 222, - "w": 178, - "x": 97, - "y": 210 - } - ], - "tensors": [ - { - "confidence": 0.9583507776260376, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45415940000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.13210563361644745, - "y_min": 0.47293728590011597, - "x_max": 0.36725956201553345, - "y_max": 1.0035967826843262 - }, - "confidence": 0.9631510376930237, - "label_id": 2 - }, - "h": 228, - "w": 181, - "x": 101, - "y": 204 - } - ], - "tensors": [ - { - "confidence": 0.9631510376930237, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45499272000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1388271152973175, - "y_min": 0.4516679644584656, - "x_max": 0.37078699469566345, - "y_max": 0.9844309687614441 - }, - "confidence": 0.9913437366485596, - "label_id": 2 - }, - "h": 230, - "w": 178, - "x": 107, - "y": 195 - } - ], - "tensors": [ - { - "confidence": 0.9913437366485596, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45582604000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1446165144443512, - "y_min": 0.43912655115127563, - "x_max": 0.36464759707450867, - "y_max": 0.9535489678382874 - }, - "confidence": 0.9956739544868469, - "label_id": 2 - }, - "h": 222, - "w": 169, - "x": 111, - "y": 190 - } - ], - "tensors": [ - { - "confidence": 0.9956739544868469, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45665936000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.15900349617004395, - "y_min": 0.41592368483543396, - "x_max": 0.3655781149864197, - "y_max": 0.9343960285186768 - }, - "confidence": 0.9988051652908325, - "label_id": 2 - }, - "h": 224, - "w": 159, - "x": 122, - "y": 180 - } - ], - "tensors": [ - { - "confidence": 0.9988051652908325, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45749268000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.16125471889972687, - "y_min": 0.39938512444496155, - "x_max": 0.36593347787857056, - "y_max": 0.9014413356781006 - }, - "confidence": 0.9996262788772583, - "label_id": 2 - }, - "h": 216, - "w": 157, - "x": 124, - "y": 173 - } - ], - "tensors": [ - { - "confidence": 0.9996262788772583, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45832600000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.17407645285129547, - "y_min": 0.38433194160461426, - "x_max": 0.36556488275527954, - "y_max": 0.8782362937927246 - }, - "confidence": 0.9997637867927551, - "label_id": 2 - }, - "h": 213, - "w": 147, - "x": 134, - "y": 166 - } - ], - "tensors": [ - { - "confidence": 0.9997637867927551, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45915932000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.17808517813682556, - "y_min": 0.3662709593772888, - "x_max": 0.36139264702796936, - "y_max": 0.8555702567100525 - }, - "confidence": 0.9998427629470825, - "label_id": 2 - }, - "h": 212, - "w": 141, - "x": 137, - "y": 158 - } - ], - "tensors": [ - { - "confidence": 0.9998427629470825, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45999264000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1823108047246933, - "y_min": 0.34388411045074463, - "x_max": 0.36295002698898315, - "y_max": 0.8230388164520264 - }, - "confidence": 0.9999207258224487, - "label_id": 2 - }, - "h": 207, - "w": 139, - "x": 140, - "y": 149 - } - ], - "tensors": [ - { - "confidence": 0.9999207258224487, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46082596000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.18824753165245056, - "y_min": 0.32287484407424927, - "x_max": 0.36030909419059753, - "y_max": 0.7853133082389832 - }, - "confidence": 0.9999746084213257, - "label_id": 2 - }, - "h": 200, - "w": 132, - "x": 145, - "y": 139 - } - ], - "tensors": [ - { - "confidence": 0.9999746084213257, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46165928000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.19106805324554443, - "y_min": 0.3120577931404114, - "x_max": 0.3585693836212158, - "y_max": 0.7668245434761047 - }, - "confidence": 0.9999792575836182, - "label_id": 2 - }, - "h": 196, - "w": 128, - "x": 147, - "y": 135 - } - ], - "tensors": [ - { - "confidence": 0.9999792575836182, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46249260000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.19487696886062622, - "y_min": 0.2928714156150818, - "x_max": 0.35463863611221313, - "y_max": 0.7392868399620056 - }, - "confidence": 0.9999550580978394, - "label_id": 2 - }, - "h": 192, - "w": 122, - "x": 150, - "y": 127 - } - ], - "tensors": [ - { - "confidence": 0.9999550580978394, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46332592000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.19407981634140015, - "y_min": 0.2778220772743225, - "x_max": 0.349772572517395, - "y_max": 0.7182074189186096 - }, - "confidence": 0.9999231100082397, - "label_id": 2 - }, - "h": 190, - "w": 120, - "x": 149, - "y": 120 - } - ], - "tensors": [ - { - "confidence": 0.9999231100082397, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46415924000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1996471881866455, - "y_min": 0.2661404609680176, - "x_max": 0.34550178050994873, - "y_max": 0.6879050731658936 - }, - "confidence": 0.9998117089271545, - "label_id": 2 - }, - "h": 182, - "w": 112, - "x": 153, - "y": 115 - } - ], - "tensors": [ - { - "confidence": 0.9998117089271545, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46499256000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.19898878037929535, - "y_min": 0.25560426712036133, - "x_max": 0.344973623752594, - "y_max": 0.6529581546783447 - }, - "confidence": 0.999887228012085, - "label_id": 2 - }, - "h": 172, - "w": 112, - "x": 153, - "y": 110 - } - ], - "tensors": [ - { - "confidence": 0.999887228012085, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46582588000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.19431041181087494, - "y_min": 0.24010860919952393, - "x_max": 0.3426505923271179, - "y_max": 0.6370713114738464 - }, - "confidence": 0.999858021736145, - "label_id": 2 - }, - "h": 171, - "w": 114, - "x": 149, - "y": 104 - } - ], - "tensors": [ - { - "confidence": 0.999858021736145, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46665920000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.19016331434249878, - "y_min": 0.22348810732364655, - "x_max": 0.33844250440597534, - "y_max": 0.6314473152160645 - }, - "confidence": 0.9998179078102112, - "label_id": 2 - }, - "h": 176, - "w": 114, - "x": 146, - "y": 97 - } - ], - "tensors": [ - { - "confidence": 0.9998179078102112, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46749252000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.1869482398033142, - "y_min": 0.2082124948501587, - "x_max": 0.33711379766464233, - "y_max": 0.6009442806243896 - }, - "confidence": 0.9999079704284668, - "label_id": 2 - }, - "h": 170, - "w": 115, - "x": 144, - "y": 90 - } - ], - "tensors": [ - { - "confidence": 0.9999079704284668, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46832584000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.17860300838947296, - "y_min": 0.19198086857795715, - "x_max": 0.33069324493408203, - "y_max": 0.5795577764511108 - }, - "confidence": 0.999840259552002, - "label_id": 2 - }, - "h": 167, - "w": 117, - "x": 137, - "y": 83 - } - ], - "tensors": [ - { - "confidence": 0.999840259552002, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46915916000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.16847428679466248, - "y_min": 0.17181475460529327, - "x_max": 0.33144065737724304, - "y_max": 0.5658245086669922 - }, - "confidence": 0.9966880679130554, - "label_id": 2 - }, - "h": 170, - "w": 126, - "x": 129, - "y": 74 - } - ], - "tensors": [ - { - "confidence": 0.9966880679130554, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46999248000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.15815109014511108, - "y_min": 0.1630575954914093, - "x_max": 0.33030930161476135, - "y_max": 0.5347641706466675 - }, - "confidence": 0.9999334812164307, - "label_id": 2 - }, - "h": 161, - "w": 133, - "x": 121, - "y": 70 - } - ], - "tensors": [ - { - "confidence": 0.9999334812164307, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47082580000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.14546090364456177, - "y_min": 0.1592211127281189, - "x_max": 0.32633206248283386, - "y_max": 0.516521155834198 - }, - "confidence": 0.9999961853027344, - "label_id": 2 - }, - "h": 154, - "w": 139, - "x": 112, - "y": 69 - } - ], - "tensors": [ - { - "confidence": 0.9999961853027344, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47165912000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.13375265896320343, - "y_min": 0.15671759843826294, - "x_max": 0.3240237832069397, - "y_max": 0.5026559829711914 - }, - "confidence": 0.999997615814209, - "label_id": 2 - }, - "h": 149, - "w": 146, - "x": 103, - "y": 68 - } - ], - "tensors": [ - { - "confidence": 0.999997615814209, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47249244000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.12439753860235214, - "y_min": 0.14749115705490112, - "x_max": 0.3173246681690216, - "y_max": 0.48482757806777954 - }, - "confidence": 0.9999957084655762, - "label_id": 2 - }, - "h": 145, - "w": 148, - "x": 96, - "y": 64 - } - ], - "tensors": [ - { - "confidence": 0.9999957084655762, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47332576000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.10337574779987335, - "y_min": 0.1447085589170456, - "x_max": 0.31053102016448975, - "y_max": 0.46590709686279297 - }, - "confidence": 0.9999985694885254, - "label_id": 2 - }, - "h": 138, - "w": 159, - "x": 79, - "y": 63 - } - ], - "tensors": [ - { - "confidence": 0.9999985694885254, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47415908000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0877276137471199, - "y_min": 0.13578101992607117, - "x_max": 0.3061259686946869, - "y_max": 0.4583093822002411 - }, - "confidence": 0.9999905824661255, - "label_id": 2 - }, - "h": 139, - "w": 168, - "x": 67, - "y": 59 - } - ], - "tensors": [ - { - "confidence": 0.9999905824661255, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47499240000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.07414165139198303, - "y_min": 0.13613608479499817, - "x_max": 0.29499655961990356, - "y_max": 0.44501665234565735 - }, - "confidence": 0.9999843835830688, - "label_id": 2 - }, - "h": 133, - "w": 170, - "x": 57, - "y": 59 - } - ], - "tensors": [ - { - "confidence": 0.9999843835830688, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47582572000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.06372351199388504, - "y_min": 0.13430394232273102, - "x_max": 0.28886139392852783, - "y_max": 0.4283466935157776 - }, - "confidence": 0.9999667406082153, - "label_id": 2 - }, - "h": 127, - "w": 173, - "x": 49, - "y": 58 - } - ], - "tensors": [ - { - "confidence": 0.9999667406082153, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47665904000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.04476805776357651, - "y_min": 0.1310632973909378, - "x_max": 0.2812711000442505, - "y_max": 0.41454845666885376 - }, - "confidence": 0.9999289512634277, - "label_id": 2 - }, - "h": 122, - "w": 182, - "x": 34, - "y": 57 - } - ], - "tensors": [ - { - "confidence": 0.9999289512634277, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47749236000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.031214669346809387, - "y_min": 0.13065342605113983, - "x_max": 0.2697560787200928, - "y_max": 0.40537846088409424 - }, - "confidence": 0.999994158744812, - "label_id": 2 - }, - "h": 119, - "w": 183, - "x": 24, - "y": 56 - } - ], - "tensors": [ - { - "confidence": 0.999994158744812, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47832568000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.01740241050720215, - "y_min": 0.12662234902381897, - "x_max": 0.2577144205570221, - "y_max": 0.3994019329547882 - }, - "confidence": 0.9999731779098511, - "label_id": 2 - }, - "h": 118, - "w": 185, - "x": 13, - "y": 55 - } - ], - "tensors": [ - { - "confidence": 0.9999731779098511, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47915900000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.004041805863380432, - "y_min": 0.12184710800647736, - "x_max": 0.2474878579378128, - "y_max": 0.39345186948776245 - }, - "confidence": 0.9996523857116699, - "label_id": 2 - }, - "h": 117, - "w": 187, - "x": 3, - "y": 53 - } - ], - "tensors": [ - { - "confidence": 0.9996523857116699, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47999232000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.005348794162273407, - "y_min": 0.12305355072021484, - "x_max": 0.23488926887512207, - "y_max": 0.3915954828262329 - }, - "confidence": 0.9985697269439697, - "label_id": 2 - }, - "h": 116, - "w": 176, - "x": 4, - "y": 53 - } - ], - "tensors": [ - { - "confidence": 0.9985697269439697, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48082564000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0017888173460960388, - "y_min": 0.1247859001159668, - "x_max": 0.2245253622531891, - "y_max": 0.38678228855133057 - }, - "confidence": 0.9998401403427124, - "label_id": 2 - }, - "h": 113, - "w": 171, - "x": 1, - "y": 54 - } - ], - "tensors": [ - { - "confidence": 0.9998401403427124, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48165896000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0016414672136306763, - "y_min": 0.12514449656009674, - "x_max": 0.21423731744289398, - "y_max": 0.3789997100830078 - }, - "confidence": 0.9995100498199463, - "label_id": 2 - }, - "h": 110, - "w": 164, - "x": 1, - "y": 54 - } - ], - "tensors": [ - { - "confidence": 0.9995100498199463, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48249228000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0010463446378707886, - "y_min": 0.12255397439002991, - "x_max": 0.20339226722717285, - "y_max": 0.37172725796699524 - }, - "confidence": 0.9997997879981995, - "label_id": 2 - }, - "h": 108, - "w": 155, - "x": 1, - "y": 53 - } - ], - "tensors": [ - { - "confidence": 0.9997997879981995, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48332560000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -0.0009600818157196045, - "y_min": 0.12224481254816055, - "x_max": 0.18527519702911377, - "y_max": 0.3683636486530304 - }, - "confidence": 0.9996997117996216, - "label_id": 2 - }, - "h": 106, - "w": 142, - "x": 0, - "y": 53 - } - ], - "tensors": [ - { - "confidence": 0.9996997117996216, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48415892000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -0.0024446696043014526, - "y_min": 0.11800922453403473, - "x_max": 0.1734609305858612, - "y_max": 0.36477744579315186 - }, - "confidence": 0.994732141494751, - "label_id": 2 - }, - "h": 107, - "w": 133, - "x": 0, - "y": 51 - } - ], - "tensors": [ - { - "confidence": 0.994732141494751, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48499224000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -0.0008171945810317993, - "y_min": 0.122039295732975, - "x_max": 0.16088078916072845, - "y_max": 0.36065050959587097 - }, - "confidence": 0.9844126105308533, - "label_id": 2 - }, - "h": 103, - "w": 124, - "x": 0, - "y": 53 - } - ], - "tensors": [ - { - "confidence": 0.9844126105308533, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48582556000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.00014059245586395264, - "y_min": 0.1215287297964096, - "x_max": 0.1478501558303833, - "y_max": 0.3573453426361084 - }, - "confidence": 0.944599986076355, - "label_id": 2 - }, - "h": 101, - "w": 114, - "x": 0, - "y": 53 - } - ], - "tensors": [ - { - "confidence": 0.944599986076355, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48665888000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -0.00025963038206100464, - "y_min": 0.12402772158384323, - "x_max": 0.13530778884887695, - "y_max": 0.3572295308113098 - }, - "confidence": 0.8222958445549011, - "label_id": 2 - }, - "h": 100, - "w": 104, - "x": 0, - "y": 54 - } - ], - "tensors": [ - { - "confidence": 0.8222958445549011, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48749220000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.004977211356163025, - "y_min": 0.12455517798662186, - "x_max": 0.12559984624385834, - "y_max": 0.35147324204444885 - }, - "confidence": 0.5192632675170898, - "label_id": 2 - }, - "h": 98, - "w": 92, - "x": 4, - "y": 54 - } - ], - "tensors": [ - { - "confidence": 0.5192632675170898, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48832552000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0021711327135562897, - "y_min": 0.12542003393173218, - "x_max": 0.11167280375957489, - "y_max": 0.35693034529685974 - }, - "confidence": 0.6774740219116211, - "label_id": 2 - }, - "h": 100, - "w": 84, - "x": 2, - "y": 54 - } - ], - "tensors": [ - { - "confidence": 0.6774740219116211, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48915884000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.003963496536016464, - "y_min": 0.1262444257736206, - "x_max": 0.09858241677284241, - "y_max": 0.3592531383037567 - }, - "confidence": 0.7434250712394714, - "label_id": 2 - }, - "h": 100, - "w": 73, - "x": 3, - "y": 55 - } - ], - "tensors": [ - { - "confidence": 0.7434250712394714, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48999216000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.0023461058735847473, - "y_min": 0.13048796355724335, - "x_max": 0.08722066134214401, - "y_max": 0.3632868528366089 - }, - "confidence": 0.5979925394058228, - "label_id": 2 - }, - "h": 101, - "w": 65, - "x": 2, - "y": 56 - } - ], - "tensors": [ - { - "confidence": 0.5979925394058228, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49082548000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": 0.004991490393877029, - "y_min": 0.1470525711774826, - "x_max": 0.0746246874332428, - "y_max": 0.36092686653137207 - }, - "confidence": 0.6191385388374329, - "label_id": 2 - }, - "h": 92, - "w": 53, - "x": 4, - "y": 64 - } - ], - "tensors": [ - { - "confidence": 0.6191385388374329, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49165880000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -0.006160043179988861, - "y_min": 0.1430838704109192, - "x_max": 0.06290969997644424, - "y_max": 0.34735849499702454 - }, - "confidence": 0.680001974105835, - "label_id": 2 - }, - "h": 88, - "w": 48, - "x": 0, - "y": 62 - } - ], - "tensors": [ - { - "confidence": 0.680001974105835, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - }, - { - "resolution": { - "width": 768, - "height": 432 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49249212000, - "objects": [ - { - "detection": { - "bounding_box": { - "x_min": -0.0008208621293306351, - "y_min": 0.14316228032112122, - "x_max": 0.049667298793792725, - "y_max": 0.3419255316257477 - }, - "confidence": 0.6459780335426331, - "label_id": 2 - }, - "h": 86, - "w": 38, - "x": 0, - "y": 62 - } - ], - "tensors": [ - { - "confidence": 0.6459780335426331, - "label_id": 2, - "layer_name": "detection_out", - "layout": "NCHW", - "model_name": "RMNet_SSD", - "name": "detection", - "precision": "FP32" - } - ] - } - ] -} \ No newline at end of file diff --git a/tests/test_cases/pipeline_stability/cpu/stability_object_detection_many_gstreamer.json b/tests/test_cases/pipeline_stability/cpu/stability_object_detection_many_gstreamer.json deleted file mode 100644 index 7e7784d..0000000 --- a/tests/test_cases/pipeline_stability/cpu/stability_object_detection_many_gstreamer.json +++ /dev/null @@ -1,7498 +0,0 @@ -{ - "options": {}, - "pipeline": { - "name": "object_detection", - "version": "person_vehicle_bike" - }, - "request": { - "source": { - "type": "uri", - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4" - }, - "destination": { - "type": "file", - "path": "/tmp/object_detection_results.json", - "format": "json-lines" - }, - "parameters": { - "detection-model-instance-id": "stability1" - } - }, - "stability_duration": 10800, - "relaunch_on_complete": true, - "numerical_tolerance": 0.01, - "result": [ - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7448995113372803, - "x_min": 0.6734093427658081, - "y_max": 0.9991495609283447, - "y_min": 0.8781012296676636 - }, - "confidence": 0.5402477979660034, - "label": "person", - "label_id": 1 - }, - "h": 52, - "region_id": 693, - "roi_type": "person", - "w": 55, - "x": 517, - "y": 379 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7442193031311035, - "x_min": 0.6763269901275635, - "y_max": 1.0, - "y_min": 0.8277983069419861 - }, - "confidence": 0.5505855679512024, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 694, - "roi_type": "person", - "w": 52, - "x": 519, - "y": 358 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7465137243270874, - "x_min": 0.6821863651275635, - "y_max": 1.0, - "y_min": 0.810469388961792 - }, - "confidence": 0.6447376608848572, - "label": "person", - "label_id": 1 - }, - "h": 82, - "region_id": 695, - "roi_type": "person", - "w": 49, - "x": 524, - "y": 350 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7481285929679871, - "x_min": 0.6836653351783752, - "y_max": 0.9999656677246094, - "y_min": 0.7867168188095093 - }, - "confidence": 0.8825288414955139, - "label": "person", - "label_id": 1 - }, - "h": 92, - "region_id": 696, - "roi_type": "person", - "w": 50, - "x": 525, - "y": 340 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7502986788749695, - "x_min": 0.6836960911750793, - "y_max": 0.9965758919715881, - "y_min": 0.7709739804267883 - }, - "confidence": 0.9252141714096069, - "label": "person", - "label_id": 1 - }, - "h": 97, - "region_id": 697, - "roi_type": "person", - "w": 51, - "x": 525, - "y": 333 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 1916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7533045411109924, - "x_min": 0.6833932995796204, - "y_max": 0.9992515444755554, - "y_min": 0.7517306208610535 - }, - "confidence": 0.9160445928573608, - "label": "person", - "label_id": 1 - }, - "h": 107, - "region_id": 698, - "roi_type": "person", - "w": 54, - "x": 525, - "y": 325 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7569091320037842, - "x_min": 0.6831721067428589, - "y_max": 0.9893119931221008, - "y_min": 0.7454761862754822 - }, - "confidence": 0.9452297687530518, - "label": "person", - "label_id": 1 - }, - "h": 105, - "region_id": 700, - "roi_type": "person", - "w": 57, - "x": 525, - "y": 322 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7582204341888428, - "x_min": 0.6869715452194214, - "y_max": 0.974425196647644, - "y_min": 0.7232375144958496 - }, - "confidence": 0.9522713422775269, - "label": "person", - "label_id": 1 - }, - "h": 109, - "region_id": 701, - "roi_type": "person", - "w": 55, - "x": 528, - "y": 312 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7575154900550842, - "x_min": 0.690883457660675, - "y_max": 0.948596715927124, - "y_min": 0.7128697633743286 - }, - "confidence": 0.8796283006668091, - "label": "person", - "label_id": 1 - }, - "h": 102, - "region_id": 702, - "roi_type": "person", - "w": 51, - "x": 531, - "y": 308 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7562522292137146, - "x_min": 0.6947104334831238, - "y_max": 0.8969831466674805, - "y_min": 0.7029378414154053 - }, - "confidence": 0.8928083777427673, - "label": "person", - "label_id": 1 - }, - "h": 84, - "region_id": 703, - "roi_type": "person", - "w": 47, - "x": 534, - "y": 304 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7574295997619629, - "x_min": 0.6979045867919922, - "y_max": 0.8754801750183105, - "y_min": 0.6884984970092773 - }, - "confidence": 0.872053325176239, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 704, - "roi_type": "person", - "w": 46, - "x": 536, - "y": 297 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.762875497341156, - "x_min": 0.6962667107582092, - "y_max": 0.9012863636016846, - "y_min": 0.6672508716583252 - }, - "confidence": 0.6989083290100098, - "label": "person", - "label_id": 1 - }, - "h": 101, - "region_id": 705, - "roi_type": "person", - "w": 51, - "x": 535, - "y": 288 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.764236569404602, - "x_min": 0.6945128440856934, - "y_max": 0.8976410627365112, - "y_min": 0.6511141061782837 - }, - "confidence": 0.695422887802124, - "label": "person", - "label_id": 1 - }, - "h": 106, - "region_id": 706, - "roi_type": "person", - "w": 54, - "x": 533, - "y": 281 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.76410311460495, - "x_min": 0.7028637528419495, - "y_max": 0.8516805171966553, - "y_min": 0.6483858823776245 - }, - "confidence": 0.6670759916305542, - "label": "person", - "label_id": 1 - }, - "h": 88, - "region_id": 707, - "roi_type": "person", - "w": 47, - "x": 540, - "y": 280 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7670164108276367, - "x_min": 0.7064443826675415, - "y_max": 0.8298263549804688, - "y_min": 0.6299617290496826 - }, - "confidence": 0.9295311570167542, - "label": "person", - "label_id": 1 - }, - "h": 86, - "region_id": 709, - "roi_type": "person", - "w": 47, - "x": 543, - "y": 272 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7725508213043213, - "x_min": 0.7098292112350464, - "y_max": 0.8254446387290955, - "y_min": 0.6173176169395447 - }, - "confidence": 0.6896170377731323, - "label": "person", - "label_id": 1 - }, - "h": 90, - "region_id": 708, - "roi_type": "person", - "w": 48, - "x": 545, - "y": 267 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7741845846176147, - "x_min": 0.7090356349945068, - "y_max": 0.8218123316764832, - "y_min": 0.6104785799980164 - }, - "confidence": 0.760479211807251, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 710, - "roi_type": "person", - "w": 50, - "x": 545, - "y": 264 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 2916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7783714532852173, - "x_min": 0.7181830406188965, - "y_max": 0.7849858999252319, - "y_min": 0.5744112730026245 - }, - "confidence": 0.502738356590271, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 711, - "roi_type": "person", - "w": 46, - "x": 552, - "y": 248 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7834279537200928, - "x_min": 0.7257949113845825, - "y_max": 0.7589361667633057, - "y_min": 0.5519590377807617 - }, - "confidence": 0.7043059468269348, - "label": "person", - "label_id": 1 - }, - "h": 89, - "region_id": 712, - "roi_type": "person", - "w": 44, - "x": 557, - "y": 238 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7895295023918152, - "x_min": 0.7326744198799133, - "y_max": 0.7261120676994324, - "y_min": 0.5483003258705139 - }, - "confidence": 0.9756484627723694, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 713, - "roi_type": "person", - "w": 44, - "x": 563, - "y": 237 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7890371680259705, - "x_min": 0.7377203106880188, - "y_max": 0.7031307816505432, - "y_min": 0.5400574803352356 - }, - "confidence": 0.8415109515190125, - "label": "person", - "label_id": 1 - }, - "h": 70, - "region_id": 714, - "roi_type": "person", - "w": 39, - "x": 567, - "y": 233 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7952909469604492, - "x_min": 0.7402902841567993, - "y_max": 0.6921250224113464, - "y_min": 0.521691620349884 - }, - "confidence": 0.771628201007843, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 715, - "roi_type": "person", - "w": 42, - "x": 569, - "y": 225 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8006463646888733, - "x_min": 0.746234118938446, - "y_max": 0.6880521178245544, - "y_min": 0.5218417048454285 - }, - "confidence": 0.8759827613830566, - "label": "person", - "label_id": 1 - }, - "h": 72, - "region_id": 716, - "roi_type": "person", - "w": 42, - "x": 573, - "y": 225 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.809805691242218, - "x_min": 0.7457361817359924, - "y_max": 0.703031063079834, - "y_min": 0.5026630163192749 - }, - "confidence": 0.910108745098114, - "label": "person", - "label_id": 1 - }, - "h": 87, - "region_id": 717, - "roi_type": "person", - "w": 49, - "x": 573, - "y": 217 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8131636381149292, - "x_min": 0.7560372352600098, - "y_max": 0.68419349193573, - "y_min": 0.4961233139038086 - }, - "confidence": 0.9086403846740723, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 718, - "roi_type": "person", - "w": 44, - "x": 581, - "y": 214 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.823058545589447, - "x_min": 0.7637491822242737, - "y_max": 0.6855756640434265, - "y_min": 0.4885023236274719 - }, - "confidence": 0.8248202204704285, - "label": "person", - "label_id": 1 - }, - "h": 85, - "region_id": 721, - "roi_type": "person", - "w": 46, - "x": 587, - "y": 211 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8232852816581726, - "x_min": 0.7605671286582947, - "y_max": 0.6924914121627808, - "y_min": 0.4750782549381256 - }, - "confidence": 0.6950253248214722, - "label": "person", - "label_id": 1 - }, - "h": 94, - "region_id": 724, - "roi_type": "person", - "w": 48, - "x": 584, - "y": 205 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 3916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8322222232818604, - "x_min": 0.7602421045303345, - "y_max": 0.6941540837287903, - "y_min": 0.46584221720695496 - }, - "confidence": 0.5867411494255066, - "label": "person", - "label_id": 1 - }, - "h": 99, - "region_id": 725, - "roi_type": "person", - "w": 55, - "x": 584, - "y": 201 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8429374098777771, - "x_min": 0.7935228943824768, - "y_max": 0.6419347524642944, - "y_min": 0.4380990266799927 - }, - "confidence": 0.9679194092750549, - "label": "person", - "label_id": 1 - }, - "h": 88, - "region_id": 726, - "roi_type": "person", - "w": 38, - "x": 609, - "y": 189 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.849794328212738, - "x_min": 0.796667754650116, - "y_max": 0.6153375506401062, - "y_min": 0.4430392384529114 - }, - "confidence": 0.8853103518486023, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 727, - "roi_type": "person", - "w": 41, - "x": 612, - "y": 191 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8533491492271423, - "x_min": 0.8009874224662781, - "y_max": 0.6051763892173767, - "y_min": 0.4295733571052551 - }, - "confidence": 0.9033117294311523, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 730, - "roi_type": "person", - "w": 40, - "x": 615, - "y": 186 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8604122996330261, - "x_min": 0.806064784526825, - "y_max": 0.5924712419509888, - "y_min": 0.42701777815818787 - }, - "confidence": 0.8053393363952637, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 732, - "roi_type": "person", - "w": 42, - "x": 619, - "y": 184 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8663099408149719, - "x_min": 0.8105942606925964, - "y_max": 0.5942342281341553, - "y_min": 0.42083391547203064 - }, - "confidence": 0.769930899143219, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 734, - "roi_type": "person", - "w": 43, - "x": 623, - "y": 182 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8744010329246521, - "x_min": 0.817695677280426, - "y_max": 0.5900759100914001, - "y_min": 0.4136963486671448 - }, - "confidence": 0.9554973840713501, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 735, - "roi_type": "person", - "w": 44, - "x": 628, - "y": 179 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8855565190315247, - "x_min": 0.8264035582542419, - "y_max": 0.586060106754303, - "y_min": 0.4029603898525238 - }, - "confidence": 0.8228972554206848, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 737, - "roi_type": "person", - "w": 45, - "x": 635, - "y": 174 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8908533453941345, - "x_min": 0.8350780606269836, - "y_max": 0.5897727012634277, - "y_min": 0.3878403902053833 - }, - "confidence": 0.8011425137519836, - "label": "person", - "label_id": 1 - }, - "h": 87, - "region_id": 738, - "roi_type": "person", - "w": 43, - "x": 641, - "y": 168 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9007776379585266, - "x_min": 0.8356189131736755, - "y_max": 0.5877959728240967, - "y_min": 0.3941260576248169 - }, - "confidence": 0.6489099860191345, - "label": "person", - "label_id": 1 - }, - "h": 84, - "region_id": 739, - "roi_type": "person", - "w": 50, - "x": 642, - "y": 170 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 4916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9088491201400757, - "x_min": 0.8531066179275513, - "y_max": 0.5604838132858276, - "y_min": 0.376047819852829 - }, - "confidence": 0.6436930298805237, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 740, - "roi_type": "person", - "w": 43, - "x": 655, - "y": 162 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.91246098279953, - "x_min": 0.8664992451667786, - "y_max": 0.5441792607307434, - "y_min": 0.36725082993507385 - }, - "confidence": 0.8806084990501404, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 741, - "roi_type": "person", - "w": 35, - "x": 665, - "y": 159 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9204215407371521, - "x_min": 0.8713714480400085, - "y_max": 0.5294153094291687, - "y_min": 0.3520965576171875 - }, - "confidence": 0.9779549241065979, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 742, - "roi_type": "person", - "w": 38, - "x": 669, - "y": 152 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9224029779434204, - "x_min": 0.8775302171707153, - "y_max": 0.5218915939331055, - "y_min": 0.3505917191505432 - }, - "confidence": 0.928396463394165, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 745, - "roi_type": "person", - "w": 34, - "x": 674, - "y": 151 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.928156316280365, - "x_min": 0.8720093369483948, - "y_max": 0.5194041728973389, - "y_min": 0.3446289896965027 - }, - "confidence": 0.7565134763717651, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 743, - "roi_type": "person", - "w": 43, - "x": 670, - "y": 149 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9374079704284668, - "x_min": 0.8853236436843872, - "y_max": 0.5107859373092651, - "y_min": 0.34274014830589294 - }, - "confidence": 0.9505770802497864, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 744, - "roi_type": "person", - "w": 40, - "x": 680, - "y": 148 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9449758529663086, - "x_min": 0.8897075653076172, - "y_max": 0.5037586092948914, - "y_min": 0.33645254373550415 - }, - "confidence": 0.9099647998809814, - "label": "person", - "label_id": 1 - }, - "h": 72, - "region_id": 746, - "roi_type": "person", - "w": 42, - "x": 683, - "y": 145 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9549130797386169, - "x_min": 0.8982008099555969, - "y_max": 0.5104894042015076, - "y_min": 0.32427412271499634 - }, - "confidence": 0.7820343971252441, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 747, - "roi_type": "person", - "w": 44, - "x": 690, - "y": 140 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9616369009017944, - "x_min": 0.9061300754547119, - "y_max": 0.5176384449005127, - "y_min": 0.32654041051864624 - }, - "confidence": 0.7776963710784912, - "label": "person", - "label_id": 1 - }, - "h": 83, - "region_id": 748, - "roi_type": "person", - "w": 43, - "x": 696, - "y": 141 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 5833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9738940000534058, - "x_min": 0.9141020774841309, - "y_max": 0.49157699942588806, - "y_min": 0.3181222975254059 - }, - "confidence": 0.7904176115989685, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 750, - "roi_type": "person", - "w": 46, - "x": 702, - "y": 137 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9759961366653442, - "x_min": 0.9256719350814819, - "y_max": 0.48557397723197937, - "y_min": 0.30408164858818054 - }, - "confidence": 0.7352938055992126, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 749, - "roi_type": "person", - "w": 39, - "x": 711, - "y": 131 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9818256497383118, - "x_min": 0.928584635257721, - "y_max": 0.4778039753437042, - "y_min": 0.29464688897132874 - }, - "confidence": 0.8346171975135803, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 751, - "roi_type": "person", - "w": 41, - "x": 713, - "y": 127 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9829865097999573, - "x_min": 0.9321264624595642, - "y_max": 0.46189284324645996, - "y_min": 0.29097121953964233 - }, - "confidence": 0.9709595441818237, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 752, - "roi_type": "person", - "w": 39, - "x": 716, - "y": 126 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9856051206588745, - "x_min": 0.9314626455307007, - "y_max": 0.4595509171485901, - "y_min": 0.28902602195739746 - }, - "confidence": 0.6953383684158325, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 753, - "roi_type": "person", - "w": 42, - "x": 715, - "y": 125 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9974536299705505, - "x_min": 0.9289860129356384, - "y_max": 0.46979764103889465, - "y_min": 0.25890347361564636 - }, - "confidence": 0.5784743428230286, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 754, - "roi_type": "person", - "w": 53, - "x": 713, - "y": 112 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9965776801109314, - "x_min": 0.9486775994300842, - "y_max": 0.4469355344772339, - "y_min": 0.26758038997650146 - }, - "confidence": 0.5522655844688416, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 755, - "roi_type": "person", - "w": 37, - "x": 729, - "y": 116 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 6583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.1190483570098877, - "y_max": 0.9856837391853333, - "y_min": 0.01998382806777954 - }, - "confidence": 0.5811724066734314, - "label": "vehicle", - "label_id": 2 - }, - "h": 417, - "region_id": 756, - "roi_type": "vehicle", - "w": 677, - "x": 91, - "y": 9 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 13916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3472718968987465, - "x_min": 0.12164703756570816, - "y_max": 1.0, - "y_min": 0.839308500289917 - }, - "confidence": 0.6197883486747742, - "label": "vehicle", - "label_id": 2 - }, - "h": 69, - "region_id": 757, - "roi_type": "vehicle", - "w": 173, - "x": 93, - "y": 363 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3529694080352783, - "x_min": 0.12145501375198364, - "y_max": 1.0, - "y_min": 0.8094808459281921 - }, - "confidence": 0.7172144055366516, - "label": "vehicle", - "label_id": 2 - }, - "h": 82, - "region_id": 758, - "roi_type": "vehicle", - "w": 178, - "x": 93, - "y": 350 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35698962211608887, - "x_min": 0.120272696018219, - "y_max": 0.996704638004303, - "y_min": 0.7838299870491028 - }, - "confidence": 0.8247232437133789, - "label": "vehicle", - "label_id": 2 - }, - "h": 92, - "region_id": 759, - "roi_type": "vehicle", - "w": 182, - "x": 92, - "y": 339 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3593756780028343, - "x_min": 0.11301174014806747, - "y_max": 0.99638831615448, - "y_min": 0.7641627788543701 - }, - "confidence": 0.8237622976303101, - "label": "vehicle", - "label_id": 2 - }, - "h": 100, - "region_id": 760, - "roi_type": "vehicle", - "w": 189, - "x": 87, - "y": 330 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36954784393310547, - "x_min": 0.11453872919082642, - "y_max": 1.0, - "y_min": 0.7280344367027283 - }, - "confidence": 0.7173951864242554, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 761, - "roi_type": "vehicle", - "w": 196, - "x": 88, - "y": 315 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3680807948112488, - "x_min": 0.10083681344985962, - "y_max": 0.9959658980369568, - "y_min": 0.7031351923942566 - }, - "confidence": 0.8457773327827454, - "label": "vehicle", - "label_id": 2 - }, - "h": 127, - "region_id": 762, - "roi_type": "vehicle", - "w": 205, - "x": 77, - "y": 304 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3770086318254471, - "x_min": 0.10729165375232697, - "y_max": 0.999495804309845, - "y_min": 0.6779972910881042 - }, - "confidence": 0.9278464913368225, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "region_id": 763, - "roi_type": "vehicle", - "w": 207, - "x": 82, - "y": 293 - }, - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.12105095386505127, - "y_max": 0.9884703457355499, - "y_min": 0.031230241060256958 - }, - "confidence": 0.6490622162818909, - "label": "vehicle", - "label_id": 2 - }, - "h": 414, - "region_id": 764, - "roi_type": "vehicle", - "w": 675, - "x": 93, - "y": 13 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37933245301246643, - "x_min": 0.10664257407188416, - "y_max": 1.0, - "y_min": 0.6494538187980652 - }, - "confidence": 0.9569666385650635, - "label": "vehicle", - "label_id": 2 - }, - "h": 151, - "region_id": 765, - "roi_type": "vehicle", - "w": 209, - "x": 82, - "y": 281 - }, - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.12350070476531982, - "y_max": 0.9561543166637421, - "y_min": 0.036142319440841675 - }, - "confidence": 0.6475480198860168, - "label": "vehicle", - "label_id": 2 - }, - "h": 397, - "region_id": 766, - "roi_type": "vehicle", - "w": 673, - "x": 95, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 14916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3790186643600464, - "x_min": 0.1055452823638916, - "y_max": 1.0, - "y_min": 0.6312700510025024 - }, - "confidence": 0.9906975626945496, - "label": "vehicle", - "label_id": 2 - }, - "h": 159, - "region_id": 767, - "roi_type": "vehicle", - "w": 210, - "x": 81, - "y": 273 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37920166552066803, - "x_min": 0.11973930895328522, - "y_max": 0.9997226595878601, - "y_min": 0.6097801327705383 - }, - "confidence": 0.9947448968887329, - "label": "vehicle", - "label_id": 2 - }, - "h": 168, - "region_id": 768, - "roi_type": "vehicle", - "w": 199, - "x": 92, - "y": 263 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37608885765075684, - "x_min": 0.11783003807067871, - "y_max": 0.9969019889831543, - "y_min": 0.5848081111907959 - }, - "confidence": 0.9949920773506165, - "label": "vehicle", - "label_id": 2 - }, - "h": 178, - "region_id": 769, - "roi_type": "vehicle", - "w": 198, - "x": 90, - "y": 253 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37699654698371887, - "x_min": 0.11793932318687439, - "y_max": 0.9975460767745972, - "y_min": 0.5624507665634155 - }, - "confidence": 0.9885395169258118, - "label": "vehicle", - "label_id": 2 - }, - "h": 188, - "region_id": 770, - "roi_type": "vehicle", - "w": 199, - "x": 91, - "y": 243 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37293967604637146, - "x_min": 0.1103682816028595, - "y_max": 1.0, - "y_min": 0.5396615266799927 - }, - "confidence": 0.9783475399017334, - "label": "vehicle", - "label_id": 2 - }, - "h": 199, - "region_id": 771, - "roi_type": "vehicle", - "w": 202, - "x": 85, - "y": 233 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3659246265888214, - "x_min": 0.13214662671089172, - "y_max": 1.0, - "y_min": 0.5241052508354187 - }, - "confidence": 0.977293074131012, - "label": "vehicle", - "label_id": 2 - }, - "h": 206, - "region_id": 772, - "roi_type": "vehicle", - "w": 180, - "x": 101, - "y": 226 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3634260296821594, - "x_min": 0.13490885496139526, - "y_max": 1.0, - "y_min": 0.5041918754577637 - }, - "confidence": 0.9919345378875732, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "region_id": 773, - "roi_type": "vehicle", - "w": 176, - "x": 104, - "y": 218 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.960458904504776, - "x_min": 0.1433190405368805, - "y_max": 0.8030799925327301, - "y_min": 0.047403484582901 - }, - "confidence": 0.6497754454612732, - "label": "vehicle", - "label_id": 2 - }, - "h": 326, - "region_id": 774, - "roi_type": "vehicle", - "w": 628, - "x": 110, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3554345369338989, - "x_min": 0.14201140403747559, - "y_max": 0.9914808869361877, - "y_min": 0.49649709463119507 - }, - "confidence": 0.9959779381752014, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "region_id": 775, - "roi_type": "vehicle", - "w": 164, - "x": 109, - "y": 214 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3545818626880646, - "x_min": 0.14792534708976746, - "y_max": 0.998590499162674, - "y_min": 0.4749157726764679 - }, - "confidence": 0.9977288842201233, - "label": "vehicle", - "label_id": 2 - }, - "h": 226, - "region_id": 776, - "roi_type": "vehicle", - "w": 159, - "x": 114, - "y": 205 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.946483701467514, - "x_min": 0.37183746695518494, - "y_max": 0.8923514187335968, - "y_min": 0.04037526249885559 - }, - "confidence": 0.5507270097732544, - "label": "vehicle", - "label_id": 2 - }, - "h": 368, - "region_id": 777, - "roi_type": "vehicle", - "w": 441, - "x": 286, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.356282114982605, - "x_min": 0.15392696857452393, - "y_max": 0.983318567276001, - "y_min": 0.45039117336273193 - }, - "confidence": 0.9942495822906494, - "label": "vehicle", - "label_id": 2 - }, - "h": 230, - "region_id": 778, - "roi_type": "vehicle", - "w": 155, - "x": 118, - "y": 195 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3493104577064514, - "x_min": 0.15961939096450806, - "y_max": 0.9475722014904022, - "y_min": 0.43192610144615173 - }, - "confidence": 0.9976758360862732, - "label": "vehicle", - "label_id": 2 - }, - "h": 223, - "region_id": 779, - "roi_type": "vehicle", - "w": 146, - "x": 123, - "y": 187 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9634913802146912, - "x_min": 0.35563451051712036, - "y_max": 0.7470855712890625, - "y_min": 0.06608182191848755 - }, - "confidence": 0.7034837007522583, - "label": "vehicle", - "label_id": 2 - }, - "h": 294, - "region_id": 780, - "roi_type": "vehicle", - "w": 467, - "x": 273, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3447079062461853, - "x_min": 0.16244035959243774, - "y_max": 0.935673177242279, - "y_min": 0.4222027659416199 - }, - "confidence": 0.9976540207862854, - "label": "vehicle", - "label_id": 2 - }, - "h": 222, - "region_id": 781, - "roi_type": "vehicle", - "w": 140, - "x": 125, - "y": 182 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9825345277786255, - "x_min": 0.34150218963623047, - "y_max": 0.9223847687244415, - "y_min": 0.0489061176776886 - }, - "confidence": 0.5919329524040222, - "label": "vehicle", - "label_id": 2 - }, - "h": 377, - "region_id": 782, - "roi_type": "vehicle", - "w": 492, - "x": 262, - "y": 21 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 15916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3389112949371338, - "x_min": 0.16517682373523712, - "y_max": 0.9076910316944122, - "y_min": 0.4019249975681305 - }, - "confidence": 0.9994926452636719, - "label": "vehicle", - "label_id": 2 - }, - "h": 218, - "region_id": 783, - "roi_type": "vehicle", - "w": 133, - "x": 127, - "y": 174 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33601245284080505, - "x_min": 0.1654420793056488, - "y_max": 0.8818582892417908, - "y_min": 0.3884504437446594 - }, - "confidence": 0.9987764954566956, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "region_id": 784, - "roi_type": "vehicle", - "w": 131, - "x": 127, - "y": 168 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9590832889080048, - "x_min": 0.31476983428001404, - "y_max": 0.857620358467102, - "y_min": 0.07268017530441284 - }, - "confidence": 0.5271487832069397, - "label": "vehicle", - "label_id": 2 - }, - "h": 339, - "region_id": 785, - "roi_type": "vehicle", - "w": 495, - "x": 242, - "y": 31 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3323298692703247, - "x_min": 0.1626337766647339, - "y_max": 0.8597559928894043, - "y_min": 0.3726102113723755 - }, - "confidence": 0.9985212683677673, - "label": "vehicle", - "label_id": 2 - }, - "h": 210, - "region_id": 786, - "roi_type": "vehicle", - "w": 130, - "x": 125, - "y": 161 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.974656492471695, - "x_min": 0.33645811676979065, - "y_max": 0.9104884266853333, - "y_min": 0.05241858959197998 - }, - "confidence": 0.5714099407196045, - "label": "vehicle", - "label_id": 2 - }, - "h": 371, - "region_id": 787, - "roi_type": "vehicle", - "w": 490, - "x": 258, - "y": 23 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.330049991607666, - "x_min": 0.1618494838476181, - "y_max": 0.8313447833061218, - "y_min": 0.35449475049972534 - }, - "confidence": 0.9997923970222473, - "label": "vehicle", - "label_id": 2 - }, - "h": 206, - "region_id": 788, - "roi_type": "vehicle", - "w": 129, - "x": 124, - "y": 153 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9590034484863281, - "x_min": 0.3254728317260742, - "y_max": 0.8569568693637848, - "y_min": 0.067400723695755 - }, - "confidence": 0.7003794312477112, - "label": "vehicle", - "label_id": 2 - }, - "h": 341, - "region_id": 789, - "roi_type": "vehicle", - "w": 487, - "x": 250, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3289366066455841, - "x_min": 0.15743154287338257, - "y_max": 0.8062316179275513, - "y_min": 0.343867689371109 - }, - "confidence": 0.9998531341552734, - "label": "vehicle", - "label_id": 2 - }, - "h": 200, - "region_id": 790, - "roi_type": "vehicle", - "w": 132, - "x": 121, - "y": 149 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9643826484680176, - "x_min": 0.32466578483581543, - "y_max": 0.8281525671482086, - "y_min": 0.050448328256607056 - }, - "confidence": 0.7298584580421448, - "label": "vehicle", - "label_id": 2 - }, - "h": 336, - "region_id": 791, - "roi_type": "vehicle", - "w": 491, - "x": 249, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.32749873399734497, - "x_min": 0.15210942924022675, - "y_max": 0.7838114500045776, - "y_min": 0.3270362317562103 - }, - "confidence": 0.9998413324356079, - "label": "vehicle", - "label_id": 2 - }, - "h": 197, - "region_id": 792, - "roi_type": "vehicle", - "w": 135, - "x": 117, - "y": 141 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9622263312339783, - "x_min": 0.3427172303199768, - "y_max": 0.8725208938121796, - "y_min": 0.04009386897087097 - }, - "confidence": 0.5856862664222717, - "label": "vehicle", - "label_id": 2 - }, - "h": 360, - "region_id": 793, - "roi_type": "vehicle", - "w": 476, - "x": 263, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.32336118817329407, - "x_min": 0.1428644359111786, - "y_max": 0.7728332877159119, - "y_min": 0.320098340511322 - }, - "confidence": 0.9999895095825195, - "label": "vehicle", - "label_id": 2 - }, - "h": 196, - "region_id": 794, - "roi_type": "vehicle", - "w": 139, - "x": 110, - "y": 138 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.975044846534729, - "x_min": 0.2974846363067627, - "y_max": 0.8784034550189972, - "y_min": 0.026116639375686646 - }, - "confidence": 0.6027874946594238, - "label": "vehicle", - "label_id": 2 - }, - "h": 368, - "region_id": 795, - "roi_type": "vehicle", - "w": 520, - "x": 228, - "y": 11 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.32014694809913635, - "x_min": 0.1364186704158783, - "y_max": 0.7574480175971985, - "y_min": 0.3098655343055725 - }, - "confidence": 0.9999890327453613, - "label": "vehicle", - "label_id": 2 - }, - "h": 193, - "region_id": 796, - "roi_type": "vehicle", - "w": 141, - "x": 105, - "y": 134 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9672453999519348, - "x_min": 0.28611689805984497, - "y_max": 0.835792601108551, - "y_min": 0.03851372003555298 - }, - "confidence": 0.7227157354354858, - "label": "vehicle", - "label_id": 2 - }, - "h": 344, - "region_id": 797, - "roi_type": "vehicle", - "w": 523, - "x": 220, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31699714064598083, - "x_min": 0.13015073537826538, - "y_max": 0.7375566959381104, - "y_min": 0.29937517642974854 - }, - "confidence": 0.9999899864196777, - "label": "vehicle", - "label_id": 2 - }, - "h": 189, - "region_id": 798, - "roi_type": "vehicle", - "w": 143, - "x": 100, - "y": 129 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.951544463634491, - "x_min": 0.33267778158187866, - "y_max": 0.8539562225341797, - "y_min": 0.03351706266403198 - }, - "confidence": 0.808168888092041, - "label": "vehicle", - "label_id": 2 - }, - "h": 354, - "region_id": 799, - "roi_type": "vehicle", - "w": 475, - "x": 255, - "y": 14 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31399670988321304, - "x_min": 0.11789140850305557, - "y_max": 0.7212228775024414, - "y_min": 0.286960244178772 - }, - "confidence": 0.9999879598617554, - "label": "vehicle", - "label_id": 2 - }, - "h": 188, - "region_id": 800, - "roi_type": "vehicle", - "w": 151, - "x": 91, - "y": 124 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9608637392520905, - "x_min": 0.32193413376808167, - "y_max": 0.87295863032341, - "y_min": 0.03886529803276062 - }, - "confidence": 0.6383565664291382, - "label": "vehicle", - "label_id": 2 - }, - "h": 360, - "region_id": 801, - "roi_type": "vehicle", - "w": 491, - "x": 247, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31122130155563354, - "x_min": 0.10584886372089386, - "y_max": 0.7095152139663696, - "y_min": 0.28365978598594666 - }, - "confidence": 0.9999860525131226, - "label": "vehicle", - "label_id": 2 - }, - "h": 184, - "region_id": 802, - "roi_type": "vehicle", - "w": 158, - "x": 81, - "y": 123 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9637053310871124, - "x_min": 0.3220804035663605, - "y_max": 0.8715959191322327, - "y_min": 0.040416836738586426 - }, - "confidence": 0.6495591998100281, - "label": "vehicle", - "label_id": 2 - }, - "h": 359, - "region_id": 803, - "roi_type": "vehicle", - "w": 493, - "x": 247, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.30708833783864975, - "x_min": 0.08848126977682114, - "y_max": 0.6941936612129211, - "y_min": 0.27684885263442993 - }, - "confidence": 0.9999517202377319, - "label": "vehicle", - "label_id": 2 - }, - "h": 180, - "region_id": 804, - "roi_type": "vehicle", - "w": 168, - "x": 68, - "y": 120 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9554711878299713, - "x_min": 0.34027138352394104, - "y_max": 0.8380113542079926, - "y_min": 0.048275917768478394 - }, - "confidence": 0.71632981300354, - "label": "vehicle", - "label_id": 2 - }, - "h": 341, - "region_id": 805, - "roi_type": "vehicle", - "w": 472, - "x": 261, - "y": 21 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 16916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3021142706274986, - "x_min": 0.08180790394544601, - "y_max": 0.6738345623016357, - "y_min": 0.2771810293197632 - }, - "confidence": 0.9999845027923584, - "label": "vehicle", - "label_id": 2 - }, - "h": 171, - "region_id": 806, - "roi_type": "vehicle", - "w": 169, - "x": 63, - "y": 120 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9660831391811371, - "x_min": 0.33971044421195984, - "y_max": 0.8525653183460236, - "y_min": 0.06687751412391663 - }, - "confidence": 0.5413610935211182, - "label": "vehicle", - "label_id": 2 - }, - "h": 339, - "region_id": 807, - "roi_type": "vehicle", - "w": 481, - "x": 261, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.29426703602075577, - "x_min": 0.07385555654764175, - "y_max": 0.6565670371055603, - "y_min": 0.2726742625236511 - }, - "confidence": 0.9999916553497314, - "label": "vehicle", - "label_id": 2 - }, - "h": 166, - "region_id": 808, - "roi_type": "vehicle", - "w": 169, - "x": 57, - "y": 118 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9926848709583282, - "x_min": 0.30496659874916077, - "y_max": 0.84866863489151, - "y_min": 0.05000710487365723 - }, - "confidence": 0.5592050552368164, - "label": "vehicle", - "label_id": 2 - }, - "h": 345, - "region_id": 809, - "roi_type": "vehicle", - "w": 528, - "x": 234, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.28687434643507004, - "x_min": 0.06621810048818588, - "y_max": 0.6433696746826172, - "y_min": 0.2654877007007599 - }, - "confidence": 0.9999983310699463, - "label": "vehicle", - "label_id": 2 - }, - "h": 163, - "region_id": 810, - "roi_type": "vehicle", - "w": 169, - "x": 51, - "y": 115 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2829515337944031, - "x_min": 0.055335864424705505, - "y_max": 0.6373207569122314, - "y_min": 0.261656790971756 - }, - "confidence": 0.9999963045120239, - "label": "vehicle", - "label_id": 2 - }, - "h": 162, - "region_id": 811, - "roi_type": "vehicle", - "w": 175, - "x": 42, - "y": 113 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9582633972167969, - "x_min": 0.35544872283935547, - "y_max": 0.7013504207134247, - "y_min": 0.06135174632072449 - }, - "confidence": 0.652894914150238, - "label": "vehicle", - "label_id": 2 - }, - "h": 276, - "region_id": 812, - "roi_type": "vehicle", - "w": 463, - "x": 273, - "y": 27 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2785479202866554, - "x_min": 0.04411584883928299, - "y_max": 0.6277320384979248, - "y_min": 0.2605409622192383 - }, - "confidence": 0.999983549118042, - "label": "vehicle", - "label_id": 2 - }, - "h": 159, - "region_id": 813, - "roi_type": "vehicle", - "w": 180, - "x": 34, - "y": 113 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2703113779425621, - "x_min": 0.03065609186887741, - "y_max": 0.6122255325317383, - "y_min": 0.25753241777420044 - }, - "confidence": 0.9999444484710693, - "label": "vehicle", - "label_id": 2 - }, - "h": 153, - "region_id": 814, - "roi_type": "vehicle", - "w": 184, - "x": 24, - "y": 111 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.26181748509407043, - "x_min": 0.019270271062850952, - "y_max": 0.6008050441741943, - "y_min": 0.25276121497154236 - }, - "confidence": 0.9999783039093018, - "label": "vehicle", - "label_id": 2 - }, - "h": 150, - "region_id": 815, - "roi_type": "vehicle", - "w": 186, - "x": 15, - "y": 109 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.252112053334713, - "x_min": 0.006787620484828949, - "y_max": 0.5942615270614624, - "y_min": 0.2512364387512207 - }, - "confidence": 0.999976396560669, - "label": "vehicle", - "label_id": 2 - }, - "h": 148, - "region_id": 816, - "roi_type": "vehicle", - "w": 188, - "x": 5, - "y": 109 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24557729065418243, - "x_min": 0.0038529038429260254, - "y_max": 0.5852656960487366, - "y_min": 0.2511763572692871 - }, - "confidence": 0.999962568283081, - "label": "vehicle", - "label_id": 2 - }, - "h": 144, - "region_id": 817, - "roi_type": "vehicle", - "w": 186, - "x": 3, - "y": 109 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2341841384768486, - "x_min": 0.0019001886248588562, - "y_max": 0.5771202445030212, - "y_min": 0.24817216396331787 - }, - "confidence": 0.9999908208847046, - "label": "vehicle", - "label_id": 2 - }, - "h": 142, - "region_id": 818, - "roi_type": "vehicle", - "w": 178, - "x": 1, - "y": 107 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2240803837776184, - "x_min": 0.0006275177001953125, - "y_max": 0.5654965043067932, - "y_min": 0.2458530068397522 - }, - "confidence": 0.9999959468841553, - "label": "vehicle", - "label_id": 2 - }, - "h": 138, - "region_id": 819, - "roi_type": "vehicle", - "w": 172, - "x": 0, - "y": 106 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.9729481935501099, - "x_min": 0.39751899242401123, - "y_max": 0.7704345881938934, - "y_min": 0.06877526640892029 - }, - "confidence": 0.502589762210846, - "label": "vehicle", - "label_id": 2 - }, - "h": 303, - "region_id": 820, - "roi_type": "vehicle", - "w": 442, - "x": 305, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.21542106568813324, - "x_min": 0.0, - "y_max": 0.5575774163007736, - "y_min": 0.24282817542552948 - }, - "confidence": 0.9999918937683105, - "label": "vehicle", - "label_id": 2 - }, - "h": 136, - "region_id": 821, - "roi_type": "vehicle", - "w": 165, - "x": 0, - "y": 105 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.976471871137619, - "x_min": 0.3866901099681854, - "y_max": 0.8177506625652313, - "y_min": 0.04834529757499695 - }, - "confidence": 0.5300043821334839, - "label": "vehicle", - "label_id": 2 - }, - "h": 332, - "region_id": 822, - "roi_type": "vehicle", - "w": 453, - "x": 297, - "y": 21 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 17916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.20652533322572708, - "x_min": 0.0, - "y_max": 0.5523457378149033, - "y_min": 0.2393653243780136 - }, - "confidence": 0.9999760389328003, - "label": "vehicle", - "label_id": 2 - }, - "h": 135, - "region_id": 823, - "roi_type": "vehicle", - "w": 159, - "x": 0, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19814255833625793, - "x_min": 9.648501873016357e-05, - "y_max": 0.5438297837972641, - "y_min": 0.23729966580867767 - }, - "confidence": 0.99991774559021, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 824, - "roi_type": "vehicle", - "w": 152, - "x": 0, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.18656978011131287, - "x_min": 0.0002609342336654663, - "y_max": 0.5406333208084106, - "y_min": 0.2289218008518219 - }, - "confidence": 0.999891996383667, - "label": "vehicle", - "label_id": 2 - }, - "h": 135, - "region_id": 825, - "roi_type": "vehicle", - "w": 143, - "x": 0, - "y": 99 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1747794672846794, - "x_min": 0.0019946321845054626, - "y_max": 0.5303715318441391, - "y_min": 0.22543703019618988 - }, - "confidence": 0.9990342855453491, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 826, - "roi_type": "vehicle", - "w": 133, - "x": 2, - "y": 97 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.16638851165771484, - "x_min": 0.0, - "y_max": 0.5288656949996948, - "y_min": 0.22173666954040527 - }, - "confidence": 0.9978117346763611, - "label": "vehicle", - "label_id": 2 - }, - "h": 133, - "region_id": 827, - "roi_type": "vehicle", - "w": 128, - "x": 0, - "y": 96 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1586654633283615, - "x_min": 0.0, - "y_max": 0.5260069370269775, - "y_min": 0.22341126203536987 - }, - "confidence": 0.996907651424408, - "label": "vehicle", - "label_id": 2 - }, - "h": 131, - "region_id": 828, - "roi_type": "vehicle", - "w": 122, - "x": 0, - "y": 97 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.14424733817577362, - "x_min": 0.00047084689140319824, - "y_max": 0.5235310196876526, - "y_min": 0.2236045002937317 - }, - "confidence": 0.990739107131958, - "label": "vehicle", - "label_id": 2 - }, - "h": 130, - "region_id": 829, - "roi_type": "vehicle", - "w": 110, - "x": 0, - "y": 97 - }, - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.11542642116546631, - "y_max": 0.9303589761257172, - "y_min": 0.03653082251548767 - }, - "confidence": 0.5644874572753906, - "label": "vehicle", - "label_id": 2 - }, - "h": 386, - "region_id": 830, - "roi_type": "vehicle", - "w": 679, - "x": 89, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.13115231692790985, - "x_min": 0.001265600323677063, - "y_max": 0.5229741334915161, - "y_min": 0.23199278116226196 - }, - "confidence": 0.880063533782959, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 831, - "roi_type": "vehicle", - "w": 100, - "x": 1, - "y": 100 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.12498544156551361, - "x_min": 0.0, - "y_max": 0.5163313150405884, - "y_min": 0.24239197373390198 - }, - "confidence": 0.7448704838752747, - "label": "vehicle", - "label_id": 2 - }, - "h": 118, - "region_id": 832, - "roi_type": "vehicle", - "w": 96, - "x": 0, - "y": 105 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11168627813458443, - "x_min": 0.0006903596222400665, - "y_max": 0.5155524462461472, - "y_min": 0.2402338832616806 - }, - "confidence": 0.8874063491821289, - "label": "vehicle", - "label_id": 2 - }, - "h": 119, - "region_id": 833, - "roi_type": "vehicle", - "w": 85, - "x": 1, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.0992303378880024, - "x_min": 0.0013336129486560822, - "y_max": 0.5189979821443558, - "y_min": 0.2373378425836563 - }, - "confidence": 0.6848468780517578, - "label": "vehicle", - "label_id": 2 - }, - "h": 122, - "region_id": 834, - "roi_type": "vehicle", - "w": 75, - "x": 1, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.0881464034318924, - "x_min": 0.0, - "y_max": 0.5184168815612793, - "y_min": 0.23750647902488708 - }, - "confidence": 0.5477973818778992, - "label": "vehicle", - "label_id": 2 - }, - "h": 121, - "region_id": 835, - "roi_type": "vehicle", - "w": 68, - "x": 0, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 18916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07822683081030846, - "x_min": 0.0, - "y_max": 0.5102934092283249, - "y_min": 0.23988066613674164 - }, - "confidence": 0.7760416269302368, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 836, - "roi_type": "vehicle", - "w": 60, - "x": 0, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06671494990587234, - "x_min": 0.000488772988319397, - "y_max": 0.5063621252775192, - "y_min": 0.2407311648130417 - }, - "confidence": 0.7211974859237671, - "label": "vehicle", - "label_id": 2 - }, - "h": 115, - "region_id": 837, - "roi_type": "vehicle", - "w": 51, - "x": 0, - "y": 104 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.058564458042383194, - "x_min": 0.00125909224152565, - "y_max": 0.49973833560943604, - "y_min": 0.25012868642807007 - }, - "confidence": 0.7428480982780457, - "label": "vehicle", - "label_id": 2 - }, - "h": 108, - "region_id": 838, - "roi_type": "vehicle", - "w": 44, - "x": 1, - "y": 108 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.047039588913321495, - "x_min": 0.0021373387426137924, - "y_max": 0.4919121265411377, - "y_min": 0.27300935983657837 - }, - "confidence": 0.5740194916725159, - "label": "vehicle", - "label_id": 2 - }, - "h": 95, - "region_id": 839, - "roi_type": "vehicle", - "w": 34, - "x": 2, - "y": 118 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.03855086490511894, - "x_min": 0.0, - "y_max": 0.48962897062301636, - "y_min": 0.2736286520957947 - }, - "confidence": 0.5253965258598328, - "label": "vehicle", - "label_id": 2 - }, - "h": 93, - "region_id": 840, - "roi_type": "vehicle", - "w": 30, - "x": 0, - "y": 118 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 19333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9342341423034668, - "x_min": 0.04731488227844238, - "y_max": 0.9905591607093811, - "y_min": 0.005247056484222412 - }, - "confidence": 0.5478420257568359, - "label": "vehicle", - "label_id": 2 - }, - "h": 426, - "region_id": 847, - "roi_type": "vehicle", - "w": 681, - "x": 36, - "y": 2 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9340737760066986, - "x_min": 0.05626162886619568, - "y_max": 0.9993133544921875, - "y_min": 0.0 - }, - "confidence": 0.5252710580825806, - "label": "vehicle", - "label_id": 2 - }, - "h": 432, - "region_id": 849, - "roi_type": "vehicle", - "w": 674, - "x": 43, - "y": 0 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9431893527507782, - "x_min": 0.05145809054374695, - "y_max": 0.989135354757309, - "y_min": 0.0 - }, - "confidence": 0.5604482889175415, - "label": "vehicle", - "label_id": 2 - }, - "h": 427, - "region_id": 848, - "roi_type": "vehicle", - "w": 685, - "x": 40, - "y": 0 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9341987669467926, - "x_min": 0.048943787813186646, - "y_max": 0.951789140701294, - "y_min": 0.0 - }, - "confidence": 0.5412704348564148, - "label": "vehicle", - "label_id": 2 - }, - "h": 411, - "region_id": 850, - "roi_type": "vehicle", - "w": 680, - "x": 38, - "y": 0 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 26916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9681794941425323, - "x_min": 0.2243988811969757, - "y_max": 0.7959917783737183, - "y_min": 0.0800011157989502 - }, - "confidence": 0.6512565016746521, - "label": "vehicle", - "label_id": 2 - }, - "h": 309, - "region_id": 851, - "roi_type": "vehicle", - "w": 571, - "x": 172, - "y": 35 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 27333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 1.0, - "x_min": 0.11086827516555786, - "y_max": 0.922165036201477, - "y_min": 0.02447342872619629 - }, - "confidence": 0.5428391098976135, - "label": "vehicle", - "label_id": 2 - }, - "h": 388, - "region_id": 852, - "roi_type": "vehicle", - "w": 683, - "x": 85, - "y": 11 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 28166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9668256342411041, - "x_min": 0.04019823670387268, - "y_max": 1.0, - "y_min": 0.018688559532165527 - }, - "confidence": 0.5183817744255066, - "label": "vehicle", - "label_id": 2 - }, - "h": 424, - "region_id": 855, - "roi_type": "vehicle", - "w": 712, - "x": 31, - "y": 8 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 28916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.05809924565255642, - "x_min": 0.0035658013075590134, - "y_max": 0.2681969404220581, - "y_min": 0.09560385346412659 - }, - "confidence": 0.7589452266693115, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 864, - "roi_type": "person", - "w": 42, - "x": 3, - "y": 41 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06384262442588806, - "x_min": 0.00795700028538704, - "y_max": 0.274237722158432, - "y_min": 0.10187298059463501 - }, - "confidence": 0.7985605001449585, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 863, - "roi_type": "person", - "w": 43, - "x": 6, - "y": 44 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07437353581190109, - "x_min": 0.015382565557956696, - "y_max": 0.2672903537750244, - "y_min": 0.09030728042125702 - }, - "confidence": 0.8939861059188843, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 865, - "roi_type": "person", - "w": 45, - "x": 12, - "y": 39 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06839279271662235, - "x_min": 0.02236810512840748, - "y_max": 0.26446550339460373, - "y_min": 0.09259640425443649 - }, - "confidence": 0.9461692571640015, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 866, - "roi_type": "person", - "w": 35, - "x": 17, - "y": 40 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06265866011381149, - "x_min": 0.028456948697566986, - "y_max": 0.26319263130426407, - "y_min": 0.08769587427377701 - }, - "confidence": 0.7030306458473206, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 867, - "roi_type": "person", - "w": 26, - "x": 22, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 40916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07015543431043625, - "x_min": 0.03897448629140854, - "y_max": 0.27089253067970276, - "y_min": 0.0872945785522461 - }, - "confidence": 0.8550819754600525, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 868, - "roi_type": "person", - "w": 24, - "x": 30, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.08978050947189331, - "x_min": 0.045074041932821274, - "y_max": 0.26029663532972336, - "y_min": 0.08790364116430283 - }, - "confidence": 0.977258026599884, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 869, - "roi_type": "person", - "w": 34, - "x": 35, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.10240231454372406, - "x_min": 0.05025818943977356, - "y_max": 0.2617960497736931, - "y_min": 0.08916287869215012 - }, - "confidence": 0.9634846448898315, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 870, - "roi_type": "person", - "w": 40, - "x": 39, - "y": 39 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11237835884094238, - "x_min": 0.05571077764034271, - "y_max": 0.2656613886356354, - "y_min": 0.08681020140647888 - }, - "confidence": 0.9638310074806213, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 871, - "roi_type": "person", - "w": 44, - "x": 43, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11509418487548828, - "x_min": 0.05989537760615349, - "y_max": 0.2609396353363991, - "y_min": 0.0872638002038002 - }, - "confidence": 0.9589013457298279, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 872, - "roi_type": "person", - "w": 42, - "x": 46, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.10801342129707336, - "x_min": 0.06892828643321991, - "y_max": 0.25731702893972397, - "y_min": 0.08888208121061325 - }, - "confidence": 0.7473635673522949, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 873, - "roi_type": "person", - "w": 30, - "x": 53, - "y": 38 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11594519764184952, - "x_min": 0.08451759070158005, - "y_max": 0.2598235011100769, - "y_min": 0.08372171223163605 - }, - "confidence": 0.9428688287734985, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 874, - "roi_type": "person", - "w": 24, - "x": 65, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.14308206737041473, - "x_min": 0.08935529738664627, - "y_max": 0.25856077671051025, - "y_min": 0.08275482058525085 - }, - "confidence": 0.9797749519348145, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 875, - "roi_type": "person", - "w": 41, - "x": 69, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15327736735343933, - "x_min": 0.09761053323745728, - "y_max": 0.25556156039237976, - "y_min": 0.08270090818405151 - }, - "confidence": 0.9193064570426941, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 876, - "roi_type": "person", - "w": 43, - "x": 75, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15708915889263153, - "x_min": 0.0971888080239296, - "y_max": 0.2538744807243347, - "y_min": 0.08122579753398895 - }, - "confidence": 0.9810742735862732, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 877, - "roi_type": "person", - "w": 46, - "x": 75, - "y": 35 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15849237143993378, - "x_min": 0.10766854137182236, - "y_max": 0.2546975612640381, - "y_min": 0.07851302623748779 - }, - "confidence": 0.9863013029098511, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 878, - "roi_type": "person", - "w": 39, - "x": 83, - "y": 34 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 41916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1490345448255539, - "x_min": 0.11753658950328827, - "y_max": 0.2580205798149109, - "y_min": 0.07362674176692963 - }, - "confidence": 0.9098010659217834, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 879, - "roi_type": "person", - "w": 24, - "x": 90, - "y": 32 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.15783964097499847, - "x_min": 0.13124407827854156, - "y_max": 0.250785730779171, - "y_min": 0.08267312496900558 - }, - "confidence": 0.5655203461647034, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 880, - "roi_type": "person", - "w": 20, - "x": 101, - "y": 36 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1712721586227417, - "x_min": 0.13269367814064026, - "y_max": 0.2533987760543823, - "y_min": 0.07122509181499481 - }, - "confidence": 0.9201217293739319, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 881, - "roi_type": "person", - "w": 30, - "x": 102, - "y": 31 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.1888122260570526, - "x_min": 0.1387018859386444, - "y_max": 0.24816679954528809, - "y_min": 0.06929013133049011 - }, - "confidence": 0.9727067947387695, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 882, - "roi_type": "person", - "w": 38, - "x": 107, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19876965880393982, - "x_min": 0.14241483807563782, - "y_max": 0.24410225450992584, - "y_min": 0.0699552446603775 - }, - "confidence": 0.9352012872695923, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 883, - "roi_type": "person", - "w": 43, - "x": 109, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19850021600723267, - "x_min": 0.14565402269363403, - "y_max": 0.24200065433979034, - "y_min": 0.0673425942659378 - }, - "confidence": 0.9604578614234924, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 884, - "roi_type": "person", - "w": 41, - "x": 112, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19670462608337402, - "x_min": 0.15936705470085144, - "y_max": 0.24713710695505142, - "y_min": 0.06951308995485306 - }, - "confidence": 0.9338949918746948, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 885, - "roi_type": "person", - "w": 29, - "x": 122, - "y": 30 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.19646278023719788, - "x_min": 0.1669870913028717, - "y_max": 0.24654807895421982, - "y_min": 0.05969580262899399 - }, - "confidence": 0.8135907649993896, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 886, - "roi_type": "person", - "w": 23, - "x": 128, - "y": 26 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.20714330673217773, - "x_min": 0.17688614130020142, - "y_max": 0.24033690989017487, - "y_min": 0.06553764641284943 - }, - "confidence": 0.8666298985481262, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 887, - "roi_type": "person", - "w": 23, - "x": 136, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.228765070438385, - "x_min": 0.17733928561210632, - "y_max": 0.23425962775945663, - "y_min": 0.06545140594244003 - }, - "confidence": 0.9463271498680115, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 888, - "roi_type": "person", - "w": 39, - "x": 136, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23787564039230347, - "x_min": 0.18617358803749084, - "y_max": 0.23289936035871506, - "y_min": 0.06733795255422592 - }, - "confidence": 0.8577978610992432, - "label": "person", - "label_id": 1 - }, - "h": 72, - "region_id": 889, - "roi_type": "person", - "w": 40, - "x": 143, - "y": 29 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24495278298854828, - "x_min": 0.18914856016635895, - "y_max": 0.22868915647268295, - "y_min": 0.0633026584982872 - }, - "confidence": 0.940249502658844, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 890, - "roi_type": "person", - "w": 43, - "x": 145, - "y": 27 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 42916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2437451332807541, - "x_min": 0.19896607100963593, - "y_max": 0.22477787733078003, - "y_min": 0.06456568837165833 - }, - "confidence": 0.9167728424072266, - "label": "person", - "label_id": 1 - }, - "h": 69, - "region_id": 891, - "roi_type": "person", - "w": 34, - "x": 153, - "y": 28 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23920002579689026, - "x_min": 0.2088455855846405, - "y_max": 0.23159783333539963, - "y_min": 0.05086781829595566 - }, - "confidence": 0.7405933737754822, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 892, - "roi_type": "person", - "w": 23, - "x": 160, - "y": 22 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24580715596675873, - "x_min": 0.21504561603069305, - "y_max": 0.22459033876657486, - "y_min": 0.04561013728380203 - }, - "confidence": 0.8077885508537292, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 893, - "roi_type": "person", - "w": 24, - "x": 165, - "y": 20 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.258386492729187, - "x_min": 0.2212424874305725, - "y_max": 0.22196874022483826, - "y_min": 0.04270258545875549 - }, - "confidence": 0.9389496445655823, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 894, - "roi_type": "person", - "w": 29, - "x": 170, - "y": 18 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.26862120628356934, - "x_min": 0.22306446731090546, - "y_max": 0.22240334004163742, - "y_min": 0.03721361607313156 - }, - "confidence": 0.8532379269599915, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 895, - "roi_type": "person", - "w": 35, - "x": 171, - "y": 16 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27878499031066895, - "x_min": 0.2256825715303421, - "y_max": 0.2186889424920082, - "y_min": 0.04378647357225418 - }, - "confidence": 0.9401503205299377, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 896, - "roi_type": "person", - "w": 41, - "x": 173, - "y": 19 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2782132923603058, - "x_min": 0.22981300950050354, - "y_max": 0.21300850808620453, - "y_min": 0.040484681725502014 - }, - "confidence": 0.89540034532547, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 897, - "roi_type": "person", - "w": 37, - "x": 176, - "y": 17 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27863311767578125, - "x_min": 0.2395809292793274, - "y_max": 0.2115735486149788, - "y_min": 0.02666909247636795 - }, - "confidence": 0.5580114722251892, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 898, - "roi_type": "person", - "w": 30, - "x": 184, - "y": 12 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.284572035074234, - "x_min": 0.2544802129268646, - "y_max": 0.21495239436626434, - "y_min": 0.026290133595466614 - }, - "confidence": 0.8008325695991516, - "label": "person", - "label_id": 1 - }, - "h": 82, - "region_id": 899, - "roi_type": "person", - "w": 23, - "x": 195, - "y": 11 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2907462418079376, - "x_min": 0.2599877417087555, - "y_max": 0.2078927382826805, - "y_min": 0.02282419055700302 - }, - "confidence": 0.8385707139968872, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 900, - "roi_type": "person", - "w": 24, - "x": 200, - "y": 10 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.30755069851875305, - "x_min": 0.265642374753952, - "y_max": 0.19290900975465775, - "y_min": 0.022242017090320587 - }, - "confidence": 0.9778803586959839, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 901, - "roi_type": "person", - "w": 32, - "x": 204, - "y": 10 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31079012155532837, - "x_min": 0.26772522926330566, - "y_max": 0.19722387939691544, - "y_min": 0.023035772144794464 - }, - "confidence": 0.965428352355957, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 902, - "roi_type": "person", - "w": 33, - "x": 206, - "y": 10 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.29563242197036743, - "x_min": 0.10331843793392181, - "y_max": 1.0, - "y_min": 0.8515569567680359 - }, - "confidence": 0.7615050673484802, - "label": "vehicle", - "label_id": 2 - }, - "h": 64, - "region_id": 903, - "roi_type": "vehicle", - "w": 148, - "x": 79, - "y": 368 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 43916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31590598821640015, - "x_min": 0.2741117477416992, - "y_max": 0.18277175724506378, - "y_min": 0.01914268732070923 - }, - "confidence": 0.9806784987449646, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 904, - "roi_type": "person", - "w": 32, - "x": 211, - "y": 8 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.30253520607948303, - "x_min": 0.08773636817932129, - "y_max": 1.0, - "y_min": 0.8262225389480591 - }, - "confidence": 0.908382773399353, - "label": "vehicle", - "label_id": 2 - }, - "h": 75, - "region_id": 905, - "roi_type": "vehicle", - "w": 165, - "x": 67, - "y": 357 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3163120448589325, - "x_min": 0.27949169278144836, - "y_max": 0.18241427838802338, - "y_min": 0.00963611900806427 - }, - "confidence": 0.8560532331466675, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 906, - "roi_type": "person", - "w": 28, - "x": 215, - "y": 4 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.30715903639793396, - "x_min": 0.08984959125518799, - "y_max": 1.0, - "y_min": 0.7983192205429077 - }, - "confidence": 0.9688752293586731, - "label": "vehicle", - "label_id": 2 - }, - "h": 87, - "region_id": 907, - "roi_type": "vehicle", - "w": 167, - "x": 69, - "y": 345 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31996291875839233, - "x_min": 0.28390347957611084, - "y_max": 0.17544174194335938, - "y_min": 0.002514079213142395 - }, - "confidence": 0.9317658543586731, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 908, - "roi_type": "person", - "w": 28, - "x": 218, - "y": 1 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3178534582257271, - "x_min": 0.09327427297830582, - "y_max": 0.9961552023887634, - "y_min": 0.7738481163978577 - }, - "confidence": 0.9980049729347229, - "label": "vehicle", - "label_id": 2 - }, - "h": 96, - "region_id": 909, - "roi_type": "vehicle", - "w": 172, - "x": 72, - "y": 334 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3244977593421936, - "x_min": 0.29137325286865234, - "y_max": 0.18117786198854446, - "y_min": 0.0 - }, - "confidence": 0.929945707321167, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 910, - "roi_type": "person", - "w": 25, - "x": 224, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3211563155055046, - "x_min": 0.09341170638799667, - "y_max": 0.9977254271507263, - "y_min": 0.7558173537254333 - }, - "confidence": 0.9959222078323364, - "label": "vehicle", - "label_id": 2 - }, - "h": 105, - "region_id": 911, - "roi_type": "vehicle", - "w": 175, - "x": 72, - "y": 327 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33760935068130493, - "x_min": 0.2969669699668884, - "y_max": 0.1680586338043213, - "y_min": 0.0 - }, - "confidence": 0.9743756055831909, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 912, - "roi_type": "person", - "w": 31, - "x": 228, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.32524099946022034, - "x_min": 0.09379330277442932, - "y_max": 0.9987420439720154, - "y_min": 0.7281789183616638 - }, - "confidence": 0.9982353448867798, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 913, - "roi_type": "vehicle", - "w": 178, - "x": 72, - "y": 315 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3412308692932129, - "x_min": 0.2997239828109741, - "y_max": 0.1591828167438507, - "y_min": 0.0 - }, - "confidence": 0.9657355546951294, - "label": "person", - "label_id": 1 - }, - "h": 69, - "region_id": 914, - "roi_type": "person", - "w": 32, - "x": 230, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3318568468093872, - "x_min": 0.0938652902841568, - "y_max": 0.9967383742332458, - "y_min": 0.7049053311347961 - }, - "confidence": 0.9962289929389954, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 915, - "roi_type": "vehicle", - "w": 183, - "x": 72, - "y": 305 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3466411232948303, - "x_min": 0.3028194308280945, - "y_max": 0.15620925277471542, - "y_min": 0.0 - }, - "confidence": 0.9846485257148743, - "label": "person", - "label_id": 1 - }, - "h": 67, - "region_id": 916, - "roi_type": "person", - "w": 34, - "x": 233, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.33956659585237503, - "x_min": 0.08993614464998245, - "y_max": 0.9996479749679565, - "y_min": 0.6784218549728394 - }, - "confidence": 0.9955138564109802, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "region_id": 917, - "roi_type": "vehicle", - "w": 192, - "x": 69, - "y": 293 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34522512555122375, - "x_min": 0.3090610206127167, - "y_max": 0.15079191327095032, - "y_min": 0.0 - }, - "confidence": 0.944502055644989, - "label": "person", - "label_id": 1 - }, - "h": 65, - "region_id": 918, - "roi_type": "person", - "w": 28, - "x": 237, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3419874384999275, - "x_min": 0.09411356598138809, - "y_max": 1.0, - "y_min": 0.6525992155075073 - }, - "confidence": 0.9987126588821411, - "label": "vehicle", - "label_id": 2 - }, - "h": 150, - "region_id": 919, - "roi_type": "vehicle", - "w": 190, - "x": 72, - "y": 282 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3481338918209076, - "x_min": 0.3160833418369293, - "y_max": 0.14550428092479706, - "y_min": 0.0 - }, - "confidence": 0.9637501835823059, - "label": "person", - "label_id": 1 - }, - "h": 63, - "region_id": 920, - "roi_type": "person", - "w": 25, - "x": 243, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.34435366839170456, - "x_min": 0.09984951466321945, - "y_max": 0.9990872144699097, - "y_min": 0.6355067491531372 - }, - "confidence": 0.9971873164176941, - "label": "vehicle", - "label_id": 2 - }, - "h": 157, - "region_id": 921, - "roi_type": "vehicle", - "w": 188, - "x": 77, - "y": 275 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3530542850494385, - "x_min": 0.3201481103897095, - "y_max": 0.14842258393764496, - "y_min": 0.0 - }, - "confidence": 0.8752260804176331, - "label": "person", - "label_id": 1 - }, - "h": 64, - "region_id": 922, - "roi_type": "person", - "w": 25, - "x": 246, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.34952477365732193, - "x_min": 0.1070857122540474, - "y_max": 1.0, - "y_min": 0.6191878318786621 - }, - "confidence": 0.9986199140548706, - "label": "vehicle", - "label_id": 2 - }, - "h": 165, - "region_id": 923, - "roi_type": "vehicle", - "w": 186, - "x": 82, - "y": 267 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35819560289382935, - "x_min": 0.3240785002708435, - "y_max": 0.1449350342154503, - "y_min": 0.0 - }, - "confidence": 0.7914345860481262, - "label": "person", - "label_id": 1 - }, - "h": 63, - "region_id": 924, - "roi_type": "person", - "w": 26, - "x": 249, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.35786715149879456, - "x_min": 0.11816439032554626, - "y_max": 0.9963029623031616, - "y_min": 0.5943844318389893 - }, - "confidence": 0.9954742789268494, - "label": "vehicle", - "label_id": 2 - }, - "h": 174, - "region_id": 925, - "roi_type": "vehicle", - "w": 184, - "x": 91, - "y": 257 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36160674691200256, - "x_min": 0.3288991153240204, - "y_max": 0.14174100011587143, - "y_min": 0.0 - }, - "confidence": 0.619408369064331, - "label": "person", - "label_id": 1 - }, - "h": 61, - "region_id": 926, - "roi_type": "person", - "w": 25, - "x": 253, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.356850802898407, - "x_min": 0.11790120601654053, - "y_max": 0.9961073994636536, - "y_min": 0.5718067288398743 - }, - "confidence": 0.994742751121521, - "label": "vehicle", - "label_id": 2 - }, - "h": 183, - "region_id": 927, - "roi_type": "vehicle", - "w": 184, - "x": 91, - "y": 247 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 44916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36447739601135254, - "x_min": 0.33208173513412476, - "y_max": 0.14312617480754852, - "y_min": 0.0 - }, - "confidence": 0.8804531693458557, - "label": "person", - "label_id": 1 - }, - "h": 62, - "region_id": 928, - "roi_type": "person", - "w": 25, - "x": 255, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.3610100597143173, - "x_min": 0.10920797288417816, - "y_max": 1.0, - "y_min": 0.551466703414917 - }, - "confidence": 0.9975082874298096, - "label": "vehicle", - "label_id": 2 - }, - "h": 194, - "region_id": 929, - "roi_type": "vehicle", - "w": 193, - "x": 84, - "y": 238 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3689320981502533, - "x_min": 0.33504197001457214, - "y_max": 0.13094882667064667, - "y_min": 0.0 - }, - "confidence": 0.5245118141174316, - "label": "person", - "label_id": 1 - }, - "h": 57, - "region_id": 930, - "roi_type": "person", - "w": 26, - "x": 257, - "y": 0 - }, - { - "detection": { - "bounding_box": { - "x_max": 0.36274421215057373, - "x_min": 0.11731858551502228, - "y_max": 1.0, - "y_min": 0.533694863319397 - }, - "confidence": 0.9914776682853699, - "label": "vehicle", - "label_id": 2 - }, - "h": 201, - "region_id": 931, - "roi_type": "vehicle", - "w": 188, - "x": 90, - "y": 231 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36594102531671524, - "x_min": 0.11780119687318802, - "y_max": 1.0, - "y_min": 0.518149197101593 - }, - "confidence": 0.9818967580795288, - "label": "vehicle", - "label_id": 2 - }, - "h": 208, - "region_id": 932, - "roi_type": "vehicle", - "w": 191, - "x": 90, - "y": 224 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3604143485426903, - "x_min": 0.11885427683591843, - "y_max": 1.0, - "y_min": 0.5062890648841858 - }, - "confidence": 0.9770737290382385, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "region_id": 933, - "roi_type": "vehicle", - "w": 186, - "x": 91, - "y": 219 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.35873663425445557, - "x_min": 0.12577949464321136, - "y_max": 1.0, - "y_min": 0.4875483214855194 - }, - "confidence": 0.9604215621948242, - "label": "vehicle", - "label_id": 2 - }, - "h": 221, - "region_id": 934, - "roi_type": "vehicle", - "w": 179, - "x": 97, - "y": 211 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3681987524032593, - "x_min": 0.1324247121810913, - "y_max": 1.0, - "y_min": 0.4729744493961334 - }, - "confidence": 0.9679283499717712, - "label": "vehicle", - "label_id": 2 - }, - "h": 228, - "region_id": 935, - "roi_type": "vehicle", - "w": 181, - "x": 102, - "y": 204 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.37145915627479553, - "x_min": 0.13698622584342957, - "y_max": 0.9822671115398407, - "y_min": 0.45337817072868347 - }, - "confidence": 0.9909036755561829, - "label": "vehicle", - "label_id": 2 - }, - "h": 228, - "region_id": 936, - "roi_type": "vehicle", - "w": 180, - "x": 105, - "y": 196 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3607513904571533, - "x_min": 0.1460217386484146, - "y_max": 0.9427908658981323, - "y_min": 0.44225311279296875 - }, - "confidence": 0.9961795806884766, - "label": "vehicle", - "label_id": 2 - }, - "h": 216, - "region_id": 937, - "roi_type": "vehicle", - "w": 165, - "x": 112, - "y": 191 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36652737855911255, - "x_min": 0.15879414975643158, - "y_max": 0.935760110616684, - "y_min": 0.4156017005443573 - }, - "confidence": 0.9988160133361816, - "label": "vehicle", - "label_id": 2 - }, - "h": 225, - "region_id": 938, - "roi_type": "vehicle", - "w": 160, - "x": 122, - "y": 180 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36519181728363037, - "x_min": 0.16240549087524414, - "y_max": 0.9030637443065643, - "y_min": 0.3991294801235199 - }, - "confidence": 0.99962317943573, - "label": "vehicle", - "label_id": 2 - }, - "h": 218, - "region_id": 939, - "roi_type": "vehicle", - "w": 156, - "x": 125, - "y": 172 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3651779890060425, - "x_min": 0.17351627349853516, - "y_max": 0.879246711730957, - "y_min": 0.3837733566761017 - }, - "confidence": 0.9997884631156921, - "label": "vehicle", - "label_id": 2 - }, - "h": 214, - "region_id": 940, - "roi_type": "vehicle", - "w": 147, - "x": 133, - "y": 166 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3610609471797943, - "x_min": 0.17901268601417542, - "y_max": 0.8557635545730591, - "y_min": 0.36366546154022217 - }, - "confidence": 0.9998449087142944, - "label": "vehicle", - "label_id": 2 - }, - "h": 213, - "region_id": 941, - "roi_type": "vehicle", - "w": 140, - "x": 137, - "y": 157 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 45916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3628588616847992, - "x_min": 0.18275156617164612, - "y_max": 0.8229827284812927, - "y_min": 0.3428630232810974 - }, - "confidence": 0.9999336004257202, - "label": "vehicle", - "label_id": 2 - }, - "h": 207, - "region_id": 942, - "roi_type": "vehicle", - "w": 138, - "x": 140, - "y": 148 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.36020204424858093, - "x_min": 0.189069002866745, - "y_max": 0.7855887413024902, - "y_min": 0.3225172758102417 - }, - "confidence": 0.9999699592590332, - "label": "vehicle", - "label_id": 2 - }, - "h": 200, - "region_id": 943, - "roi_type": "vehicle", - "w": 131, - "x": 145, - "y": 139 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3588583469390869, - "x_min": 0.19048963487148285, - "y_max": 0.7667083740234375, - "y_min": 0.3120533227920532 - }, - "confidence": 0.9999749660491943, - "label": "vehicle", - "label_id": 2 - }, - "h": 196, - "region_id": 944, - "roi_type": "vehicle", - "w": 129, - "x": 146, - "y": 135 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.354780912399292, - "x_min": 0.19472241401672363, - "y_max": 0.7405030131340027, - "y_min": 0.29147499799728394 - }, - "confidence": 0.9999440908432007, - "label": "vehicle", - "label_id": 2 - }, - "h": 194, - "region_id": 945, - "roi_type": "vehicle", - "w": 123, - "x": 150, - "y": 126 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3499932885169983, - "x_min": 0.1945403814315796, - "y_max": 0.7187594175338745, - "y_min": 0.27680015563964844 - }, - "confidence": 0.9998922348022461, - "label": "vehicle", - "label_id": 2 - }, - "h": 191, - "region_id": 946, - "roi_type": "vehicle", - "w": 119, - "x": 149, - "y": 120 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.345708429813385, - "x_min": 0.20007973909378052, - "y_max": 0.6881218552589417, - "y_min": 0.2653037905693054 - }, - "confidence": 0.9998040795326233, - "label": "vehicle", - "label_id": 2 - }, - "h": 183, - "region_id": 947, - "roi_type": "vehicle", - "w": 112, - "x": 154, - "y": 115 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3446749746799469, - "x_min": 0.19982746243476868, - "y_max": 0.6525393128395081, - "y_min": 0.25481295585632324 - }, - "confidence": 0.9998615980148315, - "label": "vehicle", - "label_id": 2 - }, - "h": 172, - "region_id": 948, - "roi_type": "vehicle", - "w": 111, - "x": 153, - "y": 110 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.34181278944015503, - "x_min": 0.1947338730096817, - "y_max": 0.6376240253448486, - "y_min": 0.23916593194007874 - }, - "confidence": 0.9997871518135071, - "label": "vehicle", - "label_id": 2 - }, - "h": 172, - "region_id": 949, - "roi_type": "vehicle", - "w": 113, - "x": 150, - "y": 103 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33886438608169556, - "x_min": 0.19013744592666626, - "y_max": 0.630878210067749, - "y_min": 0.22272005677223206 - }, - "confidence": 0.9997004270553589, - "label": "vehicle", - "label_id": 2 - }, - "h": 176, - "region_id": 950, - "roi_type": "vehicle", - "w": 114, - "x": 146, - "y": 96 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33750563859939575, - "x_min": 0.18740475177764893, - "y_max": 0.5995770543813705, - "y_min": 0.2067357748746872 - }, - "confidence": 0.9998914003372192, - "label": "vehicle", - "label_id": 2 - }, - "h": 170, - "region_id": 951, - "roi_type": "vehicle", - "w": 115, - "x": 144, - "y": 89 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3318178355693817, - "x_min": 0.17809423804283142, - "y_max": 0.5778812617063522, - "y_min": 0.19000540673732758 - }, - "confidence": 0.9998241066932678, - "label": "vehicle", - "label_id": 2 - }, - "h": 168, - "region_id": 952, - "roi_type": "vehicle", - "w": 118, - "x": 137, - "y": 82 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3320658802986145, - "x_min": 0.16782958805561066, - "y_max": 0.5662892013788223, - "y_min": 0.17552168667316437 - }, - "confidence": 0.9969956874847412, - "label": "vehicle", - "label_id": 2 - }, - "h": 169, - "region_id": 953, - "roi_type": "vehicle", - "w": 126, - "x": 129, - "y": 76 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 46916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.33100447058677673, - "x_min": 0.15877380967140198, - "y_max": 0.5364058762788773, - "y_min": 0.16238071024417877 - }, - "confidence": 0.99989914894104, - "label": "vehicle", - "label_id": 2 - }, - "h": 162, - "region_id": 954, - "roi_type": "vehicle", - "w": 132, - "x": 122, - "y": 70 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.32596278190612793, - "x_min": 0.14729291200637817, - "y_max": 0.515276625752449, - "y_min": 0.1573212891817093 - }, - "confidence": 0.9999929666519165, - "label": "vehicle", - "label_id": 2 - }, - "h": 155, - "region_id": 955, - "roi_type": "vehicle", - "w": 137, - "x": 113, - "y": 68 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3235020935535431, - "x_min": 0.13618576526641846, - "y_max": 0.5010691285133362, - "y_min": 0.15680623054504395 - }, - "confidence": 0.999995231628418, - "label": "vehicle", - "label_id": 2 - }, - "h": 149, - "region_id": 956, - "roi_type": "vehicle", - "w": 144, - "x": 105, - "y": 68 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31811434030532837, - "x_min": 0.12496481835842133, - "y_max": 0.4832286387681961, - "y_min": 0.1473962813615799 - }, - "confidence": 0.9999911785125732, - "label": "vehicle", - "label_id": 2 - }, - "h": 145, - "region_id": 957, - "roi_type": "vehicle", - "w": 148, - "x": 96, - "y": 64 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.31093743443489075, - "x_min": 0.10377117991447449, - "y_max": 0.4647507220506668, - "y_min": 0.14403755962848663 - }, - "confidence": 0.9999978542327881, - "label": "vehicle", - "label_id": 2 - }, - "h": 139, - "region_id": 958, - "roi_type": "vehicle", - "w": 159, - "x": 80, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.3060436174273491, - "x_min": 0.08956282585859299, - "y_max": 0.45555543899536133, - "y_min": 0.13558465242385864 - }, - "confidence": 0.9999889135360718, - "label": "vehicle", - "label_id": 2 - }, - "h": 138, - "region_id": 960, - "roi_type": "vehicle", - "w": 166, - "x": 69, - "y": 59 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.29430416971445084, - "x_min": 0.07462433725595474, - "y_max": 0.4425670653581619, - "y_min": 0.13647617399692535 - }, - "confidence": 0.9999735355377197, - "label": "vehicle", - "label_id": 2 - }, - "h": 132, - "region_id": 959, - "roi_type": "vehicle", - "w": 169, - "x": 57, - "y": 59 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2883331850171089, - "x_min": 0.06440750509500504, - "y_max": 0.42713575065135956, - "y_min": 0.1353260725736618 - }, - "confidence": 0.9999496936798096, - "label": "vehicle", - "label_id": 2 - }, - "h": 126, - "region_id": 961, - "roi_type": "vehicle", - "w": 172, - "x": 49, - "y": 58 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.28060394525527954, - "x_min": 0.04651816189289093, - "y_max": 0.4131324589252472, - "y_min": 0.13239774107933044 - }, - "confidence": 0.9999241828918457, - "label": "vehicle", - "label_id": 2 - }, - "h": 121, - "region_id": 962, - "roi_type": "vehicle", - "w": 180, - "x": 36, - "y": 57 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.27025365829467773, - "x_min": 0.031960561871528625, - "y_max": 0.40551866590976715, - "y_min": 0.1313827782869339 - }, - "confidence": 0.9999902248382568, - "label": "vehicle", - "label_id": 2 - }, - "h": 118, - "region_id": 963, - "roi_type": "vehicle", - "w": 183, - "x": 25, - "y": 57 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.25744086503982544, - "x_min": 0.018124952912330627, - "y_max": 0.3981375992298126, - "y_min": 0.12768641114234924 - }, - "confidence": 0.9999737739562988, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 964, - "roi_type": "vehicle", - "w": 184, - "x": 14, - "y": 55 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.24728649854660034, - "x_min": 0.004216700792312622, - "y_max": 0.39357995986938477, - "y_min": 0.12342596054077148 - }, - "confidence": 0.999515175819397, - "label": "vehicle", - "label_id": 2 - }, - "h": 117, - "region_id": 965, - "roi_type": "vehicle", - "w": 187, - "x": 3, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 47916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.23507947474718094, - "x_min": 0.005596168339252472, - "y_max": 0.39097075164318085, - "y_min": 0.12340514361858368 - }, - "confidence": 0.9983310103416443, - "label": "vehicle", - "label_id": 2 - }, - "h": 116, - "region_id": 966, - "roi_type": "vehicle", - "w": 176, - "x": 4, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.2247968539595604, - "x_min": 0.0017654821276664734, - "y_max": 0.38544654846191406, - "y_min": 0.12457787990570068 - }, - "confidence": 0.9997488856315613, - "label": "vehicle", - "label_id": 2 - }, - "h": 113, - "region_id": 967, - "roi_type": "vehicle", - "w": 171, - "x": 1, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.21433762460947037, - "x_min": 0.001760043203830719, - "y_max": 0.3788324445486069, - "y_min": 0.12503574788570404 - }, - "confidence": 0.99918133020401, - "label": "vehicle", - "label_id": 2 - }, - "h": 110, - "region_id": 968, - "roi_type": "vehicle", - "w": 163, - "x": 1, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.20309092104434967, - "x_min": 0.000812336802482605, - "y_max": 0.37199313193559647, - "y_min": 0.12212661653757095 - }, - "confidence": 0.9997194409370422, - "label": "vehicle", - "label_id": 2 - }, - "h": 108, - "region_id": 969, - "roi_type": "vehicle", - "w": 155, - "x": 1, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.18479624390602112, - "x_min": 0.0, - "y_max": 0.36851048469543457, - "y_min": 0.12228719890117645 - }, - "confidence": 0.9995477795600891, - "label": "vehicle", - "label_id": 2 - }, - "h": 106, - "region_id": 970, - "roi_type": "vehicle", - "w": 142, - "x": 0, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.17371168732643127, - "x_min": 0.0, - "y_max": 0.3637295439839363, - "y_min": 0.11915398389101028 - }, - "confidence": 0.9950659275054932, - "label": "vehicle", - "label_id": 2 - }, - "h": 106, - "region_id": 971, - "roi_type": "vehicle", - "w": 133, - "x": 0, - "y": 51 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.16038890928030014, - "x_min": 0.0, - "y_max": 0.35889435559511185, - "y_min": 0.12057233601808548 - }, - "confidence": 0.9822057485580444, - "label": "vehicle", - "label_id": 2 - }, - "h": 103, - "region_id": 972, - "roi_type": "vehicle", - "w": 123, - "x": 0, - "y": 52 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.14810675382614136, - "x_min": 0.0, - "y_max": 0.3565236106514931, - "y_min": 0.12085292488336563 - }, - "confidence": 0.9530163407325745, - "label": "vehicle", - "label_id": 2 - }, - "h": 102, - "region_id": 973, - "roi_type": "vehicle", - "w": 114, - "x": 0, - "y": 52 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.13574011623859406, - "x_min": 0.0, - "y_max": 0.3567161560058594, - "y_min": 0.12330581247806549 - }, - "confidence": 0.7856714129447937, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "region_id": 974, - "roi_type": "vehicle", - "w": 104, - "x": 0, - "y": 53 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.11242115125060081, - "x_min": 0.0019210241734981537, - "y_max": 0.3555034399032593, - "y_min": 0.12604720890522003 - }, - "confidence": 0.6798856258392334, - "label": "vehicle", - "label_id": 2 - }, - "h": 99, - "region_id": 975, - "roi_type": "vehicle", - "w": 85, - "x": 1, - "y": 54 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.09885178878903389, - "x_min": 0.0036434121429920197, - "y_max": 0.35827890038490295, - "y_min": 0.12642857432365417 - }, - "confidence": 0.7773285508155823, - "label": "vehicle", - "label_id": 2 - }, - "h": 100, - "region_id": 976, - "roi_type": "vehicle", - "w": 73, - "x": 3, - "y": 55 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 48916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.08784186467528343, - "x_min": 0.0017804913222789764, - "y_max": 0.3632158041000366, - "y_min": 0.12948638200759888 - }, - "confidence": 0.6258371472358704, - "label": "vehicle", - "label_id": 2 - }, - "h": 101, - "region_id": 977, - "roi_type": "vehicle", - "w": 66, - "x": 1, - "y": 56 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.07318708673119545, - "x_min": 0.004130352288484573, - "y_max": 0.35117629170417786, - "y_min": 0.14347264170646667 - }, - "confidence": 0.6314257979393005, - "label": "vehicle", - "label_id": 2 - }, - "h": 90, - "region_id": 978, - "roi_type": "vehicle", - "w": 53, - "x": 3, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.06266952492296696, - "x_min": 0.0, - "y_max": 0.3495759963989258, - "y_min": 0.14383479952812195 - }, - "confidence": 0.6896533370018005, - "label": "vehicle", - "label_id": 2 - }, - "h": 89, - "region_id": 979, - "roi_type": "vehicle", - "w": 48, - "x": 0, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.04970443993806839, - "x_min": 0.0, - "y_max": 0.34233346581459045, - "y_min": 0.14351695775985718 - }, - "confidence": 0.6430803537368774, - "label": "vehicle", - "label_id": 2 - }, - "h": 86, - "region_id": 980, - "roi_type": "vehicle", - "w": 38, - "x": 0, - "y": 62 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "tags": {}, - "timestamp": 49250000000 - } - ] -} \ No newline at end of file diff --git a/tests/test_cases/pipeline_stability/cpu/stability_object_detection_many_synchronous_trimmed_gstreamer.json b/tests/test_cases/pipeline_stability/cpu/stability_object_detection_many_synchronous_trimmed_gstreamer.json deleted file mode 100644 index 2596c51..0000000 --- a/tests/test_cases/pipeline_stability/cpu/stability_object_detection_many_synchronous_trimmed_gstreamer.json +++ /dev/null @@ -1,1618 +0,0 @@ -{ - "options": { - "max_running_pipelines": 1 - }, - "pipeline": { - "name": "object_detection", - "version": "person_vehicle_bike" - }, - "request": { - "source": { - "type": "uri", - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4" - }, - "destination": { - "type": "file", - "path": "/tmp/object_detection_results.json", - "format": "json-lines" - }, - "parameters": { - "detection-model-instance-id": "stability1" - } - }, - "stability_duration": 10800, - "relaunch_on_complete": true, - "numerical_tolerance": 0.01, - "result": [ - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7448995113372803, - "x_min": 0.6734092235565186, - "y_max": 0.9991496205329895, - "y_min": 0.8781012892723083 - }, - "confidence": 0.5402482151985168, - "label": "person", - "label_id": 1 - }, - "h": 52, - "region_id": 88233, - "roi_type": "person", - "w": 55, - "x": 517, - "y": 379 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 1500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7442193627357483, - "x_min": 0.6763269305229187, - "y_max": 1.0, - "y_min": 0.8277980089187622 - }, - "confidence": 0.5505859851837158, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 88234, - "roi_type": "person", - "w": 52, - "x": 519, - "y": 358 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 1666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7465136647224426, - "x_min": 0.6821861863136292, - "y_max": 1.0, - "y_min": 0.8104691505432129 - }, - "confidence": 0.6447347402572632, - "label": "person", - "label_id": 1 - }, - "h": 82, - "region_id": 88235, - "roi_type": "person", - "w": 49, - "x": 524, - "y": 350 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 1750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7481285929679871, - "x_min": 0.6836653351783752, - "y_max": 0.9999657869338989, - "y_min": 0.7867170572280884 - }, - "confidence": 0.8825269341468811, - "label": "person", - "label_id": 1 - }, - "h": 92, - "region_id": 88236, - "roi_type": "person", - "w": 50, - "x": 525, - "y": 340 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 1833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7502986788749695, - "x_min": 0.6836960911750793, - "y_max": 0.9965760111808777, - "y_min": 0.7709739804267883 - }, - "confidence": 0.9252129793167114, - "label": "person", - "label_id": 1 - }, - "h": 97, - "region_id": 88237, - "roi_type": "person", - "w": 51, - "x": 525, - "y": 333 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 1916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7533046007156372, - "x_min": 0.6833932399749756, - "y_max": 0.9992514848709106, - "y_min": 0.7517307996749878 - }, - "confidence": 0.9160431027412415, - "label": "person", - "label_id": 1 - }, - "h": 107, - "region_id": 88238, - "roi_type": "person", - "w": 54, - "x": 525, - "y": 325 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 2000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7569091320037842, - "x_min": 0.6831721067428589, - "y_max": 0.9893121123313904, - "y_min": 0.7454761862754822 - }, - "confidence": 0.945228099822998, - "label": "person", - "label_id": 1 - }, - "h": 105, - "region_id": 88240, - "roi_type": "person", - "w": 57, - "x": 525, - "y": 322 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 2083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.758220374584198, - "x_min": 0.6869714856147766, - "y_max": 0.9744250774383545, - "y_min": 0.7232376337051392 - }, - "confidence": 0.952269434928894, - "label": "person", - "label_id": 1 - }, - "h": 109, - "region_id": 88241, - "roi_type": "person", - "w": 55, - "x": 528, - "y": 312 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 2166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.757515549659729, - "x_min": 0.6908836364746094, - "y_max": 0.9485968947410583, - "y_min": 0.7128697037696838 - }, - "confidence": 0.879629909992218, - "label": "person", - "label_id": 1 - }, - "h": 102, - "region_id": 88242, - "roi_type": "person", - "w": 51, - "x": 531, - "y": 308 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 2250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7562522292137146, - "x_min": 0.6947104334831238, - "y_max": 0.8969831466674805, - "y_min": 0.7029379606246948 - }, - "confidence": 0.8928062319755554, - "label": "person", - "label_id": 1 - }, - "h": 84, - "region_id": 88243, - "roi_type": "person", - "w": 47, - "x": 534, - "y": 304 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 2333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7574296593666077, - "x_min": 0.6979045271873474, - "y_max": 0.8754802346229553, - "y_min": 0.6884984374046326 - }, - "confidence": 0.8720521330833435, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 88244, - "roi_type": "person", - "w": 46, - "x": 536, - "y": 297 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 2416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7628753781318665, - "x_min": 0.6962668299674988, - "y_max": 0.9012860655784607, - "y_min": 0.6672508120536804 - }, - "confidence": 0.6989009380340576, - "label": "person", - "label_id": 1 - }, - "h": 101, - "region_id": 88245, - "roi_type": "person", - "w": 51, - "x": 535, - "y": 288 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 2500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7642366886138916, - "x_min": 0.6945128440856934, - "y_max": 0.8976409435272217, - "y_min": 0.6511139869689941 - }, - "confidence": 0.6954115033149719, - "label": "person", - "label_id": 1 - }, - "h": 106, - "region_id": 88246, - "roi_type": "person", - "w": 54, - "x": 533, - "y": 281 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 2583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7641031742095947, - "x_min": 0.7028636932373047, - "y_max": 0.8516806364059448, - "y_min": 0.6483858823776245 - }, - "confidence": 0.6670745611190796, - "label": "person", - "label_id": 1 - }, - "h": 88, - "region_id": 88247, - "roi_type": "person", - "w": 47, - "x": 540, - "y": 280 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 2666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7670164108276367, - "x_min": 0.7064443826675415, - "y_max": 0.8298262357711792, - "y_min": 0.6299617290496826 - }, - "confidence": 0.9295324087142944, - "label": "person", - "label_id": 1 - }, - "h": 86, - "region_id": 88248, - "roi_type": "person", - "w": 47, - "x": 543, - "y": 272 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 2750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7725509405136108, - "x_min": 0.7098292112350464, - "y_max": 0.8254445195198059, - "y_min": 0.6173177361488342 - }, - "confidence": 0.6896133422851562, - "label": "person", - "label_id": 1 - }, - "h": 90, - "region_id": 88249, - "roi_type": "person", - "w": 48, - "x": 545, - "y": 267 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 2833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7741845846176147, - "x_min": 0.7090356349945068, - "y_max": 0.8218122124671936, - "y_min": 0.6104786992073059 - }, - "confidence": 0.7604836821556091, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 88250, - "roi_type": "person", - "w": 50, - "x": 545, - "y": 264 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 2916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7783714532852173, - "x_min": 0.7181830406188965, - "y_max": 0.7849859595298767, - "y_min": 0.5744112133979797 - }, - "confidence": 0.5027379989624023, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 88251, - "roi_type": "person", - "w": 46, - "x": 552, - "y": 248 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 3166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7834279537200928, - "x_min": 0.7257949113845825, - "y_max": 0.7589362263679504, - "y_min": 0.5519590973854065 - }, - "confidence": 0.7043126225471497, - "label": "person", - "label_id": 1 - }, - "h": 89, - "region_id": 88252, - "roi_type": "person", - "w": 44, - "x": 557, - "y": 238 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 3250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.78952956199646, - "x_min": 0.7326743602752686, - "y_max": 0.7261121273040771, - "y_min": 0.5483003854751587 - }, - "confidence": 0.9756479263305664, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 88253, - "roi_type": "person", - "w": 44, - "x": 563, - "y": 237 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 3333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7890371084213257, - "x_min": 0.737720251083374, - "y_max": 0.703130841255188, - "y_min": 0.5400574207305908 - }, - "confidence": 0.8415101170539856, - "label": "person", - "label_id": 1 - }, - "h": 70, - "region_id": 88254, - "roi_type": "person", - "w": 39, - "x": 567, - "y": 233 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 3416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.7952908873558044, - "x_min": 0.7402903437614441, - "y_max": 0.6921250820159912, - "y_min": 0.5216915607452393 - }, - "confidence": 0.7716292142868042, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 88255, - "roi_type": "person", - "w": 42, - "x": 569, - "y": 225 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 3500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8006463646888733, - "x_min": 0.746234118938446, - "y_max": 0.6880521178245544, - "y_min": 0.5218417048454285 - }, - "confidence": 0.8759841322898865, - "label": "person", - "label_id": 1 - }, - "h": 72, - "region_id": 88256, - "roi_type": "person", - "w": 42, - "x": 573, - "y": 225 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 3583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8098055720329285, - "x_min": 0.7457361817359924, - "y_max": 0.7030310034751892, - "y_min": 0.5026633143424988 - }, - "confidence": 0.9101055860519409, - "label": "person", - "label_id": 1 - }, - "h": 87, - "region_id": 88257, - "roi_type": "person", - "w": 49, - "x": 573, - "y": 217 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 3666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8131635785102844, - "x_min": 0.7560372948646545, - "y_max": 0.68419349193573, - "y_min": 0.4961233139038086 - }, - "confidence": 0.9086403846740723, - "label": "person", - "label_id": 1 - }, - "h": 81, - "region_id": 88258, - "roi_type": "person", - "w": 44, - "x": 581, - "y": 214 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 3750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.823058545589447, - "x_min": 0.7637491822242737, - "y_max": 0.6855756640434265, - "y_min": 0.4885023236274719 - }, - "confidence": 0.8248198628425598, - "label": "person", - "label_id": 1 - }, - "h": 85, - "region_id": 88261, - "roi_type": "person", - "w": 46, - "x": 587, - "y": 211 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 3833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8232852220535278, - "x_min": 0.760567307472229, - "y_max": 0.6924915313720703, - "y_min": 0.4750783145427704 - }, - "confidence": 0.6950201988220215, - "label": "person", - "label_id": 1 - }, - "h": 94, - "region_id": 88264, - "roi_type": "person", - "w": 48, - "x": 584, - "y": 205 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 3916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8322221040725708, - "x_min": 0.7602424621582031, - "y_max": 0.6941542625427246, - "y_min": 0.46584227681159973 - }, - "confidence": 0.5867345333099365, - "label": "person", - "label_id": 1 - }, - "h": 99, - "region_id": 88265, - "roi_type": "person", - "w": 55, - "x": 584, - "y": 201 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 4000000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8429373502731323, - "x_min": 0.793522834777832, - "y_max": 0.6419347524642944, - "y_min": 0.4380990266799927 - }, - "confidence": 0.96792072057724, - "label": "person", - "label_id": 1 - }, - "h": 88, - "region_id": 88266, - "roi_type": "person", - "w": 38, - "x": 609, - "y": 189 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 4250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.849794328212738, - "x_min": 0.796667754650116, - "y_max": 0.615337610244751, - "y_min": 0.44303926825523376 - }, - "confidence": 0.885311484336853, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 88267, - "roi_type": "person", - "w": 41, - "x": 612, - "y": 191 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 4333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8533491492271423, - "x_min": 0.8009874224662781, - "y_max": 0.6051763892173767, - "y_min": 0.4295733571052551 - }, - "confidence": 0.9033098816871643, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 88270, - "roi_type": "person", - "w": 40, - "x": 615, - "y": 186 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 4416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8604123592376709, - "x_min": 0.8060647249221802, - "y_max": 0.5924712419509888, - "y_min": 0.42701780796051025 - }, - "confidence": 0.8053339719772339, - "label": "person", - "label_id": 1 - }, - "h": 71, - "region_id": 88272, - "roi_type": "person", - "w": 42, - "x": 619, - "y": 184 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 4500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8663100004196167, - "x_min": 0.8105944395065308, - "y_max": 0.5942341089248657, - "y_min": 0.42083391547203064 - }, - "confidence": 0.7699308395385742, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 88274, - "roi_type": "person", - "w": 43, - "x": 623, - "y": 182 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 4583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8744010329246521, - "x_min": 0.817695677280426, - "y_max": 0.5900759696960449, - "y_min": 0.41369643807411194 - }, - "confidence": 0.9554976224899292, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 88275, - "roi_type": "person", - "w": 44, - "x": 628, - "y": 179 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 4666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8855565190315247, - "x_min": 0.8264035582542419, - "y_max": 0.5860601663589478, - "y_min": 0.4029603898525238 - }, - "confidence": 0.8228961229324341, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 88277, - "roi_type": "person", - "w": 45, - "x": 635, - "y": 174 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 4750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.8908534049987793, - "x_min": 0.8350781202316284, - "y_max": 0.5897727608680725, - "y_min": 0.3878404200077057 - }, - "confidence": 0.8011395931243896, - "label": "person", - "label_id": 1 - }, - "h": 87, - "region_id": 88278, - "roi_type": "person", - "w": 43, - "x": 641, - "y": 168 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 4833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9007775187492371, - "x_min": 0.8356189131736755, - "y_max": 0.5877959728240967, - "y_min": 0.39412614703178406 - }, - "confidence": 0.6489150524139404, - "label": "person", - "label_id": 1 - }, - "h": 84, - "region_id": 88279, - "roi_type": "person", - "w": 50, - "x": 642, - "y": 170 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 4916666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9088490605354309, - "x_min": 0.8531065583229065, - "y_max": 0.5604839324951172, - "y_min": 0.37604784965515137 - }, - "confidence": 0.6436930298805237, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 88280, - "roi_type": "person", - "w": 43, - "x": 655, - "y": 162 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 5166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.91246098279953, - "x_min": 0.8664992451667786, - "y_max": 0.5441793203353882, - "y_min": 0.36725082993507385 - }, - "confidence": 0.8806076645851135, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 88281, - "roi_type": "person", - "w": 35, - "x": 665, - "y": 159 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 5250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9204215407371521, - "x_min": 0.8713714480400085, - "y_max": 0.5294153094291687, - "y_min": 0.3520965278148651 - }, - "confidence": 0.9779548048973083, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 88282, - "roi_type": "person", - "w": 38, - "x": 669, - "y": 152 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 5333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9224029779434204, - "x_min": 0.8775302171707153, - "y_max": 0.5218915343284607, - "y_min": 0.35059165954589844 - }, - "confidence": 0.9283974766731262, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 88283, - "roi_type": "person", - "w": 34, - "x": 674, - "y": 151 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 5416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9281563758850098, - "x_min": 0.87200927734375, - "y_max": 0.5194041728973389, - "y_min": 0.3446289896965027 - }, - "confidence": 0.7565146088600159, - "label": "person", - "label_id": 1 - }, - "h": 76, - "region_id": 88285, - "roi_type": "person", - "w": 43, - "x": 670, - "y": 149 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 5500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9374079704284668, - "x_min": 0.8853236436843872, - "y_max": 0.5107858180999756, - "y_min": 0.34274008870124817 - }, - "confidence": 0.9505764245986938, - "label": "person", - "label_id": 1 - }, - "h": 73, - "region_id": 88286, - "roi_type": "person", - "w": 40, - "x": 680, - "y": 148 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 5583333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9449759125709534, - "x_min": 0.8897075057029724, - "y_max": 0.5037586688995361, - "y_min": 0.33645254373550415 - }, - "confidence": 0.9099644422531128, - "label": "person", - "label_id": 1 - }, - "h": 72, - "region_id": 88287, - "roi_type": "person", - "w": 42, - "x": 683, - "y": 145 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 5666666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9549130201339722, - "x_min": 0.8982007503509521, - "y_max": 0.5104894042015076, - "y_min": 0.3242742419242859 - }, - "confidence": 0.7820349335670471, - "label": "person", - "label_id": 1 - }, - "h": 80, - "region_id": 88288, - "roi_type": "person", - "w": 44, - "x": 690, - "y": 140 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 5750000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9616369009017944, - "x_min": 0.9061300754547119, - "y_max": 0.5176383852958679, - "y_min": 0.32654041051864624 - }, - "confidence": 0.7777015566825867, - "label": "person", - "label_id": 1 - }, - "h": 83, - "region_id": 88289, - "roi_type": "person", - "w": 43, - "x": 696, - "y": 141 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 5833333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9738940000534058, - "x_min": 0.9141021966934204, - "y_max": 0.4915769696235657, - "y_min": 0.3181222677230835 - }, - "confidence": 0.7904208302497864, - "label": "person", - "label_id": 1 - }, - "h": 75, - "region_id": 88290, - "roi_type": "person", - "w": 46, - "x": 702, - "y": 137 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 6083333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.975996196269989, - "x_min": 0.9256718754768372, - "y_max": 0.4855738878250122, - "y_min": 0.30408161878585815 - }, - "confidence": 0.7352957129478455, - "label": "person", - "label_id": 1 - }, - "h": 78, - "region_id": 88291, - "roi_type": "person", - "w": 39, - "x": 711, - "y": 131 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 6166666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9818256497383118, - "x_min": 0.928584635257721, - "y_max": 0.4778039753437042, - "y_min": 0.29464688897132874 - }, - "confidence": 0.8346177935600281, - "label": "person", - "label_id": 1 - }, - "h": 79, - "region_id": 88292, - "roi_type": "person", - "w": 41, - "x": 713, - "y": 127 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 6250000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9829865097999573, - "x_min": 0.9321264624595642, - "y_max": 0.46189287304878235, - "y_min": 0.2909712493419647 - }, - "confidence": 0.9709599018096924, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 88293, - "roi_type": "person", - "w": 39, - "x": 716, - "y": 126 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 6333333333 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9856051206588745, - "x_min": 0.9314626455307007, - "y_max": 0.4595508575439453, - "y_min": 0.28902602195739746 - }, - "confidence": 0.6953368186950684, - "label": "person", - "label_id": 1 - }, - "h": 74, - "region_id": 88295, - "roi_type": "person", - "w": 42, - "x": 715, - "y": 125 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 6416666666 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9974535703659058, - "x_min": 0.9289860725402832, - "y_max": 0.46979767084121704, - "y_min": 0.25890350341796875 - }, - "confidence": 0.5784767866134644, - "label": "person", - "label_id": 1 - }, - "h": 91, - "region_id": 88294, - "roi_type": "person", - "w": 53, - "x": 713, - "y": 112 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 6500000000 - }, - { - "objects": [ - { - "detection": { - "bounding_box": { - "x_max": 0.9965777397155762, - "x_min": 0.948677659034729, - "y_max": 0.4469355344772339, - "y_min": 0.2675803303718567 - }, - "confidence": 0.5522581338882446, - "label": "person", - "label_id": 1 - }, - "h": 77, - "region_id": 88297, - "roi_type": "person", - "w": 37, - "x": 729, - "y": 116 - } - ], - "resolution": { - "height": 432, - "width": 768 - }, - "source": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection-7sec.mp4", - "tags": {}, - "timestamp": 6583333333 - } - ] -} \ No newline at end of file diff --git a/tests/test_cases/rest_api/delete_invalid_instance.json b/tests/test_cases/rest_api/delete_invalid_instance.json deleted file mode 100644 index 6b51c12..0000000 --- a/tests/test_cases/rest_api/delete_invalid_instance.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "body": {}, - "path": "pipelines/object_detection/1/10", - "result": "Invalid pipeline, version or instance", - "status_code": 400, - "verb": "delete" -} \ No newline at end of file diff --git a/tests/test_cases/rest_api/get_models.json b/tests/test_cases/rest_api/get_models.json deleted file mode 100644 index c2a1320..0000000 --- a/tests/test_cases/rest_api/get_models.json +++ /dev/null @@ -1,108 +0,0 @@ -{ - "body": {}, - "path": "models", - "sort_key": "name", - "secondary_sort_key": "version", - "result": [ - { - "description": "object_classification", - "name": "object_classification", - "networks": { - "labels": null, - "model-proc": "/home/pipeline-server/models/object_classification/vehicle_attributes/vehicle-attributes-recognition-barrier-0039.json", - "networks": { - "FP16": "/home/pipeline-server/models/object_classification/vehicle_attributes/FP16/vehicle-attributes-recognition-barrier-0039.xml", - "FP32": "/home/pipeline-server/models/object_classification/vehicle_attributes/FP32/vehicle-attributes-recognition-barrier-0039.xml" - } - }, - "type": "IntelDLDT", - "version": "vehicle_attributes" - }, - { - "description": "emotion_recognition", - "name": "emotion_recognition", - "networks": { - "labels": null, - "model-proc": "/home/pipeline-server/models/emotion_recognition/1/emotions-recognition-retail-0003.json", - "networks": { - "FP16": "/home/pipeline-server/models/emotion_recognition/1/FP16/emotions-recognition-retail-0003.xml", - "FP32": "/home/pipeline-server/models/emotion_recognition/1/FP32/emotions-recognition-retail-0003.xml" - } - }, - "type": "IntelDLDT", - "version": 1 - }, - { - "description": "audio_detection", - "name": "audio_detection", - "networks": { - "labels": null, - "model-proc": "/home/pipeline-server/models/audio_detection/environment/aclnet.json", - "networks": { - "FP16": "/home/pipeline-server/models/audio_detection/environment/FP16/aclnet.xml", - "FP32": "/home/pipeline-server/models/audio_detection/environment/FP32/aclnet.xml" - } - }, - "type": "IntelDLDT", - "version": "environment" - }, - { - "description": "object_detection", - "name": "object_detection", - "networks": { - "labels": null, - "model-proc": "/home/pipeline-server/models/object_detection/person_vehicle_bike/person-vehicle-bike-detection-crossroad-0078.json", - "networks": { - "FP16": "/home/pipeline-server/models/object_detection/person_vehicle_bike/FP16/person-vehicle-bike-detection-crossroad-0078.xml", - "FP32": "/home/pipeline-server/models/object_detection/person_vehicle_bike/FP32/person-vehicle-bike-detection-crossroad-0078.xml" - } - }, - "type": "IntelDLDT", - "version": "person_vehicle_bike" - }, - { - "description": "face_detection_retail", - "name": "face_detection_retail", - "networks": { - "labels": null, - "model-proc": "/home/pipeline-server/models/face_detection_retail/1/face-detection-retail-0004.json", - "networks": { - "FP16": "/home/pipeline-server/models/face_detection_retail/1/FP16/face-detection-retail-0004.xml", - "FP32": "/home/pipeline-server/models/face_detection_retail/1/FP32/face-detection-retail-0004.xml" - } - }, - "type": "IntelDLDT", - "version": 1 - }, - { - "description": "object_detection", - "name": "object_detection", - "networks": { - "labels": null, - "model-proc": "/home/pipeline-server/models/object_detection/person/person-detection-retail-0013.json", - "networks": { - "FP16": "/home/pipeline-server/models/object_detection/person/FP16/person-detection-retail-0013.xml", - "FP32": "/home/pipeline-server/models/object_detection/person/FP32/person-detection-retail-0013.xml" - } - }, - "type": "IntelDLDT", - "version": "person" - }, - { - "description": "object_detection", - "name": "object_detection", - "networks": { - "labels": null, - "model-proc": "/home/pipeline-server/models/object_detection/vehicle/vehicle-detection-0202.json", - "networks": { - "FP16": "/home/pipeline-server/models/object_detection/vehicle/FP16/vehicle-detection-0202.xml", - "FP32": "/home/pipeline-server/models/object_detection/vehicle/FP32/vehicle-detection-0202.xml" - } - }, - "type": "IntelDLDT", - "version": "vehicle" - } - ], - "status_code": 200, - "verb": "get" -} \ No newline at end of file diff --git a/tests/test_cases/rest_api/get_object_detection_ffmpeg.json b/tests/test_cases/rest_api/get_object_detection_ffmpeg.json deleted file mode 100644 index 96106a2..0000000 --- a/tests/test_cases/rest_api/get_object_detection_ffmpeg.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "path": "pipelines/object_detection/1", - "verb": "get", - "body": {}, - "status_code": 200, - "result": { - "description": "Object Detection", - "name": "object_detection", - "parameters": { - "properties": { - "inference-interval": { - "default": 1, - "element": "detection", - "maximum": 4294967295, - "minimum": 0, - "type": "integer" - } - }, - "type": "object" - }, - "type": "FFmpeg", - "version": "1" - } -} diff --git a/tests/test_cases/rest_api/get_object_detection_gstreamer.json b/tests/test_cases/rest_api/get_object_detection_gstreamer.json deleted file mode 100644 index c74efe1..0000000 --- a/tests/test_cases/rest_api/get_object_detection_gstreamer.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "body": {}, - "path": "pipelines/object_detection/person_vehicle_bike", - "result": { - "description": "Person Vehicle Bike Detection based on person-vehicle-bike-detection-crossroad-0078", - "name": "object_detection", - "parameters": { - "properties": { - "detection-device": { - "element": { - "name": "detection", - "property": "device" - }, - "type": "string" - }, - "detection-model-instance-id": { - "element": { - "name": "detection", - "property": "model-instance-id" - }, - "type": "string" - }, - "inference-interval": { - "element": "detection", - "type": "integer" - }, - "threshold": { - "element": "detection", - "type": "number" - } - }, - "type": "object" - }, - "type": "GStreamer", - "version": "person_vehicle_bike" - }, - "status_code": 200, - "verb": "get" -} \ No newline at end of file diff --git a/tests/test_cases/rest_api/get_pipelines_ffmpeg.json b/tests/test_cases/rest_api/get_pipelines_ffmpeg.json deleted file mode 100644 index 2cf969a..0000000 --- a/tests/test_cases/rest_api/get_pipelines_ffmpeg.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "path": "pipelines", - "verb": "get", - "body": {}, - "status_code": 200, - "result": [ - { - "description": "Object Detection", - "name": "object_detection", - "parameters": { - "properties": { - "inference-interval": { - "default": 1, - "element": "detection", - "maximum": 4294967295, - "minimum": 0, - "type": "integer" - } - }, - "type": "object" - }, - "type": "FFmpeg", - "version": "1" - }, - { - "description": "Emotion Recognition", - "name": "emotion_recognition", - "parameters": { - "properties": { - "inference-interval": { - "default": 1, - "element": "detection", - "maximum": 4294967295, - "minimum": 0, - "type": "integer" - } - }, - "type": "object" - }, - "type": "FFmpeg", - "version": "1" - } - ] -} \ No newline at end of file diff --git a/tests/test_cases/rest_api/get_pipelines_gstreamer.json b/tests/test_cases/rest_api/get_pipelines_gstreamer.json deleted file mode 100644 index 56d427b..0000000 --- a/tests/test_cases/rest_api/get_pipelines_gstreamer.json +++ /dev/null @@ -1,529 +0,0 @@ -{ - "body": {}, - "path": "pipelines", - "sort_key": "name", - "secondary_sort_key": "version", - "result": [ - { - "description": "Person Vehicle Bike Detection and Vehicle Attributes Classification based on person-vehicle-bike-detection-crossroad-0078 and vehicle-attributes-recognition-barrier-0039", - "name": "object_classification", - "parameters": { - "properties": { - "classification-device": { - "element": { - "name": "classification", - "property": "device" - }, - "type": "string" - }, - "classification-model-instance-id": { - "element": { - "name": "classification", - "property": "model-instance-id" - }, - "type": "string" - }, - "classification-properties": { - "element": { - "name": "classification", - "format": "element-properties" - } - }, - "classification-threshold": { - "element": { - "name": "classification", - "property": "threshold" - }, - "type": "number" - }, - "detection-device": { - "element": { - "name": "detection", - "property": "device" - }, - "type": "string" - }, - "detection-model-instance-id": { - "element": { - "name": "detection", - "property": "model-instance-id" - }, - "type": "string" - }, - "detection-properties": { - "element": { - "name": "detection", - "format": "element-properties" - } - }, - "detection-threshold": { - "element": { - "name": "detection", - "property": "threshold" - }, - "type": "number" - }, - "inference-interval": { - "element": [ - { - "name": "detection", - "property": "inference-interval" - }, - { - "name": "classification", - "property": "inference-interval" - } - ], - "type": "integer" - }, - "object-class": { - "default": "vehicle", - "element": "classification", - "type": "string" - }, - "reclassify-interval": { - "element": "classification", - "type": "integer" - } - }, - "type": "object" - }, - "type": "GStreamer", - "version": "vehicle_attributes" - }, - { - "description": "Environmental sound detection based on Aclnet", - "name": "audio_detection", - "parameters": { - "properties": { - "bus-messages": { - "default": false, - "description": "Prints GstBus messages as logger info", - "type": "boolean" - }, - "device": { - "element": "detection", - "type": "string" - }, - "output-buffer-duration": { - "default": 100000000, - "element": "audiomixer", - "type": "integer" - }, - "post-messages": { - "element": "level", - "type": "boolean" - }, - "sliding-window": { - "default": 0.2, - "element": "detection", - "type": "number" - }, - "threshold": { - "element": "detection", - "type": "number" - }, - "detection-properties": { - "element": { - "name": "detection", - "format": "element-properties" - } - } - }, - "type": "object" - }, - "type": "GStreamer", - "version": "environment" - }, - { - "description": "Person Vehicle Bike Detection wth Tracking and Vehicle Attributes Classification based on person-vehicle-bike-detection-crossroad-0078 and vehicle-attributes-recognition-barrier-0039", - "name": "object_tracking", - "parameters": { - "properties": { - "classification-device": { - "element": { - "name": "classification", - "property": "device" - }, - "type": "string" - }, - "classification-model-instance-id": { - "element": { - "name": "classification", - "property": "model-instance-id" - }, - "type": "string" - }, - "classification-properties": { - "element": { - "name": "classification", - "format": "element-properties" - } - }, - "classification-threshold": { - "element": { - "name": "classification", - "property": "threshold" - }, - "type": "number" - }, - "detection-device": { - "element": { - "name": "detection", - "property": "device" - }, - "type": "string" - }, - "detection-model-instance-id": { - "element": { - "name": "detection", - "property": "model-instance-id" - }, - "type": "string" - }, - "detection-threshold": { - "element": { - "name": "detection", - "property": "threshold" - }, - "type": "number" - }, - "detection-properties": { - "element": { - "name": "detection", - "format": "element-properties" - } - }, - "inference-interval": { - "element": [ - { - "name": "detection", - "property": "inference-interval" - }, - { - "name": "classification", - "property": "inference-interval" - } - ], - "type": "integer" - }, - "object-class": { - "default": "vehicle", - "element": "classification", - "type": "string" - }, - "reclassify-interval": { - "element": "classification", - "type": "integer" - }, - "tracking-properties": { - "element": { - "name": "tracking", - "format": "element-properties" - } - }, - "tracking-type": { - "element": "tracking", - "type": "string" - } - }, - "type": "object" - }, - "type": "GStreamer", - "version": "person_vehicle_bike" - }, - { - "description": "Object Tracking pipeline with Line Crossing Tracking module", - "name": "object_tracking", - "parameters": { - "properties": { - "classification-device": { - "element": { - "name": "classification", - "property": "device" - }, - "type": "string" - }, - "classification-model-instance-id": { - "element": { - "name": "classification", - "property": "model-instance-id" - }, - "type": "string" - }, - "classification-properties": { - "element": { - "name": "classification", - "format": "element-properties" - } - }, - "classification-threshold": { - "element": { - "name": "classification", - "property": "threshold" - }, - "type": "number" - }, - "detection-device": { - "element": { - "name": "detection", - "property": "device" - }, - "type": "string" - }, - "detection-model-instance-id": { - "element": { - "name": "detection", - "property": "model-instance-id" - }, - "type": "string" - }, - "detection-threshold": { - "element": { - "name": "detection", - "property": "threshold" - }, - "type": "number" - }, - "detection-properties": { - "element": { - "name": "detection", - "format": "element-properties" - } - }, - "inference-interval": { - "element": [ - { - "name": "detection", - "property": "inference-interval" - }, - { - "name": "classification", - "property": "inference-interval" - } - ], - "type": "integer" - }, - "object-class": { - "default": "vehicle", - "element": "classification", - "type": "string" - }, - "object-line-crossing-config": { - "element": { - "format": "json", - "name": "object-line-crossing", - "property": "kwarg" - }, - "properties": { - "enable_watermark": { - "type": "boolean" - }, - "lines": { - "items": { - "type": "object" - }, - "type": "array" - }, - "log_level": { - "type": "string" - } - }, - "type": "object" - }, - "reclassify-interval": { - "element": "classification", - "type": "integer" - }, - "tracking-properties": { - "element": { - "name": "tracking", - "format": "element-properties" - } - }, - "tracking-type": { - "element": "tracking", - "type": "string" - } - }, - "type": "object" - }, - "type": "GStreamer", - "version": "object_line_crossing" - }, - { - "description": "Person Vehicle Bike Detection based on person-vehicle-bike-detection-crossroad-0078", - "name": "object_detection", - "parameters": { - "properties": { - "detection-device": { - "element": { - "name": "detection", - "property": "device" - }, - "type": "string" - }, - "detection-model-instance-id": { - "element": { - "name": "detection", - "property": "model-instance-id" - }, - "type": "string" - }, - "detection-properties": { - "element": { - "name": "detection", - "format": "element-properties" - } - }, - "inference-interval": { - "element": "detection", - "type": "integer" - }, - "threshold": { - "element": "detection", - "type": "number" - } - }, - "type": "object" - }, - "type": "GStreamer", - "version": "person_vehicle_bike" - }, - { - "description": "Person Vehicle Bike Detection based on person-vehicle-bike-detection-crossroad-0078", - "name": "object_detection", - "parameters": { - "properties": { - "detection-device": { - "element": { - "name": "detection", - "property": "device" - }, - "type": "string" - }, - "detection-model-instance-id": { - "element": { - "name": "detection", - "property": "model-instance-id" - }, - "type": "string" - }, - "detection-properties": { - "element": { - "name": "detection", - "format": "element-properties" - } - }, - "inference-interval": { - "element": "detection", - "type": "integer" - }, - "object-zone-count-config": { - "element": { - "format": "json", - "name": "object-zone-count", - "property": "kwarg" - }, - "properties": { - "enable_watermark": { - "type": "boolean" - }, - "log_level": { - "type": "string" - }, - "zones": { - "items": { - "type": "object" - }, - "type": "array" - } - }, - "type": "object" - }, - "threshold": { - "element": "detection", - "type": "number" - } - }, - "type": "object" - }, - "type": "GStreamer", - "version": "object_zone_count" - }, - { - "description": "Person Vehicle Bike Detection based on person-vehicle-bike-detection-crossroad-0078", - "name": "object_detection", - "parameters": { - "properties": { - "detection-model-instance-id": { - "element": { - "name": "detection", - "property": "model-instance-id" - }, - "type": "string" - } - }, - "type": "object" - }, - "type": "GStreamer", - "version": "app_src_dst" - }, - { - "type": "GStreamer", - "description": "Vehicle Detection based on vehicle-detection-0202", - "parameters": { - "type": "object", - "properties": { - "detection-device": { - "element": { - "name": "detection", - "property": "device" - }, - "type": "string" - }, - "detection-properties": { - "element": { - "format": "element-properties", - "name": "detection" - } - } - } - }, - "name": "object_detection", - "version": "vehicle" - }, - { - "type": "GStreamer", - "description": "Person Detection based on person-detection-retail-0013", - "parameters": { - "type": "object", - "properties": { - "detection-device": { - "element": { - "name": "detection", - "property": "device" - }, - "type": "string" - }, - "detection-properties": { - "element": { - "format": "element-properties", - "name": "detection" - } - } - } - }, - "name": "object_detection", - "version": "person" - }, - { - "description": "Decode Pipeline", - "name": "video_decode", - "type": "GStreamer", - "version": "app_dst" - } - ], - "status_code": 200, - "verb": "get" -} \ No newline at end of file diff --git a/tests/test_cases/rest_api/post_object_detect_badparam_uri.json b/tests/test_cases/rest_api/post_object_detect_badparam_uri.json deleted file mode 100644 index 494fd9d..0000000 --- a/tests/test_cases/rest_api/post_object_detect_badparam_uri.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "summary": "Intentionally provides a bad uri parameter as source to ensure jsonschema validation rejects it.", - "body": { - "source": { - "uri": "https://github/intel-iot-devkit/sample-videos/blob/master/head-pose-face-detection-male.mp4?raw=true spaces in uri", - "type": "uri" - } - }, - "path": "pipelines/object_detection/person_vehicle_bike", - "sort_key": "name", - "result": { - "detail": "{'uri': 'https://github/intel-iot-devkit/sample-videos/blob/master/head-pose-face-detection-male.mp4?raw=true spaces in uri', 'type': 'uri'} is not valid under any of the given schemas - 'source'", - "status": 400, - "title": "Bad Request", - "type": "about:blank" - }, - "status_code": 400, - "verb": "post" -} \ No newline at end of file diff --git a/tests/test_cases/rest_api/post_object_detect_payload_too_large_gstreamer.json b/tests/test_cases/rest_api/post_object_detect_payload_too_large_gstreamer.json deleted file mode 100644 index 13b83cc..0000000 --- a/tests/test_cases/rest_api/post_object_detect_payload_too_large_gstreamer.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "summary": "Intentionally provides a large payload to check if server rejects it.", - "body": { - "source": { - "uri": "https://github/intel-iot-devkit/sample-videos/blob/master/head-pose-face-detection-male.mp4?raw=true spaces in uri", - "type": "uri" - }, - "destination": { - "metadata": { - "type": "file", - "path": "/tmp/results.jsonl", - "format": "json-lines", - "Large_payload": "senectus et netus et malesuada fames ac turpis egestas integer eget aliquet nibh praesent tristique magna sit amet purus gravida quis blandit turpis cursus in hac habitasse platea dictumst quisque sagittis purus sit amet volutpat consequat mauris nunc congue nisi vitae suscipit tellus mauris a diam maecenas sed enim ut sem viverra aliquet eget sit amet tellus cras adipiscing enim eu turpis egestas pretium aenean pharetra magna ac placerat vestibulum lectus mauris ultrices eros in cursus turpis massa tincidunt dui ut ornare lectus sit amet est placerat in egestas erat imperdiet sed euismod nisi porta lorem mollis aliquam ut porttitor leo a diam sollicitudin tempor id eu nisl nunc mi ipsum faucibus vitae aliquet nec ullamcorper sit amet risus nullam eget felis eget nunc lobortis mattis aliquam faucibus purus in massa tempor nec feugiat nisl pretium fusce id velit ut tortor pretium viverra suspendisse potenti nullam ac tortor vitae purus faucibus ornare suspendisse sed nisi lacus sed viverra tellus in hac habitasse platea dictumst vestibulum rhoncus est pellentesque elit ullamcorper dignissim cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum varius duis at consectetur lorem donec massa sapien faucibus et molestie ac feugiat sed lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi tincidunt ornare massa eget egestas purus viverra accumsan in nisl nisi scelerisque eu ultrices vitae auctor eu augue ut lectus arcu bibendum at varius vel pharetra vel turpis nunc eget lorem dolor sed viverra ipsum nunc aliquet bibendum enim facilisis gravida neque convallis a cras semper auctor neque vitae tempus quam pellentesque nec nam aliquam sem et tortor consequat id porta nibh venenatis cras sed felis eget velit aliquet sagittis id consectetur purus ut faucibus pulvinar elementum integer enim neque volutpat ac tincidunt vitae semper quis lectus nulla at volutpat diam ut venenatis tellus in metus vulputate eu scelerisque felis imperdiet proin fermentum leo vel orci porta non pulvinar neque laoreet suspendisse interdum consectetur libero id faucibus nisl tincidunt eget nullam non nisi est sit amet facilisis magna etiam tempor orci eu lobortis elementum nibh tellus molestie nunc non blandit massa enim nec dui nunc mattis enim ut tellus elementum sagittis vitae et leo duis ut diam quam nulla porttitor massa id neque aliquam vestibulum morbi blandit cursus risus at ultrices mi tempus imperdiet nulla malesuada pellentesque elit eget gravida cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada nunc vel risus commodo viverra maecenas accumsan lacus lobortis scelerisque fermentum dui faucibus in ornare quam viverra orci sagittis eu volutpat odio facilisis mauris sit amet massa vitae tortor condimentum lacinia quis vel eros donec ac odio tempor orci dapibus ultrices in iaculis nunc sed augue lacus viverra vitae congue eu consequat ac felis donec et odio pellentesque diam volutpat commodo sed egestas egestas fringilla phasellus faucibus scelerisque eleifend donec pretium vulputate sapien nec sagittis aliquam malesuada bibendum arcu vitae elementum curabitur vitae nunc sed velit dignissim sodales ut eu sem integer vitae justo eget magna fermentum iaculis eu non diam phasellus vestibulum lorem sed risus ultricies tristique nulla aliquet enim tortor at auctor urna nunc id cursus metus aliquam eleifend mi in nulla posuere sollicitudin aliquam ultrices sagittis orci a scelerisque purus semper eget duis at tellus at urna condimentum mattis pellentesque id nibh tortor id aliquet lectus proin nibh nisl condimentum id venenatis a condimentum vitae sapien pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas sed tempus urna et pharetra pharetra massa massa ultricies mi quis hendrerit dolor magna eget est lorem ipsum dolor sit amet consectetur adipiscing elit pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas integer eget aliquet nibh praesent tristique magna sit amet purus gravida quis blandit turpis cursus in hac habitasse platea dictumst quisque sagittis purus sit amet volutpat consequat mauris nunc congue nisi vitae suscipit tellus mauris a diam maecenas sed enim ut sem viverra aliquet eget sit amet tellus cras adipiscing enim eu turpis egestas pretium aenean pharetra magna ac placerat vestibulum lectus mauris ultrices eros in cursus turpis massa tincidunt dui ut ornare lectus sit amet est placerat in egestas erat imperdiet sed euismod nisi porta lorem mollis aliquam ut porttitor leo a diam sollicitudin tempor id eu nisl nunc mi ipsum faucibus vitae aliquet nec ullamcorper sit amet risus nullam eget felis eget nunc lobortis mattis aliquam faucibus purus in massa tempor nec feugiat nisl pretium fusce id velit ut tortor pretium viverra suspendisse potenti nullam ac tortor vitae purus faucibus ornare suspendisse sed nisi lacus sed viverra tellus in hac habitasse platea dictumst vestibulum rhoncus est pellentesque elit ullamcorper dignissim cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum varius duis at consectetur lorem donec massa sapien faucibus et molestie ac feugiat sed lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi tincidunt ornare massa eget egestas purus viverra accumsan in nisl nisi scelerisque eu ultrices vitae auctor eu augue ut lectus arcu bibendum at varius vel pharetra vel turpis nunc eget lorem dolor sed viverra ipsum nunc aliquet bibendum enim facilisis gravida neque convallis a cras semper auctor neque vitae tempus quam pellentesque nec nam aliquam sem et tortor consequat id porta nibh venenatis cras sed felis eget velit aliquet sagittis id consectetur purus ut faucibus pulvinar elementum integer enim neque volutpat ac tincidunt vitae semper quis lectus nulla at volutpat diam ut venenatis tellus in metus vulputate eu scelerisque felis imperdiet proin fermentum leo vel orci porta non pulvinar neque laoreet suspendisse interdum consectetur libero id faucibus nisl tincidunt eget nullam non nisi est sit amet facilisis magna etiam tempor orci eu lobortis elementum nibh tellus molestie nunc non blandit massa enim nec dui nunc mattis enim ut tellus elementum sagittis vitae et leo duis ut diam quam nulla porttitor massa id neque aliquam vestibulum morbi blandit cursus risus at ultrices mi tempus imperdiet nulla malesuada pellentesque elit eget gravida cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada nunc vel risus commodo viverra maecenas accumsan lacus vel facilisis volutpat est velit egestas dui id ornare arcu odio ut sem nulla pharetra diam sit amet nisl suscipit adipiscing bibendum est ultricies integer quis auctor elit sed vulputate mi sit amet mauris commodo quis imperdiet massa tincidunt nunc pulvinar sapien et ligula ullamcorper malesuada proin libero nunc consequat interdum varius sit amet mattis vulputate enim nulla aliquet porttitor lacus luctus accumsan tortor posuere ac ut consequat semper viverra nam libero justo laoreet sit amet cursus sit amet dictum sit amet justo donec enim diam vulputate ut pharetra sit amet aliquam id diam maecenas ultricies mi eget mauris pharetra et ultrices neque ornare aenean euismod elementum nisi quis eleifend quam adipiscing vitae proin sagittis nisl rhoncus mattis rhoncus urna neque viverra justo nec ultrices dui sapien eget mi proin sed libero enim sed faucibus turpis in eu mi bibendum neque egestas congue quisque egestas diam in arcu cursus euismod quis viverra nibh cras pulvinar mattis nunc sed blandit libero volutpat sed cras ornare arcu dui vivamus arcu felis bibendum ut tristique et egestas quis ipsum suspendisse ultrices gravida dictum fusce ut placerat orci nulla pellentesque dignissim enim sit amet venenatis urna cursus eget nunc scelerisque viverra mauris in aliquam sem fringilla ut morbi tincidunt augue interdum velit euismod in pellentesque massa placerat duis ultricies lacus sed turpis tincidunt id aliquet risus feugiat in ante metus dictum at tempor commodo ullamcorper a lacus vestibulum sed arcu non odio euismod lacinia at quis risus sed vulputate odio ut enim blandit volutpat maecenas volutpat blandit aliquam etiam erat velit scelerisque in dictum non consectetur a erat nam at lectus urna duis convallis convallis tellus id interdum velit laoreet id donec ultrices tincidunt arcu non sodales neque sodales ut etiam sit amet nisl purus in mollis nunc sed id semper risus in hendrerit gravida rutrum quisque non tellus orci ac auctor augue mauris augue neque gravida in fermentum et sollicitudin ac orci phasellus egestas tellus rutrum tellus pellentesque eu tincidunt tortor aliquam nulla facilisi cras fermentum odio eu feugiat pretium nibh ipsum consequat nisl vel pretium lectus quam id leo in vitae turpis massa sed elementum tempus egestas sed sed risus pretium quam vulputate dignissim suspendisse in est ante in nibh mauris cursus mattis molestie a iaculis at erat pellentesque adipiscing commodo elit at imperdiet dui accumsan sit amet nulla facilisi morbi tempus iaculis urna id volutpat lacus laoreet non curabitur eget est lorem ipsum dolor sit amet consectetur adipiscing elit pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas integer eget aliquet nibh praesent tristique magna sit amet purus gravida quis blandit turpis cursus in hac habitasse platea dictumst quisque sagittis purus sit amet volutpat consequat mauris nunc congue nisi vitae suscipit tellus mauris a diam maecenas sed enim ut sem viverra aliquet eget sit amet tellus cras adipiscing enim eu turpis egestas pretium aenean pharetra magna ac placerat vestibulum lectus mauris ultrices eros in cursus turpis massa tincidunt dui ut ornare lectus sit amet est placerat in egestas erat imperdiet sed euismod nisi porta lorem mollis aliquam ut porttitor leo a diam sollicitudin tempor id eu nisl nunc mi ipsum faucibus vitae aliquet nec ullamcorper sit ametSSSS risus nullam eget felis eget nunc lobortis mattis aliquam faucibus purus in massa tempor nec feugiat nisl pretium fusce id velit ut tortor pretium viverra suspendisse potenti nullam ac tortor vitae purus faucibus ornare suspendisse sed nisi lacus sed viverra tellus in hac habitasse platea dictumst vestibulum rhoncus est pellentesque elit ullamcorper dignissim cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum varius duis at consectetur lorem donec massa sapien faucibus et molestie ac feugiat sed lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi tincidunt ornare massa eget egestas purus viverra accumsan in nisl nisi scelerisque eu ultrices vitae auctor eu augue ut lectus arcu bibendum at varius vel pharetra vel turpis nunc eget lorem dolor sed viverra ipsum nunc aliquet bibendum enim facilisis gravida neque convallis a cras semper auctor neque vitae tempus quam pellentesque nec nam aliquam sem et tortor consequat id porta nibh venenatis cras sed felis eget velit aliquet sagittis id consectetur purus ut faucibus pulvinar elementum integer enim neque volutpat ac tincidunt vitae semper quis lectus nulla at volutpat diam ut venenatis tellus in metus vulputate eu scelerisque felis imperdiet proin fermentum leo vel orci porta non pulvinar neque laoreet suspendisse interdum consectetur libero id faucibus nisl tincidunt eget nullam non nisi est sit amet facilisis magna etiam tempor orci eu lobortis elementum nibh tellus molestie nunc non blandit massa enim nec dui nunc mattis enim ut tellus elementum sagittis vitae et leo duis ut diam quam nulla porttitor massa id neque aliquam vestibulum morbi blandit cursus risus at ultrices mi tempus imperdiet nulla malesuada pellentesque elit eget gravida cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada nunc vel risus commodo viverra maecenas accumsan lacus vel facilisis volutpat est velit egestas dui id ornare arcu odio ut sem nulla pharetra diam sit amet nisl suscipit adipiscing bibendum est ultricies integer quis auctor elit sed vulputate mi sit amet mauris commodo quis imperdiet massa tincidunt nunc pulvinar sapien et ligula ullamcorper malesuada proin libero nunc consequat interdum varius sit amet mattis vulputate enim nulla aliquet porttitor lacus luctus accumsan tortor posuere ac ut consequat semper viverra nam libero justo laoreet sit amet cursus sit amet dictum sit amet justo donec enim diam vulputate ut pharetra sit amet aliquam id diam maecenas ultricies mi eget mauris pharetra et ultrices neque ornare aenean euismod elementum nisi quis eleifend quam adipiscing vitae proin sagittis nisl rhoncus mattis rhoncus urna neque viverra justo nec ultrices dui sapien eget mi proin sed libero enim sed faucibus turpis in eu mi bibendum neque egestas congue quisque egestas diam in arcu cursus euismod quis viverra nibh cras pulvinar mattis nunc sed blandit libero volutpat sed cras ornare arcu dui vivamus arcu felis bibendum ut tristique et egestas quis ipsum suspendisse ultrices gravida dictum fusce ut placerat orci nulla pellentesque dignissim enim sit amet venenatis urna cursus eget nunc scelerisque viverra mauris in aliquam sem fringilla ut morbi tincidunt augue interdum velit euismod in pellentesque massa placerat duis ultricies lacus sed turpis tincidunt id aliquet risus feugiat in ante metus dictum at tempor commodo ullamcorper a lacus vestibulum sed arcu non odio euismod lacinia at quis risus sed vulputate odio ut enim blandit volutpat maecenas volutpat blandit aliquam etiam erat velit scelerisque in dictum non consectetur a erat nam at lectus urna duis convallis convallis tellus id interdum velit laoreet id donec ultrices tincidunt arcu non sodales neque sodales ut etiam sit amet nisl purus in mollis nunc sed id semper risus in hendrerit gravida rutrum quisque non tellus orci ac auctor augue mauris augue neque gravida in fermentum et sollicitudin ac orci phasellus egestas tellus rutrum tellus pellentesque eu tincidunt tortor aliquam nulla facilisi cras fermentum odio eu feugiat pretium nibh ipsum consequat nisl vel pretium lectus quam id leo in vitae turpis massa sed elementum tempus egestas sed sed risus pretium quam vulputate dignissim suspendisse in est ante in nibh mauris cursus mattis molestie a iaculis at erat pellentesque adipiscing commodo elit at imperdiet dui accumsan sit amet nulla facilisi morbi tempus iaculis urna id volutpat lacus laoreet non curabitur" - } - } - }, - "path": "pipelines/object_detection/person_vehicle_bike", - "sort_key": "name", - "status_code": 400, - "verb": "post" -} \ No newline at end of file diff --git a/tests/test_cases/rest_api/post_object_detection_badparam_gstreamer.json b/tests/test_cases/rest_api/post_object_detection_badparam_gstreamer.json deleted file mode 100644 index 37ee470..0000000 --- a/tests/test_cases/rest_api/post_object_detection_badparam_gstreamer.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "body": { - "source": { - "uri": "https://github.com/intel-iot-devkit/sample-videos/blob/master/head-pose-face-detection-male.mp4?raw=true", - "type": "uri" - }, - "destination": { - "type": "file", - "path": "/tmp/emotion_results.txt", - "format": "json-lines" - }, - "parameters": { - "detection-device": "BPU" - } - }, - "path": "pipelines/object_detection/person_vehicle_bike", - "sort_key": "name", - "status_code": 200, - "result": "uuid", - "verb": "post" -} \ No newline at end of file diff --git a/tests/test_cases/rest_api/post_object_detection_invalid_destination.json b/tests/test_cases/rest_api/post_object_detection_invalid_destination.json deleted file mode 100644 index ddb570e..0000000 --- a/tests/test_cases/rest_api/post_object_detection_invalid_destination.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "body": { - "source": { - "uri": "https://github.com/intel-iot-devkit/sample-videos/blob/master/head-pose-face-detection-male.mp4?raw=true", - "type": "uri" - }, - "destination": { - "type": "mqtt", - "format": "json-lines" - } - }, - "path": "pipelines/object_detection/person_vehicle_bike", - "sort_key": "name", - "status_code": 400, - "result": { - "detail": "{'metadata': {'type': 'mqtt', 'format': 'json-lines'}} is not valid under any of the given schemas - 'destination'", - "status": 400, - "title": "Bad Request", - "type": "about:blank" - }, - "verb": "post" -} \ No newline at end of file diff --git a/tests/test_cases/rest_execution/cpu/rest_audio_detection_gstreamer.json b/tests/test_cases/rest_execution/cpu/rest_audio_detection_gstreamer.json deleted file mode 100644 index abd144b..0000000 --- a/tests/test_cases/rest_execution/cpu/rest_audio_detection_gstreamer.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "path": "pipelines/audio_detection/environment", - "start": { - "body": { - "source": { - "uri": "file:///home/pipeline-server/tests/media/how_are_you_doing.wav", - "type": "uri" - }, - "destination": { - "type": "file", - "path": "/tmp/rest_audio_detection_gstreamer", - "format": "json-lines" - }, - "parameters": { - "detection-device": "CPU" - } - } - }, - "check_running": { - "timeout": 1.0 - }, - "abort": { - "delay": 0 - }, - "check_stopped": { - "timeout": 0.5 - }, - "result": "b36207e848b311ed9def0242ac110003" -} \ No newline at end of file diff --git a/tests/test_cases/rest_execution/cpu/rest_object_classification_ffmpeg.json b/tests/test_cases/rest_execution/cpu/rest_object_classification_ffmpeg.json deleted file mode 100644 index b942d86..0000000 --- a/tests/test_cases/rest_execution/cpu/rest_object_classification_ffmpeg.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "path": "pipelines/emotion_recognition/1", - "start" : { - "body": { - "source": { - "uri": "file:///home/pipeline-server/samples/classroom.mp4", - "type": "uri" - }, - "destination": { - "type": "file", - "path": "/tmp/rest_emotion_recognition", - "format": "json-lines" - } - } - }, - "check_running" : { - "timeout": 2.0 - }, - "abort" : { - "delay" : 0.5 - }, - "check_stopped" : { - "timeout": 0.5 - } -} diff --git a/tests/test_cases/rest_execution/cpu/rest_object_classification_gstreamer.json b/tests/test_cases/rest_execution/cpu/rest_object_classification_gstreamer.json deleted file mode 100644 index 5268e54..0000000 --- a/tests/test_cases/rest_execution/cpu/rest_object_classification_gstreamer.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "path": "pipelines/object_classification/vehicle_attributes", - "start": { - "body": { - "source": { - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "type": "uri" - }, - "destination": { - "type": "file", - "path": "/tmp/rest_emotion_recognition", - "format": "json-lines" - }, - "parameters": { - "detection-device": "CPU", - "classification-device": "CPU" - } - } - }, - "check_running": { - "timeout": 2.0 - }, - "abort": { - "delay": 0.5 - }, - "check_stopped": { - "timeout": 0.5 - }, - "result": "b2f9916848b311ed9def0242ac110003" -} \ No newline at end of file diff --git a/tests/test_cases/rest_execution/cpu/rest_object_detection_bad_param_gstreamer.json b/tests/test_cases/rest_execution/cpu/rest_object_detection_bad_param_gstreamer.json deleted file mode 100644 index 7cd4250..0000000 --- a/tests/test_cases/rest_execution/cpu/rest_object_detection_bad_param_gstreamer.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "path": "pipelines/object_detection/person_vehicle_bike", - "start": { - "body": { - "source": { - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "type": "uri" - }, - "destination": { - "type": "file", - "path": "/tmp/rest_object_detection", - "format": "json-lines" - }, - "parameters": { - "detection-device": "BPU" - } - } - }, - "check_error": { - "delay": 2.0, - "timeout": 0.5 - }, - "status_result": { - "error": "Device with \"BPU\" name is not registered in the InferenceEngine" - }, - "result": "b6a3452a48b311ed9def0242ac110003" -} \ No newline at end of file diff --git a/tests/test_cases/rest_execution/cpu/rest_object_detection_ffmpeg.json b/tests/test_cases/rest_execution/cpu/rest_object_detection_ffmpeg.json deleted file mode 100644 index 5133e3b..0000000 --- a/tests/test_cases/rest_execution/cpu/rest_object_detection_ffmpeg.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "path": "pipelines/object_detection/1", - "start" : { - "body": { - "source": { - "uri": "file:///home/pipeline-server/samples/pinwheel.ts", - "type": "uri" - }, - "destination": { - "type": "file", - "path": "/tmp/rest_object_detection", - "format": "json-lines" - } - } - }, - "check_running" : { - "timeout": 2.0 - }, - "abort" : { - "delay" : 0.5 - }, - "check_stopped" : { - "timeout": 0.5 - } -} diff --git a/tests/test_cases/rest_execution/cpu/rest_object_detection_gstreamer.json b/tests/test_cases/rest_execution/cpu/rest_object_detection_gstreamer.json deleted file mode 100644 index 7b28afe..0000000 --- a/tests/test_cases/rest_execution/cpu/rest_object_detection_gstreamer.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "path": "pipelines/object_detection/person_vehicle_bike", - "start": { - "body": { - "source": { - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "type": "uri" - }, - "destination": { - "type": "file", - "path": "/tmp/rest_object_detection", - "format": "json-lines" - }, - "parameters": { - "detection-device": "CPU" - } - } - }, - "check_running": { - "timeout": 2.0 - }, - "abort": { - "delay": 0.5 - }, - "check_stopped": { - "timeout": 0.5 - }, - "result": "b596cc3848b311ed9def0242ac110003" -} \ No newline at end of file diff --git a/tests/test_cases/rest_execution/cpu/rest_object_detection_mkv_input_gstreamer.json b/tests/test_cases/rest_execution/cpu/rest_object_detection_mkv_input_gstreamer.json deleted file mode 100644 index 54a1dff..0000000 --- a/tests/test_cases/rest_execution/cpu/rest_object_detection_mkv_input_gstreamer.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "path": "pipelines/object_detection/person_vehicle_bike", - "start": { - "body": { - "source": { - "uri": "https://lvamedia.blob.core.windows.net/public/homes_00425.mkv", - "type": "uri" - }, - "destination": { - "type": "file", - "path": "/tmp/rest_object_detection", - "format": "json-lines" - }, - "parameters": { - "detection-device": "CPU" - } - } - }, - "check_running": { - "timeout": 5.0 - }, - "abort": { - "delay": 0.5 - }, - "check_stopped": { - "timeout": 0.5 - }, - "result": "b32cad4648b311ed9def0242ac110003" -} \ No newline at end of file diff --git a/tests/test_cases/rest_execution/cpu/rest_object_detection_uri_not_found_gstreamer.json b/tests/test_cases/rest_execution/cpu/rest_object_detection_uri_not_found_gstreamer.json deleted file mode 100644 index 30278ba..0000000 --- a/tests/test_cases/rest_execution/cpu/rest_object_detection_uri_not_found_gstreamer.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "path": "pipelines/object_detection/person_vehicle_bike", - "start": { - "body": { - "source": { - "uri": "https://github.com/intel-iot-devkit/sample-videos/blob/master/person-bicycle-detection.mp4?raw=true", - "type": "uri" - }, - "destination": { - "type": "file", - "path": "/tmp/rest_object_detection", - "format": "json-lines" - }, - "parameters": { - "detection-device": "CPU" - } - } - }, - "check_error": { - "delay": 2.0, - "timeout": 0.5 - }, - "status_result": { - "error": "Not Found (404)" - }, - "result": "b2f863e248b311ed9def0242ac110003" -} \ No newline at end of file diff --git a/tests/test_cases/rest_execution/cpu/rest_object_detection_url_too_long_gstreamer.json b/tests/test_cases/rest_execution/cpu/rest_object_detection_url_too_long_gstreamer.json deleted file mode 100644 index 5763ee0..0000000 --- a/tests/test_cases/rest_execution/cpu/rest_object_detection_url_too_long_gstreamer.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "path": "pipelines/object_detection/person_vehicle_bike", - "start": { - "body": { - "source": { - "uri": "https://github.com/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master//blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master//blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master//blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master//blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master//blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/intel-iot-devkit/sample-videos/blob/master/person-bicycle-car-detection.mp4?raw=true", - "type": "uri" - }, - "destination": { - "type": "file", - "path": "/tmp/rest_object_detection", - "format": "json-lines" - }, - "parameters": { - "detection-device": "CPU" - } - } - }, - "check_error": { - "delay": 2.0, - "timeout": 0.5 - }, - "status_result": { - "error": "URI Too Long (414)" - }, - "result": "b4caf12648b311ed9def0242ac110003" -} \ No newline at end of file diff --git a/tests/test_cases/rest_execution/cpu/rest_object_tracking_gstreamer.json b/tests/test_cases/rest_execution/cpu/rest_object_tracking_gstreamer.json deleted file mode 100644 index 30d4a1a..0000000 --- a/tests/test_cases/rest_execution/cpu/rest_object_tracking_gstreamer.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "path": "pipelines/object_tracking/person_vehicle_bike", - "start": { - "body": { - "source": { - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "type": "uri" - }, - "destination": { - "type": "file", - "path": "/tmp/rest_object_detection", - "format": "json-lines" - }, - "parameters": { - "detection-device": "CPU", - "classification-device": "CPU" - } - } - }, - "check_running": { - "timeout": 2.0 - }, - "abort": { - "delay": 0.5 - }, - "check_stopped": { - "timeout": 0.5 - }, - "result": "b2f73e4a48b311ed9def0242ac110003" -} \ No newline at end of file diff --git a/tests/test_cases/rest_execution/cpu/rest_rtsp_object_classification_gstreamer.json b/tests/test_cases/rest_execution/cpu/rest_rtsp_object_classification_gstreamer.json deleted file mode 100644 index 25346db..0000000 --- a/tests/test_cases/rest_execution/cpu/rest_rtsp_object_classification_gstreamer.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "path": "pipelines/object_classification/vehicle_attributes", - "start": { - "body": { - "source": { - "uri": "https://lvamedia.blob.core.windows.net/public/homes_00425.mkv", - "type": "uri" - }, - "destination": { - "metadata": { - "type": "file", - "path": "/tmp/rest_object_classification", - "format": "json-lines" - }, - "frame": { - "type": "rtsp", - "path": "vehicle_attributes" - } - }, - "parameters": { - "detection-device": "CPU", - "classification-device": "CPU" - } - } - }, - "check_running": { - "timeout": 2.0 - }, - "check_rtsp_stream": { - "delay": 0.2, - "url": "rtsp://localhost", - "port": 8554 - }, - "abort": { - "delay": 0.5 - }, - "check_stopped": { - "timeout": 0.5 - }, - "result": "b3749bb048b311ed9def0242ac110003" -} \ No newline at end of file diff --git a/tests/test_cases/rest_execution/cpu/rest_rtsp_object_detection_gstreamer.json b/tests/test_cases/rest_execution/cpu/rest_rtsp_object_detection_gstreamer.json deleted file mode 100644 index e9d11c4..0000000 --- a/tests/test_cases/rest_execution/cpu/rest_rtsp_object_detection_gstreamer.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "path": "pipelines/object_detection/person_vehicle_bike", - "start": { - "body": { - "source": { - "uri": "https://lvamedia.blob.core.windows.net/public/homes_00425.mkv", - "type": "uri" - }, - "destination": { - "metadata": { - "type": "file", - "path": "/tmp/rest_object_detection", - "format": "json-lines" - }, - "frame": { - "type": "rtsp", - "path": "person" - } - }, - "parameters": { - "detection-device": "CPU" - } - } - }, - "check_running": { - "timeout": 2.0 - }, - "check_rtsp_stream": { - "delay": 0.2, - "url": "rtsp://localhost", - "port": 8554 - }, - "abort": { - "delay": 0.5 - }, - "check_stopped": { - "timeout": 0.5 - }, - "result": "b2fb1fc448b311ed9def0242ac110003" -} \ No newline at end of file diff --git a/tests/test_cases/rest_execution/gpu/rest_audio_detection_gpu_gstreamer.json b/tests/test_cases/rest_execution/gpu/rest_audio_detection_gpu_gstreamer.json deleted file mode 100644 index 496a600..0000000 --- a/tests/test_cases/rest_execution/gpu/rest_audio_detection_gpu_gstreamer.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "path": "pipelines/audio_detection/environment", - "start": { - "body": { - "source": { - "uri": "file:///home/pipeline-server/tests/media/how_are_you_doing.wav", - "type": "uri" - }, - "destination": { - "type": "file", - "path": "/tmp/rest_audio_detection_gstreamer", - "format": "json-lines" - }, - "parameters": { - "detection-device": "GPU" - } - } - }, - "check_running": { - "timeout": 30.0 - }, - "abort": { - "delay": 0 - }, - "check_stopped": { - "timeout": 0.5 - }, - "result": "b6af55f448b311ed9def0242ac110003" -} \ No newline at end of file diff --git a/tests/test_cases/rest_execution/gpu/rest_object_classification_auto_gstreamer.json b/tests/test_cases/rest_execution/gpu/rest_object_classification_auto_gstreamer.json deleted file mode 100644 index 83c2b19..0000000 --- a/tests/test_cases/rest_execution/gpu/rest_object_classification_auto_gstreamer.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "path": "pipelines/object_classification/vehicle_attributes", - "start": { - "body": { - "source": { - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "type": "uri" - }, - "destination": { - "type": "file", - "path": "/tmp/rest_object_classification_auto_gstreamer.json", - "format": "json-lines" - }, - "parameters": { - "detection-properties": { - "device": "AUTO", - "model-instance-id": "detection_rest_object_classification_auto_gstreamer" - }, - "classification-properties": { - "device": "AUTO", - "model-instance-id": "classification_rest_object_classification_auto_gstreamer" - } - } - } - }, - "check_running": { - "timeout": 60.0 - }, - "abort": { - "delay": 0.5 - }, - "check_stopped": { - "timeout": 0.5 - }, - "result": "bb0c2dfc48b311ed9def0242ac110003" -} \ No newline at end of file diff --git a/tests/test_cases/rest_execution/gpu/rest_object_classification_gpu_gstreamer.json b/tests/test_cases/rest_execution/gpu/rest_object_classification_gpu_gstreamer.json deleted file mode 100644 index 97cf0c7..0000000 --- a/tests/test_cases/rest_execution/gpu/rest_object_classification_gpu_gstreamer.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "path": "pipelines/object_classification/vehicle_attributes", - "start": { - "body": { - "source": { - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "type": "uri" - }, - "destination": { - "type": "file", - "path": "/tmp/rest_object_classification", - "format": "json-lines" - }, - "parameters": { - "detection-device": "GPU", - "classification-device": "GPU" - } - } - }, - "check_running": { - "timeout": 60.0 - }, - "abort": { - "delay": 0.5 - }, - "check_stopped": { - "timeout": 0.5 - }, - "result": "b9498be048b311ed9def0242ac110003" -} \ No newline at end of file diff --git a/tests/test_cases/rest_execution/gpu/rest_object_classification_multi_hetero_cpu_gpu_gstreamer.json b/tests/test_cases/rest_execution/gpu/rest_object_classification_multi_hetero_cpu_gpu_gstreamer.json deleted file mode 100644 index 08388d8..0000000 --- a/tests/test_cases/rest_execution/gpu/rest_object_classification_multi_hetero_cpu_gpu_gstreamer.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "path": "pipelines/object_classification/vehicle_attributes", - "start": { - "body": { - "source": { - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "type": "uri" - }, - "destination": { - "type": "file", - "path": "/tmp/rest_object_classification", - "format": "json-lines" - }, - "parameters": { - "detection-properties": { - "device": "MULTI:GPU,CPU", - "model-instance-id": "detection_rest_object_classification_cpu_gpu_gstreamer" - }, - "classification-properties": { - "device": "HETERO:CPU,GPU", - "model-instance-id": "classification_rest_object_classification_cpu_gpu_gstreamer" - } - } - } - }, - "check_running": { - "timeout": 60.0 - }, - "abort": { - "delay": 0.5 - }, - "check_stopped": { - "timeout": 0.5 - }, - "result": "b6a667c848b311ed9def0242ac110003" -} \ No newline at end of file diff --git a/tests/test_cases/rest_execution/gpu/rest_object_detection_gpu_gstreamer.json b/tests/test_cases/rest_execution/gpu/rest_object_detection_gpu_gstreamer.json deleted file mode 100644 index 3878168..0000000 --- a/tests/test_cases/rest_execution/gpu/rest_object_detection_gpu_gstreamer.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "path": "pipelines/object_detection/person_vehicle_bike", - "start": { - "body": { - "source": { - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "type": "uri" - }, - "destination": { - "type": "file", - "path": "/tmp/rest_object_detection", - "format": "json-lines" - }, - "parameters": { - "detection-device": "GPU" - } - } - }, - "check_running": { - "timeout": 60.0 - }, - "abort": { - "delay": 0.5 - }, - "check_stopped": { - "timeout": 0.5 - }, - "result": "bc972ed848b311ed9def0242ac110003" -} \ No newline at end of file diff --git a/tests/test_cases/rest_execution/gpu/rest_object_tracking_gpu_gstreamer.json b/tests/test_cases/rest_execution/gpu/rest_object_tracking_gpu_gstreamer.json deleted file mode 100644 index 3c1b4be..0000000 --- a/tests/test_cases/rest_execution/gpu/rest_object_tracking_gpu_gstreamer.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "path": "pipelines/object_tracking/person_vehicle_bike", - "start": { - "body": { - "source": { - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "type": "uri" - }, - "destination": { - "type": "file", - "path": "/tmp/rest_object_tracking", - "format": "json-lines" - }, - "parameters": { - "detection-device": "GPU", - "classification-device": "GPU", - "detection-model-instance-id": "rest_gpu_tracking_detection", - "classification-model-instance-id": "rest_gpu_tracking_classification" - } - } - }, - "check_running": { - "timeout": 60.0 - }, - "abort": { - "delay": 0.5 - }, - "check_stopped": { - "timeout": 0.5 - }, - "result": "b7152c1248b311ed9def0242ac110003" -} \ No newline at end of file diff --git a/tests/test_cases/rest_execution/myriad/rest_object_detection_myriad_gstreamer.json b/tests/test_cases/rest_execution/myriad/rest_object_detection_myriad_gstreamer.json deleted file mode 100644 index 7a4aa36..0000000 --- a/tests/test_cases/rest_execution/myriad/rest_object_detection_myriad_gstreamer.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "path": "pipelines/object_detection/person_vehicle_bike", - "start" : { - "body": { - "source": { - "uri": "file:///home/pipeline-server/tests/media/person-bicycle-car-detection.mp4", - "type": "uri" - }, - "destination": { - "type": "file", - "path": "/tmp/rest_object_detection", - "format": "json-lines" - }, - "parameters": { - "detection-device": "MYRIAD", - "detection-model-instance-id":"" - } - } - }, - "check_running" : { - "timeout": 5.0 - }, - "check_stopped" : { - "timeout": 100 - } -} diff --git a/tests/test_image_requirements.py b/tests/test_image_requirements.py deleted file mode 100644 index 477c795..0000000 --- a/tests/test_image_requirements.py +++ /dev/null @@ -1,46 +0,0 @@ -''' -* Copyright (C) 2022 Intel Corporation. -* -* SPDX-License-Identifier: BSD-3-Clause -''' -from tests.common import results_processing -import os -import json - -if os.environ['FRAMEWORK'] == "gstreamer": - import gi - # pylint: disable=wrong-import-order, wrong-import-position - gi.require_version('Gst', '1.0') - from gi.repository import Gst - # pylint: enable=wrong-import-order, wrong-import-position -else: - print("TODO: Handle FFmpeg base image requirements") - -def _check_plugins(needed, expect_missing): - print("Plugin Check") - missing = list(filter(lambda p: Gst.Registry.get().find_plugin(p) is None, needed)) - if missing: - print("Missing gstreamer plugins: {}".format(missing)) - assert(missing == expect_missing), "Missing GStreamer Plugins: {}".format(missing) - return False - print("Successfully found required gstreamer plugins: {}".format(needed)) - return True - -def test_image_requirements(PipelineServer, test_case, test_filename, generate): - if "required_plugins" in test_case: - needed = test_case["required_plugins"] - expect_missing = test_case["expect_missing"] - if generate: - print("Generating list of available plugins found within test image...") - plugins = Gst.Registry.get().get_plugin_list() - results = [] - for plugin in plugins: - results.append(plugin.get_name()) - test_case["generated_available_plugins"] = results - with open(test_filename+'.generated', "w") as test_output: - json.dump(test_case, test_output, indent=4) - if expect_missing: - assert not _check_plugins(needed, expect_missing), "Even expected missing plugins were found in test image!" - else: - assert _check_plugins(needed, expect_missing), "One or more plugins missing from test image!" - return diff --git a/tests/test_initialization.py b/tests/test_initialization.py deleted file mode 100644 index 939df35..0000000 --- a/tests/test_initialization.py +++ /dev/null @@ -1,43 +0,0 @@ -''' -* Copyright (C) 2019 Intel Corporation. -* -* SPDX-License-Identifier: BSD-3-Clause -''' - -import os -import json -import requests -from collections import namedtuple -import pytest -import urllib - -def test_initialization(PipelineServer, test_case, test_filename, generate): - test_prefix = os.path.splitext(os.path.basename(test_filename))[0] - test_model_dir = os.path.join(os.path.dirname(test_filename), - "{0}_models".format(test_prefix)) - test_pipeline_dir = os.path.join(os.path.dirname(test_filename), - "{0}_pipelines".format(test_prefix)) - if "model_dir" not in test_case["options"]: - if os.path.isdir(test_model_dir): - test_case["options"]["model_dir"] = test_model_dir - - if ("pipeline_dir" not in test_case["options"]): - if (os.path.isdir(test_pipeline_dir)): - test_case["options"]["pipeline_dir"] = test_pipeline_dir - - if ("exception" in test_case): - exception_class = None - if (test_case["exception"]["type"] in globals()): - exception_class = globals()[test_case["exception"]["type"]] - elif (test_case["exception"]["type"] in __builtins__): - exception_class = __builtins__[test_case["exception"]["type"]] - - with pytest.raises(exception_class) as exception: - PipelineServer.start(test_case["options"]) - - if("value" in test_case["exception"]): - assert(str(exception.value) == test_case["exception"]["value"]) - else: - PipelineServer.start(test_case["options"]) - - PipelineServer.stop() diff --git a/tests/test_pipeline_client.py b/tests/test_pipeline_client.py deleted file mode 100644 index f59a28f..0000000 --- a/tests/test_pipeline_client.py +++ /dev/null @@ -1,92 +0,0 @@ -''' -* Copyright (C) 2019 Intel Corporation. -* -* SPDX-License-Identifier: BSD-3-Clause -''' - -import pytest -import re -import time -import sys -sys.path.append('/home/pipeline-server/client') # Temp fix before PYTHONPATH updated -import pipeline_client - -SERVER_ADDRESS = "http://localhost:8080" - -def test_pipeline_client(service, test_case, test_filename, generate, capsys): - show_request = test_case.get('show_request', False) - if test_case['test_function'] == 'run': - server_address = test_case.get('server_address', SERVER_ADDRESS) - request = pipeline_client.REQUEST_TEMPLATE - request['source']['uri'] = test_case['uri'] - instance_id = pipeline_client.start_pipeline(server_address, test_case['pipeline'], request, show_request=show_request) - assert instance_id is not None - time.sleep(test_case['sleep_time_sec']) - status = pipeline_client.get_pipeline_status(server_address, instance_id) - assert status['state'] == 'RUNNING' - pipeline_client.stop_pipeline(server_address, instance_id) - status = pipeline_client.get_pipeline_status(server_address, instance_id) - assert status['state'] == 'ABORTED' - elif test_case['test_function'] == 'run_with_bad_detection_device': - server_address = test_case.get('server_address', SERVER_ADDRESS) - request = pipeline_client.REQUEST_TEMPLATE - request['source']['uri'] = test_case['uri'] - request.update({'parameters' : {'detection-device' : test_case['detection_device']}}) - instance_id = pipeline_client.start_pipeline(server_address, test_case['pipeline'], request, show_request=show_request) - with pytest.raises(ValueError): - pipeline_client.wait_for_pipeline_completion(server_address, instance_id) - captured = capsys.readouterr() - assert test_case['expected_output'] in captured.out - del request['parameters'] - elif test_case['test_function'] == 'start_pipeline': - server_address = test_case.get('server_address', SERVER_ADDRESS) - request = pipeline_client.REQUEST_TEMPLATE - request['source']['uri'] = test_case['uri'] - try: - instance_id = pipeline_client.start_pipeline(server_address, test_case['pipeline'], request, show_request=show_request) - assert instance_id == test_case['expected_id'] - captured = capsys.readouterr() - assert test_case['expected_output'] in captured.out - except RuntimeError as exception: - assert test_case['expected_output'] in str(exception) - elif test_case['test_function'] == 'stop_pipeline': - server_address = test_case.get('server_address', SERVER_ADDRESS) - pipeline_client.stop_pipeline(server_address, test_case['instance_id']) - captured = capsys.readouterr() - assert test_case['expected_output'] in captured.out - elif test_case['test_function'] == 'list_pipelines': - server_address = test_case.get('server_address', SERVER_ADDRESS) - if show_request: - with pytest.raises(SystemExit): - pipeline_client._list(server_address, 'pipelines', True) - captured = capsys.readouterr() - assert test_case['expected_output'] in captured.out - else: - pipeline_client._list(server_address, 'pipelines') - captured = capsys.readouterr() - assert re.fullmatch(test_case['regex'], captured.out) is not None - elif test_case['test_function'] == 'list_models': - server_address = test_case.get('server_address', SERVER_ADDRESS) - if test_case['show_request']: - with pytest.raises(SystemExit): - pipeline_client._list(server_address, 'models', True) - captured = capsys.readouterr() - assert test_case['expected_output'] in captured.out - else: - pipeline_client._list(server_address, 'models') - captured = capsys.readouterr() - assert re.fullmatch(test_case['regex'], captured.out) is not None - elif test_case['test_function'] == 'tags': - server_address = test_case.get('server_address', SERVER_ADDRESS) - request = pipeline_client.REQUEST_TEMPLATE - request['source']['uri'] = test_case['uri'] - request['tags'] = test_case['tags'] - with pytest.raises(SystemExit): - pipeline_client.start_pipeline(server_address, test_case['pipeline'], request, show_request=show_request) - captured = capsys.readouterr() - print("") - print(test_case['expected_output']) - print(captured.out) - assert test_case['expected_output'] == captured.out - else: - pytest.fail() diff --git a/tests/test_pipeline_execution.py b/tests/test_pipeline_execution.py deleted file mode 100644 index de3217d..0000000 --- a/tests/test_pipeline_execution.py +++ /dev/null @@ -1,181 +0,0 @@ -''' -* Copyright (C) 2019 Intel Corporation. -* -* SPDX-License-Identifier: BSD-3-Clause -''' - -import os -import json -import time -from server.pipeline import Pipeline -from threading import Thread -import copy -from tests.common import results_processing -from queue import Queue -import re -import pytest - -if os.environ['FRAMEWORK'] == "gstreamer": - import gi - from gstgva.util import libgst, gst_buffer_data, GVAJSONMeta - from gstgva.video_frame import VideoFrame - # pylint: disable=wrong-import-order, wrong-import-position - gi.require_version('Gst', '1.0') - gi.require_version('GstApp', '1.0') - from gi.repository import Gst, GstApp - # pylint: enable=wrong-import-order, wrong-import-position - from server.pipeline_server import PipelineServer - from server.app_source import AppSource - from server.app_destination import AppDestination - from server.gstreamer_app_source import GStreamerAppSource - from server.gstreamer_app_source import GvaFrameData - from server.gstreamer_app_destination import GStreamerAppDestination - -PAUSE = 0.1 - -def _get_results_app(test_case, results): - decode_output = Queue() - detect_input = test_case["request"]["source"]["input"] - detect_output = test_case["request"]["destination"]["output"] - decode_cfg = test_case["decode"] - print(decode_cfg) - decode_cfg["destination"]["output"] = decode_output - pipeline = PipelineServer.pipeline(decode_cfg["pipeline"]["name"], - decode_cfg["pipeline"]["version"]) - pipeline.start(decode_cfg) - sequence_number = 0 - end_of_stream = False - while (not end_of_stream): - if (not decode_output.empty()): - decoded_frame = decode_output.get() - if (decoded_frame): - with gst_buffer_data(decoded_frame.sample.get_buffer(), Gst.MapFlags.READ) as data: - new_sample = GvaFrameData(bytes(data), - decoded_frame.sample.get_caps(), - message={'sequence_number':sequence_number}) - detect_input.put(new_sample) - sequence_number += 1 - else: - detect_input.put(None) - while (not detect_output.empty()): - result = detect_output.get() - if not result: - end_of_stream = True - break - if (result.video_frame): - regions = list(result.video_frame.regions()) - messages = list(result.video_frame.messages()) - if regions and len(regions) > 0: - result_dict = {} - result_dict['message'] = json.loads(messages[0]) - region_results = [] - for region in regions: - region_dict = {} - rect = region.rect() - region_dict['x'] = rect.x - region_dict['y'] = rect.y - region_dict['w'] = rect.w - region_dict['h'] = rect.h - region_dict['label'] = region.label() - region_results.append(region_dict) - result_dict['regions'] = region_results - results.append(result_dict) - #print(result_dict) - -def get_results_app(test_case, results): - thread = Thread(target=_get_results_app, args=[test_case, results], daemon=True) - thread.start() - return thread - -def wait_for_pipeline_completion(pipeline, PipelineServer, expected_states=[Pipeline.State.QUEUED, Pipeline.State.COMPLETED], sleep_duration=PAUSE): - status = pipeline.status() - transitions = [status] - while (not status.state.stopped()): - if (status.state != transitions[-1].state): - transitions.append(status) - time.sleep(sleep_duration) - if len(expected_states) == 1 and expected_states[0] == Pipeline.State.ABORTED: - pipeline.stop() - status = pipeline.status() - transitions.append(status) - if len(expected_states) == 1: - assert transitions[-1].state == expected_states[0] - else: - assert transitions[0].state == expected_states[0] - assert transitions[-1].state == expected_states[1] - PipelineServer.stop() - -def test_pipeline_execution(PipelineServer, test_case, test_filename, generate, numerical_tolerance, skip_sources, capsys): - if skip_sources: - for source in skip_sources: - if re.search("[a-z_]+{}[a-z_]+".format(source), test_filename): - pytest.skip("add --connected_sources {} to enable related tests".format(source)) - _test_case = copy.deepcopy(test_case) - test_prefix = os.path.splitext(os.path.basename(test_filename))[0] - test_model_dir = os.path.join(os.path.dirname(test_filename), - "{0}_models".format(test_prefix)) - test_pipeline_dir = os.path.join(os.path.dirname(test_filename), - "{0}_pipelines".format(test_prefix)) - if "model_dir" not in _test_case["options"]: - if os.path.isdir(test_model_dir): - _test_case["options"]["model_dir"] = test_model_dir - if ("pipeline_dir" not in _test_case["options"]): - if (os.path.isdir(test_pipeline_dir)): - _test_case["options"]["pipeline_dir"] = test_pipeline_dir - if "numerical_tolerance" in _test_case: - numerical_tolerance = _test_case["numerical_tolerance"] - - PipelineServer.start(_test_case["options"]) - pipeline = PipelineServer.pipeline(_test_case["pipeline"]["name"], - _test_case["pipeline"]["version"]) - assert pipeline is not None, "Failed to Load Pipeline!" - - if _test_case.get("check_second_pipeline_queued", None): - pipeline.start(_test_case["request"]) - pipeline1 = PipelineServer.pipeline(_test_case["pipeline"]["name"], - _test_case["pipeline"]["version"]) - pipeline1.start(_test_case["request"]) - assert pipeline1 is not None, "Failed to Load second Pipeline!" - while not pipeline.status().state.stopped(): - assert pipeline1.status().state == Pipeline.State.QUEUED, \ - "Concurrent pipeline execution detected when max_running_pipelines set to 1" - wait_for_pipeline_completion(pipeline1, PipelineServer) - return - results_processing.clear_results(_test_case) - results = [] - src_type = _test_case["request"]["source"]["type"] - if src_type in ["uri", "gst", "webcam"]: - thread = results_processing.get_results_fifo(_test_case, results) - elif src_type == "application": - _test_case["request"]["source"]["input"] = Queue() - _test_case["request"]["destination"]["output"] = Queue() - thread = get_results_app(_test_case, results) - - pipeline.start(_test_case["request"]) - - if _test_case.get("abort"): - abort_delay = _test_case["abort"]["delay"] - wait_for_pipeline_completion(pipeline, PipelineServer, [Pipeline.State.ABORTED], abort_delay) - elif _test_case.get("expect_error"): - wait_for_pipeline_completion(pipeline, PipelineServer, [Pipeline.State.ERROR]) - else: - wait_for_pipeline_completion(pipeline, PipelineServer) - - if "expected_server_output" in _test_case: - captured = capsys.readouterr() - pattern = _test_case["expected_server_output"] - assert re.search( - r'{}'.format(pattern), captured.err) is not None - - if (thread): - thread.join() - elif not _test_case.get("expect_error"): - results_processing.get_results_file(_test_case, results) - if generate: - test_case["result"] = results - with open(test_filename+'.generated', "w") as test_output: - json.dump(test_case, test_output, indent=4) - elif _test_case.get("golden_results", True): - assert results_processing.cmp_results(results, - _test_case["result"], - numerical_tolerance), "Inference Result Mismatch" diff --git a/tests/test_pipeline_instances.py b/tests/test_pipeline_instances.py deleted file mode 100644 index 6063cdf..0000000 --- a/tests/test_pipeline_instances.py +++ /dev/null @@ -1,62 +0,0 @@ -''' -* Copyright (C) 2019 Intel Corporation. -* -* SPDX-License-Identifier: BSD-3-Clause -''' - -import time -from server.pipeline import Pipeline -import signal -import sys - -PAUSE = 0.1 - -def wait_for_pipeline_state(pipeline_manager, pipelines, target_states): - matches_target_state = False - print("Waiting for {} pipelines to be {}".format(len(pipelines), target_states)) - timed_out = False - start_time = time.time() - max_time = 4 * len(pipelines) - while not matches_target_state and not timed_out: - matches_target_state = True - statuses = pipeline_manager.get_all_instance_status() - # print(statuses) - assert len(statuses) == len(pipelines), "Incorrect number of instance entries" - for index, status in enumerate(statuses): - result = pipeline_manager.get_instance_summary(status["id"]) - assert result, "get_instance_parameters failed" - expected_pipeline = pipelines[index] - pipeline = result["request"]["pipeline"] - assert pipeline["name"] == expected_pipeline["name"], "Pipeline name mismatch" - assert pipeline["version"] == expected_pipeline["version"], "Pipeline version mismatch" - if status["state"] not in target_states: - matches_target_state = False - time.sleep(PAUSE) - if time.time() - start_time > max_time: - timed_out = True - print("Pipelines {} in {:.2f}s".format(target_states, time.time() - start_time)) - assert not timed_out, "Timed out waiting for pipeline states to reach {}".format(target_states) - -def test_pipeline_instances(PipelineServer, test_case, test_filename, generate, numerical_tolerance, skip_sources): - PipelineServer.start(test_case["options"]) - pipeline_instances = [] - test_case_pipelines = [] - iterations = test_case.get("iterations", 1) - for _ in range(iterations): - for tc in test_case["pipelines"]: - pipeline_instance = PipelineServer.pipeline(tc["name"], tc["version"]) - assert pipeline_instance is not None, "Failed to Load Pipeline!" - pipeline_instance.start(tc["request"]) - pipeline_instances.append(pipeline_instance) - test_case_pipelines.append(tc) - if "start_delay" in test_case: - time.sleep(test_case["start_delay"]) - wait_for_pipeline_state(PipelineServer.pipeline_manager, test_case_pipelines, [Pipeline.State.COMPLETED, Pipeline.State.RUNNING]) - if "abort_delay" in test_case: - abort_delay = test_case["abort_delay"] - print("Pipelines running - stop in {}s".format(abort_delay)) - time.sleep(abort_delay) - for pipeline_instance in pipeline_instances: - pipeline_instance.stop() - wait_for_pipeline_state(PipelineServer.pipeline_manager, test_case_pipelines, [Pipeline.State.COMPLETED, Pipeline.State.ABORTED]) - PipelineServer.stop() diff --git a/tests/test_pipeline_performance.py b/tests/test_pipeline_performance.py deleted file mode 100644 index f993f6b..0000000 --- a/tests/test_pipeline_performance.py +++ /dev/null @@ -1,132 +0,0 @@ -''' -* Copyright (C) 2019 Intel Corporation. -* -* SPDX-License-Identifier: BSD-3-Clause -''' - -import os -import json -import requests -import parse -import pytest -import urllib -import time -import subprocess -import shlex -import statistics -import sys -from parse import search -from tests.common import pipeline_processing - -TIMEOUT = 120 -HTTP_OK = 200 -states = ["QUEUED", "RUNNING", "ABORTED", "COMPLETED"] -results_output_file = "/home/pipeline-server/tests/results/pytest/gstreamer/average_fps.txt" -turbo_filepath_string = "/sys/devices/system/cpu/intel_pstate/no_turbo" - -@pytest.mark.performance -def test_pipeline_performance(service, test_case, test_filename, generate): - - iterations = 1 - pipeline_server_avg_fps = [] - gst_launch_avg_fps = [] - - if "fps_percentage_diff_limit" in test_case: - fps_percentage_diff_limit = test_case["fps_percentage_diff_limit"] - else: - pytest.fail("Required parameter fps_percentage_diff_limit missing") - if "gst_launch_string" in test_case: - gst_launch_string = test_case["gst_launch_string"] - else: - pytest.fail("Required parameter gst_launch_string missing") - if "iterations" in test_case: - iterations = test_case["iterations"] - if iterations < 3: - pytest.fail("Required parameter iterations must be > 2 to derive the mean") - check_turbo_is_disabled() - run_gst_pipeline(iterations, gst_launch_string, gst_launch_avg_fps) - run_ps_pipeline(iterations, pipeline_server_avg_fps, service, test_case) - check_results(gst_launch_avg_fps, pipeline_server_avg_fps, fps_percentage_diff_limit) - -def run_gst_pipeline(iterations, gst_launch_string, gst_launch_avg_fps): - for i in range(iterations): - start_gst_time = time.time() - print("Initiating gst_launch iteration #{iter}".format(iter=i), flush=True) - result = subprocess.run(shlex.split(gst_launch_string), stdout=subprocess.PIPE, stderr=subprocess.STDOUT) - try: - gst_launch_avg_fps.append(extract_avg_fps_from_output(result.stdout)) - except: - print(result.stderr) - pytest.fail("Unable to get avg_fps from gst-launch command") - time_elapsed = time.time() - start_gst_time - print("##teamcity[buildStatisticValue key='gst_launch_duration_iter{}' value='{}']".format(i, round(time_elapsed,3)), flush=True) - -def run_ps_pipeline(iterations, pipeline_server_avg_fps, service, test_case): - - url = urllib.parse.urljoin(service.host, test_case['path']) - for i in range(iterations): - start_ps_time = time.time() - print("Initiating ps_launch iteration #{iter}".format(iter=i), flush=True) - response = requests.post(url, - json=test_case["request"], - timeout=TIMEOUT) - # Check response to POST - assert response.status_code == HTTP_OK, "Status Code Mismatch" - instance = json.loads(response.text) - # Check pipeline state transitions - instance_url = urllib.parse.urljoin(service.host, "pipelines/status/{}".format(instance)) - pipeline_processing.wait_for_pipeline_status(instance_url, "COMPLETED", states, TIMEOUT) - # Get avg_fps - pipeline_server_avg_fps.append(pipeline_processing.get_pipeline_avg_fps(instance_url)) - time_elapsed = time.time() - start_ps_time - print("##teamcity[buildStatisticValue key='pipeline_server_duration_iter{}' value='{}']".format(i, round(time_elapsed,3)), flush=True) - -def check_results(gst_launch_avg_fps, pipeline_server_avg_fps, fps_percentage_diff_limit): - print("Excluding gst-launch min value from average fps calculation: {}".format(min(gst_launch_avg_fps))) - print("Excluding gst-launch max value from average fps calculation: {}".format(max(gst_launch_avg_fps))) - gst_launch_avg_fps.remove(min(gst_launch_avg_fps)) - gst_launch_avg_fps.remove(max(gst_launch_avg_fps)) - gst_launch_overall_avg_fps = statistics.mean(gst_launch_avg_fps) - print("Excluding pipeline server min value from average fps calculation: {}".format(min(pipeline_server_avg_fps))) - print("Excluding pipeline server max value from average fps calculation: {}".format(max(pipeline_server_avg_fps))) - pipeline_server_avg_fps.remove(min(pipeline_server_avg_fps)) - pipeline_server_avg_fps.remove(max(pipeline_server_avg_fps)) - pipeline_server_overall_avg_fps = statistics.mean(pipeline_server_avg_fps) - fps_percentage_diff = abs(pipeline_server_overall_avg_fps - gst_launch_overall_avg_fps) / gst_launch_overall_avg_fps * 100 - metrics = { - "pipeline_server_min_fps" : round(min(pipeline_server_avg_fps),3), - "pipeline_server_max_fps" : round(max(pipeline_server_avg_fps),3), - "pipeline_server_avg_fps" : round(pipeline_server_overall_avg_fps,3), - "gst_launch_min_fps" : round(min(gst_launch_avg_fps),3), - "gst_launch_max_fps" : round(max(gst_launch_avg_fps),3), - "gst_launch_avg_fps" : round(gst_launch_overall_avg_fps,3), - "fps_percentage_diff" : round(fps_percentage_diff,3) - } - for key, value in metrics.items(): - print("##teamcity[buildStatisticValue key='{}' value='{}']".format(key, value)) - - try: - with open(results_output_file, 'a+') as output_file: - artifact_result = "\n".join(["{}={}".format(key, value) for key, value in metrics.items()]) - output_file.write(artifact_result) - output_file.flush() - except OSError: - print("Could not open file for write {}".format(results_output_file)) - - assert fps_percentage_diff < fps_percentage_diff_limit - -def extract_avg_fps_from_output(output): - result = search("\nFpsCounter(overall {}sec): total={avg_fps:f} fps, number-streams={}, per-stream={}", output.decode('ascii')) - avg_fps = result['avg_fps'] - assert type(avg_fps) == float, "Unable to get avg_fps from gst-launch command" - return avg_fps - -def check_turbo_is_disabled(): - print("Ensuring turbo is disabled.") - # Caller responsible to ensure turbo is disabled - see performance ADR for details - inspect_turbo_cmd = "cat " + turbo_filepath_string - inspect_turbo_result = subprocess.run(shlex.split(inspect_turbo_cmd), capture_output=True) - print("inspect_turbo_result.stdout: {}".format(inspect_turbo_result.stdout), flush=True) - print("inspect_turbo_result.stderr: {}".format(inspect_turbo_result.stderr), flush=True) - assert inspect_turbo_result.stdout == b'1\n', "Host not prepared for Performance Tests, must have PState no_turbo disabled." - print("Host meets requirements to run Performance tests.") \ No newline at end of file diff --git a/tests/test_pipeline_stability.py b/tests/test_pipeline_stability.py deleted file mode 100644 index b893fb5..0000000 --- a/tests/test_pipeline_stability.py +++ /dev/null @@ -1,95 +0,0 @@ -''' -* Copyright (C) 2019 Intel Corporation. -* -* SPDX-License-Identifier: BSD-3-Clause -''' - -import os -import json -import requests -from collections import namedtuple -import pytest -import urllib -import time -from server.pipeline import Pipeline -from threading import Thread -import copy -import tempfile -from tests.common import results_processing - -PAUSE = 0.1 -MIN_FPS_DROP_DURATION = 50 - -def start_and_run_pipeline(_test_case, pipeline, stability_duration, start_time): - previous_avg_fps = 0 - pipeline.start(_test_case["request"]) - status = pipeline.status() - fps_check_start_time = time.time() - transitions = [status] - while (not status.state.stopped()): - if (status.state != transitions[-1].state): - transitions.append(status) - time.sleep(PAUSE) - status = pipeline.status() - if status.avg_fps < previous_avg_fps: - if (time.time()-fps_check_start_time) > MIN_FPS_DROP_DURATION: - pipeline.stop() - assert False, "Pipeline has stalled" - else: - fps_check_start_time = time.time() - previous_avg_fps = status.avg_fps - if (time.time() - start_time) >= stability_duration: - pipeline.stop() - return True - transitions.append(status) - assert transitions[0].state == Pipeline.State.QUEUED - assert transitions[-1].state == Pipeline.State.COMPLETED - return False - -@pytest.mark.stability -def test_pipeline_stability(PipelineServer, test_case, test_filename, generate, numerical_tolerance, stability_duration): - duration_met = False - _test_case = copy.deepcopy(test_case) - if "numerical_tolerance" in _test_case: - numerical_tolerance = _test_case["numerical_tolerance"] - if stability_duration is None and "stability_duration" in _test_case: - stability_duration = _test_case["stability_duration"] - elif stability_duration is None: - stability_duration = 600 - if "relaunch_on_complete" in _test_case: - relaunch_on_complete = _test_case["relaunch_on_complete"] - PipelineServer.start(_test_case["options"]) - start_time = time.time() - if relaunch_on_complete: - num_loops = 1 - with tempfile.TemporaryDirectory() as temp_dir: - while not duration_met: - _test_case["request"]["destination"]["path"] = temp_dir + "/stability" + \ - str(num_loops) + ".json" - pipeline = PipelineServer.pipeline(_test_case["pipeline"]["name"], - _test_case["pipeline"]["version"]) - results_processing.clear_results(_test_case) - results = [] - thread = results_processing.get_results_fifo(_test_case, results) - duration_met = start_and_run_pipeline(_test_case, pipeline, - stability_duration, start_time) - if (thread): - thread.join() - elif not duration_met: - results_processing.get_results_file(_test_case, results) - if generate: - test_case["result"] = results - with open(test_filename+'.generated', "w") as test_output: - json.dump(test_case, test_output, indent=4) - elif not duration_met and _test_case.get("golden_results", True): - assert results_processing.cmp_results(results, - _test_case["result"], - numerical_tolerance), \ - "Inference Result Mismatch" - num_loops = num_loops + 1 - else: - pipeline = PipelineServer.pipeline(_test_case["pipeline"]["name"], - _test_case["pipeline"]["version"]) - duration_met = start_and_run_pipeline(_test_case, pipeline, stability_duration, start_time) - PipelineServer.stop() - assert duration_met diff --git a/tests/test_rest_api.py b/tests/test_rest_api.py deleted file mode 100644 index 2d55284..0000000 --- a/tests/test_rest_api.py +++ /dev/null @@ -1,59 +0,0 @@ -''' -* Copyright (C) 2019 Intel Corporation. -* -* SPDX-License-Identifier: BSD-3-Clause -''' - -import os -import json -import requests -import pytest -import urllib - -TIMEOUT = 30 - -#@pytest.mark.parametrize("test_case",[0],indirect=["test_case"]) -def test_rest_api(service, test_case, test_filename, generate): - url = urllib.parse.urljoin(service.host, test_case['path']) - if test_case["verb"] == "get": - response = requests.get(url, - json=test_case["body"], - timeout=TIMEOUT) - elif test_case["verb"] == "delete": - response = requests.delete(url, - json=test_case["body"], - timeout=TIMEOUT) - elif test_case["verb"] == "post": - response = requests.post(url, - json=test_case["body"], - timeout=TIMEOUT) - else: - assert False, "Unknown Test Case Verb" - if generate: - test_case["status_code"] = response.status_code - with open(test_filename+'.generated', "w") as test_output: - json.dump(test_case, test_output, indent=4) - else: - assert test_case["status_code"] == response.status_code, "Status Code Mismatch" - if "result" in test_case: - comparison = json.loads(response.text) - expected = test_case["result"] - assert type(comparison) == type(expected), "Response Type Mismatch" - if isinstance(expected, list): - if 'sort_key' in test_case: - sort_key = test_case['sort_key'] - if 'secondary_sort_key' in test_case: - secondary_sort_key = test_case['secondary_sort_key'] - # Sort with primary and secondary keys - expected = sorted(expected, key=lambda x: (x[sort_key], str(x[secondary_sort_key]))) - comparison = sorted(comparison, key=lambda x: (x[sort_key], str(x[secondary_sort_key]))) - assert comparison == expected, "Response Value Mismatch" - else: - # Sort with primary key only - expected = sorted(expected, key=lambda x: x[sort_key]) - comparison = sorted(comparison, key=lambda x: x[sort_key]) - assert comparison == expected, "Response Value Mismatch" - else: - assert len(comparison) == len(expected), "Response List Length Mismatch" - for entry in expected: - assert entry in comparison, "Response Value Mismatch" diff --git a/tests/test_rest_execution.py b/tests/test_rest_execution.py deleted file mode 100644 index b39f6a8..0000000 --- a/tests/test_rest_execution.py +++ /dev/null @@ -1,91 +0,0 @@ -''' -* Copyright (C) 2019 Intel Corporation. -* -* SPDX-License-Identifier: BSD-3-Clause -''' - -import os -import json -import requests -import pytest -import urllib -import time -import uuid -from tests.common import pipeline_processing - -TIMEOUT = 30 -HTTP_OK = 200 -states = ["QUEUED", "RUNNING", "ABORTED", "COMPLETED"] -states_negative = ["QUEUED", "ERROR"] - -def test_rest_execution(service, test_case, test_filename, generate): - url = urllib.parse.urljoin(service.host, test_case['path']) - start_test = test_case["start"] - response = requests.post(url, - json=start_test["body"], - timeout=TIMEOUT) - if generate: - test_case["result"] = json.loads(response.text) - with open(test_filename+'.generated', "w") as test_output: - json.dump(test_case, test_output, indent=4) - return - # Check response to POST - assert response.status_code == HTTP_OK, "Status Code Mismatch" - instance = response.text.replace('"','').strip('\n') - try: - uuid.UUID(instance) - except: - assert False, "Invalid instance" - - # Check get all instances call - all_status_url = urllib.parse.urljoin(service.host, "pipelines/status") - response = requests.get(all_status_url, timeout=TIMEOUT) - statuses = json.loads(response.text) - assert len(statuses) > 0, "No entries in all instances status" - response.close() - - # Check pipeline state transitions - status_url = "{}/{}".format(all_status_url, str(instance)) - instance_url = urllib.parse.urljoin(service.host, "pipelines/{}".format(instance)) - if "check_error" in test_case: - # Negative tests expect errors before pipeline enters RUNNING - time.sleep(test_case["check_error"]["delay"]) - state_transition_timeout = float(test_case["check_error"]["timeout"]) - assert pipeline_processing.wait_for_pipeline_status(status_url, "ERROR", states_negative, - state_transition_timeout), "Pipeline did not error" - - if "status_result" in test_case: - response = pipeline_processing.get_pipeline_status(status_url) - assert test_case["status_result"]["error"] in str(response) - - else: - state_transition_timeout = float(test_case["check_running"]["timeout"]) - assert pipeline_processing.wait_for_pipeline_status(status_url, "RUNNING", states, - state_transition_timeout), "Pipeline did not start" - state_transition_timeout = float(test_case["check_stopped"]["timeout"]) - - if "check_rtsp_stream" in test_case: - time.sleep(test_case["check_rtsp_stream"]["delay"]) - url = test_case["check_rtsp_stream"]["url"] - port = test_case["check_rtsp_stream"]["port"] - destination = start_test["body"]["destination"] - if "frame" in destination and destination["frame"]["type"] == "rtsp": - rtsp_path = destination["frame"]["path"] - rtsp_url = "{}:{}/{}".format(url, port, rtsp_path) - print("Reading frame from %s", rtsp_url) - import cv2 - cap = cv2.VideoCapture(rtsp_url, cv2.CAP_FFMPEG) - ret, frame = cap.read() - cap.release() - assert ret, "Unable to read RTSP frame" - assert frame.size > 0 , "Unable to read RTSP frame" - - if "abort" in test_case: - time.sleep(test_case["abort"]["delay"]) - response = requests.delete(instance_url, timeout=TIMEOUT) - assert response.status_code == HTTP_OK, "DELETE Status Code Mismatch" - assert pipeline_processing.wait_for_pipeline_status(status_url, "ABORTED", states, - state_transition_timeout), "Pipeline did not abort" - else: - assert pipeline_processing.wait_for_pipeline_status(status_url, "COMPLETED", states, - state_transition_timeout), "Pipeline did not complete" diff --git a/tests/util/README.md b/tests/util/README.md deleted file mode 100644 index b671a82..0000000 --- a/tests/util/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# Intel(R) DL Streamer Pipeline Server Test Listeners - -When Intel(R) Deep Learning Streamer (Intel(R) DL Streamer) Pipeline Server pipelines are initiated their associated output is directly monitored by methods in PyTest tests. If this output is sent to a message bus, the appropriate client is instantiated and subscribes to the designated topic(s). The messages received by the pipeline execution are then compared against assertion files to confirm expectations were met. - -The scripts found in this folder are used by Team City build agents to configure and launch message brokers and for troubleshooting on the **host**. These are located here in case developers want to configure local brokers that match CI setup. diff --git a/tests/util/docker-compose-kafka-vaserving.yml b/tests/util/docker-compose-kafka-vaserving.yml deleted file mode 100644 index 37112c9..0000000 --- a/tests/util/docker-compose-kafka-vaserving.yml +++ /dev/null @@ -1,28 +0,0 @@ -version: '2' - -networks: - kafka-net: - driver: bridge - -services: - zookeeper: - image: 'bitnami/zookeeper:latest' - networks: - - kafka-net - ports: - - '2181:2181' - environment: - - ALLOW_ANONYMOUS_LOGIN=yes - kafka: - image: 'bitnami/kafka:latest' - networks: - - kafka-net - ports: - - '9092:9092' - environment: - - KAFKA_CFG_AUTO_CREATE_TOPICS_ENABLE=true - - KAFKA_CFG_ZOOKEEPER_CONNECT=zookeeper:2181 - - KAFKA_CFG_ADVERTISED_LISTENERS=PLAINTEXT://localhost:9092 - - ALLOW_PLAINTEXT_LISTENER=yes - depends_on: - - zookeeper diff --git a/tests/util/start_kafka.sh b/tests/util/start_kafka.sh deleted file mode 100755 index f192608..0000000 --- a/tests/util/start_kafka.sh +++ /dev/null @@ -1,3 +0,0 @@ -# Start simple Kafka broker -echo "Launching zookeeper and kafka containers with auto-topic creation." -docker-compose -f docker-compose-kafka-pipeline-server.yml up -d diff --git a/tests/util/start_mqtt.sh b/tests/util/start_mqtt.sh deleted file mode 100755 index f880590..0000000 --- a/tests/util/start_mqtt.sh +++ /dev/null @@ -1 +0,0 @@ -docker run -d --rm --name pipeline-server_mqtt -p 1883:1883 -p 9001:9001 eclipse-mosquitto diff --git a/tests/util/stop_kafka.sh b/tests/util/stop_kafka.sh deleted file mode 100755 index a4ea2ff..0000000 --- a/tests/util/stop_kafka.sh +++ /dev/null @@ -1,2 +0,0 @@ -echo "Stopping Kafka broker" -docker-compose -f docker-compose-kafka-pipeline-server.yml down diff --git a/tests/util/stop_mqtt.sh b/tests/util/stop_mqtt.sh deleted file mode 100755 index 545aa23..0000000 --- a/tests/util/stop_mqtt.sh +++ /dev/null @@ -1,2 +0,0 @@ -echo "Stopping MQTT broker" -docker stop pipeline-server_mqtt