数学计算
文章平均质量分 75
sunnyrainab
提供的代码希望能帮助到大家,用于有意义的地方
展开
-
判断一点是否在矩形中,已知矩形的顶点坐标
#include #include #include #include "Point.h"using namespace std;#pragma onceclass eleRect{public: eleRect(vector & rect, int index = 0); ~eleRect(void); bool if_in_quadrilat(CPoint po原创 2014-02-18 10:59:42 · 1358 阅读 · 0 评论 -
求两直线交点
crossPoint.h#include #include #include #include "cxcore.h" #include #include using namespace std;#pragma oncetypedef struct _Line { CvPoint p1,p2; double a,b,c;原创 2014-02-18 10:55:19 · 993 阅读 · 0 评论 -
已知两点获取单位向量 和 单位垂直向量
根据两点获取单位向量 和 垂直单位向量/*************************************************************************函数名: getUnitVector**函数作用: 根据两点获取单位向量**函数参数:*CvPoint pointO - 起点*CvPoint pointA - 终原创 2014-01-26 11:43:05 · 7370 阅读 · 1 评论 -
获取两点之间的距离
/************************************************************************ *函数名: getDistance * *函数作用: 获取两点之间的距离 * *函数参数: *CvPoint2D32f pointO - 起点 *CvPoint2D32f pointA - 终点 * *函数原创 2014-02-14 11:59:00 · 8923 阅读 · 0 评论 -
已知2个坐标点,求从 0------->x 逆时针需旋转多少角度到该位置
/************************************************************************ *函数名: getAngle * *函数作用: 已知2个坐标点,求从 0------->x 逆时针需旋转多少角度到该位置 * * | * |原创 2014-01-26 10:55:03 · 1095 阅读 · 0 评论