6월, 2019의 게시물 표시

[빵형의 개발도상국] 인공지능 작곡 프로그램, 마르코프 체인 - Python

이미지
인공지능에게 특정한 음악을 들려주고 마르코프 체인(Markov Chain)을 사용하여 들려준 음악과 비슷한 풍으로 작곡을 하도록 만들어 보겠습니다. 매우매우매우 간단하니깐 한번 해보세요! Source code(Github): https://github.com/kairess/MarkovMusic Dependencies: - Python3 - numpy - pyknon https://github.com/kroger/pyknon - pysynth https://github.com/mdoege/PySynth References: - Forked from https://github.com/jcbozonier/MarkovM...

[빵형의 개발도상국] 랜덤 작곡 프로그램 만들기 - Python

이미지
파이썬으로 음악을 랜덤으로 생성해내는 프로그램을 만들어봅시다! Source code(Github): https://github.com/kairess/python_music Dependencies: - Python - pyknon https://github.com/kroger/pyknon Online Sequencer: https://onlinesequencer.net

[빵형의 개발도상국] 딥러닝으로 지문인식 인공지능 만들기 - Python, Deep Learning

이미지
딥러닝(CNN)을 사용하여 지문인식 기술을 구현해보겠습니다. 정확도 99.7%! Source code(Github): https://github.com/kairess/fingerprin... Dependencies: - Python - numpy - Keras - matplotlib - sklearn - imgaug https://github.com/aleju/imgaug Dataset Sokoto Coventry Fingerprint Dataset (SOCOFing) https://www.kaggle.com/ruizgara/socofing

[빵형의 개발도상국] CT 영상에서 폐 영역만 뽑아보자! - Python, Deep Learning

이미지
딥러닝(CNN)을 사용하여 CT 영상에서 페 영역 마스크만 추출하는 Image segmentation 문제를 풀어보겠습니다! Source code(Github): https://github.com/kairess/CT_lung_se... Dependencies: - Python - numpy - Keras - matplotlib Dataset - Finding and Measuring Lungs in CT Data https://www.kaggle.com/kmader/finding...

[빵형의 개발도상국] 인공지능의 월리를 찾아라! - Python, Deep Learning

이미지
딥러닝(CNN)을 사용하여 어렸을적 추억의 "월리를 찾아라"의 월리를 찾는 모델을 만들어 봅시다! Source code(Github): https://github.com/kairess/find_waldo Dependencies: - Python - numpy - keras - matplotlib - PIL - seaborn (optional) - skimage Dataset - Find Waldo: https://www.kaggle.com/kairess/find-w...

[빵형의 개발도상국] 판타지 소설을 쓰는 인공지능? - Python, Deep Learning

이미지
딥러닝(LSTM)을 사용하여 판타지 소설을 쓰는 인공지능을 만들어봅시다! 니체의 글도 쓰고요. 아마 데이터셋만 충분하다면 시도 쓸 수 있겠죠! Source code(Github): https://github.com/kairess/deep_fanta... Dependencies: - Python - numpy - Keras

[빵형의 개발도상국] 얼굴 점수를 평가하는 인공지능 - Python, Deep Learning

이미지
딥러닝을 사용하여 얼굴 외모 점수를 예측하는 CNN 모델을 만들어봅시다! Source code(Github): https://github.com/kairess/beauty_score Dependencies: - Python - OpenCV - numpy - sklearn - pandas - keras - matplotlib Dataset - SCUT-FBP5500: https://github.com/HCIILAB/SCUT-FBP55...

[빵형의 개발도상국] 세계최초 파이썬 강아지 얼굴인식 - Python

이미지
10분만에 강아지 얼굴인식 프로그램을 만들어봅시다! Source code(Github): https://github.com/kairess/dog_face_d... Dependencies: - Python - dlib - OpenCV - imutils - numpy - matplotlib 고양이 얼굴인식: 영상: https://youtu.be/7_97SlAigPs 코드: https://github.com/kairess/cat_hipste...

[빵형의 개발도상국] 작은 이미지로 큰 이미지 그리기, 이미지 모자이크 - Python

이미지
여러개의 작은 이미지를 사용해서 이미지 모자이크를 만드는 방법을 소개합니다! 머신러닝 알고리즘도 사용해서요! Source code(Github): https://github.com/kairess/image_mosaic Dependencies: - Python - numpy - OpenCV - sklearn - matplotlib Dataset - Kuzushiji-MNIST: https://www.kaggle.com/anokas/kuzushiji - CiFAR-10: https://www.cs.toronto.edu/~kriz/cifa... Inspired by https://www.kaggle.com/anokas/kuzushi...

