 
 Data Structure Data Structure
 Networking Networking
 RDBMS RDBMS
 Operating System Operating System
 Java Java
 MS Excel MS Excel
 iOS iOS
 HTML HTML
 CSS CSS
 Android Android
 Python Python
 C Programming C Programming
 C++ C++
 C# C#
 MongoDB MongoDB
 MySQL MySQL
 Javascript Javascript
 PHP 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
291 Views
You can blur an image by filtering it using a low-pass filter, this removes high frequency content (noise, edges) from an image.Averaging is one of the blurring techniques provided by OpenCV, this replaces the central element with the average of all the pixels in the kernel areaYou can filter/blur an ... Read More
 
 
							Maruthi Krishna
373 Views
The org.opencv.imgproc package of Java OpenCV library contains a class named Imgproc.To draw a circle you need to invoke the circle() method of this class. This method accepts the following parameters −A Mat object representing the image on which the circle is to be drawn.A Point object representing the center ... Read More
 
 
							Maruthi Krishna
1K+ Views
The org.opencv.imgproc package of Java OpenCV library contains a class named Imgproc. To draw a rectangle you need to invoke the rectangle() method of this class. This method accepts the following parameters −A Mat object representing the image on which the rectangle is to be drawn.Two Point objects representing the ... Read More
 
 
							Maruthi Krishna
376 Views
The org.opencv.imgproc package of Java OpenCV library contains a class named Imgproc. To draw an ellipse you need to invoke the ellipse() method of this class. This method accepts the following parameters −A Mat object representing the image on which the ellipse is to be drawn.A RotatedRect object (The ellipse ... Read More
 
 
							Maruthi Krishna
846 Views
The org.opencv.imgproc package of Java OpenCV library contains a class named Imgproc. To draw a line you need to invoke the line() method of this class. This method accepts the following parameters −A Mat object representing the image on which the line is to be drawn.Two Point objects representing the ... Read More
 
 
							Maruthi Krishna
231 Views
You can convert HLS image to RGB (colored) image by passing Imgproc.COLOR_RGB2HLS as the 3rd parameter to the cvtColor() method.Exampleimport org.opencv.core.Core; import org.opencv.core.Mat; import org.opencv.imgcodecs.Imgcodecs; import org.opencv.imgproc.Imgproc; public class HSL2RGB { public static void main(String args[]) throws Exception { System.loadLibrary( Core.NATIVE_LIBRARY_NAME ); Mat ... Read More
 
 
							Maruthi Krishna
251 Views
The cvtColor() method of the Imgproc class changes/converts the color of the image from one to another. This method accepts three parameters −src − A Matrix object representing source.dst − A Matrix object representing the destination.code − An integer value representing the color of the destination image.You can convert a ... Read More
 
 
							Maruthi Krishna
492 Views
The cvtColor() method of the Imgproc class changes/converts the color of the image from one to another. This method accepts three parameters −src − A Matrix object representing source.dst − A Matrix object representing the destination.code − An integer value representing the color of the destination image.To convert an HSV ... Read More
 
 
							Maruthi Krishna
361 Views
The cvtColor() method of the Imgproc class changes/converts the color of the image from one to another. This method accepts three parameters −src − A Matrix object representing source.dst − A Matrix object representing the destination.code − An integer value representing the color of the destination image.To convert an HSV image ... Read More
 
 
							Maruthi Krishna
989 Views
The cvtColor() method of the Imgproc class changes/converts the color of the image from one to another. This method accepts three parameters −src − A Matrix object representing source.dst − A Matrix object representing the destination.code − An integer value representing the color of the destination image.To convert an RGB ... Read More
