星辰视觉.zip
大小:62.95MB
价格:21积分
下载量:0
评分:
5.0
上传者:2503_90096836
更新日期:2025-09-22

opencv与C#联合编译实现视觉检测功能

资源文件列表(大概)

文件名
大小
Debug/
-
Debug/dll/
-
Debug/dll/x64/
-
Debug/dll/x64/OpenCvSharpExtern.dll
58.89MB
Debug/dll/x64/opencv_videoio_ffmpeg4100_64.dll
25.17MB
Debug/dll/x86/
-
Debug/dll/x86/OpenCvSharpExtern.dll
40.17MB
Debug/dll/x86/opencv_videoio_ffmpeg4100.dll
22.34MB
Debug/MvCameraControl.Net.dll
173.5KB
Debug/OpenCVLearn2.exe
17.5KB
Debug/OpenCVLearn2.exe.config
563B
Debug/OpenCVLearn2.pdb
53.5KB
Debug/OpenCvSharp.dll
930KB
Debug/OpenCvSharp.Extensions.dll
20KB
Debug/OpenCvSharp.Extensions.xml
6.61KB
Debug/OpenCvSharp.WpfExtensions.dll
14KB
Debug/OpenCvSharp.WpfExtensions.xml
7.1KB
Debug/OpenCvSharp.xml
1.9MB
Debug/SYREdit.dll
14KB
Debug/SYREdit.pdb
31.5KB
Debug/SYRVision.dll
5.35MB
Debug/SYRVision.dll.config
453B
Debug/SYRVision.pdb
1.42MB
Debug/SYRVisionBase.dll
38.5KB
Debug/SYRVisionBase.dll.config
453B
Debug/SYRVisionBase.pdb
171.5KB
Debug/SYRVisionDisplay.dll
385.5KB
Debug/SYRVisionDisplay.dll.config
453B
Debug/SYRVisionDisplay.pdb
59.5KB
Debug/System.Buffers.dll
20.37KB
Debug/System.Buffers.xml
3.4KB
Debug/System.Drawing.Common.dll
48.66KB
Debug/System.Drawing.Common.pdb
11.38KB
Debug/System.Drawing.Common.xml
1.06MB
Debug/System.Memory.dll
138.91KB
Debug/System.Memory.xml
13.62KB
Debug/System.Numerics.Vectors.dll
113.14KB
Debug/System.Numerics.Vectors.xml
179.18KB
Debug/System.Runtime.CompilerServices.Unsafe.dll
17.6KB
Debug/System.Runtime.CompilerServices.Unsafe.xml
20.05KB
Debug/System.ValueTuple.dll
24.64KB
Debug/System.ValueTuple.xml
142B
Debug/星辰视觉.syr
81.76KB

资源内容介绍

