ผลต่างระหว่างรุ่นของ "Inno/62"

จาก Theory Wiki
ไปยังการนำทาง ไปยังการค้นหา
 
(ไม่แสดง 13 รุ่นระหว่างกลางโดยผู้ใช้คนเดียวกัน)
แถว 1: แถว 1:
 
== โครงงานประเภท Kidbright ==
 
== โครงงานประเภท Kidbright ==
  
* ใช้ IDE [[Thonny  https://thonny.org/]]
+
* ใช้ IDE [https://thonny.org/ Thonny]
* สไลด์จากแลบ iwing [[iwing.pdf https://ecourse.cpe.ku.ac.th/intro-cpe/iwing/iwing.pdf]]
+
* สไลด์จากแลบ iwing [https://ecourse.cpe.ku.ac.th/intro-cpe/iwing/iwing.pdf iwing.pdf] (ดูหน้า 27 - 33)
* โหลดเฟิร์มแวร์ [[micropython-1.12.cpe-ku.bin https://ecourse.cpe.ku.ac.th/intro-cpe/iwing/downloads/micropython-1.12.cpe-ku.bin]]
+
* โหลดเฟิร์มแวร์ [https://ecourse.cpe.ku.ac.th/intro-cpe/iwing/downloads/micropython-1.12.cpe-ku.2020-03-05.bin micropython-1.12.cpe-ku.2020-03-05.bin] (โหลดใหม่ สำหรับบอร์ด iKB-1
* ตัวอย่าง [[https://gitlab.com/cjaikaeo/kidbright-mpy/-/tree/master/examples]]
+
* ตัวอย่าง [https://gitlab.com/cjaikaeo/kidbright-mpy/-/tree/master/examples]
  
 
== โครงงานประเภท Python game ==
 
== โครงงานประเภท Python game ==
 +
 +
* ใช้ library ชื่อ [https://arcade.academy/ arcade]
 +
* Tutorial 1: [[Oop lab/arcade/space|space]]
 +
* Totorial 2: [[Oop lab/arcade/snake|snake]]
  
 
== โครงงานประเภท AI ==
 
== โครงงานประเภท AI ==
  
== โครงงานประเภท Mobile app ==
+
=== ใช้ OpenCV ในการวิเคราะห์ภาพ ===
 +
 
 +
* ติดตั้ง  ใน VS Code
 +
** ติดตั้ง virtualenv
 +
 
 +
python3 -m venv env
 +
 
 +
** ติดตั้ง opencv
 +
 
 +
pip install opencv-contrib-python
 +
 
 +
* ทำ Tutorial (ด้านล่างเลือกมาแล้ว)
 +
** [https://opencv-python-tutroals.readthedocs.io/en/latest/py_tutorials/py_gui/py_image_display/py_image_display.html#display-image Getting Started with Images] - พื้นฐาน เปิดไฟล์รูป แสดงผล
 +
** ถ้าใช้ video [https://opencv-python-tutroals.readthedocs.io/en/latest/py_tutorials/py_gui/py_video_display/py_video_display.html#display-video Getting Started with Videos] - ใช้ video
 +
** [https://opencv-python-tutroals.readthedocs.io/en/latest/py_tutorials/py_feature2d/py_features_harris/py_features_harris.html#harris-corners Harris Corner Detection] - ทดลองเกี่ยวกับ feature detection (หามุม)
 +
** Object detection
 +
*** Object detection ด้วย [https://opencv-python-tutroals.readthedocs.io/en/latest/py_tutorials/py_objdetect/py_face_detection/py_face_detection.html#face-detection Face Detection using Haar Cascades]
 +
*** Download pretrained models [https://github.com/opencv/opencv/tree/master/data/haarcascades haarcascades]
 +
** Facial recognition
 +
*** ใช้ library [https://github.com/ageitgey/face_recognition face_recognition]
 +
*** อ่านรายละเอียดและตัวอย่าง [https://github.com/ageitgey/face_recognition face_recognition]
 +
*** Tutorial อีกที่ [https://www.pyimagesearch.com/2018/06/18/face-recognition-with-opencv-python-and-deep-learning/ pyimagesearch]
 +
 
 +
== โครงงานประเภท Web app ==
 +
* สามารถใช้ [https://palletsprojects.com/p/flask/ Flask]
 +
** เอกสารหลัก [https://flask.palletsprojects.com/en/1.1.x/ Flask 1.1.x document]
 +
** คลิป:
 +
** โค้ด: [[Inno/62/flask code]]

รุ่นแก้ไขปัจจุบันเมื่อ 03:40, 10 มีนาคม 2563

โครงงานประเภท Kidbright

โครงงานประเภท Python game

โครงงานประเภท AI

ใช้ OpenCV ในการวิเคราะห์ภาพ

  • ติดตั้ง ใน VS Code
    • ติดตั้ง virtualenv
python3 -m venv env
    • ติดตั้ง opencv
pip install opencv-contrib-python

โครงงานประเภท Web app