remove unsupported unsupported unicode

This commit is contained in:
zihaomu 2023-06-11 23:02:34 +08:00
parent 6ca697bc12
commit 37459f89c9
5 changed files with 8 additions and 8 deletions

View File

@ -18,7 +18,7 @@ EOF
# Parse options
COLOR_OUTPUT=0
while getopts “hc” OPTION
while getopts "hc" OPTION
do
case $OPTION in
h)

View File

@ -133,7 +133,7 @@ nonmaxSuppression:
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. 430443.
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.

View File

@ -410,9 +410,9 @@ public:
* 1. Check whether j-th data point is consistent with the
* model
* 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
* 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.

View File

@ -90,7 +90,7 @@ public:
*/
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();
struct Impl;
@ -122,7 +122,7 @@ public:
CV_WRAP float getMarkerLength() 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();
};
@ -187,7 +187,7 @@ public:
*/
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();
};

View File

@ -6,7 +6,7 @@ disable=all
# Tests
enable=bad-indentation, # Used when an unexpected number of indentations tabulations or spaces has been found.
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 isnt necessary.
unnecessary-semicolon, # Used when a statement is ended by a semi-colon (";"), which isnt necessary.
unused-variable # Used when a variable is defined but not used. (Use _var to ignore var).