CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - Hysteresis
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Search - Hysteresis - List
[
Documents
]
CANNY 算子
DL : 0
int trace (int i, int j, int low, IMAGE im,IMAGE mag, IMAGE ori) float gauss(float x, float sigma) float dGauss (float x, float sigma) float meanGauss (float x, float sigma) void hysteresis (int high, int low, IMAGE im, IMAGE mag, IMAGE oriim) void canny (float s, IMAGE im, IMAGE mag, IMAGE ori)
Update
: 2025-02-19
Size
: 3kb
Publisher
:
呼怀平
[
Windows Develop
]
reply_1_855734
DL : 0
// Canny算子 void Canny(LPBYTE pGray, SIZE sz, double sigma, double dRatLow, double dRatHigh, LPBYTE pResult) { //经过高斯滤波后的图像 LPBYTE pGaussSmooth pGaussSmooth = new unsigned char[sz.cx*sz.cy] //x方向导数的指针 int *pGradX pGradX = new int[sz.cx*sz.cy] //y方向 int *pGradY pGradY = new int[sz.cx*sz.cy] //梯度的幅度 int *pGradMag pGradMag = new int[sz.cx*sz.cy] //对原图高斯滤波 GaussianSmooth(sz,pGray,pGaussSmooth,sigma) //计算方向导数和梯度的幅度 Grad(sz,pGaussSmooth,pGradX,pGradY,pGradMag) //应用非最大抑制 NonmaxSuppress(pGradMag,pGradX,pGradY,sz,pResult) //应用Hysteresis,找到所有边界 Hysteresis(pGradMag,sz,dRatLow,dRatHigh,pResult) delete[] pGradX pGradX = NULL delete[] pGradY pGradY = NULL -//Canny operator void Canny (LPBYTE pGray. SIZE sz, double sigma, double dRatLow. double dRatHigh. LPBYTE pResult) (//after Gaussian filtering of images LPBYTE pGaussS mooth unsigned pGaussSmooth = new char [sz.cx* sz.cy]// x direction derivative indicators pGradX pGradX int* = new int [ sz.cx* sz.cy]// int* y direction pGradY pGradY = new int [sz.cx* sz.cy]// gradient magnitude int* pGradMag pGradMag = new int [sz.cx* sz.cy]// maximum Gaussian filter to GaussianSmo oth (sz, pGray, pGaussSmooth. sigma)// calculate derivative and the gradient range Grad (sz. pGaussSmooth, pGradX, pGradY. pGradMag)// non-application of the biggest inhibition NonmaxSuppress (pGradMa g, pGradX, pGradY, sz, pResult)// Application Hysteresis, find all border Hysteresis (pGradMag, sz, dRa
Update
: 2025-02-19
Size
: 53kb
Publisher
:
王学金
[
Special Effects
]
Cannyandlog
DL : 0
canny 算法 void CreatGauss(double sigma, double **pdKernel, int *pnWidowSize) void GaussianSmooth(SIZE sz, LPBYTE pGray, LPBYTE pResult, double sigma) void Grad(SIZE sz, LPBYTE pGray, int *pGradX, int *pGradY, int *pMag) void NonmaxSuppress(int *pMag, int *pGradX, int *pGradY, SIZE sz, LPBYTE pNSRst) void EstimateThreshold(int *pMag, SIZE sz, int *pThrHigh, int *pThrLow, LPBYTE pGray, double dRatHigh, double dRatLow) void Hysteresis(int *pMag, SIZE sz, double dRatLow, double dRatHigh, LPBYTE pResult) void TraceEdge(int y, int x, int nThrLow, LPBYTE pResult, int *pMag, SIZE sz) void Canny(LPBYTE pGray, SIZE sz, double sigma, double dRatLow, double dRatHigh, LPBYTE pResult) -canny algorithm void CreatGauss (double sigma, double** pdKernel, int* pnWidowSize) void GaussianSmooth (SIZE sz, LPBYTE pGray, LPBYTE pResult, double sigma) void Grad (SIZE sz, LPBYTE pGray, int* pGradX, int* pGradY, int* pMag) void NonmaxSuppress (int* pMag, int* pGradX, int* pGradY, SIZE sz, LPBYTE pNSRst) void EstimateThreshold (int* pMag, SIZE sz, int* pThrHigh, int* pThrLow, LPBYTE pGray, double dRatHigh, double dRatLow ) void Hysteresis (int* pMag, SIZE sz, double dRatLow, double dRatHigh, LPBYTE pResult) void TraceEdge (int y, int x, int nThrLow, LPBYTE pResult, int* pMag, SIZE sz) void Canny (LPBYTE pGray, SIZE sz , double sigma, double dRatLow, double dRatHigh, LPBYTE pResult)
Update
: 2025-02-19
Size
: 9kb
Publisher
:
穆阿军
[
Special Effects
]
hysthresh
DL : 0
极大值抑制与双阈值门限得到图像边缘 * hysthresh.m code for performing hysteresis thresholding. -Maxima suppression and dual-threshold threshold obtained Edge* hysthresh.m code for performing hysteresis thresholding.
Update
: 2025-02-19
Size
: 1kb
Publisher
:
asdasdasd
[
DSP program
]
srm_c7
DL : 0
开关磁阻电机的速度控制程序,电流用的是滞环控制,控制器采用TI公司的DSP TMS320LF2407,开发环境采用TI提供的CC2000或者CCS-Switched Reluctance Motor speed control procedures, using current hysteresis control, the controller using TI
Update
: 2025-02-19
Size
: 18kb
Publisher
:
david4193
[
Other
]
IM_DTC
DL : 0
异步电动机直接转矩控制模型,改进后的模型,带滞环比较器的模型-Asynchronous motor direct torque control model, the improved model, with comparator hysteresis model
Update
: 2025-02-19
Size
: 12kb
Publisher
:
刘伟
[
Technology Management
]
mli2niveauxhysteresis
DL : 0
COMMANDE D un convertiseur AC/DC 脿 deux niveaux par hysteresis
Update
: 2025-02-19
Size
: 11kb
Publisher
:
paradox
[
GDI-Bitmap
]
Canny_method
DL : 0
I think some of the edges aren t getting detected becuase of the sobel filters not catching the edges, but I m not sure. I think the thick lines are from not doing the supression and hysteresis properly. Here is my canny edge code and convolution code:
Update
: 2025-02-19
Size
: 3kb
Publisher
:
KuduK
[
SCM
]
zhihuanbijiaopwm
DL : 0
滞环比较逆变器,生产交流电压波形比较好,大家下来玩玩吧-Comparison of hysteresis inverter, the production of AC voltage waveform is better, everyone down to play it
Update
: 2025-02-19
Size
: 10kb
Publisher
:
ren
[
matlab
]
SolvingDelayferentialEquations
DL : 0
用MATLAB求解滞微分微分方程的理论及数值模拟-Hysteresis using MATLAB to solve differential equations and numerical simulation of the theory
Update
: 2025-02-19
Size
: 279kb
Publisher
:
kgjk
[
matlab
]
triblebgehysteresis
DL : 0
三相逆变桥PWM电流滞环控制Simulink仿真,另加一滤波器观看PWM经过低通滤波后的波形,适合电力电子初学者-Three-phase PWM inverter current hysteresis control Simulink simulation, plus a watch PWM filter through after the low-pass wave filter for power electronics for beginners
Update
: 2025-02-19
Size
: 9kb
Publisher
:
阿泥
[
SCM
]
d
DL : 0
这是一个三相电流滞环PWM控制的逆变电路-This is a three-phase hysteresis current-controlled PWM inverter circuit
Update
: 2025-02-19
Size
: 9kb
Publisher
:
小岚
[
Other systems
]
zhsvpwm
DL : 0
滞环SVPWM整流器的Simulink仿真,种基于不定频滞环的空间矢量脉宽调制( SVPWM)电流控制方法-Hysteresis SVPWM Rectifier Simulink simulation, based on variable-frequency hysteresis of the space vector pulse width modulation (SVPWM) current control method
Update
: 2025-02-19
Size
: 372kb
Publisher
:
熊毅
[
matlab
]
rainflow
DL : 0
雨流计数法,建立在对封闭的应力——应变迟滞回线逐个计数的基础上,能够比较全面的反映随机载荷的全过程,由载荷——时间历程得到的应力——应变迟滞回线与造成的疲劳损伤是等效的.-Rain-flow counting method, based on the stress of the closed- strain hysteresis loop-by-count basis, can be more fully reflected random load the entire process, from the load- time history obtained stress- strain hysteresis loop and the caused by fatigue damage is equivalent.
Update
: 2025-02-19
Size
: 107kb
Publisher
:
shinesky
[
matlab
]
hysthresh
DL : 0
matlab code-Function performs hysteresis thresholding of an image. All pixels with values above threshold T1 are marked as edges All pixels that are adjacent to points that have been marked as edges and with values above threshold T2 are also marked as edges. Eight connectivity is used.-matlab code-Function performs hysteresis thresholding of an image. All pixels with values above threshold T1 are marked as edges All pixels that are adjacent to points that have been marked as edges and with values above threshold T2 are also marked as edges. Eight connectivity is used.
Update
: 2025-02-19
Size
: 2kb
Publisher
:
mahmood
[
matlab
]
ejsr_27_1_15
DL : 0
Simulation of Dynamic Voltage Restorer Using Hysteresis Voltage Control
Update
: 2025-02-19
Size
: 714kb
Publisher
:
saad
[
Other
]
zhihuan
DL : 0
三相PWM整流器滞环控制策略的SIMULINK仿真,参数已设,经过验证,符合要求-Three-phase PWM rectifier control strategy Hysteresis SIMULINK simulation parameters have been set, after verification, to meet the requirements
Update
: 2025-02-19
Size
: 11kb
Publisher
:
牛伟
[
matlab
]
HYSTERESIS
DL : 0
This a MATLAB Simulation file in which Hysteresis modulation method for a Full Bridge (2-legs) inverter has been done.The load is single Phase R_L.-This is a MATLAB Simulation file in which Hysteresis modulation method for a Full Bridge (2-legs) inverter has been done.The load is single Phase R_L.
Update
: 2025-02-19
Size
: 9kb
Publisher
:
siamak
[
matlab
]
hysteresis
DL : 0
解决磁滞曲线matlab仿真问题,包含模型建立与分析,程序设计等-Solve the hysteresis curve matlab simulation problems, including model and analysis, program design, etc
Update
: 2025-02-19
Size
: 1kb
Publisher
:
文永
[
SourceCode
]
Matlab for flag-shape hysteresis
DL : 0
This is matlab code for time history analysis with flag-shape hysteresis curve.
Update
: 2020-12-13
Size
: 7.29kb
Publisher
:
903075854@qq.com
«
1
2
3
4
5
6
7
8
9
10
...
18
»
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.