반응형

2023/02 19

[Git] 소스트리(Sourcetree) Clone

SourceTree 소스트리(Sourcetree)를 사용하여 진행중인 프로젝트에 대해서 쉽게 관리할 수 있는 방법을 소개해 드리겠습니다. https://www.sourcetreeapp.com/ Sourcetree | Free Git GUI for Mac and Windows A Git GUI that offers a visual representation of your repositories. Sourcetree is a free Git client for Windows and Mac. www.sourcetreeapp.com -Git / Gitlab에 관리되는 소스들을 쉽게 활용하기 위한 GUI(Graphic User Interface) 툴입니다. -직접 명령어를 입력하여 사용하는 CLI와는 달리 시각적..

- Git/Sourcetree 2023.02.26

[Flutter] 플러터 설치하기(+ window version 에러)

다운로드 https://docs.flutter.dev/get-started/install/windows Windows install How to install on Windows. docs.flutter.dev 위 페이지에서 OS 맞는 현재 버전의 zip파일을 다운로드 해줍니다. c드라이브에 새로운 파일(flutterSDK) 생성 후 —> 압축해제 한 파일’flutter’ 붙여넣기. visual studio 2022 설치 데스크톱 개발 워크로드 체크 후 설치 진행. android studio SDK 설정(Tool - SDK Manager - Settings - SDK Tools —> Android SDK Command-line Tools (latest) 체크) 커맨드라인 도구 설치 후 cmd창에서 flu..

- Flutter 2023.02.18

[Python] 아두이노 온습도센서(DHT11) 측정 값 그래프로 출력하기

matplolib.pyplot matplolib의 pyplot을 이용하여 현재 온도와 습도에 대한 측정 값을 그래프로 나타내는 코드입니다. import serial as sr import matplotlib.pyplot as plt import numpy as np s = sr.Serial('COM11', 9600) # 포트, 전송속도 # plt.colse('all') plt.figure() plt.ion() plt.show() data1 = np.array([]) data2 = np.array([]) i = 0 while True: a = s.readline() b = s.readline() a.decode() b.decode() a1 = float(a[0:4]) b1 = float(b[0:4]) da..

- Python 2023.02.18

[Git] Android git 연동 하는 방법

개인이나 팀 단위로 프로젝트를 진행 할 때 git을 사용하여 관리를 손쉽게 할 수 있습니다. 다음은 Android Studio에서 Github와 연동을 하는 부분을 포스팅 해보겠습니다. Git 설치 https://git-scm.com/download/ Git - Downloads Downloads macOS Windows Linux/Unix Older releases are available and the Git source repository is on GitHub. GUI Clients Git comes with built-in GUI tools (git-gui, gitk), but there are several third-party tools for users looking for a platfo..

- Git 2023.02.12

[Opencv] Mediapipe를 사용하여 가상볼륨 조절기 만들기

Mediapipe 라이브러리를 사용하기 위한 준비는 앞서 포스트를 참고하시면 됩니다. (HandTracking을 위한 모듈을 생성하는 부분) https://a070415.tistory.com/entry/OpenCV-Mediapipe%EB%A5%BC-%EC%82%AC%EC%9A%A9%ED%95%98%EC%97%AC-%EA%B5%AC%EA%B8%80-T-rex%EA%B2%8C%EC%9E%84-%EC%A0%9C%EC%96%B4%ED%95%98%EA%B8%B0 [OpenCV] Mediapipe를 사용하여 구글 T-rex게임 제어하기 대학생때 Toy Project로 진행하였던, 손가락 위치에 따른 Trex게임 제어를 포스팅 하겠습니다. 해당 프로젝트는 Mediapipe 라이브러리를 사용하여 손을 인식 시키고, 손..

- Python/OpenCV 2023.02.12

[OpenCV] Mediapipe를 사용하여 구글 T-rex게임 제어하기

대학생때 Toy Project로 진행하였던, 손가락 위치에 따른 Trex게임 제어를 포스팅 하겠습니다. 해당 프로젝트는 Mediapipe 라이브러리를 사용하여 손을 인식 시키고, 손가락 위치에 따른 키보드 제어를 통해 Google Trex게임을 다루어보았습니다. https://google.github.io/mediapipe/solutions/hands.html Hands Cross-platform, customizable ML solutions for live and streaming media. google.github.io Mediapipe의 hands는 손의 각 부분에 LandMark가 지정되어 있으며, LandMark의 위치에 따른 제어를 진행 할 수 있습니다. Mediapipe 설치 cmd창에서..

- Python/OpenCV 2023.02.11