PoC of custom shaders for Piglet

This is a PoC for compiling Piglet fragment shaders using Mesa3D. You need to provide a compatible vertex shader, it’s needed because Mesa3D compiles both shaders at once. At most one sampler is currently supported. This a PoC and can break at any time. victim.c is loosely based on this EGL sample Dependencies Usage cd compiler make bash compile.sh vertex.glsl fragment.glsl output.bin # only outputs the fragment part for now GitHub View Github    

Read more

A Flask driven restful API for comparing two PDF files

A Flask driven restful API for comparing two PDF files. Description This project contains a POST endpoint (../compare) which takes in two PDF files as form-data input and returns a pdf which contains a side by side comparison of each page in the input PDFs. Installation / Usage If you wish to run your own build, first ensure you have python3 globally installed in your computer. After this, ensure you have installed virtualenv globally as well. If not, run this: […]

Read more

Open Source computer Vision (OpenCV) – one of the most widely used tool for image processing and computer vision tasks

Open Source computer Vision (OpenCV) is one of the most widely used tool for image processing and computer vision tasks. This technique is utilized in numerous applications such as video capturing, face detection, object recognition, etc. This repository contains codes that addresses the basic concepts of image processing using OpenCV library. The following image processing tasks are; reading images, Saving image, capturing video, loading videos, convert color images to grayscale, saving real-time video, retrieving properties from images and video, creating […]

Read more

Yoga asana classifier for python

Hi welcome to my new deep learning project “Yoga Asana Classifier / pose classifier “. This project as the name suggests can predict the yoga pose which you are doing in front of the webcam.This project comprise of three python scripts namely,Data CollectionData TrainingAnd finally Inference script.As all of the name suggest do there respective work. For this project I used mediapipe pose detection to detect the human body pose and after that I made model with simple Dense network […]

Read more

Machine Translation Weekly 100: IGLUE as cool as igloo, multilingual and multimodal benchmark

This week I would like to feature a new multimodal-multilingual benchmark called IGLUE, presented in a pre-print that went out last Friday. The authors are from many place around the world: University of Copenhagen, Mila – Quebec Artificial Intelligence Institute, University of Cambridge, TU Darmstadt, New York University, and McGill University. Following the best practices from established multilingual benchmarks, the new multimodal and multilingual benchmark evaluates zero-shot cross-lingual transfer with the multimodal tasks. Zero-shot cross-lingual transfer means a task-specific model […]

Read more

Draw the Mandelbrot Set in Python

This tutorial will guide you through a fun project involving complex numbers in Python. You’re going to learn about fractals and create some truly stunning art by drawing the Mandelbrot set using Python’s Matplotlib and Pillow libraries. Along the way, you’ll learn how this famous fractal was discovered, what it represents, and how it relates to other fractals. Knowing about object-oriented programming principles and recursion will enable you to take full advantage of Python’s expressive syntax to write clean code […]

Read more
1 255 256 257 258 259 936