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
Structure de l'appli : | |
-- server.js | |
-- package.json | |
-- public/ | |
---- index.html | |
---- js/ | |
------ app.js | |
---- css/ | |
------ style.css |
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
import numpy as np | |
import cv2 | |
from math import * | |
import os | |
databasePath = "db" | |
outputPath = "output" | |
def readImage(imagePath): |
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 "Circle.hpp" | |
#include <iostream> | |
#include <string> | |
using namespace std; | |
Circle::Circle(float x, float y, float r, Circle::Color color) { | |
myX = x; | |
myY = y; | |
myR = r; |
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
NewerOlder