Rabu, 25 Januari 2017

camera configuration v2 on raspberry pi 3

First of all, with the Pi switched off, you'll need to connect the camera module to the Raspberry Pi's camera port, then start up the Pi and ensure the software is enabled.
  1. Locate the camera port and connect the camera:
    Connect the camera
  2. Start up the Pi.
  3. Open the Raspberry Pi Configuration Tool from the main menu:
    Raspberry Pi Configuration Tool
  4. Ensure the camera software is enabled:
    Camera software enabled
    If it's not enabled, enable it and reboot your Pi to begin.

Camera preview

Now your camera is connected and the software is enabled, you can get started by trying out the camera preview.
  1. Open Python 3 from the main menu:
    Open Python 3
  2. Open a new file and save it as camera.py. It's important that you do not save it as picamera.py.
  3. Enter the following code:
    from picamera import PiCamera
    from time import sleep
    
    camera = PiCamera()
    
    camera.start_preview()
    sleep(10)
    camera.stop_preview()
  4. Save with Ctrl + S and run with F5. The camera preview should be shown for 10 seconds, and then close. Move the camera around to preview what the camera sees.
    The live camera preview should fill the screen like so:
    Image preview
    Note that the camera preview only works when a monitor is connected to the Pi, so remote access (such as SSH and VNC) will not allow you to see the camera preview
  5. If your preview was upside-down, you can rotate it with the following code:
    camera.rotation = 180
    camera.start_preview()
    sleep(10)
    camera.stop_preview()
    You can rotate the image by 90180, or 270 degrees, or you can set it to 0 to reset.
  6. You can alter the transparency of the camera preview by setting an alpha level:
    from picamera import PiCamera
    from time import sleep
    
    camera = PiCamera()
    
    camera.start_preview(alpha=200)
    sleep(10)
    camera.stop_preview()
    alpha can be any value between 0 and 255.

Still pictures

The most common use for the camera module is taking still pictures.
  1. Amend your code to reduce the sleep and add a camera.capture() line:
    camera.start_preview()
    sleep(5)
    camera.capture('/home/pi/Desktop/image.jpg')
    camera.stop_preview()
    It's important to sleep for at least 2 seconds before capturing, to give the sensor time to set its light levels.
  2. Run the code and you'll see the camera preview open for 5 seconds before capturing a still picture. You'll see the preview adjust to a different resolution momentarily as the picture is taken.
  3. You'll see your photo on the Desktop. Double-click the file icon to open it:
    Image on Desktop
  4. Now try adding a loop to take five pictures in a row:
    camera.start_preview()
    for i in range(5):
        sleep(5)
        camera.capture('/home/pi/Desktop/image%s.jpg' % i)
    camera.stop_preview()
    The variable i contains the current iteration number, from 0 to 4, so the images will be saved asimage0.jpgimage1.jpg and so on.
  5. Run the code again and hold the camera in position. It will take one picture every five seconds.
  6. Once the fifth picture is taken, the preview will close. Now look at the images on your Desktop and you'll see five new pictures.

Recording video

Now you've used the camera to take still pictures, you can move on to recording video.
  1. Amend your code to replace capture() with start_recording() and stop_recording():
    camera.start_preview()
    camera.start_recording('/home/pi/video.h264')
    sleep(10)
    camera.stop_recording()
    camera.stop_preview()
  2. Run the code; it will record 10 seconds of video and then close the preview.
  3. To play the video, you'll need to open a terminal window by clicking the black monitor icon in the taskbar:
    Open Terminal
  4. Type the following command and press Enter to play the video:
    omxplayer video.h264
    omxplayer
  5. The video should play. It may actually play slightly faster than it was recorded, due to omxplayer's fast frame rate.

Effects

