Skip to content

Commit

Permalink
Fixed a few spelling errors in CLAHE declarations.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexwal authored Jul 30, 2016
1 parent 7def43a commit eff6d22
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cv/imgproc/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2563,9 +2563,9 @@ void CLAHE_setClipLimit(struct PtrWrapper ptr, double ClipLimit);

double CLAHE_getClipLimit(struct PtrWrapper ptr);

void CLAHE_setTilesGridSize(struct PtrWrapper ptr, struct SizeWrapper TilesGridSize);
void CLAHE_setTileGridSize(struct PtrWrapper ptr, struct SizeWrapper TilesGridSize);

struct SizeWrapper CLAHE_getTilesGridSize(struct PtrWrapper ptr);
struct SizeWrapper CLAHE_getTileGridSize(struct PtrWrapper ptr);

void CLAHE_collectGarbage(struct PtrWrapper ptr);

Expand Down Expand Up @@ -2876,7 +2876,7 @@ do
end

function CLAHE:setTileGridSize(tileGridSize)
C.CLAHE_setTileGridSize(self.ptr, TileGridSize)
C.CLAHE_setTileGridSize(self.ptr, tileGridSize)
end

function CLAHE:getTileGridSize()
Expand Down

0 comments on commit eff6d22

Please sign in to comment.