Python Video Stab Versions Save

A Python package to stabilize videos using OpenCV

1.7.4

2 years ago
  • Add output_fps parameter
    • Gives the user the ability to manually set output video fps. The old behavior was to set the fps based on input video; this is still the default behavior.
    • Feature courtesy of @SuslikV
    • Added test for this
  • Add test for max_frames

1.7.3

4 years ago
  • Bug fix for a None optical flow. Can occur with pure color frames. Fix is to apply no transform. (See #96)
  • Raise exception if first frame results in None. (See #95)

1.7.2

4 years ago
  • drop pandas from setup depends

1.7.1

4 years ago
  • add a check for input_path being int before throwing FileNotFound

1.7.0

4 years ago
  • Fix off-by-one issues leading to poor quality stabilization

1.6.2

4 years ago
  • Smoothing window value was not being set if doing frame-by-frame processing in a manual loop
  • Processing was failing if no key points were matched between frames (would fail if video contained a jump-cut)

1.6.1

5 years ago
  • add a check for invalid input_path to avoid ambiguous error messages as seen in #70

1.6.0

5 years ago
  • add VidStab.stabilize_frame() method to allow stabilization a frame at a time with numpy arrays as input

1.5.6

5 years ago
  • Add options to CLI
  • Improve test coverage around CLI

1.5.5

5 years ago
  • Improve docstrings in utility functions
  • Update README docs
  • Update sphinx docs