At the beginning, you created a camera object with camera = PiCamera(). You can manipulate this camera object in order to configure its settings. The camera software provides a number of effects and other configurations you can apply. Some only apply to the preview and not the capture, others apply to the capture only, but many affect both.
  1. The resolution of the capture is configurable. By default it's set to the resolution of your monitor, but the maximum resolution is 2592 x 1944 for still photos and 1920 x 1080 for video recording. Try the following example to set the resolution to max. Note that you'll also need to set the frame rate to15 to enable this maximum resolution:
    camera.resolution = (2592, 1944)
    camera.framerate = 15
    camera.start_preview()
    sleep(5)
    camera.capture('/home/pi/Desktop/max.jpg')
    camera.stop_preview()
  2. The minimum resolution allowed is 64 x 64. Try taking one at that resolution.
  3. You can easily add text to your image with annotate_text. Try it:
    camera.start_preview()
    camera.annotate_text = "Hello world!"
    sleep(5)
    camera.capture('/home/pi/Desktop/text.jpg')
    camera.stop_preview()
  4. You can alter the brightness setting, which can be set from 0 to 100. The default is 50. Try setting it to another value:
    camera.start_preview()
    camera.brightness = 70
    sleep(5)
    camera.capture('/home/pi/Desktop/bright.jpg')
    camera.stop_preview()
  5. Try adjusting the brightness in a loop, and annotating the display with the current brightness level:
    camera.start_preview()
    for i in range(100):
        camera.annotate_text = "Brightness: %s" % i
        camera.brightness = i
        sleep(0.1)
    camera.stop_preview()
  6. Similarly, try the same for the contrast:
    camera.start_preview()
    for i in range(100):
        camera.annotate_text = "Contrast: %s" % i
        camera.contrast = i
        sleep(0.1)
    camera.stop_preview()
  7. You can set the annotation text size with the following code:
    camera.annotate_text_size = 50
    Valid sizes are 6 to 160. The default is 32.
  8. You can also alter the annotation colours. First of all, ensure that Color is imported by amending your import line at the top:
    from picamera import PiCamera, Color
    Then amend the rest of your code as follows:
    camera.start_preview()
    camera.annotate_background = Color('blue')
    camera.annotate_foreground = Color('yellow')
    camera.annotate_text = " Hello world "
    sleep(5)
    camera.stop_preview()
  9. You can use camera.image_effect to apply a particular image effect. The options are: none,negativesolarizesketchdenoiseembossoilpainthatchgpenpastel,watercolorfilmblursaturationcolorswapwashedoutposterise,colorpointcolorbalancecartoondeinterlace1, and deinterlace2. The default isnone. Pick one and try it out:
    camera.start_preview()
    camera.image_effect = 'colorswap'
    sleep(5)
    camera.capture('/home/pi/Desktop/colorswap.jpg')
    camera.stop_preview()
  10. Try looping over the various image effects in a preview to test them out:
    camera.start_preview()
    for effect in camera.IMAGE_EFFECTS:
        camera.image_effect = effect
        camera.annotate_text = "Effect: %s" % effect
        sleep(5)
    camera.stop_preview()
    Effects
  11. You can use camera.awb_mode to set the auto white balance to a preset mode to apply a particular effect. The options are: offautosunlightcloudyshadetungsten,fluorescentincandescentflash, and horizon. The default is auto. Pick one and try it out:
    camera.start_preview()
    camera.awb_mode = 'sunlight'
    sleep(5)
    camera.capture('/home/pi/Desktop/sunlight.jpg')
    camera.stop_preview()
    You can loop over the available auto white balance modes with camera.AWB_MODES.
  12. You can use camera.exposure_mode to set the exposure to a preset mode to apply a particular effect. The options are: offautonightnightpreviewbacklightspotlight,sportssnowbeachverylongfixedfpsantishake, and fireworks. The default isauto. Pick one and try it out:
    camera.start_preview()
    camera.exposure_mode = 'beach'
    sleep(5)
    camera.capture('/home/pi/Desktop/beach.jpg')
    camera.stop_preview()
    You can loop over the available exposure modes with camera.EXPOSURE_MODES.

Tidak ada komentar:

Posting Komentar