LiuDongdong

爱好由来落笔难,一诗千改心始安。

红外_paper

Chen, Tuochao, et al. “NeckFace: Continuously Tracking Full Facial Expressions on Neck-mounted Wearables.” Proceedings of the ACM on Interactive, Mobile, Wearable and Ubiquitous Technologies 5.2 (2021): 1-31. Paper: NeckFace Summary AdminLTE:github上的一个开源项目,基于Boostrap3的后台管理

Faiss

Faiss是Facebook AI团队开源的针对聚类和相似性搜索库,为稠密向量提供高效相似度搜索和聚类,支持十亿级别向量的搜索,是目前最为成熟

JDK_JUC

1. Condition 案例 class BoundedBuffer { final Lock lock = new ReentrantLock(); final Condition notFull = lock.newCondition(); final Condition notEmpty = lock.newCondition(); final Object[] items = new Object[100]; int putptr, takeptr, count; public void put(Object x) throws InterruptedException { lock.lock(); try { while (count == items.length) //防止虚假唤醒,Condition的awai
0%