自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(126)
  • 收藏
  • 关注

原创 在jupyter notebook中批量注释多行代码

https://zhuanlan.zhihu.com/p/111544860

2021-04-30 08:33:27 4191

原创 20210422swift做iOS中改变button按钮里的图案与按钮里的文字字体与大小

https://www.hangge.com/blog/cache/detail_960.html

2021-04-22 17:12:21 711

原创 2020.11.06 tensorflow报错:Attribute Error: ‘NoneType‘ object has no attribute ‘astype‘ 解决方案

https://blog.csdn.net/weixin_43826242/article/details/90325955

2020-11-06 20:07:21 842

原创 会议排名网站(推荐看)

https://www.scimagojr.com/journalrank.phphttp://www.guide2research.comhttp://www.conferenceranks.com/index.htmlhttps://zhuanlan.zhihu.com/p/100661046https://jackietseng.github.io/conference_call_for_paper/conferences-with-ccf.htmlhttps://www.ccf.org.c

2020-09-26 10:59:27 490

原创 解读最全所有3D Machine Learning 的经典论文

解读的论文的融合连接:https://go.ctolib.com/timzhang642-3D-Machine-Learning.html#3d_synthesis_dl_basedhttps://github.com/timzhang642/3D-Machine-Learning

2020-09-17 11:15:26 183

原创 报错ValueError: operands could not be broadcast together with shapes (448,448) with (224,224)

这个错误发生原因是因为图片的尺寸与weight 不匹配,不能做乘积,所以需要改变图片尺寸。使用如下代码:img = cv2.resize(img, (448, 448))加在img = cv2.resize(img, (448, 448)) img = cv2.cvtColor(img, cv2.COLOR_RGB2RGBA) x_offset = y_offset = 0 y1, y2 = y_offset, y_offset + image.shape[0] x1, x2 = x_offset, x

2020-09-15 10:13:40 1404

原创 OSError: [Errno 30] Read-only file system: ‘/data‘. 报错解决方法

查看你写的代码的‘config.py’ 文件,一般是里面log文件的路径问题,因为os系统升级后提出了安全保护机制,导致普通用户甚至是根用户不能对文件进行写操作,只能进行读操作,所以需要你改变log写的路径,放到一个普通的路径即可,不要放到根路径...

2020-09-15 07:26:57 10870 1

原创 最全人体姿态分析与重构论文汇总

https://github.com/Sophia-11/Awesome-CVPR-Paper

2020-09-14 15:59:03 219

原创 最全顶会论文列表

https://blog.csdn.net/qq_35240640/article/details/104662710

2020-09-14 14:46:38 409

原创 从图片生成法线进行法线贴图blender

原图:在线将一张图片转换为法线图很棒:官网:https://cpetry.github.io/NormalMap-Online/效果https://blog.csdn.net/ttm2d/article/details/100585826normal map结果:然后将生成的法线图用于blender进行法线贴图,具体操作如下:https://www.katsbits.com/codex/bsdf-normal-maps/http://www.downza.cn/xy/56927.html

2020-09-13 20:50:23 2368

原创 blender怎样给平面或曲面自动贴图

blender怎样给平面或曲面自动贴图:直接跟着下面这个视频学就行,非常棒!https://haokan.baidu.com/v?pd=wisenatural&vid=16567862378730732689

2020-09-12 08:09:40 5767

原创 3d模型(特别是人物模型)在线生成动画

Mixamo:官网:https://www.mixamo.com/教程:http://www.manew.com/thread-99473-1-1.html(根据这个教程一步一步来)进入官网选择,baseball hit的动作还是不错的, 或者Goalkeeper Catch的动画也不错

2020-09-09 19:30:22 2616

原创 tensor flow在Mac上的安装 anaconda

在anaconda的‘PyQt GUI’上进行安装依照:https://blog.csdn.net/jorg_zhao/article/details/80075293注意不要在‘jupyter’里使用‘pip’安装这里我使用:pip install -i https://pypi.mirrors.ustc.edu.cn/simple/ --upgrade tensorflowpip install -i https://pypi.tuna.tsinghua.edu.cn/simple/ --up

