[ocrfeeder] Remove unused code from util/graphics.py
- From: Joaquim Manuel Pereira Rocha <jrocha src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [ocrfeeder] Remove unused code from util/graphics.py
- Date: Mon, 8 Nov 2010 21:36:41 +0000 (UTC)
commit 2e54217981f1c3d35492c485f55224cae30d0d45
Author: Joaquim Rocha <jrocha igalia com>
Date: Mon Nov 8 08:23:55 2010 +0100
Remove unused code from util/graphics.py
src/ocrfeeder/util/graphics.py | 4 ----
1 files changed, 0 insertions(+), 4 deletions(-)
---
diff --git a/src/ocrfeeder/util/graphics.py b/src/ocrfeeder/util/graphics.py
index 856492a..55bfdbf 100644
--- a/src/ocrfeeder/util/graphics.py
+++ b/src/ocrfeeder/util/graphics.py
@@ -18,7 +18,6 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
###########################################################################
-from lib import getStandardDeviation
from lib import debug
import Image
import gtk
@@ -60,8 +59,6 @@ def convertPixbufToImage(pixbuf):
mode = pixbuf.get_has_alpha() and "RGBA" or "RGB"
return Image.frombuffer(mode, dimensions, pixels,
"raw", mode, stride, 1)
- width, height = pixbuf.get_width(), pixbuf.get_height()
- return Image.fromstring("RGBA", (width, height), pixbuf.get_pixels())
def rgbaToInteger(rgba):
r, g, b, a = rgba
@@ -71,7 +68,6 @@ def colorsContrast(color1, color2, tolerance = 120):
return abs(color1 - color2) > tolerance
def getImageResolution(image_object):
- image_object
resolution = (300, 300)
if 'dpi' in image_object.info.keys():
resolution = image_object.info['dpi']
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]