Lakshya-Kejriwal / Real-Time-Video-Stabilization

real time video stabilization using Kalman Filter
MIT License
184 stars 54 forks source link

Make file for video stabilisation #11

Open shri-ach opened 4 years ago

shri-ach commented 4 years ago

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....

Ssong24 commented 1 year ago

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}
)