Hello there,
I just got a jetson TX1 and I want to use openCV with the module camera on the board. I tried many things and nothing works.
I installed -Jepack 3.0 (kernel 3.10.96 / ubuntu 16.04) and built openCV 3 using this tutorial: OpenCV: Building OpenCV for Tegra with CUDA
Is not possible to initialize the camera. when I the camera with gst-launch-1.0, it works!!!
gst-launch-1.0 nvcamerasrc fpsRange=“30.0 30.0” ! ‘video/x-raw(memory:NVMM), width=(int)1920, height=(int)1080, format=(string)I420, framerate=(fraction)30/1’ ! nvtee ! nvvidconv flip-method=2 ! ‘video/x-raw(memory:NVMM), format=(string)I420’ ! nvoverlaysink -e
I compiled my source code with this command : g++ face1.cpp -o test pkg-config --cflags --libs opencv
my program used all the openCV libs :
ubuntu@tegra-ubuntu:~/test$ ldd test
linux-vdso.so.1 => (0x0000007f86e1e000)
libopencv_highgui.so.3.1 => /usr/lib/libopencv_highgui.so.3.1 (0x0000007f86de0000)
libopencv_videoio.so.3.1 => /usr/lib/libopencv_videoio.so.3.1 (0x0000007f86da7000)
libopencv_core.so.3.1 => /usr/lib/libopencv_core.so.3.[b][/b]1 (0x0000007f86a1f000)
my source is:
#include
#include <stdio.h>
#include <opencv2/opencv.hpp>
#include “opencv2/videoio.hpp”
[i]using namespace cv;
using namespace std;
int main()
{
VideoCapture cap(“nvcamerasrc ! video/x-raw(memory:NVMM), width=(int)1280, height=(int)720,format=(string)I420, framerate=(fraction)24/1 ! nvvidconv flip-method=2 ! video/x-raw, format=(string)BGRx ! videoconvert ! video/x-raw, format=(string)BGR ! appsink”);
if (!cap.isOpened())
{
cerr << "Fail to open camera " << endl;
return -1;
}
for(;;)
{
Mat frame;
cap >> frame;
imshow("window", frame);
waitKey(1);
}
cap.release();
return 0;
}[/i]
I would like to known how to use it. Please help me.
Best Regards
Denis