Topology-aware Generative Model for Clothed People

SMPLicit Implementation for the paper SMPLicit: Topology-aware Generative Model for Clothed People (CVPR 2021) Installation Follow these commands to install SMPLicit in your environment. The required libraries are standard, with the possible exception of Kaolin which requires a particular version to run with the current code. git clonehttps://github.com/ecorona/SMPLicit cd SMPLicit Install the dependencies listed in requirements.txt: pip install -r requirements.txt In particular, we use Kaolin v0.1 (see installation command) which should be easy to install. However, if you want to […]

Read more

Location-Sensitive Visual Recognition with Cross-IOU Loss

LSNet The location-sensitive visual recognition tasks, including object detection, instance segmentation, and human pose estimation, can be formulated into localizing an anchor point (in red) and a set of landmarks (in green). Our work aims to offer a unified framework for these tasks. Abstract Object detection, instance segmentation, and pose estimation are popular visual recognition tasks which require localizing the object by internal or boundary landmarks. This paper summarizes these tasks as location-sensitive visual recognition and proposes a unified solution […]

Read more

Learning Skeletal Articulations with Neural Blend Shapes

neural-blend-shapes This repository provides an end-to-end library for automatic character rigging, skinning, and blend shapes generation, as well as a visualization tool. It is based on our work Learning Skeletal Articulations with Neural Blend Shapes that is published in SIGGRAPH 2021. Prerequisites Our code has been tested on Ubuntu 18.04. Before starting, please configure your Anaconda environment by conda env create -f environment.yaml conda activate neural-blend-shapes Or you may install the following packages (and their dependencies) manually: pytorch 1.8 tensorboard […]

Read more

Whole-day timezone comparison with python

Timezone Converter Compare a full day of your local timezone with a foreign one. $ timezone-converter tijuana $ timezone-converter tijuana –zone Motivation When working with people that are not in your local timezone, the availableresources are the usual webpages that only show one hour at a time, whichis pretty inconvenient. With this script you can quickly compare a full day of your timezone againsta foreign one. Installation pip install -U timezone-converter Usage timezone-converter Available timezones $ timezone-converter –list GitHub https://github.com/ibLeDy/timezone-converter […]

Read more

Scrapes Every Email Address of Every Society in Every University

society-email-scrape Scrapes Every Email Address of Every Society in Every University. How to automatically generate new data Go to unis.yml Add your uni Create a Pull Request GitHub Actions bot will automatically update as per your PR When I approve the PR your Uni will automatically be loaded into the website https://kcsoc.github.io/society-email-scrape/ How to run yourself Add any URLs to unis.yml PS: Don’t forget to leave a trailing newline at the end of the file git clone https://github.com/kcsoc/society-email-scrape.git cd society-email-scrape […]

Read more

A very simple 3D maze game with ray tracing

PytracingMaze Simple ray tracing game in Python, based on my ray casting project. As you may have guessed, things started to get a bit heavy for Python, so i had to resort to the Numba library, improving performance by 100x. Intro Rays The basic approach is to trace rays of light in the reverse direction, starting from the camera and interacting with the environment, with three basic types of rays: Vision rays – Initial rays that shoots from the camera […]

Read more

Yet another serialization library on top of dataclasses

pyserde Yet another serialization library on top of dataclasses. TL;DR Put additional @serialize and @deserialize decorator in your ordinary dataclass. @deserialize @serialize @dataclass class Foo: i: int s: str f: float b: bool Now you can convert an object to JSON, >>> to_json(Foo(i=10, s=’foo’, f=100.0, b=True)) {“i”: 10, “s”: “foo”, “f”: 100.0, “b”: true} Converted back from JSON to the object quite easily! >>> from_json(Foo, ‘{“i”: 10, “s”: “foo”, “f”: 100.0, “b”: true}’) Foo(i=10, s=’foo’, f=100.0, b=True) pyserde supports other […]

Read more

A console application which takes an Anime name or URL and downloads the specified range of episodes

super-anime-downloader A console application written in Python3.x (GUI will be added soon) which takes a Anime Name/URL as input and downloads the range of episodes you specify. Supported Platforms: Instructions for Android: pkg update termux-setup-storage pkg install python git aria2 pip install requests bs4 cd /sdcard ls git clone https://www.github.com/ali-sajjad-rizavi/super-anime-downloader Everytime you need to download Anime episodes, you must open Termux and run these commands: cd /sdcard/super-anime-downloader python cli_downloader.py Enter anime name or URL and set the episode range. Anime […]

Read more

How to (not) use Docker to share your password with hackers

Do you use Docker images to run your software? Does running or building your image involve a password or other credential that you really (don’t) want to share with hackers? Well, you’re in luck, because Docker makes it really easy to share your passwords, cloud credentials, and SSH private keys with the world. Whether it’s runtime secrets, build secrets, or just some random unrelated credentials you had lying around in the wrong place, Docker’s got you covered when it comes […]

Read more

Identify the emotion of multiple speakers in an Audio Segment

MevonAI-Speech-Emotion-Recognition Identify the emotion of multiple speakers in a Audio Segment Getting Started Follow the Below Instructions for setting the project up on your local Machine. Installation Create a python virtual environment sudo apt install python3-venv mkdir mevonAI cd mevonAI python3 -m venv mevon-env source mevon-env/bin/activate Clone the repo git clone https://github.com/SuyashMore/MevonAI-Speech-Emotion-Recognition.git Install Dependencies cd MevonAI-Speech-Emotion-Recognition/ cd src/ sudo chmod +x setup.sh ./setup.sh Running the Application Add audio files in .wav format for analysis in src/input/ folder Run Speech Emotion […]

Read more
1 585 586 587 588 589 860