
https://derivative.ca/community-post/tutorial/anaconda-managing-python-environments-and-3rd-party-libraries-touchdesigner Anaconda - Managing Python Environments and 3rd-Party Libraries in TouchDesigner Bananaconda - This amazing article picture is brought to you by reddit.com/user/DCLanger Anaconda - Managing python environments and 3rd-party libraries in TouchDesigner It has been quite a few t..

사람 체온 (core temp) NASA Data https://www.nature.com/articles/s41526-020-00129-1 import matplotlib.pyplot as plt import os import numpy as np import pandas as pd from glob import glob # 데이터 파일 경로 설정 data_dir = './Data' # CleanData 폴더 생성 (이미 존재하지 않는 경우) clean_data_dir = os.path.join(data_dir, 'CleanData') if not os.path.exists(clean_data_dir): os.makedirs(clean_data_dir) # 모든 CSV 파일 목록 불러오기 csv_fil..

https://colab.research.google.com/github/tensorflow/docs-l10n/blob/master/site/ko/guide/keras/rnn.ipynb?hl=ko rnn.ipynb Run, share, and edit Python notebooks colab.research.google.com https://blog.naver.com/demian7607/222043724449 구글 코랩(colab) GPU 딥러닝 케라스(keras) 돌리기[추가.CPU랑 속도 비교] 1. 데이터 세팅 (불러올 파일 경로 설정을 해줘야해요 : 드라이브 마운트 이용해야 함!) 보기 -> 목차 -... blog.naver.com https://official-hacademi.tistory.co..
https://m.blog.naver.com/rackhunson/222403071709 [geocoding] Geopy 라이브러리 사용하기 geopy 라이브러리를 사용해서 geocoding (reverse geocoding) 하는 방법을 알아보자. 테스트는 아래의 서울... blog.naver.com https://osm.kr/usage/ 오픈스트리트맵 이용하기 전 세계의 지리공간 정보를 날것 그대로 보고, 원하는 대로 조작하고, 복잡한 저작권 문제 없이 (‘ⓒOpenStreetMap 기여자’만 적어서) 배포하는 것은 오픈스트리트맵만의 특권입니다. osm.kr https://youtu.be/xBF_ZaGW87k (여러 복잡해보이는 좋은 방법들이 있다.) 귀찮다. 제일 간단한걸로 ㄱ geopy와 Nomin..

from datetime import datetime, date, time, timedelta import math import numpy as np # 한국 위치 및 시간대 설정 # latitude = 37.5665 # 예: 서울의 위도 # longitude = 126.9780 # 예: 서울의 경도 # time_difference = 9 # UTC+9 latitude = 37.63817 # 예: 서울의 위도 longitude = 127.0364 # 예: 서울의 경도 time_difference = 9 # UTC+9 # 현재 날짜 사용 또는 사용자 입력에 따른 날짜 설정 today = date.today() print("오늘 날짜:", today) use_today = input("오늘 날짜를 사용하시겠..

https://ing-min.tistory.com/186 Deforum-Stable-Diffusion_AE_motionBro_part2.. 오 추가 설치만 하면 된다 !!! (아래 사이트에 자세히 나와있음) https://stable-diffusion-art.com/deforum/#Use_deforum_on_Google_Colab How to make a video with Stable Diffusion (Deforum) - Stable Diffusion Art Deforum is a tool to create ing-min.tistory.com AUTOMATIC1111 설치해 놨음. 위의 튜토리얼 따라하면됨. 터미널에서 폴더 경로로들어간다 ./webui.sh 실행 그리고 URL 주소가나온다. http:..

https://youtu.be/dUec3GXc6Tg - VDB 볼륨 - solver : 이전 프레임의 상태에서 다음프레임으로 어떤 절차를 추가할것인가 loop - iso offset : 스피어와같은 폴리곤을 볼륨으로만든다. - point wrangle : 점의 속성을 이용해 속도와 거리 등등을 설정하기위해. 기타 속성을 추가할수도있음. - VEX : 코드 @P : 포지션 v@vel 점의 속도 v@acc 점의 가속도 f@r f@는 float v@는 벡터 f@maxforce i@id i는 인트 @Cd : 컬러 벡터값임 set(0,0,0) - (1,1,1) - rand() 함수 ()안에는 @p와 같이 시드가 다른 값을 넣어줘야함. 1과같은 상수를 넣으면 그냥 다 1임 - chf : 슬라이드 속성을 만들어줌. ..

다필요없고이사람이 프로젝트 파일 올려줌https://youtu.be/ye8RkgR3mwghttps://youtu.be/btf5hgYR3N0 설치 튜토리얼(진짜 천재다..)https://youtu.be/62eARh_gRhE** Timecode and Links: 00:00 - Intro 00:23 - Install TouchDesigner https://derivative.ca/ 00:33 - Install ComfyUI https://github.com/comfyanonymous/Com... 00:40 - Install ComfyUI Manager https://github.com/ltdrdata/ComfyUI-M... 00:57 - Download Stable Diffusion model https:/..

https://developer.nrel.gov/docs/solar/nsrdb/ NSRDB Data Downloads API | NREL: Developer Network Documentation Solar NSRDB Data Downloads NSRDB Data Downloads Freely available downloads of The National Solar Radiation Database. The National Solar Radiation Database (NSRDB) is a serially complete collection of satellite-derived measurements of solar ra developer.nrel.gov https://ing-min.tistory.co..

float filteredSignal = 0; // EMA 필터링된 신호 float alpha = 0.1; // EMA 필터의 가중치 int threshold = 700; // 손이 있음/없음을 구분하는 임계값 bool handPresent = false; // 손의 존재 여부 void loop() { int signal = analogRead(PulseSensorPurplePin); // PulseSensor의 값을 읽음 filteredSignal = alpha * signal + (1 - alpha) * filteredSignal; // EMA 필터 적용 // 손의 존재 여부 판단 if (filteredSignal > threshold) { // 임계값보다 높으면 손이 없는 것으로 판단 handPre..
- Total
- Today
- Yesterday
- 4dgs
- three.js
- 후디니
- colab
- CNC
- DeepLeaning
- ai film
- MQTT
- opticalflow
- RNN
- 라즈베리파이
- Arduino
- 유니티
- houdini
- 4d guassian splatting
- opencv
- MCP
- sequelize
- docker
- Midjourney
- Express
- Python
- Unity
- krea
- VR
- Java
- node.js
- TouchDesigner
- VFXgraph
- AI
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | |
7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 | 29 | 30 |