个人收藏了很多香港大学、香港科技大学以及香港中文大学里专门搞图像研究一些博士的个人网站,一般会不定期的浏览他们的作品,最近在看杨庆雄的网点时,发现他又写了一篇双边滤波的文章,并且配有源代码,于是下载下来研读了一番。...
分类:
其他好文 时间:
2014-07-12 19:14:15
阅读次数:
338
Case-insensitive matching:https://blogs.oracle.com/xuemingshen/entry/case_insensitive_matching_in_java(?i) means: for ASCII case-insensitive matching:...
分类:
编程语言 时间:
2014-07-12 15:11:09
阅读次数:
158
个人收藏了很多香港大学、香港科技大学以及香港中文大学里专门搞图像研究一些博士的个人网站,一般会不定期的浏览他们的作品,最近在看杨庆雄的网点时,发现他又写了一篇双边滤波的文章,并且配有源代码,于是下载下来研读了一番。
分类:
其他好文 时间:
2014-07-12 14:45:00
阅读次数:
262
Implement wildcard pattern matching with support for '?' and '*'.'?' Matches any single character.'*' Matches any sequence of characters (including th...
分类:
其他好文 时间:
2014-07-11 19:36:48
阅读次数:
202
真机调试过程中弹出这个问题,网上找到的解决办法,记录一下。
。。。。
弄完这些步骤之后,上面多出一个 IOS disturbution。所以出现这个问题的原因应该是设置的证书没有刷新到本地所致。...
分类:
其他好文 时间:
2014-07-10 23:30:07
阅读次数:
245
Algorithm.( Augmenting Path Algorithm )
Input:
An X-Y bigraph G, a matching M in G,
and the set U of M-unsaturated vertices in X.
Idea:
Explore M-alternating paths form...
分类:
其他好文 时间:
2014-07-10 23:03:47
阅读次数:
211
Implement wildcard pattern matching with support for '?' and '*'.
'?' Matches any single character.
'*' Matches any sequence of characters (including the empty sequence).
The matching should cover t...
分类:
其他好文 时间:
2014-07-10 21:21:42
阅读次数:
255
仔细研究我们的之前Makefile发现,我们还有改进的地方,就是此处:
target_bin : main.o debug.o ipc.o timer.o tools.o
>---gcc -o target_bin main.o debug.o ipc.o timer.o tools.o
如果增加一个源文件xx.c的话,需要在两处或多处增加xx.o文件。我们可以使用变量来解决这个问题。之前说...
分类:
其他好文 时间:
2014-07-08 19:51:12
阅读次数:
213
Implement regular expression matching with support for '.' and '*'.
'.' Matches any single character.
'*' Matches zero or more of the preceding element.
The matching should cover the entire input st...
分类:
其他好文 时间:
2014-07-08 16:57:40
阅读次数:
193
1、Swift 无需写break,所以不会发生这种贯穿(fallthrough)的情况。
2、//用不到变量名,可用“_”替换
for _ in 1...power
{
answer *= base
}
3、case 可以匹配更多的类型模式,包括区间匹配(range matching),元组(tuple)和特定类型的描述。
可以这样用case
case 1...3:
natura...
分类:
其他好文 时间:
2014-07-06 00:52:44
阅读次数:
194