To use OpenCV with CodeBlocks, you need to tell CodeBlocks:
- The directory which contains the OpenCV header files →
c:\opencv\build\include
- List of OpenCV libraries needed for linking →
c:\opencv\build\x86\mingw\libs\libopencv_*.dll.a
1. Add the OpenCV header files directory
Open Settings → Compiler and debugger... → Search directories tab → Compiler tab
![CodeBlock settings: search directory]()
Click add button for adding a new entry. In the popup dialog, type c:\opencv\build\include,
![Add OpenCV include directory to CodeBlocks]()
and click Ok.
2. Add the OpenCV libraries needed for linking
Open Settings → Compiler and debugger... → Linker settings tab.
![CodeBlocks linker settings]()
Click add for adding new entries and open a popup dialog.
![CodeBlock settings: Add libraries to link]()
Click the "..." button to open the File Open Dialog. Go to c:\opencv\build\x86\mingw\lib directory and select all files by pressing Ctrl-A.
![enter image description here]()
Click Open to add the files,
![enter image description here]()
Click Ok to save all settings.
Now that you've set the include directory and the libraries for linking, you can compile
and run your project by pressing F9 key.