josephernest
josephernest
I've already asked this on other sources (such as Stackoverflow) without answer. Is there a Windows binaries build that includes `dc1394` for Python 3.8? The official `pip install opencv-python` version...
Hi @schmich ! When using `getUserMedia`, etc., how to manually trigger a smartphone camera autofocus? It could improve the detection rate in many cases.
Hi, I've been working on a similar project, but here is a problem that I faced, and it seems to be present in your code as well: https://github.com/aviaryan/SublimeNotebook/blob/master/sublime_notebook/cryptlib.py#L112 and https://github.com/aviaryan/SublimeNotebook/blob/master/sublime_notebook/sublime_notebook.py#L55...
Congrats for this nice project @ipazc! I see the output of your algorithm is something like: ``` [ { 'box': [277, 90, 48, 63], 'keypoints': { 'nose': (303, 131), 'mouth_right':...
Hi! I noticed this: ``` 2015/10/12 Exxon Expenses:Auto:Gas $+10.00 Liabilities:MasterCard $-10.00 ``` gives: `Error: No quantity specified for amount`. Without the `+`, it works. For simplicity, do you think `+10.00`...
If you do: ``` python duplicate.py IPlugEffect ABC Test cd ABC nano ABC/ABC.cpp # just add SetLatency(8192); ./makedist-mac.command ``` Launch Reaper64 (for example): the VST3 crashes Reaper. VST and AU...
Let's say `test.py` has many constant definitions (use case: coming from an API): ``` CONSTANT0 = 0 CONSTANT1 = 1 CONSTANT2 = 2 ... CONSTANT3998 = 3998 CONSTANT3999 = 3999...
Try this ([live demo here](http://gget.it/eo94omwm/testt.html)): Clicking outside of datetimepicker reinitializes the date to Sunday 31 December 1899. How to solve this? ``` $('#when').datetimepicker({dayOfWeekStart : 1, format:"l d F, H:i"}); ```
This adds the `KEY_DOWN` events in a list, and removes them when the key is up. ``` import keyboard keys = [] while True: event = keyboard.read_event() if event.event_type ==...
Congrats for this library! With import keyboard event = keyboard.read_event() print(event.name) I get haut # I would prefer: 'up' (or 'up arrow') maj # I would prefer: 'shift' windows gauche...