Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/yuhuazou/kaze_opencv
Browse files Browse the repository at this point in the history
Conflicts:
	KAZE/kaze_ipoint.cpp
  • Loading branch information
yuhuazou committed Mar 29, 2013
2 parents 67aaf7c + a3b244d commit a4618c9
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 16 deletions.
25 changes: 12 additions & 13 deletions KAZE/kaze_config.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

/**
* @file config.h
* @brief Configuration file
Expand Down Expand Up @@ -61,18 +60,18 @@ struct toptions

typedef struct
{
cv::Mat Lx, Ly; // 一阶微分图像(First order spatial derivatives)
cv::Mat Lxx, Lxy, Lyy; // 二阶微分图像(Second order spatial derivatives)
cv::Mat Lflow; // 传导图像(Diffusivity image)
cv::Mat Lt; // 进化图像(Evolution image)
cv::Mat Lsmooth; // 平滑图像(Smoothed image)
cv::Mat Lstep; // 进化步长更新矩阵(Evolution step update)(!!实际未被使用!!)
cv::Mat Ldet; // 检测响应矩阵(Detector response)
float etime; // 进化时间(Evolution time)
float esigma; // 进化尺度(Evolution sigma. For linear diffusion t = sigma^2 / 2)
float octave; // 图像组(Image octave)
float sublevel; // 图像层级(Image sublevel in each octave)
int sigma_size; // 图像尺度参数的整数值,用于计算检测响应(Integer esigma. For computing the feature detector responses)
cv::Mat Lx, Ly; // 一阶微分图像(First order spatial derivatives)
cv::Mat Lxx, Lxy, Lyy; // 二阶微分图像(Second order spatial derivatives)
cv::Mat Lflow; // 传导图像(Diffusivity image)
cv::Mat Lt; // 进化图像(Evolution image)
cv::Mat Lsmooth; // 平滑图像(Smoothed image)
cv::Mat Lstep; // 进化步长更新矩阵(Evolution step update)(!!实际未被使用!!)
cv::Mat Ldet; // 检测响应矩阵(Detector response)
float etime; // 进化时间(Evolution time)
float esigma; // 进化尺度(Evolution sigma. For linear diffusion t = sigma^2 / 2)
float octave; // 图像组(Image octave)
float sublevel; // 图像层级(Image sublevel in each octave)
int sigma_size; // 图像尺度参数的整数值,用于计算检测响应(Integer esigma. For computing the feature detector responses)
}tevolution;

// Some default options
Expand Down
1 change: 0 additions & 1 deletion KAZE/kaze_ipoint.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

//=============================================================================
//
// Ipoint.cpp
Expand Down
4 changes: 2 additions & 2 deletions KazeOpenCV.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

// !! Please enable /openmp in your project configurations (in /C++/Language) in Visual Studio
// If you have installed and included Boost in your project,
// please set 'HAVE_BOOST_THREADING' to 1 to enable Boost-based multi-threading
// please set 'HAVE_BOOST_THREADING' to 1 in ./KAZE/kaze_config.h to enable Boost-based multi-threading
#include "KAZE/kaze_features.h"

#pragma comment( lib, cvLIB("core") )
Expand Down Expand Up @@ -393,4 +393,4 @@ int main(int argc, char** argv)
destroyAllWindows();

return 0;
}
}

0 comments on commit a4618c9

Please sign in to comment.