Group

Open Source Solutions / Feed

This group is a place to share low-cost, open-source devices for conservation; describe how they are being used, including what needs they are addressing and how they fit in to the wider conservation tech market; identify the obstacles in advancing the capacity of these technologies; and to discuss the future of these solutions - particularly their sustainability and how best to collaborate moving forward.

discussion

Automatic extraction of temperature/moon phase from camera trap video

Hey everyone, I'm currently trying to automate the annotation process for some camera trap videos by extracting metadata from the files (mp4 format). I've been tasked to try...

2 0

Hello Lyuboslava,

As you said, the first thing that came to mind was running a CV program to read the needed data. If the data does not change in the duration of the footage, then, in my humble opinion, it would be easiest to take a single frame from each clip and run an optical character recognition program to get the temperature.

The moon phase might pose a bit more of a challenge if the meta data truly is hidden. A different CNN program that is trained on the moon phases should suffice. But as you well know, not the simplest solution.

It's certainly possible that your camera(s) just aren't embedded structured metadata for this information.  But I wouldn't give up too quickly on looking for it, because extracting it from actual video frames is more challenging, less efficient, and less reliable.

EXIF / IPTC metadata is effectively limited to a finite set of pre-defined attributes, mostly centred around camera settings & author information, respectively.  You can check the latest specification to see precisely what is formally defined.  Ambient temperature actually is in there (and has been for a while) but there's nothing for astronomical data (although, can you not infer the moon phase based on the location & time data?).

It is alas a long-running issue that camera makers often misunderstand the specification and store data incorrectly (or not at all).

Camera makers can embed proprietary data in MakerNote fields, but the format is unspecified and standard tools (like exiftool) likely won't understand them for all but the most popular cameras (think Nikon, Canon, Sony, etc).  And possibly only for older models.

Many common image & video containers (e.g. JPEG and MP4) do support embeded XMP, an extensible format which allows model- and make-specific metadata.  It's possible that's in use in your case.  exiftool does not show embedded XMP data by default - at least not reliably.  In a nutshell, I suggest running exiftool as:

exiftool -D -g -G -ee -scanForXMP -u -U <PATH>

That's more likely to show you embedded XMP data, as well as all EXIF / IPTC tags (even those unrecognised by exiftool - you can at least get their raw bytes and work from there).  You can also add the `-v3` argument if you want to dig even harder, or see the raw data in more detail.

Another way some cameras store proprietary metadata is in proprietary tracks (e.g. GPMF for GoPros).  You can see if your files contain any such tracks via:

ffmpeg -i <PATH>

Usually these are used for metadata which can change during a recording, as EXIF / IPTC / XMP have no real support for that.  But some camera makers use them even for static metadata out of e.g. laziness or hubris.

Extracting such tracks is easy enough with tools like ffmpeg, but interpreting them can be challenging if their format is not documented like GoPro's GPMF.

Can you provide a sample file for us to examine?

See full post
discussion

Open-source kinetic energy harvesting collar - Kinefox

Hello everyone,I ran across an article today (at the bottom) that talks about an open-source, kinetic energy harvesting collar ("Kinefox"). It sounds pretty neat...anyways,...

3 3

Hi Thomas !

Thanks for sharing! I know one of the Danish authors of the KInefox paper. It is very cool stuff and we hope to one day use something like this on muskoxen in Greenland.

Some of the limitations are obviously the relatively limited number of daily fixes. Also, we would probably need satellite based communication, but since the authors from Max Planck are also heavilly involved in the https://www.icarus.mpg.de/en project, I hope this kinetic energy harvesting gets incorporated in the satellite based ICARUS trackers one day.

The article you linked to refered to this paper with a dizzying list of recent energy harvesting studies:

It also seems well worth a look.

This is very cool @ThomasGray_Argos !! I tried years ago to build a benchtop version of something similar, using a 'kinetic' torch assembly, but never got much further than some very crude designs. I even approached Seiko about their watch mechanisms, but in the they weren't interested...

It's really great to see this technology get applied and I hadn't heard of the Kinetron microgenerator the researchers used. They did a fantastic job designing their system and bonus points for releasing it all to open-source! The only thing I couldn't see were costs or a bill of materials (and I could've easily missed it), as I was keen to see how much the Kinetron microgenerator was. The hybrid capacitor they used was great value at AU$7.19. 

My next project is to try harvesting radio waves using something like this: 

Urban environments might have enough ambient sources of radio waves that no additional transmission stations are needed, but for remote locations, purpose-built transmitters could work for critters that have defined, and relatively small home ranges. 

Anyway Thomas, thanks heaps for sharing and very interesting and encouraging. 

Rob

 

It will be great if there were different plug-in boards that would allow the researcher to connect any form of communication: ICARUS, Argos, Iridium, Globalstar, GSM, etc. I think for an open-source product, it would be far more value to not self limit. 

See full post
discussion

Experience with SeeedStudio T1000 as tracker and data logger.  

Hi Everyone. Recently, I got a chance to work work the SeeedStudio T1000 tracker and I made a tracker and data logger with it. It comes with a LoRa module to transmit the...

1 2

ooh very cool Salman! Amazing how much tracking devices have come down in price over the years and LoRa/LoRawan is just such a perfect fit for GPS data. Thanks heaps for sharing.

All the best,

Rob

See full post
event

AI for Eagles Challenge

In the AI for Eagles Challenge, by FruitPunch AI 50 AI enthusiasts and experts from all over the globe will be training classifiers to recognize golden and white-tailed eagles in flight and classify them into age groups...

0
See full post
article

New Add-ons for Mbaza AI

At Appsilon, we are always working to enable our users to get the most out of our solutions. With this in mind, we are happy to introduce two new add-ons to Mbaza AI. 

1
See full post
article

Sustained Effort: The Environmentalist’s Dilemma

Jacinta Plucinski
In this article from Jacinta Plucinski & Akiba of Freaklabs, they share advice on organising your thoughts around building short-term and long-term sustainability considerations into your conservation technology...

0
See full post
discussion

Global shortage of Raspberry Pis - What are the alternatives

So, there is a global shortage of Raspberry Pis, the open source micro-computer that has been popular amongst open hardware designers and hobbyists alike. Like...

8 0

Have you considered Arduinos?

UPDATE: The Banana Pi didnt work out for us as it was not possible to track back all the components and ensure that they were responsibly sourced. The Rock board did work for us and we were able to port our system onto this. We will be rolling out units using this over the summer. It also looks like Raspberry Pis are coming back on line and we were able to secure a bulk order for deliver mid-summer

See full post