Code Monkey home page Code Monkey logo

videosearchengine's Introduction

Video Search Engine

Authors:

Semantically be able to search through a database of videos (using generated summaries)

Take a look at our poster

Table of Contents

System Overview

The video below shows exactly how the entire system works end to end.

Presentation

The user facing system described here is the overview of the overall system architecture.

System Overview

The backend and video summarizing system was distributed in an attempt to tackle large videos. The architecture is described in the image below

Distribution

Video Summarization Overview

In this project, we attempted to solve video summarizatoin using image captioning. The architecture and motivation is explained in this section.

Below is the initial architecture of the video summarization network used to generate video summaries.

Video Summarization Network

We converted this into the following network for the final project

Final Network

We can walk through the steps occuring with explantions here:

  1. We break apart frames into semantically different groups.

    • Here we use SSMI (structured similarity measurment index) to determine if two frames are similar
    • We define a threshold for comparison
    • Any sequence of frames within that threshold belongs to a specific group.
  2. Random Sample from each group

    • Since each group are all the semantically similar frames, to reduce the redundancies in the frame captions we try to remove similar frames by selecting a very small subset (1-5) frames from each group
  3. Feed each selected frame to an image captioning network to determine what happens in the frame

    • This uses an Encoder-Decoder model for captioning the images as descibed in Object2Text
    • Model description
      • Encoder
        • EncoderCNN
          • Uses ResNet-152 pretrained to feed all the features to an encoded feature vector
        • YoloEncoder
          • From a frame performs bounding box object detection on the frame to determine the objects and the bounding boxes for all of them.
          • Uses RNN structure (LSTM for this model) to encode the sequence of objects and their names
          • Uses the resul to create another encoded feature vector
      • Decoder
        • Combines the two feature vectors from the EncoderCNN and the YoloEncoder to create a new feature vector, and uses that feature vector as input to start language generation for the frame caption
    • Training
      • Dataset: uses COCO for training
      • Bounding Box: during train uses TinyYOLO for faster training time as well as allowing the network to use a less reliable network to train on, and the more reliable version during testing
  4. Uses Extractive Summarization to select unique phrases from all the frame captions seletected to create a reasonable description of what occured in the video.

The next section shows example output:

Example output

Given a minute long video of traffic in Dhaka Bangladesh.

(
    'a man riding a bike down a street next to a large truck .',
    'a man riding a bike down a street next to a traffic light .',
    'a green truck with a lot of cars on it',
    'a green truck with a lot of cars on the road .',
    'a city bus driving down a street next to a traffic light .'
)

User Interface

To use our search engine we built a Flask based application similar to google to search through our database.

Main UI

This page features the main search functionality. A simplistic design similar to Google.

main

Results UI

This page features all the results for a given query. Every video in our database is returned in sorted order for relevance. We use TF-IDF scoring for a query to a rank for each of the summaries.

results

Set Up

To set up the python code create a python3 environment with the following:

# create a virtual environment
$ python3 -m venv env

# activate environment
$ source env/bin/activate

# install all requirements
$ pip install -r requirements.txt

# install data files
$ python dataloader.py

If you add a new package you will have to update the requirements.txt with the following command:

# add new packages
$ pip freeze > requirements.txt

And if you want to deactivate the virtual environment

# decativate the virtual env
$ deactivate

Training Captioning Network

Caption Network Set up

python VideoSearchEngine/ImageCaptioningNoYolo/resize.py --image_dir data/coco/train2014/ 
python VideoSearchEngine/ImageCaptioningNoYolo/resize.py --image_dir data/coco/val2014/ --output_dir data/val_resized2014

Plan

Our project will, broadly defined, be attempting video searching through video summarization. To do this we propose the following objectives and resulting action plan:

  • Break videos down into semantically different groups of frames
  • Recognize objects in an image (i.e. a frame)
  • Convert a frame to text
  • Merge summaries of all frames of a video into one large overall summary
  • Build a search engine to query videos via summary.

Data Sets to Use

Lots of labeled data for text generation of video summaries.

Paper about how data was collected and performance.

The location of the video dataset: Source

Consists of labeled images for image captioning

Consists of action videos that can be used to test summaries.

The "MED Summaries" is a new dataset for evaluation of dynamic video summaries. It contains annotations of 160 videos: a validation set of 60 videos and a test set of 100 videos. There are 10 event categories in the test set.

Citations

Papers

GitHubs

Blogs and Other Websites

videosearchengine's People

Contributors

akshatsh avatar sarahyu17 avatar abbygray avatar

Watchers

Kevin Bi avatar

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.