Skip to content

Instantly share code, notes, and snippets.

View scimad's full-sized avatar

Madhav Om scimad

View GitHub Profile
@UnaNancyOwen
UnaNancyOwen / CMakeLists.txt
Last active December 2, 2023 07:24
Convert Image in Each-Formats of Azure Kinect using OpenCV
cmake_minimum_required( VERSION 3.6 )
project( AzureKinect )
add_executable( AzureKinect util.h main.cpp )
set_property( DIRECTORY PROPERTY VS_STARTUP_PROJECT "AzureKinect" )
set( k4a_DIR "C:/Program Files/K4A/lib/cmake/k4a" CACHE PATH "Path to Azure Kinect SDK (K4A) config directory." )
find_package( k4a REQUIRED )
@kvas7andy
kvas7andy / 1_MINOS_tutorial.md
Last active August 15, 2022 09:00
Brief explanation of MUNOS simulator usage
@Univan-Ahn
Univan-Ahn / CMakeLists.txt
Last active May 12, 2023 00:35
Moving from QMake to CMake for Qt5 projects
cmake_minimum_required(VERSION 2.8.11)
project(Qt5App)
#
# Qt5 support
#
# general overview:
# * [Modern CMake with Qt and Boost](http://www.kdab.com/modern-cmake-with-qt-and-boost/)
# * [Using CMake with Qt 5](http://www.kdab.com/using-cmake-with-qt-5/)