OpenCV 4.5.3(日本語機械翻訳)
color_match.hpp
1 // This file is part of OpenCV project.
2 // It is subject to the license terms in the LICENSE file found in the top-level directory
3 // of this distribution and at http://opencv.org/license.html.
4
5 #ifndef __OPENCV_COLOR_MATCH_HPP__
6 #define __OPENCV_COLOR_MATCH_HPP__
7
8 #include <opencv2/core.hpp>
9
10 namespace cv {
11 namespace ximgproc {
12
15
22 CV_EXPORTS_W void createQuaternionImage(InputArray img, OutputArray qimg);
23
30 CV_EXPORTS_W void qconj(InputArray qimg, OutputArray qcimg);
37 CV_EXPORTS_W void qunitary(InputArray qimg, OutputArray qnimg);
45 CV_EXPORTS_W void qmultiply(InputArray src1, InputArray src2, OutputArray dst);
54 CV_EXPORTS_W void qdft(InputArray img, OutputArray qimg, int flags, bool sideLeft);
62 CV_EXPORTS_W void colorMatchTemplate(InputArray img, InputArray templ, OutputArray result);
63
64}
65}
66 #endif
This type is very similar to InputArray except that it is used for input/output and output function p...
Definition: mat.hpp:295
CV_EXPORTS_W void qconj(InputArray qimg, OutputArray qcimg)
calculates conjugate of a quaternion image.
CV_EXPORTS_W void createQuaternionImage(InputArray img, OutputArray qimg)
creates a quaternion image.
CV_EXPORTS_W void qdft(InputArray img, OutputArray qimg, int flags, bool sideLeft)
Performs a forward or inverse Discrete quaternion Fourier transform of a 2D quaternion array.
CV_EXPORTS_W void qmultiply(InputArray src1, InputArray src2, OutputArray dst)
Calculates the per-element quaternion product of two arrays
CV_EXPORTS_W void colorMatchTemplate(InputArray img, InputArray templ, OutputArray result)
Compares a color template against overlapped color image regions.
CV_EXPORTS_W void qunitary(InputArray qimg, OutputArray qnimg)
divides each element by its modulus.
cv
"black box" representation of the file storage associated with a file on disk.
Definition: aruco.hpp:75