-
C++函数explodechannels节省3通道图像为3个分离的图像…
C++ function explodeChannels save 3 channel OpenCV image into 3 separated images in gray-scale where everyone represents one channel in scale-space.
Application using this function may be used to analyse color image in different scale-spaces by viewing separated channels
- 2023-06-29 20:50:02下载
- 积分:1
-
UI实现图片滤镜的效果
资源描述可以给图片添加滤镜效果,美化图片,使你的图片更加有看点,更加突出,分享一下,大家可以相互学习,适合学习,还有改进的余地,欢迎指正,修改
- 2023-02-22 16:25:05下载
- 积分:1
-
C++Builder得到图象红,蓝,绿三基色直方图,并将其显示出来,程序构思很巧妙。...
C++Builder得到图象红,蓝,绿三基色直方图,并将其显示出来,程序构思很巧妙。-C Image Builder to be red, blue, green, and three-color histogram, and to show up procedure is a clever idea.
- 2022-08-25 23:48:56下载
- 积分:1
-
B曲面的生成算法
B曲面的生成算法-B surface Algorithm
- 2022-02-05 18:35:27下载
- 积分:1
-
光线跟踪算法的一个实例,演示光源照亮小球不同角度
光线跟踪算法的一个实例,演示光源照亮小球不同角度-Ray-tracing algorithm an example to demonstrate the light source to illuminate the ball a different angle
- 2022-08-09 10:35:05下载
- 积分:1
-
图像处理入门者的一本好书!
图像处理入门者的一本好书!- A picture processing crossing the threshold good book!
- 2022-01-25 14:01:10下载
- 积分:1
-
opengl切削仿真
#include "stdafx.h"
#include
#include
#include
#include
void solidCylinder(GLdouble radius, GLdouble height, GLint slices, GLint stacks) //»Ò»¸öÔ²ÖùÌ壬ÓÃDiskÀ´¸ÇסÉÏϵ×Ãæ
{
GLUquadricObj* qobj = gluNewQuadric();
gluCylinder(qobj, radius, radius, height, slices, stacks); //slicesÀàËÆÓÚ¾¶È£¬stacksÀàËÆÓÚγ¶È
glScalef(-1.0, 1.0, -1.0);
- 2022-02-03 11:01:56下载
- 积分:1
-
基于SOM的突然分类源码,自编代码希望对大家有所帮助
基于SOM的突然分类源码,自编代码希望对大家有所帮助-SOM-based classification of a sudden source, self-compiled code that you want to help
- 2022-07-01 18:57:28下载
- 积分:1
-
recursive algorithm mapping Hilbert graphics, experimental report
递归Hilbert算法绘制Hilbert图形,有实验报告-recursive algorithm mapping Hilbert graphics, experimental report
- 2022-03-06 02:26:28下载
- 积分:1
-
图像的平移,旋转
平移(translation)变换是几何变换中最简单的一种。初始坐标为(x0,y0)的点经过平移(tx,ty)(以向
右,向下为正方向)后,坐标变为(x1,y1)。这两点之间的关系是x1=x0+tx ,y1=y0+ty。
下面给出 Translation 的源代码。算法的思想是先将所有区域填成白色,然后找平移后显示
区域的左上角点(x0,y0) 和右下角点(x1,y1) ,分几种情况进行处理。
- 2022-03-16 08:40:04下载
- 积分:1