Matěj Týč

Results 121 comments of Matěj Týč

I use 3rd party libs for computationally intensive operations - `numpy` and for the DFT, `pyfftw` is used if it is available. If you know 3rd party libs that can...

Hello, it looks like a problem of multiple Python versions. I suggest that you use 2.7, `imreg_dft` is not tested with 2.6. I propose these steps: 1. Remove the installed...

This is a similar problem. You have to install setuptools using your Python 2.7 executable. Then, you can `easy_install` or `pip install` `numpy`, `scipy` or even `imreg_dft`. To be sure...

That one is easy, install `pillow`.

OK, that's strange. AFAIK, problem of `scipy.misc` not having `imread` tends to be caused by missing `pillow`. The only thing I can think of now is uninstalling `scipy` and installing...

Well, according to my experience and http://stackoverflow.com/questions/15345790/scipy-misc-module-has-no-attribute-imread the mentioned problem (`scipy.misc` not having `imread`) is a `PIL`/`pillow` -- related. The only thing I can think of now is to try...

Hello, the `_similarity` function accepts `bgval` as argument, but `similarity` doesn't, so you can make a PR that propagates it upwards, possibly to the cli.

I have added linear interpolation to the log-polar stuff. It mostly improves things, but not always. Depends on #11

It seems that the resampling way is more robust than the interpolation.

I have took a look at your data. You are right that performance was not my concern - I wanted to get a prototype running that can be improved. Anyway,...