Golden Dict instead of Lingvo

Official web-site


http://goldendict.org/



Newer version for Windowshttps://github.com/goldendict/goldendict/wiki/Early-Access-Builds-for-Windows


Conversion (decompression) Lingvo *.lds  to *.dsl format
https://pypi.python.org/pypi/lingvoreader
it's a python module
install via

pip install lingvoreader
 




Detector of flying objects in IR video

Implemented using python

https://github.com/serge-m/object_detection_ir_video





ffmpeg(avconv) jpeg quality

conversion with good jpeg quality:

avconv  -i ./input.avi -q:v 1 output_frame_%05d.jpg

Encode/decode binary file to ascii

base64 source_file > destination.ascii 
base64 --decode destination.ascii > decoded_file

Jobs 2015

201503 Google

?? Strange guys from France.

201504 Definiens AG. Tools for medical research and analysis of tissue. Frontend? I wanted machine learning. Munich

201505 EyeEm. Computer Vision Engineer. Computer vision. Nice office. Shaji. Berlin

201505 Stylight. Munich. ML? ??

201506 Software Diagnostics. Potsdam. Interesting project about evaluation of code quality in big projects. Python. Bonnet. ***

201509 Octonus. ML+CV. Moscow ***

?? Yandex ? ***

?? Zalando? ***

Interactive graphs in IPython

There are at least two libraries for ipython able to plot graphs interactively and inline.
1) mpld3
2) bokeh

I have tested only mpld3. It looks awesome. It implements exactly the thing I missed without matlab. Inside the notebook I now have a possibility to zoom and move plots.
Of course, I could do it using qt mode, but it not so nice and convenient.



Demo of mpld3: http://mpld3.github.io/_downloads/mpld3_demo.html

How I use it:
fig, ax = plt.subplots(2, 2, figsize=(8, 8),sharex=True, sharey=True)
fig.subplots_adjust(hspace=0.0)
ax.flat[0].imshow(img[0])
ax.flat[1].imshow(img[1])
ax.flat[2].imshow(map_choise)
vh.plot_optical_flow(*list_flow[1], axes=ax.flat[2])  # function based on plt.quiver

Initial:









If you need to zoom: