15 lines
200 B
C++
15 lines
200 B
C++
#include "histo.h"
|
|
#include <opencv2/core.hpp>
|
|
#include <opencv2/highgui.hpp>
|
|
#include <opencv2/imgproc.hpp>
|
|
#include <iostream>
|
|
|
|
using namespace cv;
|
|
|
|
int main(){
|
|
|
|
|
|
waitKey();
|
|
return 0;
|
|
}
|