Skip to main content

Person Counter using torch

Project description

Person counter

from opencv_stream import VideoStreamer, FpsDrawer from person_counter.model import PersonCounterModel, PersonCounterOutput import numpy as np import os

VIDEO_DIR = "D:/project/facebodydetection/facebodydetect/app/src/videos" def get_video(): paths = [ os.path.join(VIDEO_DIR, p) for p in os.listdir(VIDEO_DIR)] return np.random.choice(paths)

stream = VideoStreamer.from_video_input(get_video()) fps = FpsDrawer()

model = PersonCounterModel()

@stream.on_next_frame() def index(frame: np.ndarray):

result = model.predict(frame)

if result.is_ok(): output: PersonCounterOutput = result.unwrap() output.draw(frame) else: raise result.exception

fps.draw(frame)

stream.start()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

person_counter-1.1.12.tar.gz (107.1 kB view details)

Uploaded Source

Built Distribution

person_counter-1.1.12-py3-none-any.whl (145.5 kB view details)

Uploaded Python 3

File details

Details for the file person_counter-1.1.12.tar.gz.

File metadata

  • Download URL: person_counter-1.1.12.tar.gz
  • Upload date:
  • Size: 107.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.13

File hashes

Hashes for person_counter-1.1.12.tar.gz
Algorithm Hash digest
SHA256 ef01faf4445aa943bd989c567c6864577e1af298850b421a2bbcc9099be5066e
MD5 646109d6bdd93a0216c957d553b9c0ca
BLAKE2b-256 d35709372a0bff553b28d1e7f20e0c3617ef46db34c2dcdf3555fdec0fed08d3

See more details on using hashes here.

File details

Details for the file person_counter-1.1.12-py3-none-any.whl.

File metadata

File hashes

Hashes for person_counter-1.1.12-py3-none-any.whl
Algorithm Hash digest
SHA256 e981cb1389f19b7df3636b27637b3bdf72864f674f01dfed06f50eff6853a59d
MD5 471b0271752fc3156bd96f345a31bb48
BLAKE2b-256 2badb9743c625c02e8adb6b210d14488d2e5e54d7f24a57a6b3ea15322268f22

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page