1、主要采用opencv和C#联合编译的视觉软件,边学习边推荐。2、该软件目标是为了更广泛包容工业级视觉、控制等平台,方便新人学习。3、软件暂时实现功能:相机取像、图片读写、继承工具块、彩色转黑白、斑点工具、创建ROI、模板匹配、找线、找圆、拟合线、拟合圆、创建点、创建线、创建圆、创建线段、线线关系、点点关系、圆圆关系、点线关系、点圆关系、线圆关系、脚本编译等功能。
<?xml version="1.0"?><doc> <assembly> <name>OpenCvSharp</name> </assembly> <members> <member name="T:OpenCvSharp.Cv2"> <summary> OpenCV Functions of C++ I/F (cv::xxx) </summary> </member> <member name="F:OpenCvSharp.Cv2.PI"> <summary> The ratio of a circle's circumference to its diameter </summary> </member> <member name="F:OpenCvSharp.Cv2.LOG2"> <summary> </summary> </member> <member name="F:OpenCvSharp.Cv2.FILLED"> <summary> </summary> </member> <member name="M:OpenCvSharp.Cv2.ToPtr(OpenCvSharp.ICvPtrHolder)"> <summary> 引数がnullの時はIntPtr.Zeroに変換する </summary> <param name="obj"></param> <returns></returns> </member> <member name="M:OpenCvSharp.Cv2.Rodrigues(OpenCvSharp.InputArray,OpenCvSharp.OutputArray,OpenCvSharp.OutputArray)"> <summary> converts rotation vector to rotation matrix or vice versa using Rodrigues transformation </summary> <param name="src">Input rotation vector (3x1 or 1x3) or rotation matrix (3x3).</param> <param name="dst">Output rotation matrix (3x3) or rotation vector (3x1 or 1x3), respectively.</param> <param name="jacobian">Optional output Jacobian matrix, 3x9 or 9x3, which is a matrix of partial derivatives of the output array components with respect to the input array components.</param> </member> <member name="M:OpenCvSharp.Cv2.Rodrigues(System.Double[],System.Double[0:,0:]@,System.Double[0:,0:]@)"> <summary> converts rotation vector to rotation matrix using Rodrigues transformation </summary> <param name="vector">Input rotation vector (3x1).</param> <param name="matrix">Output rotation matrix (3x3).</param> <param name="jacobian">Optional output Jacobian matrix, 3x9, which is a matrix of partial derivatives of the output array components with respect to the input array components.</param> </member> <member name="M:OpenCvSharp.Cv2.Rodrigues(System.Double[0:,0:],System.Double[]@,System.Double[0:,0:]@)"> <summary> converts rotation matrix to rotation vector using Rodrigues transformation </summary> <param name="matrix">Input rotation matrix (3x3).</param> <param name="vector">Output rotation vector (3x1).</param> <param name="jacobian">Optional output Jacobian matrix, 3x9, which is a matrix of partial derivatives of the output array components with respect to the input array components.</param> </member> <member name="M:OpenCvSharp.Cv2.FindHomography(OpenCvSharp.InputArray,OpenCvSharp.InputArray,OpenCvSharp.HomographyMethods,System.Double,OpenCvSharp.OutputArray,System.Int32,System.Double)"> <summary> computes the best-fit perspective transformation mapping srcPoints to dstPoints. </summary> <param name="srcPoints">Coordinates of the points in the original plane, a matrix of the type CV_32FC2</param> <param name="dstPoints">Coordinates of the points in the target plane, a matrix of the type CV_32FC2</param> <param name="method">Method used to computed a homography matrix.</param> <param name="ransacReprojThreshold">Maximum allowed reprojection error to treat a point pair as an inlier (used in the RANSAC method only)</param> <param name="mask"> Optional output mask set by a robust method ( CV_RANSAC or CV_LMEDS ). Note that the input mask values are ignored.</param> <param name="maxIters">The maximum number of RANSAC iterations.</param> <param name="confidence">Confidence level, between 0 and 1.</param> <returns></returns> </member> <member name="M:OpenCvSharp.Cv2.FindHomography(System.Collections.Generic.IEnumerable{OpenCvSharp.Point2d},System.Collections.Generic.IEnumerable{OpenCvSharp.Point2d},OpenCvSharp.HomographyMethods,System.Double,OpenCvSharp.OutputArray,System.Int32,System.Double)"> <summary> computes the best-fit perspective transformation mapping srcPoints to dstPoints. </summary> <param name="srcPoints">Coordinates of the points in the original plane</param> <param name="dstPoints">Coordinates of the points in the target plane</param> <param name="method">Method used to computed a homography matrix.</param> <param name="ransacReprojThreshold">Maximum allowed reprojection error to treat a point pair as an inlier (used in the RANSAC method only)</param> <param name="mask"> Optional output mask set by a robust method ( CV_RANSAC or CV_LMEDS ). Note that the input mask values are ignored.</param> <param name="maxIters">The maximum number of RANSAC iterations.</param> <param name="confidence">Confidence level, between 0 and 1.</param> <returns></returns> </member> <member name="M:OpenCvSharp.Cv2.FindHomography(OpenCvSharp.InputArray,OpenCvSharp.InputArray,OpenCvSharp.OutputArray,OpenCvSharp.UsacParams)"> <summary> computes the best-fit perspective transformation mapping srcPoints to dstPoints. </summary> <param name="srcPoints">Coordinates of the points in the original plane, a matrix of the type CV_32FC2</param> <param name="dstPoints">Coordinates of the points in the target plane, a matrix of the type CV_32FC2</param> <param name="mask"> Optional output mask set by a robust method ( CV_RANSAC or CV_LMEDS ). Note that the input mask values are ignored.</param> <param name="params"></param> <returns></returns> <exception cref="T:System.ArgumentNullException"></exception> </member> <member name="M:OpenCvSharp.Cv2.RQDecomp3x3(OpenCvSharp.InputArray,OpenCvSharp.OutputArray,OpenCvSharp.OutputArray,OpenCvSharp.OutputArray,OpenCvSharp.OutputArray,OpenCvSharp.OutputArray)"> <summary> Computes RQ decomposition of 3x3 matrix </summary> <param name="src">3x3 input matrix.</param> <param name="mtxR">Output 3x3 upper-triangular matrix.</param> <param name="mtxQ"> Output 3x3 orthogonal matrix.</param> <param name="qx">Optional output 3x3 rotation matrix around x-axis.</param> <param name="qy">Optional output 3x3 rotation matrix around y-axis.</param> <param name="qz">Optional output 3x3 rotation matrix around z-axis.</param> <returns></returns> </member> <member name="M:OpenCvSharp.Cv2.RQDecomp3x3(System.Double[0:,0:],System.Double[0:,0:]@,System.Double[0:,0:]@)"> <summary> Computes RQ decomposition of 3x3 matrix </summary> <param name="src">3x3 input matrix.</param> <param name="mtxR">Output 3x3 upper-triangular matrix.</param> <param name="mtxQ"> Output 3x3 orthogonal matrix.</param> <returns></returns> </member> <member name="M:OpenCvSharp.Cv2.RQDecomp3x3(System.Double[0:,0:],System.Double[0:,0:]@,System.Double[0:,0:]@,System.Double[0:,0:]@,System.Double[0:,0:]@,System.Double[0:,0:]@)"> <summary> Computes RQ decomposition of 3x3 matrix </summary> <param name="src">3x3 input matrix.</param> <param name="mtxR">Output 3x3 upper-triangular matrix.</param> <param name="mtxQ"> Output 3x3 orthogonal matrix.</param>

