A repository that finds a person who looks like you by using face recognition technology

Hello everyone, I’ve always wondered how casting agencies do the casting for a scene where a certain actor is young or old for a movie or TV show. I respect the art of make-up, but I am one of those who think that a different actor should play in that scene. If we look at the developments in computer vision in recent years, there will be no need for make-up in such cases. I think that face swapping and similar […]

Read more

Python’s multithreading and GIL

Python is a great language 😃, but the GIL (Global Interpreter Lock) is a hugebottleneck 😢. It’s a lock that is held by the interpreter while executing any Python code. Thismeans that if you have a bunch of Python threads running, they all will have towait for the GIL to be released. This can be a problem, because the GIL isheld for a long time, which can lead to many performance issues. The GIL is released whenever a thread is […]

Read more

High accurate tool for automatic faces detection with landmarks

High accurate tool for automatic faces detection with landmarks. The library is based on public detectors with high accuracy (TinaFace, Retinaface, SCRFD, …) which are combined together to form an ansamle. All models predict detections, then voting algorithm performs aggregation. 🛠️Prerequisites Install Docker Install Nvidia Docker Container Runtime Install nvidia-container-runtime: apt-get install nvidia-container-runtime Set “default-runtime” : “nvidia” in /etc/docker/daemon.json: { “default-runtime”: “nvidia”, “runtimes”: { “nvidia”: { “path”: “nvidia-container-runtime”, “runtimeArgs”: [] } } } Restart Docker: systemctl restart    

Read more

A Discord Tool which checks for valid tokens and adds them to a server

A Discord Tool which checks for valid tokens and adds them to a server Choice 1 is for checking tokens Choice 2 is for adding tokens to server p.s: only give server invite code for example: instead of https://discord.gg/Gz2m7MrJ only give Gz2m7MrJ Only Supports socks5 proxies dw i will update proxies everyday xx you can add your own socks5 proxies or dm me for a fresh batch if anything happens to your discord account its not my responsibility If any […]

Read more

Blender addon for executing the operator in response to the received OSC message

受信したOSCメッセージに応じてオペレータ(bpy.ops)を実行するアドオンです.OSC通信に対応したコントローラやアプリをインストールしたスマートフォンを使用してBlenderを操作することが可能になります. 同時開発しているAndroidコントローラ化アプリMocopaは当アドオンと併せた使用がおすすめです. OSCメッセージの受信 受信したOSCメッセージに応じて実行するオペレータの割り当て設定 OSCメッセージの引数をオペレータの引数に代入可能 割り当て設定のエクスポートやインポート(JSON形式) Blender 2.8以降に対応 Windowsでの使用を推奨します.Macでも動作しますが頻繁にクラッシュするようです. Releases Pageからzipファイルをダウンロード Blenderを起動しトップバーから「Edit」→「Preference」を開く Preferenceウィンドウ左側メニューから「Addon」→ウィンドウ右上「Install」ボタンをクリックしダウンロードしたzipファイルをインストール 「Community」が選択された状態でInterface: I/F Joinerがアドオンリストに追加されていること確認したら,チェックを入れて有効化する. OSCサーバの起動と停止 アドオンをインストールすると,3DViewのプロパティシェルフに「I/F Joiner」タブが追加されます. IP AddressにBlenderを起動しているPCのIPアドレス,Port Numberに任意のポート番号を入力し「Start」をクリックしてOSCサーバを起動します.Windowsでは初回起動時にファイアウォールのポップアップが表示されることがあります.その場合は「アクセスを許可する」をクリックしてください. サーバが起動するとOSCメッセージの受信を開始します. 停止させる際は「Stop」をクリックします 受信したOSCメッセージの確認方法 Windowsの場合 トップバー「Window」→「Toggle System Console」でコマンドプロンプトを開きます.OSCサーバが起動した状態でOSCメッセージを受信するとアドレスパターンと引数がそれぞれ表示されます. Macの場合 ターミナルからBlenderを起動します. Blenderがアプリケーションフォルダにインストールされている場合はターミナルに以下を入力してBlenderを起動します. /Applications/Blender.app/Contents/MacOS/Blender OSCサーバが起動した状態でOSCメッセージを受信するとアドレスパターンと引数がターミナルにそれぞれ表示されます. 受信したOSCメッセージに対するオペレータの割り当て    

Read more

Datasets with Softcatalà website content

This repository contains Sofcatalà web site content (articles and programs descriptions). Dataset are available in the dataset directory. Dataset size: articles.json contains 623 articles with 366915 words programes.json contains 330 program descripctions with 49110 words The license of the data is Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) GitHub View Github    

Read more
1 291 292 293 294 295 916