Skip to content

Azadehkhojandi/computer-vision-fish-frame-proposal

Repository files navigation

Computer vision fish frame proposal

This notebook shows how you can benefit from Microsoft Computer vision to analyse video frames. This sample analyses the underwater video and extracts frames and retruns back frames that has fish in it. Depends on your use case, you can adjust the extract rate. You can define to extract a frame every 20 seconds.

Please note in your production environment we won't recommend adding videos and extracted frames into your source repository. It's only added as a sample and for your reference only.

Steve Van Bodegraven, works directly with fisheries across Australia and has helped them to adopt new technologies and improve manual processes by integrating AI and machine learning. Steve, first came up with frame proposal term.

read it on my blog

Your life as marine biologist

Imagine you are a marine biologist! On weekly basis, you go to specific spots in the ocean to study fish diversity, abundance and behaviour of species over time. You use Baited Remote Underwater Video, or “BRUV” to record what’s happening underwater. If you like water and outdoor actives then this part of the job is super awesome! Afterwards, you would head back into the office and classify recorded videos based on date, time and location of the recording. Then you would start watching hours of recorded footage. If you think all the video will be clean and look like planet earth or other underwater documentaries, YOU ARE WRONG! Most of the recording will be the body of water and empty of life for minutes, then there will be a magical moment that you will see one or two fishes, sharks or school of fish then again the body of water. Imagine you task is watching videos frame by frame and write done on which frame you saw fish or any activates. This process is labour intensive and it’s not fun!

alt text

As a scientist, you would like to maximize your fun and minimize the boring parts. You want to spend your time recording more footage and analyzing the exciting fish frames, and avoid watching the whole empty parts of the videos!

The question is, how we can automate the process? What we want is replace the computer with a human to see the videos and tells us which frame has fish in it. In the engineering world, this type of tasks called computer vision. We want the computer to see the photos or videos and analyses them and have the same understanding as a human.

How to benefit from Microsoft cognitive services to make marine biologists life easier

The easiest approach is using out of the box services to analyse the image and get information about visual content found in it. I used Microsoft computer vision API which can recognise 2000 objects to find out if there is a fish in the image or not.

alt text

How to run the utility locally

Getting a key:

The utility utilises Microsoft’s computer vision service meaning you will need a subscription key to use it. You can get free keys from [here] (https://azure.microsoft.com/en-us/try/cognitive-services/) I used the paid API to avoid hitting the limits on calling API per minute.

alt text

Opening with Anaconda:

If you don't have anaconda, you can download it from [here] (https://anaconda.org/download). The notebook is self-explanatory, It's written in python 3.5 and you can easily run it after cloning the repository.

alt text

alt text

All you need to do is copy your video into the videos folder. Then open "Export_Frames_From_Video.ipynb" Now you need to update the computer vision subscription key and replace it with your key

alt text

Running the blocks:

Run each block from the beginning. Select the first block and then click on "Run" from the toolbar and continue till after “Analysing the extracted frames” block. “Extract frames from video” block, extracts a frame every 2 seconds, based on your experience you can increase or decrease the export rate. “Analysing the extracted frames”, analyses every extracted frame and shows the frames that it detected fish in it. It also shows it's confidence level.

alt text

In the end, you will get two CSV file. The first file lists all the frames and the second one has a list of frames which computer detected fish in it.

If you want to investigate more or add more frames to the extracted frames, you can update the parameters and continue running the blocks if it's required.