码迷,mamicode.com
首页 >  
搜索关键字:image processing    ( 50063个结果
POJ - 1111 Image Perimeters
题意:求'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
UVA Quadtrees
题目如下; 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
freemarker报错之二
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
利用matlab提取并分割RGB图像中的某一个已知像素值的图像
已知一副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
使用Android-smart-image-view加载网络图片
界面效果 应用的权限   布局文件 <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
freemarker报错之九
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
GDI+中发生一般性错误之文件被占用
有多种原因可能导致这个异常出现,比如创建文件的权限不足、文件被占用等。这里提供一个使用Stream读取图片避免文件被占用的方法。 public Image GetImageFromStream(string fileName) { Image img...
分类:其他好文   时间:2014-06-02 21:38:34    阅读次数:280
freemarker报错之七
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
1、Android项目框架搭建 (分析需求、整理资料)
闲来无事、想搭个框架试试 分析一般应用 将资料整理整理 粗略统计 需要以下资料 android-pulltorefresh SlidingMenu AndroidWheel Android Wheel Android-Universal-Image-Loade android-async-http...
分类:移动开发   时间:2014-06-01 10:00:00    阅读次数:330
[翻译] About Core Image
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
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!