1

I am trying to install openCv for learning purpose and then using it for OCR(Optical Character Recognition) but i am unable to install it in Ubuntu 12.04

I am following this link and able to carry upto step of downloading ffmpeg but while configuring it getting following error

ERROR: libmp3lame >= 3.98.3 not found

I tried to install libmp3lame following this link but get this error again when configuring ffmpeg

ERROR: libmp3lame >= 3.98.3 not found
shailendra
  • 201
  • 2
  • 10

1 Answers1

1

To install OpenCV using the terminal on Ubuntu:

$ su -
# apt-get update
# apt-get install build-essential
# apt-get install libavformat-dev
# apt-get install x264 v4l-utils ffmpeg
# apt-get install libcv2.3 libcvaux2.3 libhighgui2.3 python-opencv \
   opencv-doc libcv-dev libcvaux-dev libhighgui-dev

http://namhuy.net/1205/how-to-install-opencv-on-ubuntu.html

Anthon
  • 78,313
  • 42
  • 165
  • 222
Roxy
  • 59
  • 1