mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1.2 KiB
26 lines
1.2 KiB
13 years ago
|
#ifndef __main_test_nvidia_h__
|
||
|
#define __main_test_nvidia_h__
|
||
|
|
||
|
#include<string>
|
||
|
|
||
|
enum OutputLevel
|
||
|
{
|
||
|
OutputLevelNone,
|
||
|
OutputLevelCompact,
|
||
|
OutputLevelFull
|
||
|
};
|
||
|
|
||
|
bool nvidia_NPPST_Integral_Image(const std::string& test_data_path, OutputLevel outputLevel);
|
||
|
bool nvidia_NPPST_Squared_Integral_Image(const std::string& test_data_path, OutputLevel outputLevel);
|
||
|
bool nvidia_NPPST_RectStdDev(const std::string& test_data_path, OutputLevel outputLevel);
|
||
|
bool nvidia_NPPST_Resize(const std::string& test_data_path, OutputLevel outputLevel);
|
||
|
bool nvidia_NPPST_Vector_Operations(const std::string& test_data_path, OutputLevel outputLevel);
|
||
|
bool nvidia_NPPST_Transpose(const std::string& test_data_path, OutputLevel outputLevel);
|
||
|
bool nvidia_NCV_Vector_Operations(const std::string& test_data_path, OutputLevel outputLevel);
|
||
|
bool nvidia_NCV_Haar_Cascade_Loader(const std::string& test_data_path, OutputLevel outputLevel);
|
||
|
bool nvidia_NCV_Haar_Cascade_Application(const std::string& test_data_path, OutputLevel outputLevel);
|
||
|
bool nvidia_NCV_Hypotheses_Filtration(const std::string& test_data_path, OutputLevel outputLevel);
|
||
|
bool nvidia_NCV_Visualization(const std::string& test_data_path, OutputLevel outputLevel);
|
||
|
|
||
|
#endif
|