Skip to content

Instantly share code, notes, and snippets.

@maipatana
maipatana / Face Rec Example.py
Last active August 8, 2020 13:04
ความยากคือการลง library ตัวนี้. https://github.com/ageitgey/face_recognition อย่างตอนผมลงต้องลง Cmake dlib ก่อน แนะนำว่าให้ใช้ macos
import face_recognition
import cv2
import numpy as np
# เอา Code มาจาก https://github.com/ageitgey/face_recognition/blob/master/examples/facerec_from_webcam_faster.py
video_capture = cv2.VideoCapture(0)
# Load a sample picture and learn how to recognize it.
patana_image = face_recognition.load_image_file("patana.png") #< ไฟล์ภาพหน้าตรง
patana_face_encoding = face_recognition.face_encodings(patana_image)[0]
#include <dht.h>
dht DHT;
#define DHT11_PIN 7
void setup(){
Serial.begin(9600);
}
#include "DHT.h"
//Constants
#define DHTPIN 7 // what pin we're connected to
#define DHTTYPE DHT22 // DHT 22 (AM2302)
DHT dht(DHTPIN, DHTTYPE); //// Initialize DHT sensor for normal 16mhz Arduino
//Variables
@maipatana
maipatana / grade_4_math_solver.py
Created August 21, 2019 02:14
โจทย์เลข ป.4
import random
answers = []
def main():
_ = 'AFBF CGHB DAFG AEAB BCDC'
temp = {'A':'0', 'B':'0', 'C':'0', 'D':'0', 'E':'0', 'F':'0', 'G':'0', 'H':'0'}
pool = ['0','1','2','3','4','5','6','7','8','9']
for i in temp.keys():
from tkinter import Button, Label, Tk, BOTTOM, TOP, Frame
from random import choice
root = Tk()
frame = Frame(root, width = 500, height = 500)
frame.pack(side=BOTTOM,expand = 1)
bottomframe = Frame(frame, width = 500)
bottomframe.pack()
@maipatana
maipatana / Volume_menu.py
Last active May 1, 2017 15:50
ให้ดูความง่ายของการเขียนโปรแกรมคำนวน "ปริมาตรคอนกรีต" คร่าวๆกันไปก่อน จะมาอธิบายแต่ละส่วน ใครมี python ในเครื่องก็ลองทดสอบดู
def volume_cal(height,width,long):
cal = (height/1000) * (width/1000) * (long/1000)
return cal
while True:
print('\nเมนู \n 1.คำนวนปริมาตร \n 2.ออกจากโปรแกรม')
choice = input('ป้อนหัวข้อที่ต้องการคำนวณ : ')
if int(choice) == 1:
a = int(input('ป้อน Depth (mm): '))
b = int(input('ป้อน Width (mm): '))
c = int(input('ป้อน long (mm): '))
@maipatana
maipatana / PySpeechRec.py
Last active November 26, 2016 01:08
Example Python SpeechRecognition
import speech_recognition as sr
# Record Audio
r = sr.Recognizer()
m = sr.Microphone()
#set threhold level
with m as source: r.adjust_for_ambient_noise(source)
print("Set minimum energy threshold to {}".format(r.energy_threshold))