분류 전체보기(84)
-
face dection-Retina face, Dlib
0. RetinaFace, Dlib 1.알고리즘 및 기술 RetinaFace: RetinaFace는 신경망 기반의 딥러닝 얼굴 검출 알고리즘입니다. 이 알고리즘은 얼굴의 다양한 측면에서 정확한 검출을 수행할 수 있도록 설계되었습니다. RetinaFace는 다양한 크기와 해상도의 얼굴을 효과적으로 처리할 수 있으며, 다양한 각도 및 비율에 대응할 수 있는 특징을 가지고 있습니다. dlib: dlib은 기존의 컴퓨터 비전 및 머신 러닝 기술을 사용한 라이브러리로, HOG (Histogram of Oriented Gradients)와 SVM (Support Vector Machines) 등을 기반으로 하는 얼굴 검출 알고리즘을 제공합니다. dlib은 다양한 이미지 처리 작업에 사용될 수 있지만, 최근 딥러닝 ..
2024.02.24 -
Day4 07-tetris
OLED와 조이스틱을 이용한 테트리스 게임 #include #include #include #define SCREEN_WIDTH 128 #define SCREEN_HEIGHT 64 #define OLED_RESET -1 Adafruit_SSD1306 display(SCREEN_WIDTH, SCREEN_HEIGHT, &Wire, OLED_RESET); const int restartButtonPin = 2; const int xPin = A0; const int yPin = A1; int xPos = 0; int yPos = 0; const int BLOCK_SIZE = 4; const int BLOCK_TYPES = 9; const int BOARD_WIDTH = 15; const int BOARD_HE..
2024.02.04 -
Day4 06-joystick
조이스틱으로 입력받아 시리얼 모니터에 출력하기 const int Xin = A0; const int Yin = A1; const int Keyin = 2; volatile bool isBtnPressed = false; void ISRBtn(){ isBtnPressed = true; } void setup() { // put your setup code here, to run once: pinMode(Keyin, INPUT_PULLUP); Serial.begin(9600); attachInterrupt(digitalPinToInterrupt(Keyin), ISRBtn, FALLING); } void loop() { // put your main code here, to run repeatedly: int..
2024.02.04 -
Day4 05-DCmotor, button 2
DC 모터와 버튼을 이용한 간이 선풍기 만들기 #include // 선풍기 const int MA_IA = 10; const int MA_IB = 9; const int btnPin = 2; int DCSpeed = 0; Debouncer myDebouncer(btnPin); void setup() { // put your setup code here, to run once: Serial.begin(9600); pinMode(MA_IA, OUTPUT); pinMode(MA_IB, OUTPUT); pinMode(btnPin, INPUT_PULLUP); myDebouncer.setup(); } void motorControl(){ analogWrite(MA_IA, DCSpeed); analogWrite(MA..
2024.02.04 -
Day4 04-DCmotor, button
버튼을 이용한 모터제어 const int MA_IA = 9; const int MA_IB = 10; const int btnStartPin = 2; const int btnStopPin = 3; volatile bool isStartPressed = false; volatile bool isStopPressed = false; void ISRButtonStart() { isStartPressed = true; Serial.println("Start pressed!"); } void ISRButtonStop() { isStopPressed = true; Serial.println("Stop pressed!"); } void setup() { // put your setup code here, to run ..
2024.02.04 -
Day4 03-DCmotor
DC모터를 연결하여 시리얼 모니터에 특정 문자입력에 따라 작동하는 코드 const int MA_IA = 9; const int MA_IB = 10; void setup() { // put your setup code here, to run once: Serial.begin(9600); pinMode(MA_IA, OUTPUT); pinMode(MA_IB, OUTPUT); } void loop() { // put your main code here, to run repeatedly: if (Serial.available() > 0) { char data = Serial.read(); if (data == 'f') { analogWrite(MA_IA, 150); analogWrite(MA_IB, 0); } e..
2024.02.04