上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 30 下一页
摘要: 图像滤波 均值滤波 中值滤波 高斯滤波 http://www.cnblogs.com/libing64/archive/2011/12/14/2878737.html http://blog.csdn.net/augusdi/article/details/20041643 http://blog. 阅读全文
posted @ 2016-08-08 10:32 Rosanne 阅读(876) 评论(0) 推荐(0) 编辑
摘要: 统计学习三要素:模型、策略、算法 模型分为概率模型(由条件概率表示的模型)和非概率模型(决策函数) 策略包括1、损失函数和风险函数;2、经验风险最小化与结构风险最小化 算法:根据相应的策略求解最优解,即求解最优化问题。 生成模型与判别模型 分类、回归、标注问题 K-近邻算法(KNN) 算法原理 优点 阅读全文
posted @ 2016-08-08 07:34 Rosanne 阅读(267) 评论(0) 推荐(0) 编辑
摘要: 本文介绍如何安装医学图像处理软件fsl。 安装环境:Win8和Ubuntu 14.04 LTS(双系统和虚拟机皆可) 1. 安装ubuntu 14.04 LTS 2. 打开终端,设置ip代理:export http_proxy=http://ip号:端口号(可百度ip代理获得) 3. 打开链接:ht 阅读全文
posted @ 2016-01-06 14:38 Rosanne 阅读(4983) 评论(2) 推荐(1) 编辑
该文被密码保护。 阅读全文
posted @ 2016-01-06 12:27 Rosanne 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 分析:求最长重复子序列,即说明要找到一个至少出现两次的最长的子序列。假设某个子序列第二次出现和第一次出现的位置相差i,则i的值为1,2,、、、,str.size()-1,代码如下所示:string longestRepeatSubstring(const string&str){ int n... 阅读全文
posted @ 2015-10-14 11:03 Rosanne 阅读(322) 评论(0) 推荐(0) 编辑
摘要: Description:Given an array of non-negative integers, you are initially positioned at the first index of the array.Each element in the array represents... 阅读全文
posted @ 2015-09-06 09:04 Rosanne 阅读(157) 评论(0) 推荐(0) 编辑
摘要: Description:Follow up for N-Queens problem.Now, instead outputting board configurations, return the total number of distinct solutions.Code:#define NU... 阅读全文
posted @ 2015-09-06 08:35 Rosanne 阅读(137) 评论(0) 推荐(0) 编辑
摘要: Description:Given an integern, return all distinct solutions to then-queens puzzle.Each solution contains a distinct board configuration of then-queen... 阅读全文
posted @ 2015-09-05 16:58 Rosanne 阅读(163) 评论(0) 推荐(0) 编辑
摘要: Description:Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeatin... 阅读全文
posted @ 2015-09-02 16:33 Rosanne 阅读(142) 评论(0) 推荐(0) 编辑
摘要: Description:Given a stringS, find the longest palindromic substring inS. You may assume that the maximum length ofSis 1000, and there exists one uniqu... 阅读全文
posted @ 2015-09-02 15:38 Rosanne 阅读(139) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 30 下一页