Change Brightness & Contrast of a video (OpenCV C++)



2 comments:

Motion Detector Using Arduino

The arduino code is shown in below.
========================================================================
/* PIR sensor tester*/

int ledPin = 2; // choose the pin for the LED
int inputPin = 3; // choose the input pin (for PIR sensor)
int pirState = LOW; // we start, assuming no motion detected
int val = 0; // variable for reading the pin status

void setup() {
pinMode(ledPin, OUTPUT); // declare LED as output
pinMode(inputPin, INPUT); // declare sensor as input

Serial.begin(9600);
}

void loop(){
val = digitalRead(inputPin); // read input value
if (val == HIGH) { // check if the input is HIGH
digitalWrite(ledPin, HIGH); // turn LED ON
if (pirState == LOW) {
// we have just turned on
Serial.println("Motion detected!");
// We only want to print on the output change, not state
pirState = HIGH;
}
} else {
digitalWrite(ledPin, LOW); // turn LED OFF
if (pirState == HIGH){
// we have just turned of
Serial.println("Motion ended!");
// We only want to print on the output change, not state
pirState = LOW;
}
}
}

========================================================================

The video demo is shown in below.

0 comments:

Load and Display Video OpenCV C++


0 comments:

Key board ASCII values (Opencv C++ / Visual Studio)








1 comments:

Arduino Interfacing with Visual Studio to read Temperature



Today I'm going to show you how  Arduino interfacing with Visual studio to read temperature.
If you don’t know to start visual studio program click here

5 comments:

Keyboard shortcuts for Arduino IDE



1 comments:

Tutorial 7- Change Brightness & Contrast of an image OpenCv C++

Today I'm going to show you how to change brightness & contrast of an image using OpenCv.


0 comments:

Tutorial 6 - Assessing the pixel values of an image OpenCv C++

Today I'm going to show you how to assessing the pixel values of an image using OpenCv.



2 comments:

PC graphical interface for Arduino (Using visual studio C#)

Today I'm going to show you how to create graphical interface for Arduino (Using visual studio C#)

10 comments:

RaspberryPi - How to install Rasbian OS into micro SD card

Hello everyone! Today I'm going to show you how to install rasbian OS into a micro SD card.

1 comments:

Tutorial 5 - Convert an Image Color OpenCV C++

Today I'm going to show you how to convert an image color using OpenCv.

1 comments:

Tutorial 4 -Depth, No. of Channels & Type of Image OpenCV C++

Today I'm going to discuss about Depth, Number of Channels & Type of Image





4 comments:

Tutorial 3 - Java Variable and Data Types

Let’s learn about data types and variables used in java.

2 comments:

Newly Updated progTpoint android App

Now you can easily get us with our newly updated android app.


3 comments:

Tutorial 3 - Create a Image OpenCV C++

Today I'm going to show you how to create image using OpenCv.




0 comments:

Python Development Using Visual Studio

Today I'm going to show you how to develop python using visual studio

110 comments:

Install Python in Windows

Today I'm going to show you how to install python in windows.


1 comments:

Tutorial 2 - Load and Display Image OpenCV C++

Today I'm going to show you how to display an image using opencv.


2 comments:

Python Introduction

This tutorial is about another widely used high level programming language, Python.

5 comments:

progTpoint-android app install to your phone

Now you can see tutorials without browsing. Install our android app to keep in touch with us.


12 comments:

Java vs Pyhton?

What is difference between Java and Python?



0 comments:

Tutorial 2 - JAVA first program ( Hello World ) in ubuntu

Today I'm going to show you how to create your first java program "Hello world" as a beginners. This is the very basic java programming.

7 comments:

Tutorial 1.2 -> Install JAVA in Ubuntu

Today I'm going to show you how download and install java into ubuntu


1 comments:

Social