Skip to content

Latest commit

 

History

History
30 lines (17 loc) · 721 Bytes

README.md

File metadata and controls

30 lines (17 loc) · 721 Bytes

Esterv.Utils.QrDec

[TOC]

This repo detect and decode a Qr code in a image. The detection and decoding is performed by OpenCV libraries. In case OpenCV is not found on your system CMake will download pre compiled libraries from my action releases.

Adding the libraries to your CMake project

include(FetchContent)
FetchContent_Declare(
	EstervQrCode
	GIT_REPOSITORY https://github.com/EddyTheCo/Esterv.Utils.QrCode.git
	GIT_TAG vMAJOR.MINOR.PATCH 
	FIND_PACKAGE_ARGS MAJOR.MINOR COMPONENTS QrDec CONFIG
)
FetchContent_MakeAvailable(EstervQrCode)

target_link_libraries(<target> <PRIVATE|PUBLIC|INTERFACE> Esterv::QrDec)