Skip to content

ahmettekeli/emotiondetection

Repository files navigation

MIT License LinkedIn

Emotion Detection

View Demo · Report Bug · Request Feature

About The Project

This is a sample Emotion Detection project developed using FaceAPI.

Prerequisites

The tools/software below are needed to build/extend this project.

npm install npm@latest -g

Bundled with

Editing/Extending/Usage

  1. Clone the repo
git clone https://github.com/ahmettekeli/emotiondetection.git
  1. Install NPM packages
npm install
  1. Make changes and bundle the project with webpack/babel
npm run build

Make sure you have devdependencies in package.json installed and have a "build" config under scripts section in package.json with the following config

"build": "webpack --config webpack.config.js"

.babelrc with following configs

{
  "presets": ["@babel/preset-env"],
  "plugins": ["@babel/plugin-proposal-class-properties"]
}

webpack.config.js file with the following configs

const path = require("path");

module.exports = {
  entry: "./src/js/app.js",
  output: {
    path: path.resolve(__dirname, "dist"),
    filename: "app.bundle.js",
  },
  module: {
    rules: [
      {
        exclude: "/node_modules/",
        loader: "babel-loader",
      },
    ],
  },
};

Contributing

Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

License

Distributed under the MIT License. See LICENSE for more information.

Contact

Ahmet Tekeli - @ahmettekeli3 - ahmettekeli1991@hotmail.com

Project Link: https://github.com/ahmettekeli/emotiondetection

About

Sample Emotion Detection project using FaceAPI

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages