码迷,mamicode.com
首页 >  
搜索关键字:base image    ( 63129个结果
EasyUI基础入门之Parser(解析器)
前言      JQuery EasyUI提供的组件包括功能强大的DataGrid,TreeGrid、面板、下拉组合等。用户可以组合使用这些组件,也可以单独使用其中一个。(使用的形式是以插件的方式提供的) EasyUI体系结构      EasyUI所有的插件主要分为六大部分。Base基础、Layout布局、Menu&a...
分类:其他好文   时间:2014-06-03 04:21:57    阅读次数:243
利用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
Andorid Binder进程间通信---Binder本地对象,实体对象,引用对象,代理对象的引用计数
本文参考《Android系统源代码情景分析》,作者罗升阳。 一、Binder库(libbinder)代码:        ~/Android/frameworks/base/libs/binder        ----BpBinder.cpp        ----Parcel.cpp        ----ProcessState.cpp        --...
分类:其他好文   时间:2014-06-02 23:59:15    阅读次数:444
1、Android项目框架搭建 (分析需求、整理资料)
闲来无事、想搭个框架试试 分析一般应用 将资料整理整理 粗略统计 需要以下资料 android-pulltorefresh SlidingMenu AndroidWheel Android Wheel Android-Universal-Image-Loade android-async-http...
分类:移动开发   时间:2014-06-01 10:00:00    阅读次数:330
Design Pattern Chain of Reponsibility 责任链模式
本程序实现一个责任链模式查询人名的资料。 开始都是查询第一个人,问其是否有某人的资料,如果有就返回结果,如果没有第一个人就会询问第二个人,第二个人的行为和第一个人的行为一致的,然后一致传递下去,直到找到答案,或者是最后没有资料,返回。 首先创建一个基类: //base class class Person { public: virtual void getInfo(string...
分类:其他好文   时间:2014-06-01 08:54:15    阅读次数:286
Andorid Binder进程间通信---Binder对象死亡通知机制
本文参考《Android系统源代码情景分析》,作者罗升阳。 一、Binder库(libbinder)代码:        ~/Android/frameworks/base/libs/binder        ----BpBinder.cpp        ----Parcel.cpp        ----ProcessState.cpp        --...
分类:其他好文   时间:2014-06-01 06:39:01    阅读次数:1479
Python 数据类型转换
函数 描述 int(x [,base ]) 将x转换为一个整数 long(x [,base ]) 将x转换为一个长整数 float(x ) 将x转换到一个浮点数 complex(real [,imag ]) 创建一个复数 str(x ) 将对象 x 转换为字符串 repr(x ) 将对...
分类:编程语言   时间:2014-05-31 20:55:06    阅读次数:441
C++ 实践总结
??对于一个应用程序而言,静态链接库可能被载入多次,而动态链接库仅仅会被载入一次。Gameloft面试之错误一Event:面试官说例如以下程序是能够链接通过的.class Base{Public:Base(void){this-> initialize();}virtual void initial...
分类:编程语言   时间:2014-05-31 20:07:51    阅读次数:400
[翻译] 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
迷上了代码!