Forest Fire Detection Using Sensor Networks
Forest Fire Detection Using Sensor Networks
Forest Fire Detection Using Sensor Networks
PROJECT REPORT
This is to certify, that the project entitled “Forest fire detection using sensor
networks” submitted by the following students, B. Tech, VIT University, Vellore
for the partial fulfillment of the B. Tech- Measurement and Instrumentation CAL
course, is a record of bonafide carried out by the students under my supervision, as
per VIT regulation of academic.
With all our gratitude we would like to thank VIT UNIVERSITY for giving us the
opportunity to work under this project as a team. We would like to express our
At last we would thank the university staff for letting us access the resources and
giving their expertise suggestions.
ABSTRACT
Forests are part of the important and indispensable resources for human survival
and social development that protect the balance of the earth ecology. However,
because of some uncontrolled anthropogenic activities and abnormal natural
conditions, Forest Fires occur frequently. These fires are among the most serious
disasters to forest resources and the human environment. In recent years, the
frequency of forest fires has increased considerably due to climate changes,
human activities and other factors. The prevention and monitoring of Forest Fires
has become a global concern in Forest Fire prevention organizations. Currently,
Forest Fire prevention methods largely consist of Patrols, Observation from watch
towers, Satellite Monitoring and lately Wireless Sensor Networks . Although
observation from watch towers is easy and feasible, it has several defects. In the
first place, this method requires many financial and material resources and a
trained labor force. Second, many problems with fire protection personnel
abound, such as carelessness, absence from the post, inability for real-time
monitoring and the limited area coverage.
Methodology Involved
This project was carried out in python using various dependency which involves
Open CV2, Sk-Learn, Ski-Image, Numpy, Collections. The algorithm used in this
project is multilayer perceptron. The dataset is taken from MNIST (Modified
National Institute of Standards and Technology database).
There are four steps to build the isolated digits recognition system :
Segmentation : Since the data are isolated, no need for segmentation. With regards
to the isolated digits, to apply vertical segmentation on the image containing more
than digit will isolate each digit alone.
int ThermistorPin = 0;
int Vo;
float R1 = 10000;
float logR2, R2, T, Tc, Tf;
float c1 = 1.009249522e-03, c2 = 2.378405444e-04, c3 = 2.019202697e-07;
void setup() {
Serial.begin(9600);
}
void loop() {
Vo = analogRead(ThermistorPin);
R2 = R1 * (1023.0 / (float)Vo - 1.0);
logR2 = log(R2);
T = (1.0 / (c1 + c2*logR2 + c3*logR2*logR2*logR2));
Tc = T - 273.15;
Tf = (Tc * 9.0)/ 5.0 + 32.0;
Serial.print("Temperature: ");
Serial.print(Tf);
Serial.print(" F; ");
Serial.print(Tc);
Serial.println(" C");
delay(500);
}
Snapshots
Results and Observations
1. Xbee output
2 Arduino outputs
Need of Digit Recognition
In this fast moving, evolving world there is a need of systems to fasten our works
and in this the processing of handwritten documents plays a major role. We several
times observe that while at the banks we see the workers at the bank looking at
those number and many times they cannot identify the numbers due to several
reasons , here comes the need of this algorithm where it can observe the digits,
makes the project faster and even helps in differentiating the digits due to its vast
MNIST database. It can also be used for directories and also for observing the
number plates of vehicles for several purposes. This change in this world will help
the humans and will also show the advancement of our society in this pacing
environment.
CONCLUSION
An advanced system for Forest Fire Detection was developed which overcomes
the demerits of the Existing technologies of Forest Fire Detection. It can be
ensured that the system developed can be implemented on a large scale due to
its promising results. Mechanical modeling for accessible and inaccessible areas
helps in the easy implementation of the Forest Area modules. The system can
also be upgraded with low-power elements, higher versions of Zigbee in order to
make the system run for longer periods with increased efficiency..