自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 【点云】PointNet++代码复现调试

论文链接:https://arxiv.org/abs/1706.02413github 链接:https://github.com/charlesq34/pointnet20 环境准备Python 2.7.17, CUDA 10.0, cuDNN 7.6.4, Tensorflow-gpu 1.15.0, Keras:2.2.4, Pytorch 1.3.1, Caffe 1.0, Chainer 6.5.0, Mxnet-cu100 1.5.1.post0, Darknet, .

2021-04-21 20:09:36 1796

原创 【ncnn】基于ncnn的iOS端深度学习算法部署及应用

ncnn 是一个为手机端极致优化的高性能神经网络前向计算框架。ncnn 从设计之初深刻考虑手机端的部署和使用。无第三方依赖,跨平台,手机端 cpu 的速度快于目前所有已知的开源框架。基于 ncnn,开发者能够将深度学习算法轻松移植到手机端高效执行,开发出人工智能 APP,将 AI 带到你的指尖。ncnn 目前已在腾讯多款应用中使用,如 QQ,Qzone,微信,天天P图等。github 地址:Tencent/ncnn, Demo 地址:YOLOv5_NCNN深度学习和卷积神经网络,在移动端上的测试,可以.

2021-03-08 14:15:39 4247 6

原创 【ijkplayer】Demo调试

项目需要整合ijkplayer这一播放器,简单研究了一下github下载下来的Demo,略经调试,发现github的版本还是有些小坑,故作记录。Github链接:https://github.com/bilibili/ijkplayer以上就是github给出的调试步骤。其中容易报错的亮点:1、缓存问题:error: RPC failed; curl 18 transfer cl...

2020-04-27 18:31:30 425

原创 [BUG收集]CocoaPods - Unable to find a specification for 'xxxx'

pod repo remove masterpod setuppod install --verbose --no-repo-update

2020-04-20 20:44:36 214

原创 [扫立得]iOS百度OCR项目实现(二)

项目介绍项目主要应用了百度云平台人工智能模块的文字识别功能,具体请参考https://cloud.baidu.com/doc/OCR/index.html百度云官网技术文档进行详情查看。集成OCR iOS1 引入Framework创建工程并引入Framework在此必须要使用Embedded Binaries进行添加,苹果不允许程序中含有Dynamic framework架构。点...

2019-01-18 17:02:35 709

原创 [扫立得]iOS百度OCR项目实现(一)

项目介绍项目主要应用了百度云平台人工智能模块的文字识别功能,具体请参考https://cloud.baidu.com/doc/OCR/index.html百度云官网技术文档进行详情查看。1 项目环境项目搭建的环境配置为名称版本macOSHigh Sierra 版本10.13.6XcodeXcode10.1pod1.5.3iOS9.0及以上...

2019-01-18 14:54:47 1259

原创 写在项目的尾巴

很长时间以来,都想要提笔写下接手的第一个完整项目,一是总结,二是示戒,跳了些坑大家不要往里面跳。但是各种原因耽搁,以前是赶项目忙(其实是太菜),时间抽不出来,后来干脆就是懒。所以一直拖了很久,前一阵子才想起来这么个事情,给小伙伴说了一说,这才开始开个头(其实今天太晚了也不准备写),总之,有时间的话,我会把我的经验和教训都在这里写下来的,毕竟这是一个技术博客,反正关注的人也不多,批评和教育来者不拒,欢

2017-05-15 00:20:07 229

原创 【iOS开发】网络请求报错

升级Xcode 7.0发现网络访问失败 输出错误信息The resource could not be loaded because the App Transport Security policy requires the use of a secure connection.解决方法为:第一步:在Info.plist中添加NSAppTransportSecurity类型Dictionary。

2016-07-10 17:14:02 357

原创 【iOS开发】关于homebrew的安装和测试

homebrew的安装、测试

2016-07-04 19:08:46 1346

转载 【iOS开发】NSString与int和float的相互转换

近来学习oc的语法,同时想兼顾iOS的开发,顺便完成算法老师布置的习题,所以想开发一套小游戏,起步比较困难,所以把一些要用到的代码记录下来。  NSString *tempA = @"123";  NSString *tempB = @"456";1,字符串拼接 NSString *newString = [NSString stringWi

2016-06-06 21:16:56 445

原创 【iOS开发】隐藏键盘

【iOS开发】通过触摸背景隐藏键盘的方法,范例实现

2016-06-04 16:16:02 381

原创 My study note of PHP language(V)

Constant 1.define:define("PI",3.14);2.get value: (1)get value directly:$area = PI*1*1;(2)use constant () function Can output different types of constants.$area = constant("PI")*1*1;3.whether the

2016-04-03 23:55:52 228

原创 My study note of PHP language(IV)

这里写代码片VariableWhat is the variable? used to storage the value.How to define the variable? $var_name="苹果";$n=10;Naming rules for variable names 1.The variable name must be a letter or an underscore “

2016-04-02 23:57:49 250

原创 My study note of PHP language(III)

How to configure the environment of php?Actually, I haven't configured my environment and don't want to tell how to do it.Becuase there're enough blogs to tell you how to configure and to tell the

2016-04-01 19:27:24 267

原创 My study note of PHP language(II)

The structure of website front-end, back-end and databasefront-end: mainly used to browse the data, only need to click or browse; extract information from the database to browse.back-end: manage

2016-03-31 21:43:28 244

原创 My study note of PHP language(I)

Today up ,I' m going to learn the php language in legend ,I will record what I learn in the courseand the textbook here . In addition , if you are interesting in my blog or what I'mstudying ,I gue

2016-03-30 17:54:24 270

原创 This is my first BOLG

I heard that blog writing can promote my coding skill level and broaden my horizon .Now here i come and write these sentences .I will write what I have learnted from work and some interest

2016-03-29 13:14:45 215

空空如也

空空如也

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

TA关注的人

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