One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| CC = g++ | |
| CFLAGS = -g -Wall | |
| SRCS = HelloWorld.cpp | |
| PROG = HelloWorld | |
| OPENCV = `pkg-config opencv --cflags --libs` | |
| LIBS = $(OPENCV) | |
| $(PROG):$(SRCS) | |
| $(CC) $(CFLAGS) -o $(PROG) $(SRCS) $(LIBS) |
| # Compiled source # | |
| ################### | |
| *.com | |
| *.class | |
| *.dll | |
| *.exe | |
| *.o | |
| *.so | |
| # Packages # |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # Copyright 2016 Massachusetts Institute of Technology | |
| """Extract images from a rosbag. | |
| """ | |
| import os | |
| import argparse |