自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

Ray

人生自有浮沉,总要迎着光向上游...

  • 博客(81)
  • 收藏
  • 关注

原创 opencv教程

记录以及转给有需要的人http://ex2tron.wang/

2019-08-18 21:56:57 3595

原创 【图像分割模型coding】Keras 利用Unet进行多类分割

1.前言unet论文地址unet,刚开始被用于医学图像分割。但当时的训练集是黑白图像并且只涉及到二分类问题。此前一直有尝试使用unet处理rgb三彩色图像进行多类分割问题,摸索之后,终有所获。【CPU实现】2.代码实现所采用的数据集是CamVid,图片尺寸均为360*480,训练集367张,校准集101张,测试集233张,共计701张图片。所采用的深度学习框架是tensorflow+ker...

2019-07-26 16:30:44 17925 291

原创 【语义分割论文阅读】Context-Reinforced Semantic Segmentation

1.(12)Context-Reinforced Semantic Segmentation论文题目:Context-Reinforced Semantic Segmentation代码地址:无推荐指数:★★★☆☆论文摘要:最近的研究表明上下文在基于深度卷积神经网络的语义分割中的重要性。其中,预测分割图p-map对丰富的高级语义线索进行编码,这是一种有前景的上下文来源。本文在不增加任何新...

2019-07-09 11:20:42 1359 1

原创 【图像分割论文阅读】DFANet: Deep Feature Aggregation for Real-Time Semantic Segmentation

1. (23) DFANet论文题目:DFANet: Deep Feature Aggregation for Real-Time Semantic Segmentation代码地址:unofficial pytorch implementation of DFANet推荐指数:★★★★☆论文摘要:旷视提出的用于实时语义分割方案DFANer,包含三部分:轻量级backbone、子网络、子...

2019-07-04 22:06:07 2396 1

原创 【语义分割论文阅读】Decoders Matter for Semantic Segmentation

1.(11)Decoders Matter for Semantic Segmentation论文题目:Decoders Matter for Semantic Segmentation: Data-Dependent Decoding Enables Flexible Feature Aggregation代码地址: 无推荐指数:论文摘要:采用编解码器结构的语义分割方法其解码器的最后一...

2019-07-03 17:19:49 1277

原创 【Leetcode】074 Search a 2D Matrix

题目描述Write an efficient algorithm that searches for a value in an m x n matrix. This matrix has the following properties:Integers in each row are sorted from left to right.The first integer of each...

2019-06-25 14:29:46 192

原创 【Leetcode】050 Pow(x, n)

问题描述Implement pow(x, n), which calculates x raised to the power n (xn).用自己的方式实现幂指数函数.实例Input: 2.00000, 10Output: 1024.00000Input: 2.10000, 3Output: 9.26100Input: 2.00000, -2Output: 0.25...

2019-06-22 22:51:39 185

原创 python预处理tif格式图片

RGB彩色图像大家都不陌生,但是什么是真彩色、什么是加彩色呢?[竞赛群里看到别人说真彩色、假彩色,当时完全不懂,碰巧撞上了,记一下]R原色对应TM4波段、G原色对应TM3波段、B原色对应TM2波段,合成得到标准假彩色影像。R原色对应TM3波段、G原色对应TM2波段、B原色对应TM1波段,合成得到真彩色影像。R原色对应TM7波段、G原色对应TM5波段、B原色对应TM2波段,合成得到其它假彩色...

2019-06-21 22:40:56 8587

原创 【Leetcode】069Sqrt

题目描述Implement int sqrt(int x).Compute and return the square root of x, where x is guaranteed to be a non-negative integer.Since the return type is an integer, the decimal digits are truncated and ...

2019-06-21 22:22:18 178

原创 【Leetcode】Single Number、Single Number II、Single Number III

list操作 time:O(n2);space:O(n)/O(1)time:O(n^2);space:O(n)/O(1)time:O(n2);space:O(n)/O(1)遍历list中的每一个元素,用额外空间记录遍历的数,这个额外空间tmp初始为空,遍历时,若存在,则从tmp中删除,不存在则加入tmp,由于只有一个数只出现了一次,其他数都是两次,所以最后tmp中只剩一个元素,将其输出。...

2019-06-19 16:03:16 185

原创 【Leetcode】268 Missing Number

题目描述题目含义是,假设有一个长度为n+1的数组(其取值为[0,1,2,...,n]),随机拿掉一个数,使之变为长为n的array,打乱顺序问拿掉的数是几?time:O(nlogn);space:O(1)time:O(nlogn);space:O(1)time:O(nlogn);space:O(1)想法是如果先排序,那么遍历的时候会很容易判断前后两个数是否差值为1。这个好像能补上上...

2019-06-17 22:55:55 184

原创 【图像分割论文阅读】Building Detail-Sensitive Semantic Segmentation Networks with Polynomial Pooling

本文由电子科技大、中科院信息所、Inception人工智能研究所、北航数字媒体重点实验室共同完成,发表于CVPR2019.论文地址:Building Detail-Sensitive Semantic Segmentation Networks with Polynomial Pooling背景语义分割是计算机视觉领域的中要任务,它试图为输入图像的每一个像素点标定一个语义标签。在训练...

2019-06-17 16:29:42 888 1

转载 注意力机制、注意力机制的变体、论文中常见的注意力

前面那篇论文中有提到利用注意力机制进行语义分割的,这里转载一篇。各种注意力总结

2019-06-16 23:15:15 1273

原创 【图像分割论文阅读】APCNet:Adaptive Pyramid Context Network for Semantic Segmentation

本文由深圳计算机视觉与模式识别重点实验室、SIAT-SenseTime联合实验室中国科学院深圳先进技术研究院、上海交大、香港中文大学联合出品。发表于CVPR2019论文地址:APCNet:Adaptive Pyramid Context Network for Semantic Segmentation背景最近的研究表明结合上下文特征能够显著的提升深度语义分割模型性能。这些模型的差异仅...

2019-06-16 23:03:32 3957 3

原创 【Leetcode】041. First Missing Positive

题目描述Given an unsorted integer array, find the smallest missing positive integer.对于给定的未经排序的array,找出第一个缺失的正整数。例子Input: [1,2,0]Output: 3Input: [3,4,-1,1]Output: 2Input: [7,8,9,11,12]Ou...

2019-06-16 01:42:59 149

原创 【Leetcode】040Combination Sum

问题描述Given a collection of candidate numbers (candidates) and a target number (target), find all unique combinations in candidates where the candidate numbers sums to target.Each number in candidat...

2019-06-13 18:35:07 144

原创 【Leetcode】039. Combination Sum

题目描述Given a set of candidate numbers (candidates) (without duplicates) and a target number (target), find all unique combinations in candidates where the candidate numbers sums to target.The same ...

2019-06-12 23:05:09 163

原创 【图像分割论文阅读】OANet:An End-to-End Network for Panoptic Segmentation

本文由浙江大学、旷视科技、华中科技大学、清华大学、东京大学的研究人员共同完成,阵容可谓相当强悍了。本文发表于CVPR2019.论文地址:An End-to-End Network for Panoptic Segmentation本人将CVPR2019关于Segmentation的文章放在云盘了,需要的朋友自取CVPR2019-segmentation,提取密码为:0d8b背景开始说...

2019-06-12 19:08:13 1997 4

原创 【图像分割论文阅读】Maskab: Instance Segmentation by Refining Object Detection with Semantic

MaskLab2018年发表于CVPR,这是一篇关于实例分割的文章。论文地址:MaskLab: Instance Segmentation by Refining Object Detection with Semantic and Direction Features作者Liang-Chieh Chen(陈良杰),台湾人。加州大学洛杉矶分校的在读博士(不知道毕业了没),当时作者在谷歌工作。...

2019-06-11 22:12:34 1349

原创 【Leetcode】035. Search Insert Position

问题描述Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in order.You may assume no duplicates in the arr...

2019-06-11 21:19:12 136

原创 【Leetcode】034 Find First and Last Position of Element in Sorted Array