[빵형의 개발도상국] 고흐가 문재인 대통령을 그린다면? Neural Style Transfer - Python, Deep Learning

이미지
인공지능이 예술작품을 그리는 딥러닝 모델인 Neural style을 소개해드립니다! 정말 신기하군요~ Source code(Github): https://github.com/anishathalye/neura... Pretrained model: http://www.vlfeat.org/matconvnet/mode... Dependencies: - Python - Tensorflow - numpy - scipy - pillow Neural Style Transfer 따라하기(Blog): https://www.popit.kr/neural-style-tra... An AI That Can Mimic Any Artist(Blog): https://www.anishathalye.com/2015/12/... A Learned Representation for Artistic Style(Paper): https://arxiv.org/pdf/1610.07629.pdf

[빵형의 개발도상국] 부모의 학력과 자녀의 시험점수의 상관관계 - Python

이미지
데이터 시각화를 통해 학생들의 시험 점수에 영향을 미치는 요인들을 분석해봅시다. 점심을 먹은 학생들이 점수가 높은지, 과연 부모의 학력이 높으면 시험을 잘 볼 수 있는지 말이죠! Source code(Github): https://github.com/kairess/student_score Dependencies: - Python - pandas - matplotlib - seaborn Dataset - Students Performance in Exams: https://www.kaggle.com/spscientist/st...

[빵형의 개발도상국] 딥러닝으로 눈 깜빡임 감지기 만들기 - Python, Deep Learning

이미지
딥러닝(CNN)을 사용하여 사람의 눈을 뜨고 있는지 감고 있는지 감지하는 인공지능 모델을 만들어봐요! Source code(Github): https://github.com/kairess/eye_blink_... Dependencies: - Python - numpy - Keras - matplotlib Download dlib shape_predictor model: https://github.com/davisking/dlib-mod... Dataset (Closed Eyes in the Wild): http://parnec.nuaa.edu.cn/xtan/data/C... Original Blog: http://alexoglou.webpages.auth.gr/wor...

[빵형의 개발도상국] 자동차 번호판 인식기 - Python, 이미지 프로세싱

이미지
실전 이미지 프로세싱 기술을 이용하여 자동차의 번호판을 인식해봅시다! Source code(Github): https://github.com/kairess/license_pl... Dependencies: - Python - numpy - pytesseract - OpenCV - matplotlib tesseract: https://github.com/tesseract-ocr/tess... kore.traindata: https://github.com/tesseract-ocr/tess...

[빵형의 개발도상국] 챗봇으로 나만의 랜선여친 만들기 - Python

이미지
텔레그램 봇을 이용하여 저만을 바라보는 랜선여친을 만들어보겠습니다! Source code(Github): https://github.com/kairess/girlfriend... Dependencies: - Python - python-telegram-bot https://github.com/python-telegram-bo... - emoji https://github.com/carpedm20/emoji Telegram BotFather: https://telegram.me/botfather Emoji Cheat Sheet: https://www.webpagefx.com/tools/emoji...

[빵형의 개발도상국] 성별과 나이를 맞추는 인공지능 - Python, Deep Learning

이미지
성별과 나이를 예측하는 인공지능 모델에 대해 알아보고 코드도 작성해보아요! Source code(Github): https://github.com/kairess/age_gender... Dependencies: - Python - OpenCV - Dlib Age and Gender Classification Using Convolutional Neural Networks - Website: https://talhassner.github.io/home/pub... - Git repo: https://github.com/GilLevi/AgeGenderD... - Paper: https://talhassner.github.io/home/pro...

[빵형의 개발도상국] 인공지능 웃음 판독기 - Python, Deep Learning

이미지
딥러닝(CNN)을 사용하여 웃었는지 안웃었는지 알아내는 인공지능 프로그램을 만들어봅시다! Source code(Github): https://github.com/kairess/smile_dete... Dependencies: - Python - numpy - Keras - OpenCV - Seaborn - matplotlib - h5py Dataset - Happy House Dataset: https://www.kaggle.com/iarunava/happy... Keras Image Preprocessing Documenataion https://keras.io/preprocessing/image/

[빵형의 개발도상국] 코드 30줄로 바코드, QR코드 인식 프로그램 만들기 - Python

