#include<stdio.h> int main(int argc, char *argv[]){ int result = 0; int i = 0; for(i = 1; i <= 1000; i++){ result += i; } printf("sum of 1 to 1000 : %d\n", result); return 0; }
How to trace objects with gocv? 1. install OpenCV for gocv. [ how to install ] 2. run gocv code [ github ] run command : $ go run gocv_example02.go 0 ../../data/lbpcascades/lbpcascade_frontalface.xml 3. show camera
Comments
Post a Comment