https://github.com/kost13/docker-images
FROM kost13/cpp-base:1.0
RUN apt-get update
RUN apt-get install libgtk2.0-dev pkg-config libavcodec-dev libavformat-dev libswscale-dev -y
RUN apt-get install libtbb2 libtbb-dev libjpeg-dev libpng-dev -y
RUN git clone https://github.com/opencv/opencv.git
RUN cd opencv && mkdir build && cd build
RUN cd opencv/build && cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr ..
RUN cd opencv/build && make -j4
RUN cd opencv/build && make install
RUN rm -rf opencv
Content type
Image
Digest
Size
1 GB
Last updated
about 6 years ago
docker pull kost13/opencv-cpp