GithubHelp home page GithubHelp logo

Comments (4)

gineshidalgo99 avatar gineshidalgo99 commented on May 22, 2024 2

We are still trying to figure out that error, since it does not happen in our computers.

Could you try this? Could you remove your OpenCV version and try the default and basic OpenCV version that you can get from the Ubuntu repositories?
sudo apt-get install libopencv-dev

And let us know whether the error still happens.

Thanks!

from caffe_rtpose.

gineshidalgo99 avatar gineshidalgo99 commented on May 22, 2024

Please, check #1 or #7. Thanks!

from caffe_rtpose.

kidapu avatar kidapu commented on May 22, 2024

@gineshidalgo99
Thanks.
I changed opencv version from 3.1 to 2.4.13.2.
Then I got new event like below youtube link, that I recorded my ubuntu desktop...

https://www.youtube.com/watch?v=2HmNaGgW2Xk&feature=youtu.be

The window opens, but it will die soon...

from caffe_rtpose.

kidapu avatar kidapu commented on May 22, 2024

I cannot instal libopencv but I can install libopencv-dev alternatively, and finally I can success to run!

Following Dockerfile could run your app. ( Probably there are unnecessary libraries included but hastening ...)

FROM nvidia/cuda:8.0-devel-ubuntu16.04
LABEL maintainer "NVIDIA CORPORATION <[email protected]>"

RUN apt-get update && apt-get install -y \
  build-essential checkinstall cmake pkg-config wget curl sudo git vim unzip lsb-release \
  yasm x264 \ 
  libtiff5-dev libjpeg-dev libpng-dev libtiff-dev \
  libjasper-dev libavcodec-dev libavformat-dev libswscale-dev libdc1394-22-dev libgstreamer0.10-dev libgstreamer-plugins-base0.10-dev libv4l-dev \
  python-dev python-numpy python-pip \
  libtbb-dev libeigen3-dev libqt4-dev libgtk2.0-dev libmp3lame-dev \
  libopencore-amrnb-dev libopencore-amrwb-dev libtheora-dev libvorbis-dev libxvidcore-dev \
  v4l-utils \
  libgtk2.0-dev \
  zlib1g-dev \
  libhdf5-dev libopenblas-dev libatlas-base-dev libgflags-dev libgoogle-glog-dev liblmdb-dev liblapacke-dev \
  libopencv-dev python-opencv 


# install cudnn 5.1.10
ENV CUDNN_VERSION 5.1.10
LABEL com.nvidia.cudnn.version="${CUDNN_VERSION}"
RUN CUDNN_DOWNLOAD_SUM=c10719b36f2dd6e9ddc63e3189affaa1a94d7d027e63b71c3f64d449ab0645ce && \
    curl -fsSL http://developer.download.nvidia.com/compute/redist/cudnn/v5.1/cudnn-8.0-linux-x64-v5.1.tgz -O && \
    echo "$CUDNN_DOWNLOAD_SUM  cudnn-8.0-linux-x64-v5.1.tgz" | sha256sum -c --strict - && \
    tar -xzf cudnn-8.0-linux-x64-v5.1.tgz -C /usr/local && \
    rm cudnn-8.0-linux-x64-v5.1.tgz && \
    ldconfig


# install rtpose
RUN cd /usr/local && \
    git clone https://github.com/CMU-Perceptual-Computing-Lab/caffe_rtpose.git && \
    cd caffe_rtpose && \
    ./install_caffe_and_cpm.sh

Thanks!

from caffe_rtpose.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.