In [1]:
%matplotlib inline
%pylab inline


Populating the interactive namespace from numpy and matplotlib

Load test data


In [2]:
import menpo.io as mio
from menpo.landmark import labeller, streetscene_car_view_2
from menpofast.utils import convert_from_menpo

path = '/data/'
group = 'streetscene_car_view_2'

test_images = []
for i in mio.import_images(path + 'PhD/DataBases/cars/cmu_car_data1/view2/',
                           verbose=True, max_images=None):
    
    # convert the image from menpo Image to menpofast Image (channels at front)
    i = convert_from_menpo(i)
    
    labeller(i, 'PTS', eval(group))
    i.crop_to_landmarks_proportion_inplace(1.5, group=group)
    i = i.rescale_landmarks_to_diagonal_range(200, group=group)
    
    if i.n_channels == 3:
        i = i.as_greyscale(mode='average')
    test_images.append(i)


- Loading 601 assets: [====================] 100%

In [3]:
test_images = test_images[1::2]

In [4]:
from menpo.visualize import visualize_images

visualize_images(test_images)


Load models


In [5]:
from alabortcvpr2015.utils import pickle_load

global_unified = pickle_load(path + 'PhD/Models/global_unified_view2_fast_dsift')

Construct fitters


In [6]:
sampling_step = 5

sampling_mask = np.require(np.zeros(parts_aam.parts_shape), dtype=np.bool)
sampling_mask[::sampling_step, ::sampling_step] = True

imshow(sampling_mask)


---------------------------------------------------------------------------
NameError                                 Traceback (most recent call last)
<ipython-input-6-1305e4ec396f> in <module>()
      1 sampling_step = 5
      2 
----> 3 sampling_mask = np.require(np.zeros(parts_aam.parts_shape), dtype=np.bool)
      4 sampling_mask[::sampling_step, ::sampling_step] = True
      5 

NameError: name 'parts_aam' is not defined

In [7]:
from alabortcvpr2015.aam import PartsAAMFitter, GlobalAAMFitter, AIC, PIC
from alabortcvpr2015.clm import CLMFitter
from alabortcvpr2015.unified import PartsUnifiedFitter, GlobalUnifiedFitter, AICRLMS, PICRLMS

n_shape = [3, 12]
n_appearance = [25, 50]

global_unified_fitter_pic = GlobalUnifiedFitter(global_unified, algorithm_cls=PICRLMS, 
                                                n_shape=n_shape, n_appearance=n_appearance, 
                                                sampling_step=sampling_step)
global_unified_fitter_aic = GlobalUnifiedFitter(global_unified, algorithm_cls=AICRLMS, 
                                                n_shape=n_shape, n_appearance=n_appearance, 
                                                sampling_step=sampling_step)

In [8]:
fitters = [global_unified_fitter_pic, global_unified_fitter_aic]

In [9]:
repeat = 1

results = [[], [], [], [], [], [], [], [], []]

