摘要: 6月初开始写 8-28 字数 66522 8-30 字数 68941 9-1 字数 69046 9-3 字数 71645 9-3 字数 71972 9-15 字数 71863 9-16 字数 72574 9-16 计划 完成第六章实验处理和结果描述 9-17 计划 修改第一章 9-18 计划 处理小 阅读全文
posted @ 2024-08-28 14:56 快乐码小农 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 利用python opencv计算optical strain import cv2 import numpy as np class OptFlowStrain: def __init__(self): self.TVL1 = cv2.optflow.DualTVL1OpticalFlow_cre 阅读全文
posted @ 2024-01-05 18:06 快乐码小农 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 投稿记录Ergonomics 2023年 29/8/2023 投稿 23/11/2023 with Editor 08/12/2023 Out for Review 12/12/2023 Out for Review 应该是有审稿人接受审稿了 22/1/2024 Ready to Revise (r 阅读全文
posted @ 2023-11-23 21:30 快乐码小农 阅读(65) 评论(0) 推荐(0) 编辑
摘要: 读取csv数据,并画出箱线图 ``` import matplotlib.pyplot as plt import pandas as pd def draw_box(csv_file_path): data = pd.read_csv(csv_file_path, encoding='utf-8' 阅读全文
posted @ 2023-07-04 14:28 快乐码小农 阅读(28) 评论(0) 推荐(0) 编辑
摘要: NeuroComputing投稿记录 ``` 2023年5月22日 投稿 2023年5月24日 With Editor 2023年5月27日 Reject ``` 转投该期刊,期待好结果,加油! 阅读全文
posted @ 2023-05-24 08:42 快乐码小农 阅读(228) 评论(0) 推荐(0) 编辑
摘要: 也可以直接使用System.Net下的UdpClient进行通信 using System; using System.Collections.Generic; using System.Text; using System.Net.Sockets; using System.Net; class 阅读全文
posted @ 2023-04-13 14:07 快乐码小农 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 最近在学unity,想在unity调用python。因此学习了使用udp来建立通信。 python发送,c sharp接收 python代码 import socket import time sock = socket.socket(socket.AF_INET, socket.SOCK_DGRA 阅读全文
posted @ 2023-04-12 21:19 快乐码小农 阅读(146) 评论(0) 推荐(0) 编辑
摘要: **Image and vision Computing** ``` 2023-03-08 submitted 2023-03-12 Under Review 发出评审邀请 2+ 接受评审邀请 0 2023-03-16 Under Review 接受评审邀请 1 终于有审稿人接收审稿了 2023-0 阅读全文
posted @ 2023-03-13 09:02 快乐码小农 阅读(1171) 评论(0) 推荐(0) 编辑
摘要: signal image and video processing 2021~2022 26 Oct 2021 submission 11 Mar 2022 Major Revision 28 Mar 2022 submission 07 Jun 2022 Minor Revision 14 Jun 阅读全文
posted @ 2023-02-20 07:57 快乐码小农 阅读(206) 评论(0) 推荐(0) 编辑
摘要: 做了一个照相机功能,包括拍照和录像,纯粹是为了好玩 import PySimpleGUI as sg import cv2 import threading layout = [ [sg.Text('傻瓜照相机: ')], [sg.Image(key="-IMGSRC-",size=(640, 48 阅读全文
posted @ 2023-02-19 11:13 快乐码小农 阅读(50) 评论(0) 推荐(0) 编辑