摘要: 主要贡献·:为全连接CRF实现的一个高效近似推断随机算法,其成对边势被一组线性高斯核所定义。 目标:将图像中的每个像素按照预设的分类目录来贴标签,同时对多目标类进行识别和分割。一种比较常见的方法是最大后验估计。CRF势中包含了平滑项,其可以让相邻像... 阅读全文
posted @ 2018-09-11 10:54 kkkkkksssss 阅读(666) 评论(0) 推荐(0) 编辑
摘要: 一般来说,CNNs中最大池化层的存在会使得分割的输出变得粗糙,CNNs亦缺少使相似像素被分配相同标签的约束。CRF的存在就可以细化上述的粗糙输出,从而产生明晰的边界,实现精细分割。 利用CRF主要有两种方式,一种是作为与CNN分离的后处理,本文采用的是第... 阅读全文
posted @ 2018-09-06 22:06 kkkkkksssss 阅读(848) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-09-03 19:53 kkkkkksssss 阅读(215) 评论(0) 推荐(0) 编辑
摘要: class Solution: def toGoatLatin(self, S): """ :type S: str :rtype: str """ sList = S.split() ... 阅读全文
posted @ 2018-05-05 15:33 kkkkkksssss 阅读(99) 评论(0) 推荐(0) 编辑
摘要: 1.个人所做代码class Solution: def generate(self, numRows): """ :type numRows: int :rtype: List[List[int]] """... 阅读全文
posted @ 2018-05-04 20:44 kkkkkksssss 阅读(112) 评论(0) 推荐(0) 编辑
摘要: class Solution: def isAllIn(self, word, strs): flag = True for s in word: if s not in strs: ... 阅读全文
posted @ 2018-05-04 11:29 kkkkkksssss 阅读(115) 评论(0) 推荐(0) 编辑
摘要: class Solution: def uniqueMorseRepresentations(self, words): """ :type words: List[str] :rtype: int """... 阅读全文
posted @ 2018-05-04 09:21 kkkkkksssss 阅读(119) 评论(0) 推荐(0) 编辑
摘要: class Solution: def findComplement(self, num): """ :type num: int :rtype: int """ binaryX = bin(... 阅读全文
posted @ 2018-05-03 22:21 kkkkkksssss 阅读(95) 评论(0) 推荐(0) 编辑
摘要: class Solution: def hammingDistance(self, x, y): """ :type x: int :type y: int :rtype: int """ ... 阅读全文
posted @ 2018-05-03 21:34 kkkkkksssss 阅读(105) 评论(0) 推荐(0) 编辑
摘要: class Solution: def judgeCircle(self, moves): """ :type moves: str :rtype: bool """ count_R = 0 ... 阅读全文
posted @ 2018-05-03 20:23 kkkkkksssss 阅读(90) 评论(0) 推荐(0) 编辑