核心函数:cvSmooth程序:代码:#include"cv.h"
#include"cxcore.h"
#include"highgui.h"
#include<iostream>
intsmooth(intargc,char**argv)
{
IplImage*src=cvLoadImage("e:\\picture\\123.bmp",0);
cvNamedWindow("src");
cvShowImage("src",src);
IplImage*dst1=cvCr..
分类:
其他好文 时间:
2014-08-14 21:08:39
阅读次数:
249
openGL线型和线宽以及线抗锯齿
一、 线宽
Opengl的线宽设置:glLineWidth(width); width为float类型值,在0~10.0,大于10以上按10来处理。
若开启线的反走样glEnable(GL_LINE_SMOOTH);,设置小数值才起作用,否则就四舍五入的处理整数了。
二、 线型
函数为glLineStipple(factor, Pattern[...
分类:
其他好文 时间:
2014-07-17 19:27:07
阅读次数:
675
smooth.spline2 <- function(formula, data, ...) {mat <- model.frame(formula, data)smooth.spline(mat[, 2], mat[, 1])}predictdf.smooth.spline <- function...
分类:
其他好文 时间:
2014-06-28 14:58:36
阅读次数:
351