Giter Site home page Giter Site logo

Comments (7)

pageauc avatar pageauc commented on June 2, 2024

from pi-timolo.

Lama81 avatar Lama81 commented on June 2, 2024

from pi-timolo.

pageauc avatar pageauc commented on June 2, 2024

from pi-timolo.

Lama81 avatar Lama81 commented on June 2, 2024

from pi-timolo.

pageauc avatar pageauc commented on June 2, 2024

You can try using the quick timelapse feature. Change the config.py setting

motionQuickTLOn = True

Then you can adjust the time period that quick timelapse feature is run for using

motionQuickTLTimer = 10

It is the number of seconds that the quick timelapse runs for after motion is detected. Set this to the number of seconds.

The camera needs time to warm up and establish white balance. During the pi-camera initialization there is a sleep to allow camera to establish white balance. If a very short delay is specified the camera white balance will not be correct and images will not be consistent. The default is .5 seconds on line 364
def takeDayImage(filename):
# Take a Day image using exp=auto and awb=auto
with picamera.PiCamera() as camera:
camera.resolution = (imageWidth, imageHeight)
time.sleep(0.5) # sleep for a little while so camera can get adjustments

.5 seconds is about as short a warm up as reasonable and still get half decent image consistency. You will still find variations in white balance a this low level. BTW the default rpistill is 5 seconds.

from pi-timolo.

Lama81 avatar Lama81 commented on June 2, 2024

from pi-timolo.

pageauc avatar pageauc commented on June 2, 2024

Using raspistill you can do a timelapse sequence that only has one warm up but pi-timolo uses pi-camera python library and needs to switch between motion detection and taking images or video sequences. This means the camera needs to switch between these modes and warm up between. It would be possible to shell and run raspistill in a timelapse sequence

See this link for details

https://computers.tutsplus.com/tutorials/creating-time-lapse-photography-with-a-raspberry-pi--cms-20794

from pi-timolo.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.