Changes between Version 28 and Version 29 of VisionFramework


Ignore:
Timestamp:
Nov 24, 2017, 11:38:12 AM (7 years ago)
Author:
benjialbert
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • VisionFramework

    v28 v29  
    9898}}}
    9999
    100 Let's also set the JAVA_HOME variable to be exported on startup:[[BR]]
    101 edit your bashrc:
    102 {{{
    103 sudo nano ~/.bashrc
    104 }}}
    105 and add the following line:
    106 {{{
    107 export JAVA_HOME=/usr/lib/jvm/jdk-8-oracle-arm32-vfp-hflt
     100Let's also set the JAVA_HOME variable to be exported on startup:
     101{{{
     102echo "export JAVA_HOME=/usr/lib/jvm/jdk-8-oracle-arm32-vfp-hflt" >> ~/.bashrc
     103source ~/.bashrc
    108104}}}
    109105
     
    181177If you do not want to git clone the master opencv repository, download a zipped version:
    182178[https://github.com/opencv/opencv/archive/3.2.0.zip opencv-3.2.0.zip][[BR]]
    183 
    184 ==== Java Projects with OpenCV ====
    185 ===== Enable VideoCapture =====
    186 First, to allow OpenCV VideoCapture to access the ribbon cable camera, run the following command:
    187 {{{
    188 sudo modprobe bcm2835-v4l2
     179----
     180----
     181----
     182=== Java Projects with OpenCV ===
     183==== Enable VideoCapture ====
     184First, to allow OpenCV VideoCapture to access the ribbon cable camera, execute the following:
     185{{{
     186echo "sudo modprobe bcm2835-v4l2" >> ~/.bashrc
     187source ~/.bashrc
    189188}}}
    190189