Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Eddy Gharib committed Jun 27, 2020
0 parents commit f763a32
Show file tree
Hide file tree
Showing 395 changed files with 491,119 additions and 0 deletions.
Binary file added bin/opencv_annotation
Binary file not shown.
Binary file added bin/opencv_interactive-calibration
Binary file not shown.
Binary file added bin/opencv_version
Binary file not shown.
Binary file added bin/opencv_visualisation
Binary file not shown.
20 changes: 20 additions & 0 deletions bin/setup_vars_opencv4.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#!/bin/bash

SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"

[[ ! "${OPENCV_QUIET}" ]] && ( echo "Setting vars for OpenCV 4.4.0-pre" )
export LD_LIBRARY_PATH="$SCRIPT_DIR/../lib:$LD_LIBRARY_PATH"

if [[ ! "$OPENCV_SKIP_PYTHON" ]]; then
PYTHONPATH_OPENCV="$SCRIPT_DIR/../lib/python3.6/dist-packages"
[[ ! "${OPENCV_QUIET}" ]] && ( echo "Append PYTHONPATH: ${PYTHONPATH_OPENCV}" )
export PYTHONPATH="${PYTHONPATH_OPENCV}:$PYTHONPATH"
fi

# Don't exec in "sourced" mode
if [[ "${BASH_SOURCE[0]}" == "${0}" ]]; then
if [[ $# -ne 0 ]]; then
[[ ! "${OPENCV_QUIET}" && "${OPENCV_VERBOSE}" ]] && ( echo "Executing: $*" )
exec "$@"
fi
fi
Loading

0 comments on commit f763a32

Please sign in to comment.