Skip to content

Instantly share code, notes, and snippets.

View Mynuddin-dev's full-sized avatar
😁
Deep Learning

Md Mynuddin Mynuddin-dev

😁
Deep Learning
View GitHub Profile
@Mynuddin-dev
Mynuddin-dev / camera.py
Created August 22, 2022 10:24
Face Recognation
import cv2
from imutils.video import WebcamVideoStream
from imutils.video import FPS
import imutils
import numpy as np
import time
import dlib
import cv2
import os
import math
## Day 1: Report Repair
## Part 1
----------------------------
with open("data.txt") as f:
numbers = f.readlines()
# print(len(numbers))
for i in range(len(numbers)-1):
for j in range(i+1,len(numbers)):
@Mynuddin-dev
Mynuddin-dev / HPFFP.md
Created November 3, 2022 10:49 — forked from DadgadCafe/HPFFP.md
Haskell Programming From First Principles

HASKELL PROGRAMMING FROM FIRST PRINCIPLES

CHAPTER1. ALL YOU NEED IS LAMBDA

1.1 All You Need is Lambda

lambda calculus:

computation model, 1930s, Alonzo Church, formalizing a method, Turing machines

@Mynuddin-dev
Mynuddin-dev / skin_detection.py
Last active November 9, 2022 18:18
Skin Detection with Naive Bayes on Colab
import cv2
import os
import numpy as np
import csv
import pandas as pd
dir = "/content/drive/MyDrive/Applied_data_Science"
def absoluteFilePaths(directory):
filePaths = []
for dirpath,_,filenames in os.walk(directory):