0% found this document useful (0 votes)
8 views5 pages

Python Camera Driver Tutorial

This document provides a tutorial on using a camera with Python's OpenCV library, detailing common API functions such as cv2.VideoCapture() for capturing video and configuring camera parameters. It explains how to read video frames, display images in JupyterLab, and manage camera settings like brightness and contrast. The tutorial includes code snippets for practical implementation and emphasizes the importance of releasing camera resources after use.

Uploaded by

matias lopez
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views5 pages

Python Camera Driver Tutorial

This document provides a tutorial on using a camera with Python's OpenCV library, detailing common API functions such as cv2.VideoCapture() for capturing video and configuring camera parameters. It explains how to read video frames, display images in JupyterLab, and manage camera settings like brightness and contrast. The tutorial includes code snippets for practical implementation and emphasizes the importance of releasing camera resources after use.

Uploaded by

matias lopez
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Camera python driver tutorial

Common API functions used by OpenCV:


1. [Link]()
cap = [Link](0)
The parameter in VideoCapture () is 0, which means Raspberry Pi video0.
(Note: You can view the current camera through the command ls/dev/ )

cap = [Link]("…/[Link]")
VideoCapture("…/[Link]"), This parameter indicates that if the path of the video file is
entered, the video is opened.

[Link]()
Camera parameters common configuration methods:
[Link](CV_CAP_PROP_FRAME_WIDTH, 1920); # Width

[Link]
[Link](CV_CAP_PROP_FRAME_HEIGHT, 1080); # Height
[Link](CV_CAP_PROP_FPS, 30); # Frame
[Link](CV_CAP_PROP_BRIGHTNESS, 1); # Brightness 1
[Link](CV_CAP_PROP_CONTRAST,40); # Contrast 40
[Link](CV_CAP_PROP_SATURATION, 50); # Saturation 50
[Link](CV_CAP_PROP_HUE, 50); # Hue 50
[Link](CV_CAP_PROP_EXPOSURE, 50); # Visibility 50

Parameter explanation:
#define CV_CAP_PROP_POS_MSEC 0
// Calculate the current position in milliseconds

#define CV_CAP_PROP_POS_FRAMES 1
// Calculate the current position in frame

#define CV_CAP_PROP_POS_AVI_RATIO 2 // Relative position of the video

#define CV_CAP_PROP_FRAME_WIDTH 3 // Width

#define CV_CAP_PROP_FRAME_HEIGHT 4 // Height

#define CV_CAP_PROP_FPS 5 // Frame rate

#define CV_CAP_PROP_FOURCC 6 // 4 Character encoding

#define CV_CAP_PROP_FRAME_COUNT 7 // Video frames

#define CV_CAP_PROP_FORMAT 8 // Video format

#define CV_CAP_PROP_MODE 9
// Backend specific value indicating the current capture mode.

#define CV_CAP_PROP_BRIGHTNESS 10 // Brightness

#define CV_CAP_PROP_CONTRAST 11 // Contrast

#define CV_CAP_PROP_SATURATION 12 // Saturation

#define CV_CAP_PROP_HUE 13 // Hue

#define CV_CAP_PROP_GAIN 14 // Gain

#define CV_CAP_PROP_EXPOSURE 15 // Exposure

[Link]
#define CV_CAP_PROP_CONVERT_RGB 16
// Mark whether the image should be converted to RGB.

#define CV_CAP_PROP_WHITE_BALANCE 17 // White balance

#define CV_CAP_PROP_RECTIFICATION 18 // Stereo camera calibration mark (note:


only support DC1394 v2)

[Link]()
Return true indicates open camera successful and false indicates open camera failure

[Link],frame = [Link]()
[Link] () reads the video frame by frame. ret and frame are the two return values
of the [Link] () function.
ret is a Boolean value, if the read frame is correct, it will return true, If the file has
not been read to the end, it returns False.
Frame is the image of each frame, which is a three-dimensional matrix.

[Link](n)
n represents the delay time, if the parameter is 1, it means a delay of 1ms to switch
to the next frame of image.
If the parameter is too large, such as [Link] (1000), it will freeze because of the
long delay.
The parameter is 0, such as, [Link] (0) only displays the current frame image,
which is equivalent to video pause.

[Link]() and destroyAllWindows()


Call [Link] () to release the video.
Call destroyAllWindows () to close all image windows.

About Code
Since our entire tutorial runs in JupyterLab, we must understand the various
components inside.
Here we need to use the image display component.

[Link] library
import [Link] as widgets

[Link] Image component


image_widget = [Link](format='jpeg', width=600, height=500)

[Link] Image component


display(image_widget)

[Link]
[Link] camera and read image
image = [Link](0) # Open camera
ret, frame = [Link]() # Read camera data

[Link] to components
#Convert the image to jpeg and assign it to the video display component
image_widget.value = bgr8_to_jpeg(frame)
import cv2
import [Link] as widgets
import threading
import time

#Set camera display component


image_widget = [Link](format='jpeg', width=600, height=500)
display(image_widget) # display camera component
#bgr 8 to jpeg format
import enum
import cv2

def bgr8_to_jpeg(value, quality=75):


return bytes([Link]('.jpg', value)[1])
image = [Link](0) # Open camera

# width=1280
# height=960
# [Link](cv2.CAP_PROP_FRAME_WIDTH,width) # set width of image
# [Link](cv2.CAP_PROP_FRAME_HEIGHT,height) # set height of image

[Link](3,600)
[Link](4,500)
[Link](5, 30) # set frame
[Link](cv2.CAP_PROP_FOURCC, [Link]('M', 'J', 'P', 'G'))
[Link](cv2.CAP_PROP_BRIGHTNESS, 40) #set brightness -64 - 64 0.0
[Link](cv2.CAP_PROP_CONTRAST, 50) #set contrast -64 - 64 2.0
[Link](cv2.CAP_PROP_EXPOSURE, 156) #set exposure value 1.0 - 5000 156.0

ret, frame = [Link]() # read camera data


image_widget.value = bgr8_to_jpeg(frame)
while 1:
ret, frame = [Link]()
image_widget.value = bgr8_to_jpeg(frame)
[Link](0.010)
[Link]() #After using the object, we need to release the object, otherwise
when we use the object again, the system will prompt that the object be occupied,

[Link]
making it unusable.
The camera screen is shown below:

[Link]

You might also like