commit | 77853bb1f742485447495bf7f384a8abe8669c52 | [log] [tgz] |
---|---|---|
author | Yinhang Liu <[email protected]> | Thu Aug 24 09:52:52 2017 +0800 |
committer | windyuan <[email protected]> | Mon Aug 28 18:03:35 2017 +0800 |
tree | 004878cd574d37e7039d02337c5d6bde767b0cb8 | |
parent | 0995e53b9064a563b343a9bdcd50ecf88bf84bec [diff] |
cl-stitch: support multiple cameras * add 4 cameras mode * optimize feature match to support single match at a time * prepare parameters for each blender independently * swap buffer index for the last blender in configuration phase * test-image-stitching cmdline: $ test-image-stitching --input input0.nv12 --input input1.nv12 \ --input input2.nv12 --input input3.nv12 --output output.mp4 \ --input-w 1280 --input-h 800 --output-w 4864 --output-h 1408 \ --scale-mode local --enable-fisheyemap --res-mode 1080p4 \ --fm-ocl false --framerate 30.0 --save true \ --fisheye-num 4 --all-in-one false
Copyright (C) 2014-2017 Intel Corporation
libxcam core source code under the terms of Apache License, Version 2.0
libXCam is a project for extended camera features and focus on image quality improvement and video analysis. There are lots features supported in image pre-processing, image post-processing and smart analysis. This library makes GPU/CPU/ISP working together to improve image quality. OpenCL is used to improve performance in different platforms.
Environment variable settings
For different --prefix options, the environment variables may be different. Please set the environment variable according to the actual situation.
--prefix=/usr/local:
export LD_LIBRARY_PATH=/usr/local/lib/:$LD_LIBRARY_PATH export GST_PLUGIN_PATH=/usr/local/lib/gstreamer-1.0:$GST_PLUGIN_PATH
--prefix=/usr:
export LD_LIBRARY_PATH=/usr/lib/:$LD_LIBRARY_PATH export GST_PLUGIN_PATH=/usr/lib/gstreamer-1.0:$GST_PLUGIN_PATH
$ ./autogen.sh [options]
--prefix=PREFIX install architecture-independent files in PREFIX [default=/usr/local] --enable-debug enable debug, [default=no] --enable-profiling enable profiling, [default=no] --enable-drm enable drm buffer, [default=yes] --enable-aiq enable Aiq 3A algorithm build, [default=no] --enable-gst enable gstreamer plugin build, [default=no] --enable-libcl enable libcl image processor, [default=yes] --enable-opencv enable opencv library, [default=no] --enable-docs build Doxygen documentation [default=no] --enable-3alib enable 3A lib build, [default=no] --enable-smartlib enable smart analysis lib build, [default=no]
For example:
$ ./autogen.sh --prefix=/usr --enable-3alib --enable-aiq --enable-gst --enable-drm \ --enable-libcl --enable-opencv --enable-profiling --enable-smartlib
$ make
$ sudo make install