Sarad Dhungel
Sarad Dhungel

Reputation: 1

OpenCV on Yocto Linux

How do I install openCV on Yocto Project? I am trying to use Intel Atom Board for Image Processing Project. What's the alternative if openCV is not compatible, openCL? Please help!

Upvotes: 0

Views: 7735

Answers (2)

whenrybruce
whenrybruce

Reputation: 91

openCV creates dynamic package names for each library so unfortunately

CORE_IMAGE_EXTRA_INSTALL += "opencv"

will not install any libraries. Instead install specific libraries, example below. Note that you still need to install opencv in case you build an SDK

CORE_IMAGE_EXTRA_INSTALL += "opencv libopencv-core libopencv-imgproc" 

Upvotes: 2

john madieu
john madieu

Reputation: 1409

Just add opencv in your image recipe or in your local.conf

 `IMAGE_INSTALL  += "opencv"`

Upvotes: 2

Related Questions