A python app which can tell with which bollywood celebrity your face resembles

A Deep learning based streamlit web app which can tell with which bollywood celebrity your face resembles. Face recognition is the problem of identifying and verifying people in a photograph by their face.It is a task that is trivially performed by humans, even under varying light and when faces are changed by age or obstructed with accessories and facial hair. Nevertheless, it is remained a challenging computer vision problem for decades until recently. Deep learning methods are able to leverage […]

Read more

ToolBurnt: A Set Of Tools In One Place =}

‘ToolBurnt’ A Set Of Tools In One Place =} MᵃˢᵗᵉʳBᵘʳⁿᵗ ██████╗ ██╗ ██╗██████╗ ███╗ ██╗████████╗ ██╔══██╗██║ ██║██╔══██╗████╗ ██║╚══██╔══╝ ██████╔╝██║ ██║██████╔╝██╔██╗ ██║ ██║ ██╔══██╗██║ ██║██╔══██╗██║╚██╗██║ ██║ ██████╔╝╚██████╔╝██║ ██║██║ ╚████║ ██║ ╚═════╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═╝ Introduction ++A toolbox that might come in handy++ optional arguments: -h, –help show this help message and exit -v, –version Program Version -i, –mysystem My System Information -FI, –FakeInfo Fake Information : Json,Csv,Yaml,Xml -IL, –IpLocation Information About Ip -UF, –UsernameFind Find Usernames On Social Networks […]

Read more

Syncio: asyncio, without await

asyncio can look very intimidating to newcomers, because of the async/await syntax. Evenexperienced programmers can get caught in the “async hell”, when awaiting a single async functionpropagates to the entire code base. Sometimes you wish you could call an async function justlike a regular function, whether running in an event loop or not. syncio is an attempt to make both worlds, asynchronous and synchronous, play better together.By decorating a function, be it async or not, with @sync, you don’t have […]

Read more

A warp randomizer for pokeemerald

Randomizes the warps in a stock pokeemerald repo. Usage Instructions Install networkx and matplotlib via pip3 or similar. Set POKEEMERALD environment variable to the path to your pokeemerald/ folder Edit rand_idx at the top of the file to the seed to start searching from. Ensure that the repo has not already been randomized, or the script will not work! python3 randomizer.py The script will search for randomized layouts which pass completability tests. This can take anywhere from a couple of […]

Read more

TicTacToe using Socket Server

This is a project for the class : 18CSC302J – Computer Networks by Dr. S.Babu Contributors Suvodeep Sinha RA1911003010108 Vedant Singh RA1911003010097 Harshit Singh RA1911003010096 Overview This is a simple game of tic-tac-toe developed in Python. It allows two players to play with one another on different command lines through networking. The server starts the game by first running server.py, waiting for the client to connect by then running client.py. Once their connected, the game itself starts. The server starts […]

Read more

Add-In for Blender to automatically save files when rendering

Purpose This Blender Add-On provides an easy way to document & preserve a project’s progress over time and to jump back to an arbitrary previous state, if required. It saves the .blend, .png (render image, optional) and a readme.txt (optional infos) -file in a new, dedicated subdirectory on every rendering. The new sub-directories are named YYMMDD-hhmmss + an optional short note, located in a base-directory of your choice. Creating images/animations with Blender is usually a highly iterative trial-and-error process, that […]

Read more

YOLOv5 detection interface – PyQt5 implementation

2021/10/8: 所有代码已上传,直接clone后,运行yolo_win.py即可开启界面。 2021/9/29:加入置信度选择 界面是在ultralytics的yolov5基础上建立的,界面使用pyqt5实现,内容较简单,娱乐而已。 功能: 模型选择 本地文件选择(视频图片均可) 开关摄像头 运行/终止 统计检测结果 默认模型为yolov5s.pt,默认输入文件为电脑摄像头视频 使用视频: https://www.bilibili.com/video/BV1sQ4y1C7Vk?spm_id_from=333.999.0.0 csdn: https://blog.csdn.net/weixin_41735859/article/details/120507779?spm=1001.2014.3001.5501 摄像头检测画面: 本地视频检测画面: 本地图片检测画面: 使用 运行yolo_win.py即可开启检测界面。 存在的一个小问题,切换模型或者文件过于频繁,可能会卡住,重启一下即可。 这种情况很少出现,问题不大。 GitHub View Github    

Read more

Addon to give a keybind to automatically enable contact shadows on all lights in a scene

An easy way to let you enable contact shadows on all your lights, because Blender doesn’t enable it by default, and doesn’t give you a way to enable it by default, even though it’d be damned useful if it was enabled by default. So, enter this stupid thing, which will enable contact shadows on all lights in your scene, and is smart enough not to try to re-enable them on a light where they’ve been automatically enabled, and then disabled […]

Read more

Tools for working with MARC data in Catalogue Bridge

Tools for working with MARC data in Catalogue Bridge. Borrows heavily from PyMarc (https://pypi.org/project/pymarc/). Requirements Requires the regex module from https://bitbucket.org/mrabarnett/mrab-regex. The built-in re module is not sufficient. Also requires py2exe. Installation From GitHub: git clone https://github.com/victoriamorris/catbridge_tools cd catbridge_tools To install as a Python package: To create stand-alone executable (.exe) files for individual scripts: Executable files will be created in the folder dist, and should be copied to an executable path. Both of the above commands can be carried out […]

Read more
1 412 413 414 415 416 928