This is the 3rd part of Image processing series on https://overflowjs.com/
This is the backend code, written in node.js using express framework and OpenCV.
Do read the blog to know more - https://overflowjs.com/posts/Image-Processing-OpenCV-and-Nodejs-Part-3.html
# clone it
git clone https://github.com/overflowjs-com/image_app_opencv_api_part3.git
# Make it your own
rm -rf .git && git init && npm init
# Install dependencies
npm install
# Start development live-reload server
PORT=4000 npm run dev
# Start production server:
PORT=4000 npm start