for seed in xrange(repeat):
    
    np.random.seed(seed=seed)

    for j, i in enumerate(test_images):

        gt_s = i.landmarks[group].lms
        s = fitters[0].perturb_shape(gt_s, noise_std=0.05)
        
        for k, fitter in enumerate(fitters):

            fr = fitter.fit(i, s, gt_shape=gt_s, max_iters=20, prior=False, a=0.7)

            results[k].append(fr)
            fr.downscale = 0.5

            print 'Image: ', j
            print fr


Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
/data/pythondev/src/alabortcvpr2015/alabortcvpr2015/clm/classifier.py:95: RuntimeWarning: invalid value encountered in true_divide
  axis=(-2, -1))[..., None, None]
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
Image:  0
Initial error: 0.1660
Final error: 0.1183
Image:  0
Initial error: 0.1660
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 1
Initial error: 0.0928
Final error: 0.0652
Image:  1
Initial error: 0.0928
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 2
Initial error: 0.1186
Final error: 0.0817
Image:  2
Initial error: 0.1186
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 3
Initial error: 0.0685
Final error: 0.0535
Image:  3
Initial error: 0.0685
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 4
Initial error: 0.1244
Final error: 0.1105
Image:  4
Initial error: 0.1244
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 5
Initial error: 0.0864
Final error: 0.0658
Image:  5
Initial error: 0.0864
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 6
Initial error: 0.0571
Final error: 0.0377
Image:  6
Initial error: 0.0571
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 7
Initial error: 0.1051
Final error: 0.0912
Image:  7
Initial error: 0.1051
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 8
Initial error: 0.0586
Final error: 0.0542
Image:  8
Initial error: 0.0586
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 9
Initial error: 0.0815
Final error: 0.0593
Image:  9
Initial error: 0.0815
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 10
Initial error: 0.1578
Final error: 0.1196
Image:  10
Initial error: 0.1578
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 11
Initial error: 0.0720
Final error: 0.0559
Image:  11
Initial error: 0.0720
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 12
Initial error: 0.1278
Final error: 0.1128
Image:  12
Initial error: 0.1278
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 13
Initial error: 0.0726
Final error: 0.0650
Image:  13
Initial error: 0.0726
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 14
Initial error: 0.0620
Final error: 0.0586
Image:  14
Initial error: 0.0620
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 15
Initial error: 0.1434
Final error: 0.1535
Image:  15
Initial error: 0.1434
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 16
Initial error: 0.0831
Final error: 0.0505
Image:  16
Initial error: 0.0831
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 17
Initial error: 0.1267
Final error: 0.0913
Image:  17
Initial error: 0.1267
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 18
Initial error: 0.0798
Final error: 0.0711
Image:  18
Initial error: 0.0798
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 19
Initial error: 0.0550
Final error: 0.0332
Image:  19
Initial error: 0.0550
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 20
Initial error: 0.1250
Final error: 0.0723
Image:  20
Initial error: 0.1250
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 21
Initial error: 0.0439
Final error: 0.0197
Image:  21
Initial error: 0.0439
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 22
Initial error: 0.1173
Final error: 0.0815
Image:  22
Initial error: 0.1173
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 23
Initial error: 0.0946
Final error: 0.0719
Image:  23
Initial error: 0.0946
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 24
Initial error: 0.0341
Final error: 0.0172
Image:  24
Initial error: 0.0341
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 25
Initial error: 0.0839
Final error: 0.0392
Image:  25
Initial error: 0.0839
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 26
Initial error: 0.0768
Final error: 0.0554
Image:  26
Initial error: 0.0768
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 27
Initial error: 0.1038
Final error: 0.0936
Image:  27
Initial error: 0.1038
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 28
Initial error: 0.0862
Final error: 0.0610
Image:  28
Initial error: 0.0862
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 29
Initial error: 0.0835
Final error: 0.0537
Image:  29
Initial error: 0.0835
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 30
Initial error: 0.1023
Final error: 0.0533
Image:  30
Initial error: 0.1023
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 31
Initial error: 0.1436
Final error: 0.0924
Image:  31
Initial error: 0.1436
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 32
Initial error: 0.0526
Final error: 0.0319
Image:  32
Initial error: 0.0526
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 33
Initial error: 0.0652
Final error: 0.0303
Image:  33
Initial error: 0.0652
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 34
Initial error: 0.0898
Final error: 0.0379
Image:  34
Initial error: 0.0898
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 35
Initial error: 0.0559
Final error: 0.0265
Image:  35
Initial error: 0.0559
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 36
Initial error: 0.1397
Final error: 0.1382
Image:  36
Initial error: 0.1397
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 37
Initial error: 0.1383
Final error: 0.0824
Image:  37
Initial error: 0.1383
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 38
Initial error: 0.0832
Final error: 0.0341
Image:  38
Initial error: 0.0832
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 39
Initial error: 0.0557
Final error: 0.0331
Image:  39
Initial error: 0.0557
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 40
Initial error: 0.0686
Final error: 0.0543
Image:  40
Initial error: 0.0686
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 41
Initial error: 0.1327
Final error: 0.0978
Image:  41
Initial error: 0.1327
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 42
Initial error: 0.0939
Final error: 0.0634
Image:  42
Initial error: 0.0939
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 43
Initial error: 0.0720
Final error: 0.0570
Image:  43
Initial error: 0.0720
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 44
Initial error: 0.0593
Final error: 0.0494
Image:  44
Initial error: 0.0593
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 45
Initial error: 0.1861
Final error: 0.1778
Image:  45
Initial error: 0.1861
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 46
Initial error: 0.0665
Final error: 0.0485
Image:  46
Initial error: 0.0665
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 47
Initial error: 0.0943
Final error: 0.0620
Image:  47
Initial error: 0.0943
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 48
Initial error: 0.0736
Final error: 0.0572
Image:  48
Initial error: 0.0736
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 49
Initial error: 0.1094
Final error: 0.0551
Image:  49
Initial error: 0.1094
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 50
Initial error: 0.0751
Final error: 0.0460
Image:  50
Initial error: 0.0751
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 51
Initial error: 0.0720
Final error: 0.0372
Image:  51
Initial error: 0.0720
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 52
Initial error: 0.0498
Final error: 0.0376
Image:  52
Initial error: 0.0498
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 53
Initial error: 0.0717
Final error: 0.0496
Image:  53
Initial error: 0.0717
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 54
Initial error: 0.0774
Final error: 0.0462
Image:  54
Initial error: 0.0774
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 55
Initial error: 0.0654
Final error: 0.0433
Image:  55
Initial error: 0.0654
Final error: nan
Image: 
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
Exception 
 56
