Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion apps/conference-demos/rgb-depth-connections/oakapp.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,16 @@ build_steps = [

depthai_models = { yaml_path = "./depthai_models" }

[env]
WEBRTC__DC_MESSAGE__ORDERED = "false"
WEBRTC__DC_MESSAGE__MAX_RETRANSMITS = "0"
WEBRTC__DC_MESSAGE__QUEUE_POLICY = "lossy_drop_new"

Comment thread
klemen1999 marked this conversation as resolved.
Outdated
[base_image]
api_url = "https://registry-1.docker.io"
service = "registry.docker.io"
oauth_url = "https://auth.docker.io/token"
auth_type = "repository"
auth_name = "luxonis/oakapp-base"
image_name = "luxonis/oakapp-base"
image_tag = "1.2.8"
image_tag = "1.3.0"
8 changes: 5 additions & 3 deletions apps/data-collection/backend/src/snapping/snaps_producer.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,13 @@ def process(
):
continue

file_group = dai.FileGroup()
file_group.addImageDetectionsPair(
f"{cond.name}_{int(time.time())}", frame, detections
)
snap = SnapData(
snap_name=cond.name,
file_name=f"{cond.name}_{int(time.time())}",
frame=frame,
detections=detections,
file_group=file_group,
tags=cond.tags,
extras=cond.make_extras(),
)
Expand Down
Loading
Loading