mirror of
https://github.com/andreinechaev/nvcc4jupyter.git
synced 2026-06-15 19:50:50 +05:30
9 lines
156 B
Plaintext
9 lines
156 B
Plaintext
#include <opencv2/core.hpp>
|
|
#include <iostream>
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
std::cout << cv::getBuildInformation() << std::endl;
|
|
return 0;
|
|
}
|