-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Kernel detect minima #151
base: master
Are you sure you want to change the base?
Kernel detect minima #151
Conversation
I believe there is an error in the detect_minima kernel because it does not seem to always detect the minimum value when it is located at the bottom or on the right edge of the matrix. edit: : I noticed the same problem for the detect_maxima kernel. I also added a test in which detecting the minimal/maximal value when it is located in the center of a 3D array does not work. |
{ | ||
std::string cl_header = { | ||
#include "cle_detect_minima.h" | ||
}; | ||
this->SetSource("detect_minima", cl_header); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Library was updated, this need to be changed as followed:
- move the include outside the function, at the top of the file
- replace
cl_header
byoclKernel::detect_minima
see: absolute kernel for example
No description provided.