My 2017 Bird Nest Box should hopefully be up and running later this week, hopefully not too late for this season. This version has two camera: A 'from the side' camera which is a webcam (as described in previous posts), and a 'view from above' camera that uses as raspberry pi InfraRed (IR) camera with Infrared-cut to allow night and daytime viewing, I've added dimmable IR and non-IR led illumination. The RPi camera does video capture via the marvelous program PikrellCam.
Test screen shots below (Microsoft LifeCam above, Raspberry Pi v2 IR cam below)
Daytime
Daytime previews
Night-time
Night time previews
I've also included an entrance hole counter and facility to measure ambient temperature and outside light levels.
For a kid's school project they were challenged to up-cycle a pair of wellington boots, and we came up with this:
Welly boot nest box
No cameras this time around, a low tech project, but quick to do!
We also added some old wool to the eaves for optional nesting material - this was taken within a week, not for a nest in the boot, but for some other nesting site, and was re-filled today. The boot is tucked into a shed roof overhang. This nesting site would probably suit a robin who are partial to open-fronted nesting sites, and hopefully don't object to the previous owner's feet.
The bird box has been recently used as an overnight roost for a blue tit. On a couple of occasions we've had two in there. Today was a little different since tit 1 didn't appreciate tit 2 in the same space, as can be seen in the following clip:
It's interesting that in addition to feet and beaks being used as offensive weapons, there are a couple of hooks using a wing...
Right hook
The posturing at the beginning is also interesting:
There two ways (that I know of) that the Raspberry pi camera can be triggered
to take a still image, using Raspistill, or PiCamera. PiCamera is a python interface for the Raspbery Pi camera. Raspistill can be called from the command
line [or... within a python script using os.system("raspistill commend etc").
My preliminary attempts at sunrise timelapses using PiCamera have lead
to over exposed skies, with all the details blown out. This side by side comparison compares: PiCamera (LEFT) to Raspistill (RIGHT).
These timelapses are made from a consecutive series of alternate jpgs (PiCamera then RaspiStill) on default settings, as follows (I've left out any referenced variables to stop it getting too unwieldy):
My take on this is that I get a better sky / sun using RaspiStill, which is a bit of a disappointment since I like being able to annotate with text (as you can see in the PiCamera version (LEFT)... which is no use in a timelapse, I just forgot to switch it off...)
For interest, the 'grouped per-method' images are make into a video as follows:
#rename filesaa=0;for i in `ls`; do sudo mv $i `printf "%04d" $aa`.jpg; aa=$(($aa+1));done#make timelapseavconv -r 24 -i %04d.jpg -r 24 -vcodec libx264 -crf 20 -g 15 output.mp4
I got fed up waiting for this to run on my Raspberry pi, so run it on a linux virtual machine through virtualBox on a windows PC = much faster. The RaspPi3 will compile a 800 image timelapse in approx 30 min using this approach. Takes me approx 1 min using the other approach.
For the comparison... A side-by-side stitch of the two sunset timelapses as follows:
I recently acquired a new oven that is described as 'Self-cleaning'. Looks like my bird box is too (sort of). I've seen a lot of flies in the nest box recently. Looks like someone else has noticed that too.....
Pay attention to the fly at the top right corner of the box....
The 2014 bird box has a Raspberry Pi + Microsoft lifecam cinema usb webcam in
it that has been faultlessly streaming video since being setup. I had to switch all cameras off over the Summer & Autumn for building work, and on reactivating them... I have discovered a design flaw.
My design has a glass partition between camera / electronics and area for the birds. Over the Summer this has got filthy - I blame my builders! The dirt means that the camera now 'sees' the window and focuses on it rather than any in-box activity. An example from last week (Jan 6 2016), shows the problem:
While I don't resent the odd insect, I don't want this sort of thing:
There is an obvious solution - CLEAN THE GLASS!
...which would be great if I could locate the keys for my securely locked ladder :(
Plan B is to turn the auto focus OFF and fix the focus to a specific focal distance
Introducing uvcdynctrl
This is a handy application that gives control over your webcam's settings. Apparently the one I'm using (Microsoft Lifecam cinema) is notorious for a skittish auto focus.
Since I'm running this on a Raspberry pi, to install do:
sudo apt-get install uvcdynctrl
To list the controls available to you do:
uvcdynctrl -c
I get the following (output depends on webcam model): xx@xx ~ $ uvcdynctrl -c
Listing available controls for device video0: Brightness Contrast Saturation White Balance Temperature, Auto Power Line Frequency White Balance Temperature Sharpness Backlight Compensation Exposure, Auto Exposure (Absolute) Pan (Absolute) Tilt (Absolute) Focus (absolute) Focus, Auto Zoom, Absolute
Now, obviously I cant control all of these, there's no pan and tilt controls available to me, however I can change the autofocus behaviour.
To turn OFF that pesky autofocus:
uvcdynctrl -v -d video0 --set='Focus, Auto' 0
Auto focus is OFF... just need to manually set the auto focus until it's in the correct place:
The number at the end is the focal distance - just needs playing with to hit the correct focal point
You can 'get' i.e., query what the focus setting is at as follows:
uvcdynctrl -d video0 -g "Focus (absolute)"
So auto focus is off for now... just need to find my keys /access ladder, clean/remove the separating glass and I can sort it properly, then switch auto focus back on with: