-
Notifications
You must be signed in to change notification settings - Fork 5
Add feature to capture gesture images #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,47 @@ | ||
| import os | ||
| import sys | ||
| import cv2 | ||
|
|
||
|
|
||
| def main() : | ||
|
|
||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove empty line. |
||
| gestureClass = input("Enter the type of gesture") | ||
| imageName = input("Enter the image name") | ||
|
|
||
| cap = cv2.VideoCapture(0) | ||
| rootName = 'HandGestures/' + gestureClass | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Use |
||
|
|
||
| try: | ||
| if(not os.path.exists(rootName)): | ||
| os.makedirs(rootName) | ||
| except OSError: | ||
| print('Directory Exists') | ||
| sys.exit(0) | ||
|
|
||
| currentFrame = 0 | ||
|
|
||
| while(True): | ||
|
|
||
| if(not cap.isOpened()): | ||
| cap.open() | ||
|
|
||
| ret, frame = cap.read() | ||
| frame = cv2.resize(frame, (128, 128)) | ||
| cv2.imshow('frame', frame) | ||
|
|
||
| path = os.path.join("./", rootName) | ||
| print(path) | ||
|
|
||
| cv2.imwrite(path+"/{}{}.jpg".format(imageName, currentFrame), frame) | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same comment, use There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Also, remove unnecessary new lines. What editor do you use? You can generally find these exceptions using a linter like flake8/pep8 while writing code. Try installing one of those. |
||
|
|
||
| if(cv2.waitKey(0) & 0xFF == ord('q')): | ||
| break | ||
| currentFrame+=1 | ||
|
|
||
| cap.release() | ||
| cv2.destroyAllWindows() | ||
|
|
||
|
|
||
| if __name__ == '__main__': | ||
| main() | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Order imports alphabetically.