题目描述Given an array of integers nums sorted in ascending order, find the starting and ending position of a given target value.Your algorithm’s runtime complexity must be in the order of O(log n).I...

2019-06-10 18:55:08 164

原创 【Leetcode】033. Search in Rotated Sorted Array

问题描述Suppose an array sorted in ascending order is rotated at some pivot unknown to you beforehand.(i.e., [0,1,2,4,5,6,7] might become [4,5,6,7,0,1,2]).You are given a target value to search. If f...

2019-06-09 10:37:34 111

原创 【Leetcode】031Next Permutation

问题描述Implement next permutation, which rearranges numbers into the lexicographically next greater permutation of numbers.If such arrangement is not possible, it must rearrange it as the lowest poss...

2019-06-09 00:22:36 146

原创 【Leetcode】027. Remove Element

问题描述Given a sorted array nums, remove the duplicates in-place such that each element appear only once and return the new length.Do not allocate extra space for another array, you must do this by m...

2019-06-08 15:50:17 116

原创 【Leetcode】26. Remove Duplicates from Sorted Array

题目描述Given a sorted array nums, remove the duplicates in-place such that each element appear only once and return the new length.Do not allocate extra space for another array, you must do this by m...

2019-06-07 00:44:20 128

原创 【图像分割论文阅读】Efficient ConvNet for Real-time Semantic Segmentation

文章由西班牙阿尔拉卡大学电子系Eduardo Romera等人完成。发表在2017 IEEE Intelligent Vehicles Symposium (IV).论文地址:Efficient ConvNet for Real-time Semantic Segmentation背景自动驾驶是极具挑战性的任务,需要在感知任务中采用复杂的解决方案,如识别道路、交通灯、车辆行人等。但是...

2019-06-06 14:52:39 1447

原创 【Leetcode】18. 4Sum

问题描述Given an array nums of n integers and an integer target, are there elements a, b, c, and d in nums such that a + b + c + d = target? Find all unique quadruplets in the array which gives the sum...

2019-06-06 00:06:03 142

原创 【图像分割论文阅读】LinkNet: Exploiting Encoder Representations for Efficient Semantic Segmentation

文章由美国普渡大学Abhishek Chaurasia、Eugenio Culurciello共同完成。发表于2017 IEEE Visual Communications and Image Processing (VCIP),相较之前论文出处,收录文章的会议声名不显。论文地址:LinkNet: Exploiting Encoder Representations for Efficie...

2019-06-05 11:12:21 1137 1

原创 【Leetcode】016. 3Sum Closest

问题描述Given an array nums of n integers and an integer target, find three integers in nums such that the sum is closest to target. Return the sum of the three integers. You may assume that each input...

2019-06-04 21:27:50 144

原创 【图像分割论文阅读】The One Hundred Layers Tiramisu: Fully Convolutional DenseNets for Semantic Segmentation

本文出自加拿大蒙特利尔学习算法研究院、蒙特尔理工学院、蒙特利尔伊玛吉亚公司、巴塞罗那计算机视觉中心联合出品。注意到Bengio也在其中。文章最终发表于CVPR2017.论文地址:The One Hundred Layers Tiramisu: Fully Convolutional DenseNets for Semantic Segmentation背景从某种意义上来说,本文的结构...

2019-06-04 19:07:50 939

原创 【Leetcode】011. Container With Most Water

问题描述Given n non-negative integers a1, a2, …, an , where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endpoints of line i is at (i, ai) and (i, 0). Find...

2019-06-03 23:27:07 145

原创 【日记】复旦大学陈果公开课听后感

陈果,复旦大学社会科学基础部教师。2010年走红网络,但是我好像上个月某个晚上巧合之下才看到。视频长1h42m,前前后后看了十多天。公开课地址2019-5-23人是在思考自己的过程,而不是思考他人的过程中,产生了智慧。人也是在自我批判而不是批判他人的过程中展示了你的勇气。孤独者往往是极其有趣,极其丰富的人。这是一种自我消遣方式。老夫老妻相处时间长了,就像空气一样。孤独者的快乐...

2019-06-03 17:50:07 1560

原创 【图像分割论文阅读】MNC:Instance-aware Semantic Segmentation via Multi-task Network Cascades

本文出自微软研究院,由清华教授代季峰、何凯明、旷视孙剑三位前辈合力完成。收录于CVPR2016.论文地址:MNC:Instance-aware Semantic Segmentation via Multi-task Network Cascades背景自从FCN提出后综合深度学习特征、大规模注解以及基于图像模型的高级推理,语义分割任务发展迅速。尽管如此,精确快速的实例级语义分割任务...

2019-06-03 10:31:06 713

原创 【Leetcode】015ThreeSum

问题描述Given an array nums of n integers, are there elements a, b, c in nums such that a + b + c = 0? Find all unique triplets in the array which gives the sum of zero.注意:The solution set must not c...

2019-06-02 16:23:56 146

原创 【Leetcode】001TwoSum

问题描述:Given an array of integers, return indices of the two numbers such that they add up to a specific target.You may assume that each input would have exactly one solution, and you may not use th...

2019-06-02 15:58:08 198

原创 【图像分割论文阅读】DeepLabV3+:Encoder-Decoder with Atrous Separable Convolution for SemanticImageSegmentation

本文出自谷歌Liang-Chieh Chen团队,收录于CVPR2018论文地址Encoder-Decoder with Atrous Separable Convolution for Semantic Image Segmentation背景空间金字塔池化SPP以及编解码器Encoder-decoder结构常被用于语义分割任务中。前者以不同比率、不同大小的感受野的卷积池化操作在多尺...

2019-05-31 17:17:45 1916

原创 【图像分割论文阅读】DenseASPP for Semantic Segmentation in Street Scenes

本文由谷歌DeepMotion团队发布,发表于CVPR2018.论文地址:DenseASPP for Semantic Segmentation in Street Scenes背景在自动驾驶领域,语义图像分割是基本的街道场景理解任务,它要求给高分辨率图像分每一个像素点进行分类.由于自动驾驶领域中场景中的目标尺度变化非常大.要求对高层次的特征在多尺度上正确编码.ASPP在获得更大感受...

2019-05-30 14:00:04 1551 1

原创 【图像分割论文阅读】RefineNet: Multi-Path Refinement Networks for High-Resolution Semantic Segmentation

本文由澳大利亚阿德莱德大学、澳大利亚机器人视觉中心联合完成,收录于CVPR2017.论文地址:RefineNet: Multi-Path Refinement Networks for High-Resolution Semantic Segmentation背景在图像理解中语义分割至关重要。但是成功应用于图像分割、目标检测领域的方法由于频繁的空间池化以及带步长的卷积过程导致最后的输...

2019-05-29 13:21:40 2829 3

原创 【图像分割论文阅读】ICNet for Real-Time Semantic Segmentation on High-Resolution Images

文章由香港中文大学、腾讯优图实验室、SenseTime研究院联合完成,发表于2018ECCV论文地址:ICNet for Real-Time Semantic Segmentation on High-Resolution Images背景这篇文章聚焦于具有挑战性的实时图像分割任务。实际的应用中如何减少像素级的标签预测时的大量冗余计算仍然十分困难的。作者提出一种Image casca...

2019-05-28 16:20:39 1179

原创 【图像分割论文阅读】PSPNet:Pyramid Scene Parsing Network

文章来自香港中文大学以及SenseTime集团有限公司.背景场景分割任务是典型的图像分割任务,但是由于场景的多样性以及不受限制的词汇使得场景分割任务仍是一个巨大挑战.当下的SOTA方法是基于FCN的,但是不同的场景以及不受限制的词汇使得正确的分割仍存在许多问题.如下图中第一行,错将红色箭头所指的船舶分类为汽车.一方面是因为两者比较相似,但究其原因在于,当下基于FCN模型的分割方法,缺乏...

2019-05-27 19:08:04 530

空空如也

空空如也

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

TA关注的人

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