josephernest

Results 138 comments of josephernest
trafficstars

@MattyB95 Maybe I misunderstood this project, but I thought MTCNN + FaceNet not only allows face *detection*, but also *recognition* / identification, by assigning a 128D vector embedding to each...

@imnimn Is there a Python implementation that packs together: MTCNN to get the face box + facenet or deepface for the encoding?

Do you think `SetLatency(...);` should be put elsewhere than in the constructor `ABC::ABCIPlugInstanceInfo instanceInfo) : IPLUG_CTOR(kNumParams, kNumPrograms, instanceInfo)` @olilarkin ?

Thanks. It could work indeed, but I'd like to avoid these hacks if possible ;) Out of curiosity, how does one reduce the optimization level in `setup(...)` ? ``` import...

It now works with ``` from distutils.core import setup from Cython.Build import cythonize from distutils.extension import Extension setup(ext_modules=cythonize(Extension('test', sources=['test.py'], extra_compile_args=['/Od'])), script_args=['build']) ``` but the resulting .pyd file is 867 KB...

It works but it introduces more complexity in the build process: setup(ext_modules=cythonize(Extension('test', sources=['test.py'], extra_compile_args=['/Od'])) ... does not produce output .pyd file in the same folder as setup(ext_modules=cythonize('test.py', ... even if...

It seems it comes from https://github.com/boppreh/keyboard/blob/master/keyboard/_winkeyboard.py#L372 name_ret = GetKeyNameText(scan_code

Thanks for your answer and congrats again for your lib @boppreh. Would you know a quick hack to set English everywhere at least for `keyboard.read_event().name`?

@07416 No time slot has been available to add new features in the last few months - here we still use the (working) software as is.

Thanks @civil. It seems that my current kernel is built *without* this module enabled. (Raspberry Pi, Linux version 5.4.79-v7l+) I tried `modprobe exfat` without success. Is there a way to...