이미지
바코드와 QR코드의 위치를 인식하고 해석까지 하는 프로그램을 만들어보아요! Source code(Github): https://github.com/kairess/qrcode_bar... Dependencies: - Python - OpenCV - pyzbar - matplotlib (optional) - Zbar download: http://zbar.sourceforge.net/download....

[빵형의 개발도상국] 코드 50줄로 스캔 프로그램을 만들어보자 - Python, OpenCV

이미지
OpenCV의 Perspective Transform을 사용하여 구겨진 이미지를 쫙쫙 펴볼까요? Source code(Github): https://github.com/kairess/perspectiv... Dependencies: - Python - numpy - OpenCV

[빵형의 개발도상국] 알파고에게 2048 게임을 시켜보자 - Python

이미지
Minimax(Expectimax) 알고리즘을 사용하여 10수 앞을 보는 인공지능에게 2048 게임을 시켜보았습니다 Source code(Github): https://github.com/kairess/2048_expec... Dependencies: - Python - numpy - _2048 - pygame Python 2048 package: https://pypi.org/project/2048/ Algorithm inspired by this answer: https://stackoverflow.com/a/22389702

[빵형의 개발도상국] 진화 알고리즘으로 그림 그리기 - Python

이미지
이번엔 색다른 진화 알고리즘으로 인공지능에게 스폰지밥을 그리라고 시켜보겠습니다! Source code(Github): https://github.com/kairess/genetic_image Dependencies: - Python - OpenCV - numpy - skimage

[빵형의 개발도상국] 인공지능으로 얼굴 인식을 해보자- Python

이미지
인공지능으로 얼굴 인식 기능을 구현해서 매트릭스 리로리드의 스미스 요원을 모두 잡아버리겠습니다. Source code(Github): https://github.com/kairess/simple_fac... Download Models - https://github.com/davisking/dlib-mod... - https://github.com/kairess/simple_fac... Dependencies: - Python 3+ - dlib - OpenCV - numpy - matplotlib Used dlib_face_recognition_resnet_model_v1.dat model Used dlib frontal_face_detector Used dlib shape_predictor

[빵형의 개발도상국] 아이폰 인물사진 모드 따라 만들기 - Python, Deep Learning

이미지
딥러닝으로 Image segmentation된 이미지에서 사람 영역과 배경 영역을 분리하고 배경 영역만 흐릿하게 해서 아웃포커스 효과를 적용해봅시다. 사진이 더 이뻐져요! Source code(Github): https://github.com/kairess/Mask_RCNN Original repository: https://github.com/matterport/Mask_RCNN Dependencies: - Python - numpy - Keras - Tensorflow - OpenCV - skimage - matplotlib

[빵형의 개발도상국] 과연 인공지능이 게임을 할 수 있을까? - Python, Genetic Algorithm

이미지
구글 크롬 브라우저가 인터넷에 연결되지 않았을때 뜨는 화면의 공룡이 달리는 게임을 인공지능한테 시켜보았습니다. 유전 알고리즘을 사용한 인공지능... 얼마나 잘 달릴 수 있을까요? P.S. 여러분 알고리즘을 더 잘짜니 3세대만에 1000점 돌파했다능... 다음 영상에는 어떻게 설계했는지 말씀드리겠습니다. Source code(Github): https://github.com/kairess/genetic_dino Dependencies: - Python - numpy - pygame - matplotlib Thanks to Shivam Shekhar for sharing T-Rex Rush

[빵형의 개발도상국] 유전 알고리즘으로 비밀번호를 뚫어보자 - Python

이미지
유전 알고리즘(Genetic Algorithm)으로 엄마가 걸어놓은 비밀번호를 손쉽게 뚫어봅시다! 유전자 생성 - 유전자 평가 - 교배 - 진화 Source code(Github): https://github.com/kairess/password_c... Dependencies: - Python

[빵형의 개발도상국] 삼성전자 주식, 이더리움 시세 인공지능으로 예측해보자 - Python, Deep Learning

이미지
딥러닝(LSTM)을 사용하여 주식 가격과 암호화폐의 시세를 예측하는 인공지능을 만들거예요. 놀라지마세요. 생각보다 훨씬 정확하답니다. Source code(Github): https://github.com/kairess/stock_cryp... Dependencies: - Python - numpy - Keras - pandas - matplotlib Dataset - Yahoo Finance: https://finance.yahoo.com - CoinMarketCap: https://coinmarketcap.com

[빵형의 개발도상국] 인공지능으로 흑백영화를 컬러로 복원시켜보자! - Python, Deep Learning

이미지
영화 싸이코의 히로인 자넷 리가 싸이코의 샤워 씬을 찍고 40년동안 샤워를 안했다는데 1960년 흑백 영화 싸이코를 컬러로 복원해서 얼마나 무서웠으면 40년간 샤워를 못했는지 함께 보시죠! Github: https://github.com/kairess/colorizer Dependencies: - Python - Numpy - OpenCV - cv::dnn::Net Class Reference ( https://docs.opencv.org/3.4.2/db/d30/... ) Original Code: https://github.com/richzhang/coloriza... Paper: Colorful Image Colorization ( https://arxiv.org/pdf/1603.08511.pdf )

[빵형의 개발도상국] 물체추적으로 BTS 오빠를 따라다니는 직캠을 만들어보자 - Python

이미지
OpenCV의 물체추적 알고리즘(Object tracking)을 사용하여 사람을 따라다니는 직캠을 만들어봅시다! Github: https://github.com/kairess/bts_cam Dependencies: - Python - Numpy - OpenCV - Dlib (Optional)

[빵형의 개발도상국] 손글씨 스도쿠 생성기 - Python

이미지
Github: https://github.com/kairess/mnist_sudo... Project contains: Generate Sudoku generator Generate Sudoku board to image file Have fun :) Used  MNIST Database  for displaying number images. Used  python-sudoku-generator-solver  for generating sudoku puzzles - Numpy - matplotlib

[빵형의 개발도상국] [Cat Hipsterizer] 고양이를 힙스터로 만들고 싶었다. 고양이 얼굴인식 - Python, Deep Learning

이미지
딥러닝을 사용하여 고양이 얼굴을 인식하고 안경을 씌워봅시다! Github: https://github.com/kairess/cat_hipste... Cat Dataset: https://www.kaggle.com/crawford/cat-d... Hipsterize Your Dog With Deep Learning: http://blog.dlib.net/2016/10/hipsteri... - Keras - Numpy - Dlib - OpenCV - Pandas

[빵형의 개발도상국] 얼굴인식 스노우 카메라 쉽게 따라만들기 - Python

이미지
- 전체 소스코드 https://github.com/kairess/face_detector - 무료 동영상 다운로드 https://videos.pexels.com/search/face - shape_predictor_68_face_landmarks.dat 다운로드 https://github.com/davisking/dlib-mod... - 동영상에서 사람 얼굴을 인식해서 라이언 얼굴 띄우기 - OpenCV - Dlib 얼굴인식 - numpy 행렬연산

[빵형의 개발도상국] [집행검키우기] 자동 클릭하는 오토 매크로 만들기! Python

이미지
Python 3.5+ OpenCV 3+ PyAutoGUI numpy

[빵형의 개발도상국] 인공지능이 뱀 게임을 배우게 만들어보자!

이미지
진화 알고리즘(유전 알고리즘)을 사용하여 뱀 게임을 혼자서 배우는 인공지능을 만들어 보았습니다. Source code(Github): https://github.com/kairess/genetic_snake Dependencies: - Python - numpy - pygame Snake game code by HonzaKral: https://gist.github.com/HonzaKral/833...

[Programming with Mosh] Python Tutorial for Beginners | Full Python Programming Course [2019]

이미지
Watch this Python tutorial for beginners to learn Python programming from scratch. Includes exercises and projects. 👍Subscribe for more Python tutorials like this: https://goo.gl/6PYaGF 📕Get My FREE Python Cheat Sheet: http://bit.ly/2Gp80s6 🔥Get My Complete Python Programming Course with a 90% Discount (LIMITED to the first 200 students): https://goo.gl/P64rZ8 #Python , #MachineLearning , #WebDevelopment 🔗Supplementary Materials (Spreadsheet): https://goo.gl/x77mLc 📔Python Exercises for Beginners https://goo.gl/1XnQB1 ⭐My Favorite Python Books - Python Crash Course: https://amzn.to/2GqMdjG - Automate the Boring Stuff with Python: https://amzn.to/2N71d6S - A Smarter Way to Learn Python: https://amzn.to/2UZa6lE - Machine Learning for Absolute Beginners: https://amzn.to/2Gs0koL - Hands-on Machine Learning with scikit-learn and TensorFlow: https://amzn.to/2IdUuJy TABLE OF CONTENT 00:00:00 Introduction 00:01:49 Installing Python 3 00:06:10 Your First Pyt