The front-end part of smart-brain, a web app that detects human faces in a image provided with the image url.
-
Front-end web development using React.js, HTML, CSS.
-
The full version of the app is deployed here.
-
You can find the code for backend and server here.
You'll need Git and Node.js (which comes with NPM) installed on your computer.
From your command line:
# Clone this repository
$ git clone https://github.com/mandar242/SmartBrain.git
# Go into the repository
$ cd SmartBrain
# Remove current origin repository
$ git remote remove origin
Then you can install the dependencies using NPM and start the development server:
# Install dependencies
$ npm install
# Start development server
$ npm start
- Folder Structure
smart-brain
├── README.md
├── package.json
├── package-lock.json
├── public
│ ├── index.html
│ ├── favicon.ico
│ └── manifest.json
└── src
├── index.css
├── index.js
├── ServiceWorker.js
├── setupTests.js
├── App.css
├── App.js
├── App.test.js
└── components
├── Signin
│ └── Signin.js
├── Register
│ └── Register.js
├── Navigation
│ └── Navigation.js
├── Logo
│ ├── Logo.js
│ ├── Logo.css
│ └── brain.png
├── Rank
│ └── Rank.js
├── ImageLinkForm
│ ├── ImageLinkForm.js
│ └── ImageLinkForm.css
└── FaceRecognition
├── FaceRecognition.js
└── FaceRecognition.css