Practical CMake Configuration Techniques
Configuring RPATH in CMake
First, disable the automatic addition of build-time paths to RPATH at the beginning of your CMake configuration:
set(CMAKE_SKIP_RPATH TRUE)
After declaring a library with add_library but before linking with target_link_libraries, set these properties to enable dependency lookup in relative ../lib or ./lib directories ...
Posted on Mon, 06 Jul 2026 16:04:05 +0000 by songwind
Image Restoration Using OpenCV Inpainting Techniques
This demonstration illustrates the implemantation of image restoration through inpainting algortihms using the OpenCV library. The application enables interactive masking of image regions follwoed by automated reconstruction of those areas using surrounding pixel data.
The program workflow involves loading a source image, allowing users to draw ...
Posted on Thu, 04 Jun 2026 16:00:17 +0000 by the mysox1