OpenCVVersions: Difference between revisions

From UMIACS
Jump to navigation Jump to search
No edit summary
Ianc (talk | contribs)
 
Line 7: Line 7:
# Choose a home directory as installation location  home directory as shown below, where "username" is the actual username.
# Choose a home directory as installation location  home directory as shown below, where "username" is the actual username.
# Click extract, to install OpenCV files
# Click extract, to install OpenCV files
#* [[File: Install_location.png|400px]]
#* [[File: Install_location.png|400px|alt="Screenshot of app showing indicated button"]]
#** Click to enlarge
#** Click to enlarge
==== Without CUDA ====
==== Without CUDA ====

Latest revision as of 13:53, 7 April 2026

Windows

These directions are for 64-bit systems.

First, we install OpenCV

  1. Download the desired version of OpenCV from here
  2. Double click the downloaded executable to install, and select run at the prompt
  3. Choose a home directory as installation location home directory as shown below, where "username" is the actual username.
  4. Click extract, to install OpenCV files
    • "Screenshot of app showing indicated button"
      • Click to enlarge

Without CUDA

    The path to the folder you extracted is from here on refered to as {OPENCV}

Next, we setup environmental variables

  1. Navigate to Control Panel -> System and Security -> System
  2. Select Advanced system settings from the sidebar
  3. In the Advanced tab click the Environment Variables... button
  4. Check if a Variable called Path exists in the list of user variables (the top variables)
    • If it exists, click edit to edit the variable, and add a semicolon, then the following to the end of the Path value {OPENCV}\build\x64\vc10\bin
    • If it does not, press the New button and set the variable name to Path and the value to the path to your opencv directory ({OPENCV})

Visual Studio Project Set-Up

  1. Go to Project -> Properties
    • Configuration Properties -> C/C++ -> General
      • Additional Include Directories...add: '{OPENCV}\build\include;'
    • Configuration Properties -> VC++ Directories
      • Executable Directories...add: '{OPENCV}\build\x64\vc10\bin;'
      • Library Directories...add: '{OPENCV}\build\x64\vc10\lib;{OPENCV}\build\x64\vc10\staticlib;'

More Information