blob: 5c2d05b991d5e054fbdfe6db0e3335873974299e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
cmake_minimum_required(VERSION 3.20)
project(digital-image-process-lab)
set(CMAKE_CXX_STANDARD 17)
find_package(OpenCV REQUIRED)
include_directories(${OpenCV_INCLUDE_DIRS})
add_executable(HistogramEqulization HistogramEqulization.cpp)
target_link_libraries(HistogramEqulization ${OpenCV_LIBS})
add_executable(DiscreteFourierTransform DiscreteFourierTransform.cpp)
target_link_libraries(DiscreteFourierTransform ${OpenCV_LIBS})
add_executable(MorphologicalTransformation MorphologicalTransformation.cpp)
target_link_libraries(MorphologicalTransformation ${OpenCV_LIBS})
|