본문 바로가기
반응형

전체 글273

[C# console]Modbus RTU simple example using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.IO.Ports; namespace ModbusRTU_Float { class Program { static void Main(string[] args) { // Define serial port settings string portName = "COM6"; // Modify this with your COM port name int baudRate = 38400; // Modify this with your baud rate Parity parity = Parity.None;.. 2024. 3. 14.
Object Distance & Direction Detection for Blind and Low Vision People https://medium.com/@batuhansenerr/object-distance-direction-detection-for-blind-and-low-vision-people-c3f3fd83cbef Object Distance & Direction Detection for Blind and Low Vision People In this article, I demonstrate how an application can be created using computer vision to detect objects from voice commands, estimate the… medium.com In this article, I demonstrate how an application can be creat.. 2024. 1. 26.
kalman filter 참고 사이트 파이썬으로 구현하는 칼만 필터 (Kalman Filter in Python) "칼만 필터는 어렵지 않아 (저자: 김성필 님)"에서 소개된 예제 코드를 파이썬으로 구현합니다. https://github.com/tbmoon/kalman_filter/tree/master GitHub - tbmoon/kalman_filter: Kalman Filter in Python (파이썬으로 구현하는 칼만 필터) Kalman Filter in Python (파이썬으로 구현하는 칼만 필터). Contribute to tbmoon/kalman_filter development by creating an account on GitHub. github.com https://github.com/tbmoon/kalman_filter.. 2024. 1. 4.
python qt 참고 사이트 파이썬으로 배우는 음성인식 https://github.com/bjpublic/python_speech_recognition/tree/main GitHub - bjpublic/python_speech_recognition Contribute to bjpublic/python_speech_recognition development by creating an account on GitHub. github.com [Python 완전정복 시리즈] 2편 : Pandas DataFrame 완전정복 https://wikidocs.net/152789 02-09. 누적 계산 (expending) ####DataFrame.expanding(min_periods=1, center=None, axis=0, method='sin.. 2024. 1. 4.
반응형