Formalize the build process and integrate autotools

This commit is contained in:
Bradlee Speice
2012-06-22 13:22:16 -04:00
parent 0a10dc798c
commit df26d0a95c
24 changed files with 11786 additions and 123 deletions

BIN
scripts/bluecircle.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 706 B

BIN
scripts/greencircle.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 678 B

36
scripts/openCVLogo.sh Normal file
View File

@ -0,0 +1,36 @@
#!/bin/bash -
#===============================================================================
#
# FILE: openCVLogo.sh
#
# USAGE: ./openCVLogo.sh
#
# DESCRIPTION: This is a test script to demonstrate libcvautomation
# We are going to find different sections of the OpenCV logo
# in itself.
#
# OPTIONS: ---
# REQUIREMENTS: ---
# BUGS: ---
# NOTES: ---
# AUTHOR: Bradlee Speice (), bspeice.nc@gmail.com
# ORGANIZATION:
# CREATED: 06/21/2012 03:45:19 PM EDT
# REVISION: ---
#===============================================================================
CVAMATCH="`dirname $0`/../bin/cva-match"
if [ ! -x $CVAMATCH ]; then
echo "The cva-match binary was not found or is not executable. Please fix this!"
exit 255
fi
echo
echo "Finding the red circle in the OpenCV logo..."
echo "The red circle is located at: `$CVAMATCH -r opencvlogo.png -s redcircle.png -p ', ' | cut -d',' -f2-`"
echo "Finding the blue circle in the OpenCV logo..."
echo "The blue circle is located at: `$CVAMATCH -r opencvlogo.png -s bluecircle.png -p ', ' | cut -d',' -f2-`"
echo "Finding the green circle in the OpenCV logo..."
echo "The green circle is located at: `$CVAMATCH -r opencvlogo.png -s greencircle.png -p ', ' | cut -d',' -f2-`"
echo

BIN
scripts/opencvlogo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

BIN
scripts/redcircle.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 731 B