ne6rd 最近的时间轴更新
ne6rd

ne6rd

V2EX 第 64897 号会员,加入于 2014-06-12 18:46:57 +08:00
HTTP response 里的 emoji 到底是啥?
问与答  •  ne6rd  •  68 天前  •  最后回复来自 ne6rd
4
2022 年了, Photoshop 怎么还这么慢?
问与答  •  ne6rd  •  2022-10-10 04:44:52 AM  •  最后回复来自 funcman
17
IOS 的热点是不是有毒
Apple  •  ne6rd  •  2022-09-22 18:58:03 PM  •  最后回复来自 riceathome
35
请教一个并发处理的逻辑。
问与答  •  ne6rd  •  2022-09-05 18:42:31 PM  •  最后回复来自 qeqv
7
npm audit fix 需要在 CI/CD 中每次 build 都运行一次吗?
DevOps  •  ne6rd  •  2019-10-08 14:57:23 PM  •  最后回复来自 ne6rd
3
分享一下这两天做的 WPF 小程序
.NET  •  ne6rd  •  2020-01-02 02:44:10 AM  •  最后回复来自 raawaa
8
ne6rd 最近回复了
68 天前
回复了 ne6rd 创建的主题 问与答 HTTP response 里的 emoji 到底是啥?
找到原因了
旧 API 用的 newtonsoft.json
新 API 用的 system.text.json, 两者对待 unicode escape 的策略不一样
68 天前
回复了 ne6rd 创建的主题 问与答 HTTP response 里的 emoji 到底是啥?
好像确实是 json 序列化的问题。
语言是 c# .netcore6
如果返回 plain text 就都是 emoji
如果返回 json 就有 unicode

还在找怎么改。
insightface 又远超 face_recognition 速度和准确度
目前测试 face_recognition 中,同样速度下,比 haarcascades 要准确多了
然而 haarcascades 检测效果不太行, 也可能是参数调的不对。
问了 chatgpt ,给了几行代码好像就解决问题了,真香。
```
import cv2

# Load pre-trained Haar cascade classifier for human detection
human_cascade = cv2.CascadeClassifier(cv2.data.haarcascades + 'haarcascade_fullbody.xml')

# Read the image
image = cv2.imread('C:\\~\\code\\py\\human_detect\\img\\none.jpg')

# Convert the image to grayscale
gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)

# Detect human bodies in the image
humans = human_cascade.detectMultiScale(gray, scaleFactor=1.1, minNeighbors=5)

if len(humans) > 0:
print("Human detected!")
else:
print("No humans detected.")
```
不一定有用,但不能没有。而且要找个名牌学校的。
会不会是 SSO 注册自动生成的 ID ?然后就忘记改了。
不记得是不是 twttier 了,好像在有些平台上看过这种现象。
2022-09-22 09:23:07 +08:00
回复了 ne6rd 创建的主题 Apple IOS 的热点是不是有毒
而且最恶心的是这个功能结合贪婪的运营商。
包月流量用完了以后,就给你转按 MB 计费的流量。
因为我是预付费用户,把寸的话费用完才停。
要是绑了信用卡,还不要直接给我搞破产。
2022-09-22 09:17:20 +08:00
回复了 ne6rd 创建的主题 Apple IOS 的热点是不是有毒
@dingwen07 安卓这个界面就友好很多。

苹果就一个开关,然后期待用户去读下面一小段说明?

能有线分享热点是很好,但是对大多数用户场景来说,手机插电脑,要么充电,要么备份数据。
就手机那个流量,硬要打肿脸当胖子做宽带,合理吗。
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   6071 人在线   最高记录 6543   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 22ms · UTC 02:14 · PVG 10:14 · LAX 19:14 · JFK 22:14
Developed with CodeLauncher
♥ Do have faith in what you're doing.