- 博客(47)
- 收藏
- 关注
原创 机械生产新方式
伺服冲压线和带伺服驱动的落料系统将改变冲压车间的未来。伺服冲压线的特点是最大的灵活性,高产率及换模时间短。冲压线上每台压力机的滑块运动曲线可以针对每个零件作单独调整,以适应成形工艺,模具和自动化。 新一代横杆式送料机械手,提供了7个运动自由度,在紧凑型设计和高产出率上表现出明显的优势。它为快速、可靠地输送单件和双件奠定了基础。每个压力机开档之间只需一付端拾器。横杆式送料机械手还执行打
2014-09-19 23:45:16
817
翻译 图像处理之点与轮廓关系
#include "cv.h"#include "highgui.h"using namespace cv;using namespace std;int main(int argc,char *argv[]){ Mat src; src=Mat::zeros(300,300,CV_8UC1); vector vert(6); vert[0]=Point(100,75); v
2014-08-23 23:59:41
1329
翻译 图像处理之模板匹配
/* Template matching methods */enum{ CV_TM_SQDIFF =0, CV_TM_SQDIFF_NORMED =1, CV_TM_CCORR =2, CV_TM_CCORR_NORMED =3, CV_TM_CCOEFF =4, CV_TM_CCOEFF_NORME
2014-08-22 19:21:20
2456
翻译 图像处理之直方图比较(匹配)
下面代码使用灰度图像而不是HSV空间图像,下面将对比与官方文档结果的不同#include "cv.h"#include "highgui.h"using namespace cv;using namespace std;int main(int argc,char *argv[]){ Mat temp,tempGray,halfTempGray,test1,test1Gray,t
2014-08-22 14:58:41
2007
翻译 图像处理之Hough应用
Use the OpenCV functionsHoughLines and HoughLinesP to detect lines in an image.
2014-08-21 09:49:21
633
翻译 图像处理之图像金字塔
• Usually we need to convert an image to a size different than its original. For this, there are two possible options:1. Upsize the image (zoom in) or2. Downsize it (zoom out).• Although there i
2014-08-20 11:15:57
911
翻译 图像算法
new_image.at(y,x)[c] =saturate_cast( alpha*( image.at(y,x)[c] ) + beta );
2014-08-19 15:15:15
463
原创 两幅图像的线性叠加
使用Opencv函数addWeighted#include "cv.h"#include "highgui.h"using namespace std;using namespace cv;int main(int argc,char *argv[]){ Mat src1,src2,dst; double alpha,beta,gamma=0,input; int c;
2014-08-19 14:57:27
1164
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人