From 3c0e4a45f1d495906da32b892a3a81c435299c93 Mon Sep 17 00:00:00 2001 From: jim Date: Mon, 11 May 2015 09:16:58 -0500 Subject: [PATCH] resolves #19 - more efficient checking of spacer images --- nd2reader/model/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nd2reader/model/__init__.py b/nd2reader/model/__init__.py index 883972b..4d59b4d 100644 --- a/nd2reader/model/__init__.py +++ b/nd2reader/model/__init__.py @@ -68,4 +68,4 @@ class Image(object): @property def is_valid(self): - return np.any(self.data) \ No newline at end of file + return np.any(self._raw_data) \ No newline at end of file