1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 15:23:05 +04:00

Merge pull request #27455 from leopardracer:4.x

Fix Typos in Comments and Documentation #27455

Description:
This pull request corrects minor typos in comments and documentation within the codebase:
- Replaces "representitive" with "representative" in kmeans.cpp.
- Replaces "indices" with the correct spelling in a comment in main.cu.
This commit is contained in:
leopardracer
2025-06-18 15:28:25 +03:00
committed by GitHub
parent d1b4b46dc6
commit bbaed6f377
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ using namespace std;
// {
// cout << "\nThis program demonstrates kmeans clustering.\n"
// "It generates an image with random points, then assigns a random number of cluster\n"
// "centers and uses kmeans to move those cluster centers to their representitive location\n"
// "centers and uses kmeans to move those cluster centers to their representative location\n"
// "Call\n"
// "./kmeans\n" << endl;
// }