Skip to content

Instantly share code, notes, and snippets.

View mohan-aditya05's full-sized avatar
🎯
Focusing

Aditya Mohan mohan-aditya05

🎯
Focusing
View GitHub Profile
@mimukit
mimukit / OpenGL_CircleAlog.cpp
Created June 13, 2016 06:41
Midpoint Circle Drawing Algorithm Implementation using OpenGL
#include <stdio.h>
#include <iostream>
#include <GL/glut.h>
using namespace std;
int pntX1, pntY1, r;
void plot(int x, int y)
{
glBegin(GL_POINTS);
@tomahim
tomahim / data_augmentation.py
Last active January 20, 2022 08:26
Data augmentation in few lines with skimage
import os
import random
from scipy import ndarray
# image processing library
import skimage as sk
from skimage import transform
from skimage import util
from skimage import io