This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <ESP8266WiFi.h> | |
| #include <WiFiClient.h> | |
| #include <ESP8266WebServer.h> | |
| #include <ESP8266HTTPClient.h> | |
| const char *ssid = "wheatgrass"; // SSID | |
| const char *password = "01032021.sky"; // Password | |
| void setup() { | |
| Serial.begin(9600); // Starting Serial Terminal |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "name": "Afghanistan", | |
| "code": "AF" | |
| }, | |
| { | |
| "name": "Åland Islands", | |
| "code": "AX" | |
| }, | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Importing all required packages | |
| import cv2 | |
| import numpy as np | |
| import matplotlib.pyplot as plt % matplotlib inline | |
| # Read in the cascade classifiers for face and eyes | |
| face_cascade = cv2.CascadeClassifier('../DATA / haarcascades / haarcascade_frontalface_default.xml') | |
| eye_cascade = cv2.CascadeClassifier('../DATA / haarcascades / haarcascade_eye.xml') |
NewerOlder