Initial error: 0.0638
Final error: 0.0392
Image:  56
Initial error: 0.0638
Final error: nan
OverflowError: 'Python int too large to convert to C long' in 'menpofast.image.cython.extract_patches.calc_slices' ignored
Exception ValueError: ValueError('got differing extents in dimension 1 (got 29 and 0)',) in 'menpofast.image.cython.extract_patches.slice_image' ignored
---------------------------------------------------------------------------
KeyboardInterrupt                         Traceback (most recent call last)
<ipython-input-9-f3920ad96834> in <module>()
     14         for k, fitter in enumerate(fitters):
     15 
---> 16             fr = fitter.fit(i, s, gt_shape=gt_s, max_iters=20, prior=False, a=0.7)
     17 
     18             results[k].append(fr)

/data/pythondev/src/alabortcvpr2015/alabortcvpr2015/fitter.pyc in fit(self, image, initial_shape, max_iters, gt_shape, **kwargs)
    135         algorithm_results = self._fit(images, initial_shapes[0],
    136                                       max_iters=max_iters,
--> 137                                       gt_shapes=gt_shapes, **kwargs)
    138 
    139         # build multilevel fitting result

/data/pythondev/src/alabortcvpr2015/alabortcvpr2015/fitter.pyc in _fit(self, images, initial_shape, gt_shapes, max_iters, **kwargs)
    312 
    313             algorithm_result = alg.run(i, shape, gt_shape=gt_shape,
--> 314                                        max_iters=it, **kwargs)
    315             algorithm_results.append(algorithm_result)
    316 

/data/pythondev/src/alabortcvpr2015/alabortcvpr2015/unified/algorithm.pyc in run(self, image, initial_shape, gt_shape, max_iters, prior, a)
    146 
    147             # compute warped image with current weights
--> 148             i = self.interface.warp(image)
    149 
    150             # reconstruct appearance

/data/pythondev/src/alabortcvpr2015/alabortcvpr2015/aam/algorithm.pyc in warp(self, image)
    263     def warp(self, image):
    264         return image.warp_to_mask(self.algorithm.template.mask,
--> 265                                   self.algorithm.transform)
    266 
    267     def gradient(self, image):

/data/pythondev/src/menpofast/menpofast/image/base.pyc in warp_to_mask(self, template_mask, transform, warp_landmarks, order, mode, cval)
    932         # sampled pixels. Store those in a (n_pixels, n_channels) array.
    933         sampled_pixel_values = scipy_interpolation(
--> 934             self.pixels, points_to_sample, order=order, mode=mode, cval=cval)
    935         # set any nan values to 0
    936         sampled_pixel_values[np.isnan(sampled_pixel_values)] = 0

/data/pythondev/src/menpofast/menpofast/image/interpolation.pyc in scipy_interpolation(pixels, points_to_sample, mode, order, cval)
     54                                                     mode=mode,
     55                                                     order=order,
---> 56                                                     cval=cval))
     57     sampled_pixel_values = [v.reshape([1, -1]) for v in sampled_pixel_values]
     58     return np.concatenate(sampled_pixel_values, axis=0)

/data/installed/anaconda/envs/menpo/lib/python2.7/site-packages/scipy/ndimage/interpolation.pyc in map_coordinates(input, coordinates, output, order, mode, cval, prefilter)
    306                                                    shape=output_shape)
    307     _nd_image.geometric_transform(filtered, None, coordinates, None, None,
--> 308                output, order, mode, cval, None, None)
    309     return return_value
    310 

KeyboardInterrupt: 

Explore results


In [10]:
initial_errors = [fr.initial_error() for fr in results[0]]

final_errors = []
for fitter_results in results:
    final_errors.append([fr.final_error() for fr in fitter_results])
    
errors = [initial_errors] + final_errors

In [11]:
from menpofit.visualize import plot_ced

legend_entries = ['Initial',
                  'Parts-AAM-PIC',
                  'Parts-AAM-AIC',
                  'Global-AAM-PIC',
                  'Global-AAM-AIC',
                  'CLM-RLMS',
                  'Parts-UNI-PIC-RLMS',
                  'Parts-UNI-AIC-RLMS',
                  'Global-UNI-PIC-RLMS',
                  'Global-UNI-AIC-RLMS']

plot_ced(errors, legend_entries=legend_entries)


Run time


In [ ]:
for (fitter, entry) in zip(fitters, legend_entries[1:]):
    
    print entry, ': '
    
    %time fitter.fit(i, s, gt_shape=gt_s, max_iters=20, prior=False)
    
    print

In [13]:
from menpofit.visualize import visualize_fitting_results

visualize_fitting_results(results[1])



In [ ]: