From 1555d09380d114020e22e83b269b063c916128c5 Mon Sep 17 00:00:00 2001 From: philippjfr Date: Mon, 1 Sep 2014 14:54:19 +0100 Subject: [PATCH] Moved color conversion code from optimized to misc (fixed imports) --- topo/analysis/__init__.py | 27 +++++++++++++-------------- topo/{optimized => misc}/color.py | 0 2 files changed, 13 insertions(+), 14 deletions(-) rename topo/{optimized => misc}/color.py (100%) diff --git a/topo/analysis/__init__.py b/topo/analysis/__init__.py index 3c7d2c40c..6ed1d83c5 100644 --- a/topo/analysis/__init__.py +++ b/topo/analysis/__init__.py @@ -5,14 +5,6 @@ and sets the appropriate Topographica-specific hooks. """ -from topo.analysis.featureresponses import FeatureResponses, FeatureCurves,\ - FeatureMaps, ReverseCorrelation, MeasureResponseCommand, pattern_response,\ - topo_metadata_fn, StorageHook, get_feature_preference -from featuremapper.command import measure_response - -import imagen.colorspaces -import topo.optimized.color - import numpy as np from dataviews.collector import Reference @@ -20,16 +12,23 @@ from dataviews.operation import cmap2rgb, operator, chain from dataviews.testing import IPTestCase +from imagen import Animation +import imagen.colorspaces + +from featuremapper.command import Collector, measure_response + import topo -from featuremapper.command import Collector -from topo.base.sheet import Sheet +from topo.analysis.featureresponses import FeatureResponses, FeatureCurves,\ + FeatureMaps, ReverseCorrelation, MeasureResponseCommand, pattern_response,\ + topo_metadata_fn, StorageHook, get_feature_preference from topo.base.projection import Projection +from topo.base.sheet import Sheet +from topo.base.sheetview import CFView, CFStack from topo.misc.ipython import RunProgress +from topo.misc import color from command import measure_cog -from topo.base.sheetview import CFView, CFStack -from imagen import Animation class TopoIPTestCase(IPTestCase): @@ -186,8 +185,8 @@ def empty_storage_hook(arg): ## Set optimized versions of color conversion functions -imagen.colorspaces.rgb_to_hsv = topo.optimized.color._rgb_to_hsv_array_opt -imagen.colorspaces.hsv_to_rgb = topo.optimized.color._hsv_to_rgb_array_opt +imagen.colorspaces.rgb_to_hsv = color._rgb_to_hsv_array_opt +imagen.colorspaces.hsv_to_rgb = color._hsv_to_rgb_array_opt # Automatically discover all .py files in this directory. diff --git a/topo/optimized/color.py b/topo/misc/color.py similarity index 100% rename from topo/optimized/color.py rename to topo/misc/color.py