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.28.tar.gz (108.8 kB view details)

Uploaded Source

Built Distribution

person_counter-1.1.28-py3-none-any.whl (147.5 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: person_counter-1.1.28.tar.gz
  • Upload date:
  • Size: 108.8 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.28.tar.gz
Algorithm Hash digest
SHA256 ababa3583e5d271339db1270afce2bd5ab0f0e2897ee5d91c3f8a95352c1918f
MD5 ec9e987a357753a891925165a43fb47e
BLAKE2b-256 643b9ac30639de658c293410b1f85294e7f971fcdd26bb96ea1628ee2db53213

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for person_counter-1.1.28-py3-none-any.whl
Algorithm Hash digest
SHA256 f4fadc37db83d242a8b7cc67defa13092e2692c1e4f1bf0b8ec688fafbea19b8
MD5 5646c74b4b2d72d86757fb42ea88125d
BLAKE2b-256 99230d6bbade68843ecad83b1f05aeba3c399e364a2996c363b14b0fbc4c5abc

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