1

I'm writing object tracking software in C++ and using OpenCV and highgui. The problem I have right now is that even after sudo yum install opencv and using the yumex frontend to ensure that all of the packages were installed, cv.h is not found when I try to compile.

I looked in /usr/include/ and there's no trace of opencv. What's going on and how can I fix this?

tekknolagi
  • 1,420

1 Answers1

2

Did you install the -devel packages?

Redhat/Fedora splits software into both runtime (which is what you probably have installed) and developer (headers, static libs) packages. It names these developer packages PACKAGENAME-devel.

Check your install, see if you can install the necessary opencv-devel package(s).

Rich Homolka
  • 32,350