Skip to content

Instantly share code, notes, and snippets.

@siddharthdeore
Created February 2, 2017 12:36
Show Gist options
  • Select an option

  • Save siddharthdeore/c183ebb98f34d556f9db620b29dc0307 to your computer and use it in GitHub Desktop.

Select an option

Save siddharthdeore/c183ebb98f34d556f9db620b29dc0307 to your computer and use it in GitHub Desktop.
Compile and run all available OpenCV return C++ and C source code in current directory.
#!/bin/sh
if [ $# -gt 0 ] ; then
base=`basename $1 .c`
echo "compiling $base"
gcc -ggdb `pkg-config opencv --cflags --libs` $base.c -o $base
else
for i in *.cpp; do
echo "compiling $i"
g++ -ggdb `pkg-config --cflags opencv` -o `basename $i .cpp` $i `pkg-config --libs opencv`;
./`basename $i .cpp`
done
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment