mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-19 13:40:49 +03:00
0031939: Coding - correction of spelling errors in comments [part 4]
Fix various typos Fixed via `codespell v2.1.dev
This commit is contained in:
@@ -71,7 +71,7 @@ public:
|
||||
//! Initialize image plane with required dimensions.
|
||||
//! thePixelFormat - if specified pixel format doesn't supported by image library
|
||||
//! than nearest supported will be used instead!
|
||||
//! theSizeRowBytes - may be ignored by this class and required alignemnt will be used instead!
|
||||
//! theSizeRowBytes - may be ignored by this class and required alignment will be used instead!
|
||||
Standard_EXPORT virtual bool InitTrash (Image_Format thePixelFormat,
|
||||
const Standard_Size theSizeX,
|
||||
const Standard_Size theSizeY,
|
||||
|
@@ -26,7 +26,7 @@
|
||||
//! It uses the following methods to ignore the difference between images:
|
||||
//! - Black/White comparison. It makes the images 2-colored before the comparison.
|
||||
//! - Equality with tolerance. Colors of two pixels are considered the same if the
|
||||
//! differnce of their color is less than a tolerance.
|
||||
//! difference of their color is less than a tolerance.
|
||||
//! - Border filter. The algorithm ignores alone independent pixels,
|
||||
//! which are different on both images, ignores the "border effect" -
|
||||
//! the difference caused by triangles located at angle about 0 or 90 degrees to the user.
|
||||
@@ -63,7 +63,7 @@ public:
|
||||
//! An empty constructor. Init() should be called for initialization.
|
||||
Standard_EXPORT Image_Diff();
|
||||
|
||||
//! Desctructor.
|
||||
//! Destructor.
|
||||
Standard_EXPORT virtual ~Image_Diff();
|
||||
|
||||
//! Initialize algorithm by two images.
|
||||
@@ -101,10 +101,10 @@ public:
|
||||
//! It returns -1 if algorithm not initialized before.
|
||||
Standard_EXPORT Standard_Integer Compare();
|
||||
|
||||
//! Saves a difference between two images as white pixels on black backgroud.
|
||||
//! Saves a difference between two images as white pixels on black background.
|
||||
Standard_EXPORT Standard_Boolean SaveDiffImage (Image_PixMap& theDiffImage) const;
|
||||
|
||||
//! Saves a difference between two images as white pixels on black backgroud.
|
||||
//! Saves a difference between two images as white pixels on black background.
|
||||
Standard_EXPORT Standard_Boolean SaveDiffImage (const TCollection_AsciiString& theDiffPath) const;
|
||||
|
||||
protected:
|
||||
|
Reference in New Issue
Block a user