Fix typos with cspell (#6972)

This commit is contained in:
Gold856
2024-08-17 10:44:34 -04:00
committed by GitHub
parent 780b1e0391
commit b12b83aa89
83 changed files with 151 additions and 152 deletions

View File

@@ -230,7 +230,7 @@ inline void CvSource::PutFrame(cv::Mat& image) {
int channels = finalImage.channels();
VideoMode::PixelFormat format;
if (channels == 1) {
// 1 channel is assumed Graysacle
// 1 channel is assumed Grayscale
format = VideoMode::PixelFormat::kGray;
} else if (channels == 2) {
// 2 channels is assumed YUYV

View File

@@ -524,7 +524,7 @@ class VideoCamera : public VideoSource {
void SetWhiteBalanceManual(int value);
/**
* Set the exposure to auto aperature.
* Set the exposure to auto aperture.
*/
void SetExposureAuto();
@@ -1148,7 +1148,7 @@ class VideoEvent : public RawEvent {
};
/**
* An event listener. This calls back to a desigated callback function when
* An event listener. This calls back to a designated callback function when
* an event matching the specified mask is generated by the library.
*/
class VideoListener {