2020-09-07 17:39:52 200

原创 colab把cpu变成gpu

将cpu变GPU!pip uninstall protobuf!pip uninstall tensorflow!pip install tensorflow-gpu==1.3.0!pip install --upgrade --force-reinstall tensorflow-gpufrom tensorflow.python.client import device_libprint(device_lib.list_local_devices())效果图如下:...

2020-09-06 18:58:01 726

原创 近五年计算机视觉顶会论文下载地址

https://blog.csdn.net/qq_36165459/article/details/78551734

2020-09-06 06:43:22 362

原创 CVPR18: Session 3-2A: Analyzing Humans in Images II 分析与汇总

Orals (O3-2A)[A2] Total Capture: A 3D Deformation Model for Tracking Faces, Hands, and Bodies, Hanbyul Joo, Tomas Simon, Yaser Sheikh[A4] Augmented Skeleton Space Transfer for Depth-Based Hand Pose Estimation, Seungryul Baek, Kwang In Kim, Tae-Kyun K

2020-09-05 06:01:31 237

原创 二次曲面拟合非常棒

二次曲面拟合非常棒:https://blog.csdn.net/Haipai1998/article/details/85345823https://blog.csdn.net/weixin_44112790/article/details/89287521python学习—画3d曲线曲面图https://blog.csdn.net/qq5q13638/article/details/78398997https://blog.csdn.net/eddy_zheng/article/details/

2020-08-29 20:35:26 986

原创 PCL点云库实现点云表面的法线与曲率计算并可视化(计算一个mesh中一个点云的曲率)

pcl编程问题4:可视化点云的法线和曲率,模版函数的使用问题https://blog.csdn.net/lhy2677886724/article/details/88691447PCL求取三维点云模型每点曲率https://blog.csdn.net/GoodLi199309/article/details/80537310点云的曲面法向量估计https://blog.csdn.net/lming_08/article/details/18360329PCL法线估计https://www.c

2020-08-28 21:09:44 2050

原创 关于画曲线画弧的特别全的博客

https://www.csdn.net/gather_23/MtjaYg0sODg0ODktYmxvZwO0O0OO0O0O.html?platform=pc&page=2&pageSize=20

2020-08-28 21:02:48 155

原创 参数曲线和曲面非常详细介绍相关概念(好)

https://developer.rhino3d.com/guides/general/essential-mathematics/parametric-curves-surfaces/

2020-08-28 08:53:08 667

原创 关于3d曲面曲率原理的较详细讲解

查看以下网站,包括其中含有的链接:https://blog.csdn.net/ModestBean/article/details/89438082

2020-08-25 18:48:52 1551

原创 Mac配置conda环境,使命令行中conda生效anaconda

一定要用下面方法:https://zhuanlan.zhihu.com/p/86688024在MAC下,安装完anaconda后,在终端输入 conda --version后,显示zsh: command not found: conda。原因是anaconda安装完成后,并没有配置环境路径。为此,需要在.zshrc中加入anaconda的路径。保存退出后 source 一下就可以。vim ~/.zshrcexport PATH=/Users/yaoguoqiang/anaconda3/bin

2020-08-25 07:46:11 2407

原创 基于PCL拾取屏幕上三维点坐标(通过点击3d模型,获得点击处点云的坐标)

c++特别好和详细:https://blog.csdn.net/wokaowokaowokao12345/article/details/51318859https://blog.csdn.net/weixin_40863346/article/details/88049849PCL+Qt+VS可视化点云(从安装到配置)https://blog.csdn.net/wokaowokaowokao12345/article/details/51078495?utm_medium=distribute

2020-08-24 11:30:24 1839

原创 解决homebrew在Mac安装一直updating homebrew的问题比如Mac上下载pcl

