-
MedFDTD
计算电磁波辐射的FDTD程序源码,基于C++编写,支持MUR和PML边界条件,能计算SAR及天线辐射方向图(FDTD source code based on C++.Various absorbing boundary, include PEC, Mur, PML Calculate Specific Absorption Rate (SAR) Antenna radiation simulation, calculate radiation power.)
- 2012-05-27 14:10:16下载
- 积分:1
-
多边形填充作业
多边形填充作业.rar(filled polygon operations. Rar)
- 2020-10-26 19:20:00下载
- 积分:1
-
gaues_
高斯计算程序,高斯计算程序,高斯计算程序,高斯计算程序,高斯计算程序,高斯计算程序,(Gaussian calculation program, Gaussian calculation program, Gaussian calculation program, Gaussian calculation program, Gaussian calculation program, Gaussian calculation program,)
- 2013-04-12 09:47:28下载
- 积分:1
-
tiaoshi1
计算机图像处理,MFC实现图像的直方图显示、直方图的均衡化,以及中值滤波等功能(Computer image processing, MFC histogram of image display, histogram equalization and median filter and other functions)
- 2010-10-19 13:10:31下载
- 积分:1
-
polygon
一个计算多边形面积和周长的程序, 同时可以把多边形显示出来, 直观展现多边形形状.(A polygon area and perimeter calculation procedures, the polygons can be displayed simultaneously, intuitive show polygonal shape.)
- 2020-06-28 18:20:01下载
- 积分:1
-
StereoVision-master
双目相机的三维重建程序,包含两个相机的标定,极线校正,图像匹配,三维重建(Binocular camera reconstruction program, including calibration of the two cameras, pole line correction, image matching, 3D reconstruction)
- 2021-04-25 22:48:45下载
- 积分:1
-
demo
对BMP文件进行图像处理,包括:边缘检测、频域变换、几何变换、图像变换校正、灰度变换、图像编码、平滑和匹配(BMP files for image processing, comprising: an edge detection, a frequency domain transformation, geometric transformation, image transformation correction gradation conversion, image coding, and matching the smooth)
- 2014-01-12 10:17:03下载
- 积分:1
-
chenggongchengxu
rgb to HSV,很有用,调试成功,可以应用(rgb to HSV,#include "stdafx.h"
#include <iostream.h>
void main(float R, float G, float B, float& H, float& S, float&V)
{
// r,g,b values are from 0 to 1
// h = [0,360], s = [0,1], v = [0,1]
// if s == 0, then h =-1 (undefined)
float min, max, delta,tmp
tmp = R>G?G:R
min = tmp>B?B:tmp
tmp = R>G?R:G
max = tmp>B?tmp:B
V = max // v
delta = max- min
if( max != 0 )
S = delta/max // s
else
{
// r = g = b = 0 // s = 0, v is undefined
S = 0
H = 0
return
}
if (delta == 0){
H = 0
return
}
else if(R == max){
if (G >= B)
H = (G- B)/delta // between yellow & magenta
else
H = (G- B)/delta+ 6
}
else if( G == max )
H = 2+ ( B- R )/delta // between cyan & yellow
else if (B == ma)
- 2011-12-02 10:09:24下载
- 积分:1
-
sar
sar图像的基于R-D模型的几何纠正,主要是利用RD模型的数学公式进行相关的几何纠正(Geometric rectification based on RD model of SAR)
- 2020-06-28 18:40:02下载
- 积分:1
-
Retinex
本文实现了Retinex算法,支持对图像的去雾灯操作,是一种图像增强的方法。(this paper present a new image strength method-Retinex impliment by opencv)
- 2012-03-13 11:30:39下载
- 积分:1