摘要: 1. numpy 在带有切片的运算时不会自动转换数据类型 1 import numpy as np 2 3 im_data = np.ones([2, 3, 4], dtype=np.int) 4 print(im_data) 5 im_data[0, :, :] = im_data[0, :, : 阅读全文
posted @ 2021-11-23 12:09 zmbreathing 阅读(236) 评论(0) 推荐(0) 编辑
摘要: 1.使用一个polygon裁一张大图,如果直接裁就会出现结果与原图相同的位置值不同的情况 2.在尝试了许多方法后,发现需要先把“将裁剪栅格的范围扩展到掩膜图层范围”勾选去掉,用polygon裁剪大图。 然后再勾选上,将得到的结果用同样的polygon再裁一次,才能得到正确的结果 注:第一次裁剪后的图 阅读全文
posted @ 2021-09-13 10:32 zmbreathing 阅读(1078) 评论(0) 推荐(0) 编辑
摘要: 1.Raster --> Extraction --> Clip raster by mask layer... 2.选择好原图层,mask图层和坐标系后,save to file 阅读全文
posted @ 2021-09-09 15:02 zmbreathing 阅读(1051) 评论(0) 推荐(0) 编辑
摘要: 注意:QGIS栅格重投影会改变原图像的像素值 1.Vector--> Data Management Tools --> Reproject layer 2.选择好原图层和目标投影坐标系后 --> save to file 阅读全文
posted @ 2021-09-09 14:59 zmbreathing 阅读(852) 评论(0) 推荐(0) 编辑
摘要: 转载自https://www.cnblogs.com/shenyuanhaojie/p/12763814.html 挂载磁盘时出现 (base) server123@ubuntu:/media/server123$ sudo mount -t ext4 /dev/sdb /mntmount: /mn 阅读全文
posted @ 2021-09-06 16:26 zmbreathing 阅读(4730) 评论(0) 推荐(0) 编辑
摘要: 1.调试程序发现计算loss的时候出现如题所示错误,导致后续程序报CUDA的错 nn.CrossEntropyLoss(),我设置ignore_index为0,mask设为0,1,2,做2分类,就会这样 2.将ignore_index改为-1,计算loss的时候把mask=mask-1,就能正常分类 阅读全文
posted @ 2021-06-19 03:47 zmbreathing 阅读(2135) 评论(0) 推荐(0) 编辑
摘要: 1.PAC模式改成全局模式 2.python (下载脚本路径) --insecure 阅读全文
posted @ 2021-06-01 21:01 zmbreathing 阅读(630) 评论(0) 推荐(0) 编辑
摘要: 1.usgs的数据下载器BDA下到一半出现bug。 The selected download path is not writable. Will use the current working directory. Please select a directory for which you 阅读全文
posted @ 2021-05-19 21:48 zmbreathing 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 1.欧空局下载数据出现This XML file does not appear to have any style information associated with it. The document tree is shown below. 2.点击下载按钮将offline变为online即 阅读全文
posted @ 2021-05-19 21:45 zmbreathing 阅读(2761) 评论(0) 推荐(0) 编辑
摘要: 1.导入shp文件,tiff文件 2.在Available Vectors List中点击File -> Export Layers to ROI... 选择“被”掩膜的图片 选第一个就行 3.选择envi classic上的basic tools -> Region of Interest -> 阅读全文
posted @ 2021-05-17 16:57 zmbreathing 阅读(812) 评论(0) 推荐(0) 编辑