mirror of
https://github.com/opencv/opencv.git
synced 2026-07-27 06:13:05 +04:00
Misc. ./samples typos
Found via `codespell -q 3 --skip="./3rdparty" -I ../opencv-whitelist.txt`
This commit is contained in:
+1
-1
@@ -13,7 +13,7 @@ static void help( char* progName)
|
||||
{
|
||||
cout << endl << progName
|
||||
<< " shows how to use cv::Mat and IplImages together (converting back and forth)." << endl
|
||||
<< "Also contains example for image read, spliting the planes, merging back and " << endl
|
||||
<< "Also contains example for image read, splitting the planes, merging back and " << endl
|
||||
<< " color conversion, plus iterating through pixels. " << endl
|
||||
<< "Usage:" << endl
|
||||
<< progName << " [image-name Default: ../data/lena.jpg]" << endl << endl;
|
||||
|
||||
+8
-8
@@ -9,14 +9,14 @@ using namespace cv;
|
||||
static void help()
|
||||
{
|
||||
cout
|
||||
<< "\n--------------------------------------------------------------------------" << endl
|
||||
<< "\n---------------------------------------------------------------------------" << endl
|
||||
<< "This program shows how to create matrices(cv::Mat) in OpenCV and its serial"
|
||||
<< " out capabilities" << endl
|
||||
<< "That is, cv::Mat M(...); M.create and cout << M. " << endl
|
||||
<< "Shows how output can be formated to OpenCV, python, numpy, csv and C styles." << endl
|
||||
<< "Usage:" << endl
|
||||
<< "./mat_the_basic_image_container" << endl
|
||||
<< "--------------------------------------------------------------------------" << endl
|
||||
<< " out capabilities" << endl
|
||||
<< "That is, cv::Mat M(...); M.create and cout << M. " << endl
|
||||
<< "Shows how output can be formatted to OpenCV, python, numpy, csv and C styles." << endl
|
||||
<< "Usage:" << endl
|
||||
<< "./mat_the_basic_image_container" << endl
|
||||
<< "-----------------------------------------------------------------------------" << endl
|
||||
<< endl;
|
||||
}
|
||||
|
||||
@@ -76,7 +76,7 @@ int main(int,char**)
|
||||
randu(R, Scalar::all(0), Scalar::all(255));
|
||||
//! [random]
|
||||
|
||||
// Demonstrate the output formating options
|
||||
// Demonstrate the output formatting options
|
||||
//! [out-default]
|
||||
cout << "R (default) = " << endl << R << endl << endl;
|
||||
//! [out-default]
|
||||
|
||||
Reference in New Issue
Block a user