//时间:2015年6月21日
//功能:用霍夫变换检测直线和圆
//函数:1、hough变换 直线检测
// CvSeq* cvHoughLines2( CvArr* image , void* line_storage, int mehtod, double rho,
// double theta, int threshold, double param1 =0, double param2 =0);
/*
参数说明:
CvArr* image 表示输入单通道图像,内容可随函数改变
void* line_storage 表示检测到的线段存储仓
int mehtod Hough变换变量 3种:CV_HOUGH_STANDARD 传统;CV_HOUGH_PROBAILISTIC 概率;CV_HOUGH_MULTI_SCALE 传统变换的多尺度变换
double rho 与像素相关单位的距离精度
double theta 弧度测量的角度精度
int threshold 阈值参数,若相应累计值大于阈值,则返回改线段
*/
//2、 创建内存存储空间
// CvMemStorage *storage=cvCreateMemStorage(int block_size = 0);
//3、圆检测
// CvSeq *cvHoughCircles(CvArr *image,void *circle_storage,int method,double dp,
//
//功能:用霍夫变换检测直线和圆
//函数:1、hough变换 直线检测
// CvSeq* cvHoughLines2( CvArr* image , void* line_storage, int mehtod, double rho,
// double theta, int threshold, double param1 =0, double param2 =0);
/*
参数说明:
CvArr* image 表示输入单通道图像,内容可随函数改变
void* line_storage 表示检测到的线段存储仓
int mehtod Hough变换变量 3种:CV_HOUGH_STANDARD 传统;CV_HOUGH_PROBAILISTIC 概率;CV_HOUGH_MULTI_SCALE 传统变换的多尺度变换
double rho 与像素相关单位的距离精度
double theta 弧度测量的角度精度
int threshold 阈值参数,若相应累计值大于阈值,则返回改线段
*/
//2、 创建内存存储空间
// CvMemStorage *storage=cvCreateMemStorage(int block_size = 0);
//3、圆检测
// CvSeq *cvHoughCircles(CvArr *image,void *circle_storage,int method,double dp,
//