fuzzy_image.hpp 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. /*M///////////////////////////////////////////////////////////////////////////////////////
  2. //
  3. // IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
  4. //
  5. // By downloading, copying, installing or using the software you agree to this license.
  6. // If you do not agree to this license, do not download, install,
  7. // copy or use the software.
  8. //
  9. //
  10. // License Agreement
  11. // For Open Source Computer Vision Library
  12. //
  13. // Copyright (C) 2015, University of Ostrava, Institute for Research and Applications of Fuzzy Modeling,
  14. // Pavel Vlasanek, all rights reserved. Third party copyrights are property of their respective owners.
  15. //
  16. // Redistribution and use in source and binary forms, with or without modification,
  17. // are permitted provided that the following conditions are met:
  18. //
  19. // * Redistribution's of source code must retain the above copyright notice,
  20. // this list of conditions and the following disclaimer.
  21. //
  22. // * Redistribution's in binary form must reproduce the above copyright notice,
  23. // this list of conditions and the following disclaimer in the documentation
  24. // and/or other materials provided with the distribution.
  25. //
  26. // * The name of the copyright holders may not be used to endorse or promote products
  27. // derived from this software without specific prior written permission.
  28. //
  29. // This software is provided by the copyright holders and contributors "as is" and
  30. // any express or implied warranties, including, but not limited to, the implied
  31. // warranties of merchantability and fitness for a particular purpose are disclaimed.
  32. // In no event shall the Intel Corporation or contributors be liable for any direct,
  33. // indirect, incidental, special, exemplary, or consequential damages
  34. // (including, but not limited to, procurement of substitute goods or services;
  35. // loss of use, data, or profits; or business interruption) however caused
  36. // and on any theory of liability, whether in contract, strict liability,
  37. // or tort (including negligence or otherwise) arising in any way out of
  38. // the use of this software, even if advised of the possibility of such damage.
  39. //
  40. //M*/
  41. #ifndef __OPENCV_FUZZY_IMAGE_H__
  42. #define __OPENCV_FUZZY_IMAGE_H__
  43. #include "types.hpp"
  44. #include "opencv2/core.hpp"
  45. namespace cv
  46. {
  47. namespace ft
  48. {
  49. //! @addtogroup f_image
  50. //! @{
  51. /** @brief Creates kernel from basic functions.
  52. @param A Basic function used in axis **x**.
  53. @param B Basic function used in axis **y**.
  54. @param kernel Final 32-b kernel derived from **A** and **B**.
  55. @param chn Number of kernel channels.
  56. The function creates kernel usable for latter fuzzy image processing.
  57. */
  58. CV_EXPORTS void createKernel(cv::InputArray A, cv::InputArray B, cv::OutputArray kernel, const int chn = 1);
  59. /** @brief Creates kernel from general functions.
  60. @param function Function type could be one of the following:
  61. - **LINEAR** Linear basic function.
  62. @param radius Radius of the basic function.
  63. @param kernel Final 32-b kernel.
  64. @param chn Number of kernel channels.
  65. The function creates kernel from predefined functions.
  66. */
  67. CV_EXPORTS void createKernel(int function, int radius, cv::OutputArray kernel, const int chn = 1);
  68. /** @brief Image inpainting
  69. @param image Input image.
  70. @param mask Mask used for unwanted area marking.
  71. @param output Output 32-bit image.
  72. @param radius Radius of the basic function.
  73. @param function Function type could be one of the following:
  74. - **LINEAR** Linear basic function.
  75. @param algorithm Algorithm could be one of the following:
  76. - **ONE_STEP** One step algorithm.
  77. - **MULTI_STEP** Algorithm automaticaly increasing radius of the basic function.
  78. - **ITERATIVE** Iterative algorithm running in more steps using partial computations.
  79. This function provides inpainting technique based on the fuzzy mathematic.
  80. @note
  81. The algorithms are described in paper @cite Perf:rec.
  82. */
  83. CV_EXPORTS void inpaint(const cv::Mat &image, const cv::Mat &mask, cv::Mat &output, int radius = 2, int function = ft::LINEAR, int algorithm = ft::ONE_STEP);
  84. /** @brief Image filtering
  85. @param image Input image.
  86. @param kernel Final 32-b kernel.
  87. @param output Output 32-bit image.
  88. Filtering of the input image by means of F-transform.
  89. */
  90. CV_EXPORTS void filter(const cv::Mat &image, const cv::Mat &kernel, cv::Mat &output);
  91. //! @}
  92. }
  93. }
  94. #endif // __OPENCV_FUZZY_IMAGE_H__