mirror of
https://github.com/boostorg/gil.git
synced 2026-01-25 06:12:22 +00:00
* Added all standard morphological transformations * Improved comments and some other things * Applied adviced changes * Applied adviced changes * Should handle grayscale dilation/erosion * Checking * Added test cases and improved code structure * Added command line control * Added command line control * Rectified some things * Rectified some more things * Improved comments * Improved comments * Improved doxygen comments and added more test cases * Improved compatibility for builds and rectifying whitespace use * Minor improvement in comments * Did clang formatting * pushed enum class inside namespace 'detail' and some other things * Should handle multichannel images * Clang formatting attempt * got rid of if/else comparators for target_element * Adds morphology.hpp declaration in boost/gil.hpp * Fix newline * (std::max)(a, b) instead of std::max(a, b) * Improved Formatting
26 lines
721 B
Plaintext
26 lines
721 B
Plaintext
# Boost.GIL (Generic Image Library) - tests
|
|
#
|
|
# Copyright 2019 Miral Shah <miralshah2211@gmail.com>
|
|
#
|
|
# Use, modification and distribution are subject to the Boost Software License,
|
|
# Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
|
# http://www.boost.org/LICENSE_1_0.txt)
|
|
#
|
|
import testing ;
|
|
|
|
compile-fail threshold_color_spaces_not_compatible_fail.cpp ;
|
|
run threshold_binary.cpp ;
|
|
run threshold_truncate.cpp ;
|
|
run threshold_otsu.cpp ;
|
|
run lanczos_scaling.cpp ;
|
|
run simple_kernels.cpp ;
|
|
run harris.cpp ;
|
|
run hessian.cpp ;
|
|
run sobel_scharr.cpp ;
|
|
run box_filter.cpp ;
|
|
run median_filter.cpp ;
|
|
run anisotropic_diffusion.cpp ;
|
|
run hough_line_transform.cpp ;
|
|
run hough_circle_transform.cpp ;
|
|
run morphology.cpp ;
|