From 2d40c3755a39cc18e38774849ad09e7d1f715115 Mon Sep 17 00:00:00 2001 From: Romain Franconville Date: Thu, 1 Feb 2018 08:21:43 -0500 Subject: [PATCH] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f6a2462..9c3d001 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,14 @@ -# subpixelRegistration +# SubpixelRegistration -[![Build Status](https://travis-ci.org/romainFr/subpixelRegistration.jl.svg?branch=master)](https://travis-ci.org/romainFr/subpixelRegistration.jl) -[![](https://img.shields.io/badge/docs-latest-blue.svg)](https://romainFr.github.io/subpixelRegistration.jl/latest) +[![Build Status](https://travis-ci.org/romainFr/subpixelRegistration.jl.svg?branch=master)](https://travis-ci.org/romainFr/SubpixelRegistration.jl) +[![](https://img.shields.io/badge/docs-latest-blue.svg)](https://romainFr.github.io/SubpixelRegistration.jl/latest) Algorithm modified from the [Matlab code](http://www.mathworks.com/matlabcentral/fileexchange/18401-efficient-subpixel-image-registration-by-cross-correlation) accompanying [Manuel Guizar-Sicairos, Samuel T. Thurman, and James R. Fienup, "Efficient subpixel image registration algorithms," Opt. Lett. 33, 156-158 (2008)](http://www.opticsinfobase.org/ol/fulltext.cfm?uri=ol-33-2-156&id=148843) . This implementation allows to register arrays of arbitrary dimensions (not just 2d). Functions are written for `AbstractArray`s and should work for `Image`s. ## Example ```julia -julia> using subpixelRegistration +julia> using SubpixelRegistration ## Building a simple 4d array julia> test4d = zeros(40,40,20,2)