#!/usr/local/bin/python
#===============================================================================
# Copyright 2012 Jake Ross
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#   http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#===============================================================================
from traits.etsconfig.etsconfig import ETSConfig
ETSConfig.toolkit = 'qt4'


#============= enthought library imports =======================

#============= standard library imports ========================
import sys
import os
#============= local library imports  ==========================

from src.imager_processor import ImageProcessor

if __name__ == '__main__':
    d = ImageProcessor()
    if len(sys.argv) > 1:
        path = os.path.join(os.getcwd(), sys.argv[1])
        d.path = path
    # d.path = '/Users/ross/Sandbox/archive/images/R2-03 closeup_1_BSE_1_zoomed.png'
    # d.path='/Users/argonlab2/Sandbox/R2-03 closeup_1_BSE_1 zoomed2.png'
    d.configure_traits()
#============= EOF =============================================

