UNeXt: MLP-based Rapid Medical Image Segmentation Network

Official Pytorch Code base for UNeXt: MLP-based Rapid Medical Image Segmentation Network Paper | Project Introduction UNet and its latest extensions like TransUNet have been the leading medical image segmentation methods in recent years. However, these networks cannot be effectively adopted for rapid image segmentation in point-of-care applications as they are parameter-heavy, computationally complex and slow to use. To this end, we propose UNeXt which is a Convolutional multilayer perceptron (MLP) based network for image segmentation. We design UNeXt in […]

Read more

Spam a webhook on discord with a beautiful interface

🤖 Spam a webhook on discord with a beautiful interface. Dependencies ⭐️ PyStyle🌙 Requests Screenshots Interface: Result: (Endlessly) Tutorial 1. Start the program with launch.bat.2. Get the webhook URL: You must have permission to manage webhooks on servers, then go to integration and copy the link. Copy it and paste it in the cmd of the code.3. Enjoy your webhook spam ! Important To change the message go to line : 23 To has the TTS on go to line […]

Read more

Converter image to ascii art with a beautiful interface

📝 Converter image to ascii art with a beautiful interface. Dependencies ⭐️ PyStyle🌙 PyWhatKit🎓 Flask Screenshots Interface: Before Image: After Image: Tutorial 1. Start the program with launch.bat.2. Get the file path: It should render something like this: C:Usersnameimage.png. Copy it and paste it in the cmd of the code.3. Write the name of the file.4. Enjoy your ascii image ! GitHub View Github    

Read more

Delete a webhook on discord with a beautiful interface

💥 Delete a webhook on discord with a beautiful interface.. ⭐️ PyStyle🌙 Requests Screenshots Interface: Result: (Endlessly) Tutorial 1. Start the program with launch.bat.2. Get the webhook URL: You must have permission to manage webhooks on servers, then go to integration and copy the link. Copy it and paste it in the cmd of the code.3. Enjoy your webhook deleter ! GitHub View Github    

Read more

Chrome password extractor using python

how to extract and decrypt Google Chrome browser saved passwords using Python with the help of sqlite3 and other modules. install the required libraries >_ pip3 install pycryptodome pypiwin32 doc: http://timgolden.me.uk/pywin32-docs/win32crypt.html Use for learning purpose only Created by Ermias Bahru GitHub View Github    

Read more

Using CV to play the Google Chrome Dinosaur Game

Using CV to play the Google Chrome Dinosaur Game Another simple weekend project, using google’s Posenet to play Chrome “Dinosaur Game”. Authors Method Using Posenet, we detect key body points (keypoints) and find the points of the left and right eye. From there, we obtain the “y-axis” of the eye, and detect any “jump” by calculating the displacement of the y-axis between frames. We use pyautogui library to convert any “jump” signal from the algorithm to pressing the “up” button […]

Read more

CLI tool for comparing images

CLI tool for comparing images Installation Install this tool using pip: Image diff To generate an image showing the difference between two images: image-diff first.jpg second.jpg -o diff.png Count differing pixels To count the number of pixels that have changed, use image-diff count: image-diff first.jpg second.jpg This will output a number followed by a newline. Compile an image The image-diff compile command exists mainly to make this tool easier to test. It can be used to compile an image from […]

Read more

A free sniper bot built to work with PancakeSwap: Router V2

PancakeSwap sniper bot. Automated sniping bot to snipe crypto coin launches. How it works The sniping bot can be used in three different cases: In a fair launch. the token address is announced just at the time of launch, usually via telegram or other social networks. Copy & Pasting quickly is crucial in order to be the first buyer and obtain the best price (hopefully close to listing price) before all the hype. However, using PancakeSwap is slow and doing […]

Read more

ART-Point: Improving Rotation Robustness of Point Cloud Classifiers via Adversarial Rotation

Introduction PyTorch implementation for the paper ART-Point: Improving Rotation Robustness of Point Cloud Classifiers via Adversarial Rotation (CVPR 2022). Repository still under construction/refactoring. Installation Install Requirements $ cd ART-Point/ $ conda env create -f environment.yaml Download ModelNet40 and ShapeNet Parts We use two datasets: After downloading, you should convert the .txt dataset into numpy file (.npy). Then, you can use our code for training and evaluation.You can use the codes in “https://github.com/yanx27/Pointnet_Pointnet2_pytorch/tree/master/data_utils” for pre-pocessing. Pretraining Models We use the folloing […]

Read more
1 216 217 218 219 220 943