Changes between Version 28 and Version 29 of VisionFramework
- Timestamp:
- Nov 24, 2017, 11:38:12 AM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
VisionFramework
v28 v29 98 98 }}} 99 99 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 100 Let's also set the JAVA_HOME variable to be exported on startup: 101 {{{ 102 echo "export JAVA_HOME=/usr/lib/jvm/jdk-8-oracle-arm32-vfp-hflt" >> ~/.bashrc 103 source ~/.bashrc 108 104 }}} 109 105 … … 181 177 If you do not want to git clone the master opencv repository, download a zipped version: 182 178 [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 ==== 184 First, to allow OpenCV VideoCapture to access the ribbon cable camera, execute the following: 185 {{{ 186 echo "sudo modprobe bcm2835-v4l2" >> ~/.bashrc 187 source ~/.bashrc 189 188 }}} 190 189