OpenCV for Robotics Get link Facebook X Pinterest Email Other Apps March 24, 2019 Object tracking Robot navigation Face detection Get link Facebook X Pinterest Email Other Apps Comments
OpenCV Programming 1 July 20, 2019 1. Display data type. #include "pch.h" #include <opencv2/highgui/highgui.hpp> #include <opencv2/imgproc.hpp> #include <iostream> using namespace cv; using namespace std; int main(int argc, char** argv) { int i = 2; while (i != 0) { cout << "enter image martix size"; cin >> i; if (i == -1) { break; } Mat M(i, i, CV_8UC3, Scalar(0, 0, 255)); cout << "M = " << endl << " " << M << endl << endl; } } Read more
Open CV Url July 05, 2019 C++: Tutorial http://www.cplusplus.com/reference/type_traits/ Open CV introduction: https://www.opencv-srf.com/2017/11/load-and-display-image.html https://medium.com/@ariesiitr/image-processing-with-opencv-45c3a5cefd10 Read more
Comments
Post a Comment