buildOpenCVXavier icon indicating copy to clipboard operation
buildOpenCVXavier copied to clipboard

Build and install OpenCV for the NVIDIA Jetson AGX Xavier

Results 9 buildOpenCVXavier issues
Sort by recently updated
recently updated
newest added

Where did I go wrong :+1: fatal: could not create work tree dir 'opencv': Permission denied ./buildAndPackageOpenCV.sh: line 117: cd: opencv: No such file or directory fatal: not a git...

Hi @jetsonhacks , I am trying to use this repo to build OpenCV in a docker build. However, I am getting this in the command line File cuda_gl_interop.h is read-only;...

When i enter the command g++ -o gstreamer_view -Wall -std=c++11 gstreamer_view.cpp $(pkg-config –libs opencv) to compile gstreamer_view I receive an error. Do you have any suggestions as to how to...

support jetson tx2 system 3.3.3?

I am trying to install the openCV into a micro SD card. So I issued the command: > ./buildOpenCV.sh -i /media/xavier/nx/opencv-lib In the final stage, I get the following error:...

Hi. I want to install opencv v2.4.9, not v3.X Is there method of this?

Obtained from this issue: https://github.com/jetsonhacks/buildOpenCVXavier/issues/1

I've written the following code: ```Python import cv2 import numpy as np import time print("Starting...") time.sleep(1) c = cv2.VideoCapture(0) while(1): print("Capturing...") didItWork,f = c.read() print(didItWork) cv2.imwrite("output.jpg", f) cv2.destroyAllWindows() ``` The...

For my Mechatronics course, I wanted to add the opencv_contrib modules because we use the opencv_contrib aruco module for tracking robots for a midterm project. This script is awesome and...