From 2417f71bcb94b926ccf8e07902775001a6e5424e Mon Sep 17 00:00:00 2001 From: David Oram Date: Thu, 10 Sep 2015 17:27:25 +1200 Subject: [PATCH] Removed duplicate EqualizeHist function --- opencv/cxcore.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/opencv/cxcore.go b/opencv/cxcore.go index 28b6de7..e4bff18 100644 --- a/opencv/cxcore.go +++ b/opencv/cxcore.go @@ -113,11 +113,6 @@ func (img *IplImage) GetROI() Rect { return Rect(r) } -/* Equalizes the histogram of a grayscale image */ -func (img *IplImage) EqualizeHist(dest *IplImage) { - C.cvEqualizeHist(unsafe.Pointer(img), unsafe.Pointer(dest)) -} - /* Reshape changes shape of the image without copying data. A value of `0` means that channels or rows remain unchanged.