Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

opencv-camera

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

opencv-camera

An OpenCV camera library

  • 2023.1.7
  • PyPI
  • Socket score

Maintainers
1

OpenCV Camera

CheckPackage GitHub Latest Version image image PyPI - Downloads

Simple threaded camera and calibration code using OpenCV. This tries to simplify some things

Install

The preferred way to install is using pip:

pip install opencv_camera

Usage

See the jupyter notebooks under the docs in the repository for some examples.

Online nbviewer

Colorspace

Change between common colorspaces with:

  • bgr2gray(image)
  • gray2bgr(image)
  • bgr2rgb(image)
  • rgb2bgr(image)
  • bgr2hsv(image)
  • hsv2bgr(image)

Calibration

Create a mosaic of input calibration images with mosaic(images, width)

Calibrate a camera with:

calibrator = CameraCalibration()
board = ChessboardFinder((9,6), 1)
cam, cal = calibrator.calibrate(images, board)

Display all of the found image points with coverage((width, height), imagePoints)

Distortion

Use the found calibration parameters to undistort an image:

un = UnDistort(cameraMatrix, distortionCoeff, w, h)
corr_img = un.undistort(image)

Visualize the lens distortion with:

visualizeDistortion(cameraMatrix, distortCoeff, height, width)

Stereo

Calibrate a stereo camera with:

stereoCal = StereoCalibration()
board = ChessboardFinder((9,6), 1)
ok, cm, sc = stereoCal.calibrate(imgL, imgR, board)

Draw epipolar lines in stereo images with drawEpipolarLines(imgpointsL,imgpointsR,imgL,imgR)

Apps

Use program --help to display switches for each of the following:

  • opencv_calibrate: calibrate a camera
  • opencv_capture: simple tool to capture and save images
  • opencv_mjpeg: sets up a simple jmpeg server so you can view images in a web browser
  • udp_server x.x.x.x: sends camera images via UDP
  • udp_client x.x.x.x: displays UDP camera images from server

ToDo

  • Remoded apriltag calibration, moved to moms_apriltag library
  • Add pointcloud from stereo
  • Add parameters for known cameras
  • Add Jupyter notebook documentation and examples
  • Simplify stereo camera
  • Add computeReprojectionErrors and visualizeReprojErrors
  • Add visualizeDistortion
  • Add visualizeExtrinsics
  • Remove attrs, replaced with python's dataclass
  • Add save/load from yaml
  • Add stereo calibration pytest

Change Log

DateVersionNotes
2022.12.23changed version number to match date, changed to opencv-contrib-python
2020-12-270.10.10added distortion and reprojection display
2020-09-150.10.8added known camera params and general cleanup
2020-08-240.10.6added UDP image server and client
2020-07-030.10.2renamed and focused on camera
2018-07-190.9.4simple clean-up and updating some things
2017-10-290.9.3bug fixes
2017-04-090.9.0initial python 3 support
2017-03-310.7.0refactored and got rid of things I do not need
2017-01-290.6.0added video capture (video and images) program
2016-12-300.5.3typo fix
2016-12-300.5.1refactored
2016-12-110.5.0published to PyPi
2014-3-110.2.0started

MIT License

Copyright (c) 2014 Kevin J. Walchko

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc