一、算法
高斯模糊算法 详见:高斯模糊,基本思想就是利用高斯函数,将一个坐标点的所有邻域的加权平均值设置为这些点的颜色值。
中值滤波算法就更简单了:将一个坐标点的所有邻域的平均值设置为这些点的像素值。
二、算法的代码实现
高斯函数:
使用宏定义来替换:
#define PI 3.1415926
//高斯模糊函数
#define GAUSS_FUN(x, y) (exp(-(x*x)...
分类:
编程语言 时间:
2015-02-14 17:34:16
阅读次数:
270
int min_cut(int now)
{
int ret = INF;
for(int i = 0; i 1) {
int k, pre = 0;
memset(vis, 0, sizeof(vis));
memset(dis, 0, sizeof(dis...
分类:
其他好文 时间:
2015-02-14 17:36:06
阅读次数:
138
sql serveri不用游标,适合于循环DML (update delete insert)的场合实例...
分类:
数据库 时间:
2015-02-14 17:35:34
阅读次数:
175
以汽车之家为例子,抓取页面并进行解析
# -*- coding=utf-8 -*-
import urllib2
from BeautifulSoup import BeautifulSoup as bs3
import json
import codecs
#字符检测,用来检测其真实的编码格式
import chardet
#save content to file
def save_...
分类:
其他好文 时间:
2015-02-14 17:35:13
阅读次数:
178
uva 10603 Fill
There are three jugs with a volume of a, b and c liters. (a, b, and c are positive integers not greater than 200). The first and the second jug are initially empty, while the ...
分类:
其他好文 时间:
2015-02-14 17:33:02
阅读次数:
192
例程:
/******************************************************
*
* 文件名:例程
*
* 文件描述:例看二维数组,指针,二维数组指针
*
* 创建人:Jesse
*
* 版本号:
*
* 修改记录:
*
******************************************************/
#include
...
分类:
编程语言 时间:
2015-02-14 17:33:01
阅读次数:
221
尽管计算MD5有很多小工具,重装系统后还得去找,就自己用Python写了一个:
getMD5.py
import hashlib
import sys
if __name__ == '__main__':
if len(sys.argv)!= 2:
sys.exit('argv error!')
m = hashlib.md5()
n = 1024*...
分类:
编程语言 时间:
2015-02-14 17:35:30
阅读次数:
313
1. 开发模型
这里用最简洁的一个Ejb项目模型来简介Ejb的开发过程与调用原理。粗略的开发过程如下:
Ø 首先,新建Ejb项目,并部署到JBoss服务器(作为服务端)。
Ø 然后,新建普通Java项目作为客户端。(客户端的概念是相对的,它可以是任何类型的项目,包括可以是另一个Ejb项目)
Ø 最后,将Ejb项目中的接口打包为jar包,并添加到客户端,客户端即可...
分类:
其他好文 时间:
2015-02-14 17:34:19
阅读次数:
187
Anniversary party
Time Limit: 1000MS
Memory Limit: 65536K
Total Submissions: 4567
Accepted: 2594
Description
There is going to be a party to celebrate the 80-th Anniv...
分类:
其他好文 时间:
2015-02-14 17:34:09
阅读次数:
153
uva 10602 Editor Nottoobad
Company Macrohard has released it’s new version of editor Nottoobad, which can understand a few voice commands. Unfortunately, there are only two voice commands that ...
分类:
编程语言 时间:
2015-02-14 17:32:51
阅读次数:
276
Mac 10.10.2 Xcode6 代码自动补全插件安装...
分类:
系统相关 时间:
2015-02-14 17:31:51
阅读次数:
150
题意:超市有n个商品,每个商品有利润p和保质期d,每天卖一种商品问怎么卖才能使利润最大,求出最大利润。
思路:贪心,先按照商品利润从大到小排序,选出利润大的开始卖,卖的时间就在保质期d当天,若当天已经有商品在卖了,就从d往前推 看哪一天可以卖该商品。...
分类:
其他好文 时间:
2015-02-14 17:33:31
阅读次数:
195
1.题目描述:点击打开链接
2.解题思路:本题要求添加尽量少的括号,使得括号序列是一个正规序列。定义d(i,j)表示子串S[i...j]至少需要添加几个括号。根据题意,可知有两种转移方式:
(1)如果S形如(S‘)或[S'],则转移到d(S');
(2)如果S至少有两个字符,则可以分成AB,转移到d(A)+d(B);
边界是:S为空时,d(S)=0,S为单字符时,d(S)=1,。注意不...
分类:
其他好文 时间:
2015-02-14 17:33:09
阅读次数:
160
Android 判断app是否在前台还是在后台运行,直接看代码,可直接使用。
public static boolean isBackground(Context context) {
ActivityManager activityManager = (ActivityManager) context
.getSystemService(Context.ACTIVITY_SERVI...
分类:
移动开发 时间:
2015-02-14 17:31:29
阅读次数:
154
uva 10954 Add All
Yup!! The problem name reflects your task; just add a set of numbers. But you may feel yourselves condescended, to write a C/C++ program just to add a set of numbers. Such...
分类:
编程语言 时间:
2015-02-14 17:33:03
阅读次数:
154
Problem Description
Today is army day, but the servicemen are busy with the phalanx for the celebration of the 60th anniversary of the PRC.
A phalanx is a matrix of size n*n, each element is a charac...
分类:
其他好文 时间:
2015-02-14 17:31:21
阅读次数:
125
2014-2015
2014转眼划过,这是2014工作的最后两个小时,做个总结吧。
我发现的是不知道是心浮气躁还是工作的惯性导致的原因,我的写作能力有所下降,而且下降颇大。脑海中词汇枯竭,不愿意花费时间斟酌场景以及
表达。最近很少说话,我都觉得不知道怎么说话了。
2014取得的成就:
1.加入了一个有很大办公场所的公司,不再憋在一个老鼠洞里干活,除了薪水的提升,虽然不明显,这是最大的进步...
分类:
其他好文 时间:
2015-02-14 17:33:06
阅读次数:
446