题意:求'X'围成的周长
思路:按理说每增加一个就是周长加4,但是要减去重复的地方,这里我是用BFS做的,如果是BFS的模板思路的话是不行的,应该要先取出再标记
#include
#include
#include
#include
#include
using namespace std;
const int MAXN = 30;
struct node {
int x,y;
...
分类:
其他好文 时间:
2014-06-05 06:23:39
阅读次数:
221
题目如下;
Quadtrees
A quadtree is a representation format used to encode images. The fundamental ideabehind the quadtree is that any image can be split into four quadrants. Each...
分类:
其他好文 时间:
2014-06-05 04:20:06
阅读次数:
226
1、错误描述
五月 27, 2014 12:07:05 上午 freemarker.log.JDK14LoggerFactory$JDK14Logger error
严重: Template processing error: "Can't convert the date to string, because it is not known which parts of the date va...
分类:
其他好文 时间:
2014-06-04 22:00:07
阅读次数:
280
已知一副RGB图像中的的像素值,利用matlab将其分割出来并以二进制图像形式显示:
%extract.m
clear all;
I=imread('new_original.png');
figure,imshow(I),title('Original Image');
bw=im2bw(I,0.3);
%figure,imshow(bw),title('Gray Image');
rgb=[...
分类:
其他好文 时间:
2014-06-03 02:46:26
阅读次数:
989
界面效果
应用的权限
布局文件
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
andr...
分类:
移动开发 时间:
2014-06-03 00:45:02
阅读次数:
303
1、错误描述
五月 30, 2014 11:52:04 下午 freemarker.log.JDK14LoggerFactory$JDK14Logger error
严重: Template processing error: "Can't convert the date to string, because it is not known which parts of the date va...
分类:
其他好文 时间:
2014-06-02 22:33:40
阅读次数:
332
有多种原因可能导致这个异常出现,比如创建文件的权限不足、文件被占用等。这里提供一个使用Stream读取图片避免文件被占用的方法。 public Image
GetImageFromStream(string fileName) { Image img...
分类:
其他好文 时间:
2014-06-02 21:38:34
阅读次数:
280
1、错误描述
五月 30, 2014 11:33:57 下午 freemarker.log.JDK14LoggerFactory$JDK14Logger error
严重: Template processing error: "Expected hash. flag evaluated instead to freemarker.template.TemplateBooleanModel$2...
分类:
其他好文 时间:
2014-06-01 11:21:47
阅读次数:
401
闲来无事、想搭个框架试试
分析一般应用 将资料整理整理
粗略统计 需要以下资料
android-pulltorefresh SlidingMenu AndroidWheel Android Wheel
Android-Universal-Image-Loade android-async-http...
分类:
移动开发 时间:
2014-06-01 10:00:00
阅读次数:
330
About Core ImageCore Image is an image
processing and analysis technology designed to provide near real-time processing
forstill and video images. It ...
分类:
其他好文 时间:
2014-05-31 18:22:41
阅读次数:
289