Skip to main content

Utils for Computer Vision

Project description

rutils

Utils for computer vision

Install

pip install rutils

Modules

Common

str2path

from argparse import ArgumentParser
from rutils.common import str2path

opt_parser = ArgumentParser()
opt_parser.add_argument('--txt_path', type=str2path)
opt = opt_parser.parse_args()
print(type(opt.txt_path))

Run command

from rutils.common import run_command

command = 'echo "Run command example"'
run_command(command)

Video

Read video

video_path = Path('./test.mp4')
video_reader = rutils.video.VideoReader(in_video_path=video_path)
print(video_reader.num_frames)
for _ in range(num_frames):
    frame = video_reader.get_next_frame()

Write video

Support two method:

  • Use OpenCV
video_writer = rutils.video.VideoWriter(
    out_path,
    video_w,
    video_h,
    fps=25,
    encoding='H264',
    video_bitrate='11M',
    mode='opencv'
)
video_writer.write_frame(frame)
video_writer.release()
  • Use FFMpeg
video_writer = rutils.video.VideoWriter(
    out_path,
    video_w,
    video_h,
    fps=25,
    encoding='H264',
    video_bitrate='11M',
    mode='ffmpeg'
)
video_writer.write_frame(frame)
video_writer.release()

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

rutils-0.4.0-py3-none-any.whl (5.4 kB view details)

Uploaded Python 3

File details

Details for the file rutils-0.4.0-py3-none-any.whl.

File metadata

  • Download URL: rutils-0.4.0-py3-none-any.whl
  • Upload date:
  • Size: 5.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.17

File hashes

Hashes for rutils-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 40c71ed8e3f6ed7850e9178cdf55bd546289aec98aac6c6c9b58f1dc24c78260
MD5 183c173b4ea26068d1afc727ae2cf782
BLAKE2b-256 bbdbd07d83efb93382d8128e8635d03b01cba6b9b4565d62c69305a0edcaf861

See more details on using hashes here.

Supported by

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