It is really amazing that a machine can determine the gesture of our hands. There are many applications based on gesture detection like you can make a remote control which works when a particular gesture was detected,you can have a gesture controlled game etc. Hand gesture detection can be done in many ways. we can use CNN to train models and use them for gesture detection.We will be using OpenCV and Convexity defects for detecting hand gestures. Gestures such as best of luck,thumbs down,1,2,3,4,5 etc
This file contains 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
FROM golang:alpine as builder | |
WORKDIR /app | |
#the following 2 steps are optional if your image does not already have the certificate | |
# package installed, golang:alpine now seems to have it. But a more base image could be missing it. | |
#RUN apk update && apk upgrade && apk add --no-cache ca-certificates | |
#RUN update-ca-certificates | |
ADD main.go /app/main.go | |
RUN CGO_ENABLED=0 GOOS=linux go build -a -ldflags="-s -w" -installsuffix cgo -o app . | |
FROM scratch |