<?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>
没有合适的资源?快使用搜索试试~ 我知道了~
C# opencvsharp图像滤波演示代码.7z
共34个文件
dll:11个
cs:6个
xml:5个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
5星 · 超过95%的资源 2 下载量 179 浏览量
2024-06-04
16:00:53
上传
评论
收藏 42.16MB 7Z 举报
温馨提示
【测试环境】 vs2019 opencvsharp4.8.0 net framework4.7.2 博客地址:blog.csdn.net/FL1623863129/article/details/139445109 下载后用vs2019打开选x64 debug即可直接运行出结果。如有遇到报错可以私信博主
资源推荐
资源详情
资源评论
收起资源包目录
opencvsharp图像滤波演示代码.7z (34个子文件)
FIRC
FIRC.csproj 6KB
Form1.Designer.cs 8KB
FIRC.csproj.user 231B
App.config 184B
Form1.cs 4KB
FIRC.sln 1KB
bin
x64
Release
Debug
OpenCvSharp.Extensions.xml 7KB
test.jpg 94KB
System.Drawing.Common.dll 52KB
dll
x64
OpenCvSharpExtern.dll 57.96MB
opencv_videoio_ffmpeg480_64.dll 25.13MB
x86
opencv_videoio_ffmpeg480.dll 22.3MB
OpenCvSharpExtern.dll 39.72MB
OpenCvSharp.dll 919KB
FIRC.exe 12KB
System.Runtime.CompilerServices.Unsafe.xml 20KB
System.Memory.xml 14KB
OpenCvSharp.xml 1.91MB
System.Memory.dll 138KB
System.Runtime.CompilerServices.Unsafe.dll 18KB
System.Drawing.Common.xml 38KB
OpenCvSharp.Extensions.dll 20KB
FIRC.exe.config 551B
FIRC.pdb 34KB
System.Buffers.dll 20KB
System.Numerics.Vectors.dll 113KB
Properties
Resources.Designer.cs 3KB
Settings.Designer.cs 1KB
Settings.settings 249B
AssemblyInfo.cs 1KB
Resources.resx 5KB
Program.cs 516B
images
test.jpg 44KB
Form1.resx 6KB
共 34 条
- 1
资源评论
- m0_377265502024-10-29资源很好用,有较大的参考价值,资源不错,支持一下。
- costa102024-07-19超级好的资源,很值得参考学习,对我启发很大,支持!
码农张三疯
- 粉丝: 1w+
- 资源: 1万+
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功