摘要:
经纬度数据插值 阅读全文
摘要:
Compressed Sensing with Deep Image Prior and Learned Regularization这篇论文讲的是用一个生成模型去复原原图像。 y=Ax+b x是原图片,b是噪音,论文创建了一个方法x=G(z,w),用Ax拟合y最终得到x的生成模型从而复原x。 阅读全文
摘要:
经纬度只能保留8位高度4位,所以精度保留太高也没有用。 阅读全文
摘要:
import piexif from PIL import Image # Read Image fname = 'Wide.JPG' img = Image.open(fname) exif_dict = {"GPS":{}} exif_dict['GPS'][piexif.GPSIFD.GPSL 阅读全文
摘要:
缺点是图片必须带有经纬度信息否者就会报错,仅限于在含有gps信息的jpg上修改图片。 import piexif from PIL import Image # Read Image fname = 'Wide.JPG' img = Image.open(fname) exif_dict = pie 阅读全文
摘要:
zip -r archive.zip 1024black/ 把文件弄成压缩包然后下载 阅读全文
摘要:
查看cpu个数 cat /proc/cpuinfo| grep "physical id"| sort| uniq| wc -l 查看cpu信息cat /proc/cpuinfo 因为从0开始编号所以有24个核心。 Intel(R) Xeon(R) Gold 6128 CPU @ 3.40GHz单看 阅读全文
摘要:
// // Copyright © 2019 Intel Corporation//// SPDX-License-Identifier: MIT// #include <chrono>#include <cmath>#include <iostream>#include <sycl/sycl.hp 阅读全文
摘要:
#include <math.h>#include <iostream>#include <string>#include <optional>#include "dpc_common.hpp"using namespace sycl;using namespace std;#define DEBU 阅读全文