From 48429496761972edec23b2be346fc266cb0b9283 Mon Sep 17 00:00:00 2001 From: Tobias Eidelpes Date: Mon, 13 Feb 2023 17:55:14 +0100 Subject: [PATCH] Remove unused image pipeline --- jetson-deployment/image-capture/autofocus.cc | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/jetson-deployment/image-capture/autofocus.cc b/jetson-deployment/image-capture/autofocus.cc index 629d12a..2977807 100644 --- a/jetson-deployment/image-capture/autofocus.cc +++ b/jetson-deployment/image-capture/autofocus.cc @@ -5,22 +5,6 @@ using namespace std; using namespace cv; -string img_pipeline(int capture_width, int capture_height, int framerate, - int flip_method) { - return "nvarguscamerasrc num-buffers=1 ! " - "video/x-raw(memory:NVMM),width=(int)" + - to_string(capture_width) + ",height=(int)" + - to_string(capture_height) + ",framerate=(fraction)" + - to_string(framerate) + - "/1 ! " - "nvvidconv flip-method=" + - to_string(flip_method) + - " ! " - "jpegenc quality=95 ! " - "videoconvert ! " - "appsink"; -} - string focus_pipeline(int capture_width, int capture_height, int framerate, int flip_method) { return "nvarguscamerasrc ! "