https://github.com/kujenga/filters
Computer Vision coursework
https://github.com/kujenga/filters
Last synced: 2 months ago
JSON representation
Computer Vision coursework
- Host: GitHub
- URL: https://github.com/kujenga/filters
- Owner: kujenga
- License: gpl-3.0
- Created: 2014-09-29T11:35:22.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-04-15T13:39:09.000Z (about 10 years ago)
- Last Synced: 2025-01-24T12:45:39.804Z (4 months ago)
- Language: C
- Homepage:
- Size: 18.2 MB
- Stars: 0
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.txt
- License: LICENSE
Awesome Lists containing this project
README
This directory contains skeleton code as a starting point for the Computer Vision HW.
FILE STRUCTURE
==============There are several files, but you should mainly change src/R2Image.cpp.
src/ - Directory with source code
Makefile - Unix/Mac makefile for building the project with "make".
imagepro.[vcproj/sln/suo] - Project file for Visual Studio 2005 on Windows
imgpro.cpp - Main program, parses the command line arguments, and calls the appropriate image functions
R2Image.[cpp/h] - Image class with processing functions (this is the only file that you need to edit)
R2Pixel.[cpp/h] - Pixel class
R2/ - A library of useful 2D geometric primitives
jpeg/ - A library for reading/writing JPEG files
input/ - Contains example input images.
output/ - Es empty to start -- it will contain the images produced by your program (see below)
runme.bat - a script (for Windows) that you will fill in to demonstrate execution of your program
runme.sh - same asrunme.bat, but for Mac OS X
COMPILATION
===========If you are developing on a Windows machine and have Visual Studio
installed, use the provided project solution file (assn1.sln) in the
src/ directory to build the program. If you are developing on a Mac or
Linux machine, cd into the src/ directory and type "make". In either
case, an executable called imgpro (or imgpro.exe) will be created in
the src/ directory.