
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Maruthi Krishna has Published 870 Articles

Maruthi Krishna
2K+ Views
In general, a JavaFX application will have three major components namely Stage, Scene and Nodes as shown in the following diagram.StageA stage (a window) contains all the objects of a JavaFX application. It is represented by Stage class of the package javafx.stage. You have to call the show() method to ... Read More

Maruthi Krishna
1K+ Views
In JavaFX, the GUI Applications were constructed using a Scene Graph. A scene graph is a data structure similar to tree, in modern graphical applications. It is the starting point of the application, and it is a collection of nodesTo display something in JavaFX You need to construct a scene ... Read More

Maruthi Krishna
1K+ Views
Following are some of the important features of JavaFX −Written in Java − The JavaFX library is written in Java and is available for the languages that can be executed on a JVM, which include − Java, Groovy and JRuby. These JavaFX applications are also platform-independent.FXML − JavaFX features a ... Read More

Maruthi Krishna
2K+ Views
To setup JavaFx in eclipse, first of all, make sure that you have installed eclipse and Java in your system successfully.Maven dependencyTo set up JavaFX environment using maven dependency, create a Java project in eclipse convert it into a maven project as shown below −Then in the pom.xml file add ... Read More

Maruthi Krishna
825 Views
You can blend two images in OpenCV using the addWeighted() method of the Core class.This method accepts two Mat objects (representing the source and destination matrices) and two double values representing the desired weights of the images alpha, gamma and calculates the weighted sum of them.Exampleimport org.opencv.core.Core; import org.opencv.core.Mat; import org.opencv.highgui.HighGui; ... Read More

Maruthi Krishna
631 Views
Thresholding is a simple technique for the segmentation of an image. it is often used to create binary images. In this the pixels greater than a given threshold value will be replaced with a standard valueIn simple, the threshold value is constant throughout the image.Adaptive thresholding the threshold value is ... Read More

Maruthi Krishna
379 Views
In mask operations the value of each pixel of an image is recalculated based on a given mask matrix, this is known as the kernel. Masking is otherwise known as filtering.The filter2D() method of the Imgproc class accepts a source, destination and kernel matrices and convolves the source matrix with ... Read More

Maruthi Krishna
1K+ Views
To setup JavaFx in eclipse, first of all, make sure that you have installed eclipse and Java in your system successfully.Maven dependencyTo set up JavaFX environment using maven dependency, create a Java project in eclipse convert it into a maven project as shown below −Then in the pom.xml file add ... Read More

Maruthi Krishna
525 Views
You can add borders to a given image using the copyMakeBorder() method, this method accepts the following parameters −Two Mat objects representing the source and destination images.An object of the class Mat representing the destination (output) image.Four integer variables representing the lengths of the borders in all the 4 directions ... Read More

Maruthi Krishna
1K+ Views
Thresholding is a simple technique for the segmentation of an image. it is often used to create binary images. In this, the pixels greater than a given threshold value will be replaced with a standard value.Adaptive thresholding is the method where the threshold value is calculated for smaller regions and ... Read More