登录
首页 » C++ » vcPopencv

vcPopencv

于 2012-08-16 发布 文件大小:14242KB
0 148
下载积分: 1 下载次数: 176

代码说明:

  opencv vc++ 实现图像旋转 矫正已经倾斜的图像 得到倾斜角度(opencv mfc vc++ image skew you can get the skew angle )

文件列表:

ll
..\Debug
..\.....\ll.exe,143872,2012-08-08
..\.....\ll.ilk,1427220,2012-08-08
..\.....\ll.pdb,3689472,2012-08-08
..\ll
..\..\ChildFrm.cpp,882,2012-08-07
..\..\ChildFrm.h,483,2012-08-07
..\..\Debug
..\..\.....\BuildLog.htm,12430,2012-08-08
..\..\.....\ChildFrm.obj,27747,2012-08-08
..\..\.....\ll.exe.embed.manifest,1196,2012-08-08
..\..\.....\ll.exe.embed.manifest.res,1260,2012-08-08
..\..\.....\ll.exe.intermediate.manifest,1120,2012-08-08
..\..\.....\ll.obj,37059,2012-08-08
..\..\.....\ll.pch,25034752,2012-08-08
..\..\.....\ll.res,28716,2012-08-08
..\..\.....\llDoc.obj,21384,2012-08-08
..\..\.....\llView.obj,29896,2012-08-08
..\..\.....\MainFrm.obj,34294,2012-08-08
..\..\.....\mt.dep,67,2012-08-08
..\..\.....\stdafx.obj,466018,2012-08-08
..\..\.....\vc90.idb,928768,2012-08-08
..\..\.....\vc90.pdb,2011136,2012-08-08
..\..\ll.aps,51928,2012-08-07
..\..\ll.cpp,3380,2012-08-07
..\..\ll.h,438,2012-08-07
..\..\ll.rc,11652,2012-08-07
..\..\ll.vcproj,5876,2012-08-07
..\..\ll.vcproj.PC-20120206PQTS.Administrator.user,1427,2012-08-13
..\..\llDoc.cpp,938,2012-08-07
..\..\llDoc.h,522,2012-08-07
..\..\llView.cpp,1661,2012-08-07
..\..\llView.h,924,2012-08-07
..\..\MainFrm.cpp,1808,2012-08-07
..\..\MainFrm.h,632,2012-08-07
..\..\ReadMe.txt,3614,2012-08-07
..\..\res

..\..\...\ll.rc2,358,2012-08-07


..\..\Resource.h,475,2012-08-07
..\..\stdafx.cpp,133,2012-08-07
..\..\stdafx.h,1796,2012-08-07
..\..\targetver.h,1030,2012-08-07
..\ll.ncb,17632256,2012-08-13
..\ll.sln,872,2012-08-07

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • TravelAgency
    旅行社问题,涉及到消费者,航班,旅店等的一些相关函数,作为微软的一些教学程序。(Travel Service, involving consumers, flights, hotels, etc. a number of related functions, as Microsoft' s some teaching programs.)
    2010-12-31 17:01:50下载
    积分:1
  • 原代码,自写,谢谢
    本文内容及源代码只能作为学习参考用,转载请注明本声明blog.csdn.net/t163ang。搞图形学的童鞋经常需要用斯坦福三维模型来做实验的,模型ply文件下载地址:http://www.cc.gatech.edu/projects/large_models/index.html 及 http://graphics.stanford.edu/data/ 因此需要将ply文件解析出来,并在opengl渲染,以下提供我的源代码:
    2022-03-02 00:16:55下载
    积分:1
  • 基于duilib的xml格式的界面程序
    这是个用duilib下xml做的界面程序,里面还有一些缺陷,没时间完善了,可以给初学者进行学习duilib使用,界面效果还是不错的。
    2023-08-13 04:50:12下载
    积分:1
  • lap_cpp
    线性分配算法的C++版本,在MATLAB调用mex命令编译后可以直接在MATLAB中运行,函数assianstment=lap(cost),cost为匹配的代价矩阵,assianstment为输出匹配矩阵(Linear assignment algorithm C++ version of the call in the MATLAB mex command can be compiled to run directly in the MATLAB function assianstment = lap (cost), cost for the match cost matrix, assianstment matrix for the output matching)
    2010-06-09 17:03:33下载
    积分:1
  • Mpu6050@MotoStep
    三轴加速度传感器 陀螺仪传感器 驱动 步进电机(MPU6050 driver stepmoto driver)
    2021-03-22 21:59:15下载
    积分:1
  • OScode
    操作系统实验的代码以及说明包括各种经典的问题(Operating system code, as well as experiments that include a variety of classic problem)
    2009-06-21 10:33:54下载
    积分:1
  • C#合成图片 组合文字及图像的实例
    C# 将多个文字图形图像组合成复合图形,一个组合文字及图像的实例。基于WPF技术实现,可作为一个C#学习WPF图像处理的简单范例。C# 将多个文字图形图像组合成复合图形:   DrawingGroup MyGroup = new DrawingGroup();   RadialGradientBrush MyRadialGradientBrush = new RadialGradientBrush();   MyRadialGradientBrush.Freeze();   FontStyle MyStyle = FontStyles.Normal;   FontWeight MyWeight = FontWeights.Medium;   MyWeight = FontWeights.Bold;   MyStyle = FontStyles.Italic;   string MyText = "Visual C++ 2017源码素材网实例精粹罗斌编著";   var MyFont = new FontFamily("宋体");   FormattedText MyFormattedText = new FormattedText(MyText,    System.Globalization.CultureInfo.GetCultureInfo(86),    FlowDirection.RightToLeft,    new Typeface(MyFont, MyStyle, MyWeight, FontStretches.Normal),    FontSize, MyRadialGradientBrush);   Pen MyPen = new Pen(Brushes.Black, 2);   MyPen.Freeze();   ……   更多源代码敬请下载本源码。运行截图如下图所示。
    2022-06-30 08:36:55下载
    积分:1
  • shiyan
    飞思卡尔单片机数据采集代码 ,可以实现数字信号和模拟信号的采集 (The Freescale MCU data acquisition code, can achieve the digital signal and analog signal acquisition)
    2012-10-27 20:05:38下载
    积分:1
  • bbtool19_src
    mpeg-2 的信息显示和解复用(mpeg-2 information indicating reconciliation reuse)
    2005-01-06 21:03:50下载
    积分:1
  • Simulation-of-dendritic-growth
    模拟枝晶生长,在统计学常用的一种算法,对随机理论有帮助。(Simulation of dendritic growth, the statistics used an algorithm, the stochastic theory.)
    2012-04-06 19:12:14下载
    积分:1
  • 696518资源总数
  • 106010会员总数
  • 4今日下载