Lakshya-Kejriwal/Real-Time-Video-Stabilization

Make file for video stabilisation

shri-ach opened this issue · 1 comments

I am trying to find the make file of video stabilization code for the linux environment.Can anybody tell me the location of it.At the end of the "readme" it is mentioned that the make file is present in "linux" branch of the repository. But I am unable to find it....

I made CMakeLists.txt file like this

cmake_minimum_required(VERSION 3.9.1)
set(LibraryName "videoStab")
project(${LibraryName} VERSION 1.0)

set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -pthread")

# For OpenCV
find_package( OpenCV REQUIRED)

file(GLOB SOURCES "*.cpp")
add_executable(${LibraryName} ${SOURCES})

target_link_libraries(${LibraryName} PUBLIC 
${OpenCV_LIBS}
)