mirror of
https://github.com/opencv/opencv.git
synced 2024-11-27 20:50:25 +08:00
remove unsupported unsupported unicode
This commit is contained in:
parent
6ca697bc12
commit
37459f89c9
@ -18,7 +18,7 @@ EOF
|
|||||||
# Parse options
|
# Parse options
|
||||||
|
|
||||||
COLOR_OUTPUT=0
|
COLOR_OUTPUT=0
|
||||||
while getopts “hc” OPTION
|
while getopts "hc" OPTION
|
||||||
do
|
do
|
||||||
case $OPTION in
|
case $OPTION in
|
||||||
h)
|
h)
|
||||||
|
@ -133,7 +133,7 @@ nonmaxSuppression:
|
|||||||
Additional Resources
|
Additional Resources
|
||||||
--------------------
|
--------------------
|
||||||
|
|
||||||
-# Edward Rosten and Tom Drummond, “Machine learning for high speed corner detection” in 9th
|
-# Edward Rosten and Tom Drummond, "Machine learning for high speed corner detection" in 9th
|
||||||
European Conference on Computer Vision, vol. 1, 2006, pp. 430–443.
|
European Conference on Computer Vision, vol. 1, 2006, pp. 430–443.
|
||||||
2. Edward Rosten, Reid Porter, and Tom Drummond, "Faster and better: a machine learning approach to
|
2. Edward Rosten, Reid Porter, and Tom Drummond, "Faster and better: a machine learning approach to
|
||||||
corner detection" in IEEE Trans. Pattern Analysis and Machine Intelligence, 2010, vol 32, pp.
|
corner detection" in IEEE Trans. Pattern Analysis and Machine Intelligence, 2010, vol 32, pp.
|
||||||
|
@ -410,9 +410,9 @@ public:
|
|||||||
* 1. Check whether j-th data point is consistent with the
|
* 1. Check whether j-th data point is consistent with the
|
||||||
* model
|
* model
|
||||||
* 2. Compute the likelihood ratio λj eq. (1)
|
* 2. Compute the likelihood ratio λj eq. (1)
|
||||||
* 3. If λj > A, decide the model is ’bad’ (model ”re-jected”),
|
* 3. If λj > A, decide the model is ’bad’ (model "re-jected"),
|
||||||
* else increment j or continue testing
|
* else increment j or continue testing
|
||||||
* 4. If j = N the number of correspondences decide model ”accepted”
|
* 4. If j = N the number of correspondences decide model "accepted"
|
||||||
*
|
*
|
||||||
* Verifies model and returns model score.
|
* Verifies model and returns model score.
|
||||||
|
|
||||||
|
@ -90,7 +90,7 @@ public:
|
|||||||
*/
|
*/
|
||||||
CV_WRAP void generateImage(Size outSize, OutputArray img, int marginSize = 0, int borderBits = 1) const;
|
CV_WRAP void generateImage(Size outSize, OutputArray img, int marginSize = 0, int borderBits = 1) const;
|
||||||
|
|
||||||
CV_DEPRECATED_EXTERNAL // avoid using in C++ code, will be moved to “protected” (need to fix bindings first)
|
CV_DEPRECATED_EXTERNAL // avoid using in C++ code, will be moved to "protected" (need to fix bindings first)
|
||||||
Board();
|
Board();
|
||||||
|
|
||||||
struct Impl;
|
struct Impl;
|
||||||
@ -122,7 +122,7 @@ public:
|
|||||||
CV_WRAP float getMarkerLength() const;
|
CV_WRAP float getMarkerLength() const;
|
||||||
CV_WRAP float getMarkerSeparation() const;
|
CV_WRAP float getMarkerSeparation() const;
|
||||||
|
|
||||||
CV_DEPRECATED_EXTERNAL // avoid using in C++ code, will be moved to “protected” (need to fix bindings first)
|
CV_DEPRECATED_EXTERNAL // avoid using in C++ code, will be moved to "protected" (need to fix bindings first)
|
||||||
GridBoard();
|
GridBoard();
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -187,7 +187,7 @@ public:
|
|||||||
*/
|
*/
|
||||||
CV_WRAP bool checkCharucoCornersCollinear(InputArray charucoIds) const;
|
CV_WRAP bool checkCharucoCornersCollinear(InputArray charucoIds) const;
|
||||||
|
|
||||||
CV_DEPRECATED_EXTERNAL // avoid using in C++ code, will be moved to “protected” (need to fix bindings first)
|
CV_DEPRECATED_EXTERNAL // avoid using in C++ code, will be moved to "protected" (need to fix bindings first)
|
||||||
CharucoBoard();
|
CharucoBoard();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ disable=all
|
|||||||
# Tests
|
# Tests
|
||||||
enable=bad-indentation, # Used when an unexpected number of indentation’s tabulations or spaces has been found.
|
enable=bad-indentation, # Used when an unexpected number of indentation’s tabulations or spaces has been found.
|
||||||
mixed-indentation, # Used when there are some mixed tabs and spaces in a module.
|
mixed-indentation, # Used when there are some mixed tabs and spaces in a module.
|
||||||
unnecessary-semicolon, # Used when a statement is ended by a semi-colon (”;”), which isn’t necessary.
|
unnecessary-semicolon, # Used when a statement is ended by a semi-colon (";"), which isn’t necessary.
|
||||||
unused-variable # Used when a variable is defined but not used. (Use _var to ignore var).
|
unused-variable # Used when a variable is defined but not used. (Use _var to ignore var).
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user