Installing Open CV in windows

Installing Open CV in windows
Download the Numpy version corresponding to your Python installation from here. In my case, I’ve used numpy-1.12.0+mkl-cp36-cp36m-win32.whl Download the OpenCV version corresponding to your Python installation from here. In my case, I’ve used opencv_python-3.2.0-cp36-cp36m-win32.whl. Now,...

Smart Toll System (For Regnum Group)

Smart Toll System (For Regnum Group)
Smart Toll System Feature: Auto weight measurement . Auto traffic controller .   RFID Technology included . Money Receiver Booth . All information saved in Database. Auto Email Service . Interface with C#.net ...

SJF Sheduling

SJF Sheduling
#include<bits/stdc++.h> using namespace std; struct process {     int pid;     int at;     int bt;     int wt;     bool flag; }; bool cmp(process a, process b) {     return a.bt<b.bt; } bool cmp2(process...