mirror of
https://github.com/opencv/opencv.git
synced 2026-07-30 07:43:03 +04:00
Misc. typos
Found via `codespell -q 3 -I ../opencv-whitelist.txt --skip="./3rdparty"`
This commit is contained in:
@@ -1764,7 +1764,7 @@ typedef struct CvString
|
||||
}
|
||||
CvString;
|
||||
|
||||
/** All the keys (names) of elements in the readed file storage
|
||||
/** All the keys (names) of elements in the read file storage
|
||||
are stored in the hash to speed up the lookup operations: */
|
||||
typedef struct CvStringHashNode
|
||||
{
|
||||
|
||||
@@ -2779,7 +2779,7 @@ cvGraphAddEdgeByPtr( CvGraph* graph,
|
||||
|
||||
if( start_vtx == end_vtx )
|
||||
CV_Error( start_vtx ? CV_StsBadArg : CV_StsNullPtr,
|
||||
"vertex pointers coinside (or set to NULL)" );
|
||||
"vertex pointers coincide (or set to NULL)" );
|
||||
|
||||
edge = (CvGraphEdge*)cvSetNew( (CvSet*)(graph->edges) );
|
||||
assert( edge->flags >= 0 );
|
||||
|
||||
@@ -1063,7 +1063,7 @@ cvReadRawDataSlice( const CvFileStorage* fs, CvSeqReader* reader,
|
||||
CV_Error( CV_StsNullPtr, "Null pointer to reader or destination array" );
|
||||
|
||||
if( !reader->seq && len != 1 )
|
||||
CV_Error( CV_StsBadSize, "The readed sequence is a scalar, thus len must be 1" );
|
||||
CV_Error( CV_StsBadSize, "The read sequence is a scalar, thus len must be 1" );
|
||||
|
||||
fmt_pair_count = icvDecodeFormat( dt, fmt_pairs, CV_FS_MAX_FMT_PAIRS );
|
||||
size_t step = ::icvCalcStructSize(dt, 0);
|
||||
|
||||
Reference in New Issue
Block a user