在Android中使用OpenCV的第一个程序:原图、灰度图、Canny边缘检测、Hist 直方图计算、Sobel 边缘检测、SEPIA(色调变换)为每一个数组元素执行一个矩阵变换、ZOOM 放大镜、PIXELIZE 像素化、POSTERIZE 多色调分色印...
分类:
移动开发 时间:
2014-07-30 01:01:33
阅读次数:
1191
Given n non-negative integers representing the histogram's bar height where the width of each bar is 1, find the area of largest rectangle in the hist...
分类:
其他好文 时间:
2014-07-21 14:18:36
阅读次数:
235
查询oracle sql的执行计划时,一个很重要的视图--dba_hist_sql_plan...
分类:
数据库 时间:
2014-07-16 13:47:45
阅读次数:
464
If you use a dictionary in a for statement, it traverses the keys of the dictionary. For example, print_hist prints each key and the corresponding val...
分类:
其他好文 时间:
2014-07-15 23:43:56
阅读次数:
527
??
----手工创建oracle 快照
BEGIN
DBMS_WORKLOAD_REPOSITORY.CREATE_SNAPSHOT ();
END;
/
---删除快照
具体快照信息可以查看视图 DBA_HIST_SNAPSHOT
BEGIN
DBMS_WORKLOAD_REPOSITORY.DROP_SNAPSHOT_RANGE (low_snap_id => 22, ...
分类:
数据库 时间:
2014-07-14 18:44:31
阅读次数:
460
Given n non-negative integers representing the histogram's bar height where the width of each bar is 1, find the area of largest rectangle in the hist...
分类:
其他好文 时间:
2014-07-03 11:09:35
阅读次数:
185
函数
function hist = calcrgb2hist(picname)
pic1 = imread(picname);
pic1R = pic1(:,:,1);
pic1G = pic1(:,:,2);
pic1B = pic1(:,:,3);
% figure,imshow(pic1R) %显示灰度化后的图像,也是均衡化前的样品...
分类:
其他好文 时间:
2014-06-27 09:18:58
阅读次数:
557
AWR快照默认情况下,Oracle每隔一小时会自己主动产生一个快照,保存近期8天的快照。我们能够通过例如以下语句获得产生快照的时间间隔和保存的天数:SYS@orcl(lx15)>
select SNAP_INTERVAL,RETENTION from dba_hist_wr_control;SNAP...
分类:
数据库 时间:
2014-06-12 15:39:15
阅读次数:
239
AWR快照
默认情况下,Oracle每隔一小时会自动产生一个快照,保存最近8天的快照。
我们可以通过如下语句获得产生快照的时间间隔和保存的天数:
SYS@orcl(lx15)> select SNAP_INTERVAL,RETENTION from dba_hist_wr_control;
SNAP_INTERVAL ...
分类:
数据库 时间:
2014-05-25 06:24:48
阅读次数:
348