用户评论 (0)

发表评论

captcha

相关资源

3D视觉软件源码行业深水炸弹工业自动化3d视觉测量与检测软件系统 适配3d线激光轮廓仪(基恩士,smartray,海康等),可改造适配其他种类3d相机 功能:1、成像接口、渲染、可视化;2、

3D视觉软件源码行业深水炸弹工业自动化3d视觉测量与检测软件系统。适配3d线激光轮廓仪(基恩士,smartray,海康等),可改造适配其他种类3d相机。功能:1、成像接口、渲染、可视化;2、流程;3、滤波;4、测高、平面度等测量工具;5、逻辑工具;6、通信工具;7、2d算法接口(注意无2d算子);8、代码生成的ui界面。特点:1、纯底层代码,自主研发,资深博士级水平;2、软件有架构,工具以算子形式封装,可灵活调用,奔标准软件写的;3、功能不丰富(视频里没演示到的工具不一定有内容),但是基础功能均有,可应对基础3d检测项目,如测高、断差、平面度、共面度、轮廓等功能,若有其他测量与检测需求,自行增加算法即可;4、软件工程,实话说有不少bug(例如匹配框需要左上至右下),请谅解,但是经过工业检测项目打磨,在不同客户现场稳定运行多年。工业3d项目落地降本与学习的不二之选。C++源码,需要有一定基础的开发人员方能上手。可改造成自己品牌的标准 专用软件

285.68KB28积分

NodePad++7.5.7安装包

NodePad++7.5.7安装包

4.16MB10积分

永磁同步电机,表贴式,参数在线辨识,扭矩观测,离线辨识等等模型#电机参数辨识

永磁同步电机,表贴式,参数在线辨识,扭矩观测,离线辨识等等模型#电机参数辨识

329.9KB45积分

lunwen复现新型扩展移相eps调制,双有源桥dab变器,MATLAB simulink仿真

lunwen复现新型扩展移相eps调制,双有源桥dab变器,MATLAB simulink仿真

474.98KB10积分