最新发布第9页
排序
【人工智能】《Deep learning-based semantic segmentation of remote sensing images: a review》遥感图像分割综述阅读总结
我阅读了《Deep learning-based semantic segmentation of remote sensing images: a review》这篇关于遥感图像语义分割的综述论文。文章指出,语义分割在遥感数据分析中至关重要,尤其在航拍和...
【C】使用scanf输入(找零程序)
代码 #include<stdio.h> int main() { int money = 0; printf('请输入金额(元)'); scanf('%d', &money); int change = 100 - money; printf('找您%d元', change); } ChatGPT的解释 这...
【人工智能】DynamicVis: 一种用于遥感图像理解的高效通用视觉基础模型
DynamicVis模型针对高分辨率遥感图像中小目标检测难题提出创新解决方案。针对传统ViT模型存在的计算复杂度高、细节丢失等问题,该模型构建动态区域感知主干网络,通过重要性评分筛选关键区域tok...
【人工智能】【Python】聚类算法实验(K-Means/DBSCAN/层次聚类)
我对比了K-Means、DBSCAN和层次聚类三种算法在客户细分数据集上的表现。K-Means通过肘部法确定最佳K值为5,轮廓系数0.2332表现最好;DBSCAN对参数敏感仅形成2个簇;层次聚类使用余弦距离和平均...
【C】一个加载动画
void loading(){ for (int i=0;i<=10;i++){ printf('加载中: ['); for (int j=0;j<i;j++){ printf('█'); } for (int ...
【C++】cpp-httplib研究链接
https://github.com/yhirose/cpp-httplib https://blog.csdn.net/qq_40344790/article/details/135246178 https://juejin.cn/post/7169574207632703519 https://www.bilibili.com/video/BV1Xt4y...