Skip to content
This repository was archived by the owner on Feb 4, 2026. It is now read-only.
Open
Changes from all 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
4 changes: 2 additions & 2 deletions SocialDistance/Lambda/lambda_function.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def add_distinct_people(self, all_people, new_people):

def entry(self, inputs, outputs):
self.frame_num += 1

_cam_height = 20
cam_order = {}

for i in range(len(inputs.video_in)):
Expand All @@ -200,7 +200,7 @@ def entry(self, inputs, outputs):
redacted_image = person_image.copy()

# SD Code 1
_frame = person_image.copy()
_frame = person_image
_image_shape, _size_mask_shape = sdu.get_shapes(_frame)

x1 = self.preprocess(person_image)
Expand Down