From 13c7850d1fcf62a375789d42c76e4232f124ee20 Mon Sep 17 00:00:00 2001 From: aknecht2 <aknecht2@unl.edu> Date: Sun, 8 Nov 2015 15:04:23 -0600 Subject: [PATCH] Fixed incorrect roi loading in fill function. --- ih/imgproc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ih/imgproc.py b/ih/imgproc.py index 97a732b..f04ae52 100644 --- a/ih/imgproc.py +++ b/ih/imgproc.py @@ -910,7 +910,7 @@ class Image(object): Fills the given roi with the given color. """ - + roi = self._loadROI(roi) ystart, yend, xstart, xend = roi self.image[ystart:yend, xstart:xend] = color return -- GitLab