打开终端,直接输入export HOMEBREW_NO_AUTO_UPDATE=true然后就输入需要按转的软件,比如需要安装‘pcl’就直接接着输入brew install pcl注意一定要是这个流程

2020-08-23 20:43:45 154

原创 查看colab里例如ubuntu等版本

!lsb_release -a!uname -r

2020-08-23 10:18:31 1417

原创 怎样编译tf_xxx_compile.sh 生成tf_xxx_so.so

https://blog.csdn.net/qq_41895003/article/details/105898395对于生成tf_sampling_so.so 在python2.7时可以出用以下代码:!g++ -std=c++11 tf_sampling.cpp -o tf__sampling_so.so -shared -fPIC -I /usr/local/lib/python2.7/dist-packages/tensorflow/include -I /usr/local/cuda-8.0/i

2020-08-16 14:31:09 556

原创 python 版本切换colab

https://www.jianshu.com/p/cbc483ed7553

2020-08-16 11:15:36 4318

原创 计量经济学+abm+rl+nlp

参考网站:(请仔细查看):https://www.bilibili.com/video/av45357759?p=2https://zhuanlan.zhihu.com/reinforcehttps://zhuanlan.zhihu.com/p/28084751https://www.davidsilver.uk/teaching/http://www2.econ.iastate.edu...

2020-07-09 11:27:27 250

原创 将苹果Xcode的usd/usdz格式的3d模型导入unity

https://forum.unity.com/threads/usd-for-unity-updates.646645/

2020-07-09 11:26:18 2034

原创 opencv图像平滑

http://woshicver.com/FifthSection/4_4_图像平滑/

2020-07-09 11:25:55 96

原创 怎样增加图像对比度,使较亮或较暗的图片变得清晰,技术:直方图均衡增加对比度

http://woshicver.com/FifthSection/4_10_2_直方图-2:直方图均衡/

2020-07-09 11:25:45 719

原创 opencv傅立叶变换,高通滤波,边缘检测,背景提取

http://woshicver.com/FifthSection/4_11_傅里叶变换/

2020-07-09 11:25:38 407

原创 opencv图像分割前景提取

http://woshicver.com/FifthSection/4_16_交互式前景提取使用GrabCut算法/http://woshicver.com/FifthSection/4_15_图像分割与分水岭算法/

2020-07-09 11:25:31 723 1

原创 opencv关键点,特征点,角点检测sift,surf,fast,brief,orb算法,特征匹配

http://woshicver.com/Sixth/5_5_SURF简介(加速的强大功能)/http://woshicver.com/Sixth/5_4_SIFT(尺度不变特征变换)简介/http://woshicver.com/Sixth/5_6_用于角点检测的FAST算法/http://woshicver.com/Sixth/5_7_BRIEF(二进制的鲁棒独立基本特征)/http:...

2020-07-09 11:25:24 277

原创 opencv背景提取/视频背景提取

http://woshicver.com/Seventh/6_1_如何使用背景分离方法/

2020-07-09 11:25:16 641

原创 opencv视频物体跟踪,meanshift,camshift算法,光流

http://woshicver.com/Seventh/6_2_Meanshift和Camshift/

2020-07-09 11:25:04 300

原创 opencv相机校准,姿态估计,对极几何,立体图像深度图

http://woshicver.com/Eighth/7_1_相机校准/

2020-07-09 11:24:55 275

原创 Mac怎样使隐藏的文件出现

按如下图的建:这个路径默认是不可见的,按下这几个键就可以看见了:shift+cmmand+.

2020-07-09 11:24:43 115

原创 ios框架vision内容

一般的ios框架vision内容包含以下三类:Request: The request defines the type of thing you want to detect and a completion handler that will process the results. This is a subclass of VNRequest.Request handler: The ...

2020-07-09 11:24:24 539

原创 手机应用app减少内存的方法

参考:https://www.jianshu.com/p/01ad05af4343

2020-07-09 11:24:11 1112

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除