搜索资源列表
-
0下载:
bool termination_point
bool neighbor3by3 /* true means 3x3 neighborhood, false means 5x5 neighborhood */
int grad_mag[500][500] /* Magnitude of Gradient */
int m_Cols /* Number of Columns */
int m_Rows /* Number of Rows */
int no_of_s
-
-
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
pG
-
-
0下载:
1).Using structs, find sum, subtraction, magnitude(of a vector) and angle(in degrees) between two arbitrary dimensional vectors.
2).Using structs, find the gradient vector of a polynomial multivariable function described in termsof arrays containin
-