Implementing OpenCV Hough line transformation using Java
You can use the Hough line transform to detect straight lines in a given image. There are two Hough line transform methods available in OpenCV, namely standard Hough line transform and probabilistic Hough line transform.
You can apply the standard Hough line transformation using the HoughLines() method of the Imgproc class. The method accepts the following parameters:
Two Mat objects representing the source image and a vector storing the line parameters (r, Φ).
Two double variables representing the resolution of parameters r (pixels) and Φ (radians).
An integer representing the minimum number of intersections required to "detect" a line.
You can apply the probabilistic Hough line transformation using the HoughLinesP() method of the Imgproc class (same parameters).
You can detect edges in a given image using the Canny() method of the Imgproc class. This method accepts the following parameters:
Two Mat objects representing the source image and the target image.
Two double variables used to save the threshold value.
To detect edges of a given image using Canny edge detector, follow these steps:
Use imread() of Imgcodecs class Method reads the contents of the source image.
Convert it to a grayscale image using the cvtColor() method of the Imgproc class.
Use the blur() method of the Imgproc class to blur the resulting (grayscale) image with a kernel value of 3.
Use Imgproc's canny() method to apply the Canny edge detection algorithm on the blurred image.
Create an empty matrix with all values 0.
Use the copyTo() method of the Mat class to add the detected edges to it.
Example
import java.awt.Image; import java.awt.image.BufferedImage; import java.io.IOException; import javafx.application.Application; import javafx.embed.swing.SwingFXUtils; import javafx.scene.Group; import javafx.scene.Scene; import javafx.scene.image.ImageView; import javafx.scene.image.WritableImage; import javafx.stage.Stage; import org.opencv.core.Core; import org.opencv.core.CvType; import org.opencv.core.Mat; import org.opencv.core.Point; import org.opencv.core.Scalar; import org.opencv.highgui.HighGui; import org.opencv.imgcodecs.Imgcodecs; import org.opencv.imgproc.Imgproc; public class HoughLineTransform extends Application { public void start(Stage stage) throws IOException { //Loading the OpenCV core library System.loadLibrary( Core.NATIVE_LIBRARY_NAME ); String file ="D:\Images\road4.jpg"; Mat src = Imgcodecs.imread(file); //Converting the image to Gray Mat gray = new Mat(); Imgproc.cvtColor(src, gray, Imgproc.COLOR_RGBA2GRAY); //Detecting the edges Mat edges = new Mat(); Imgproc.Canny(gray, edges, 60, 60*3, 3, false); // Changing the color of the canny Mat cannyColor = new Mat(); Imgproc.cvtColor(edges, cannyColor, Imgproc.COLOR_GRAY2BGR); //Detecting the hough lines from (canny) Mat lines = new Mat(); Imgproc.HoughLines(edges, lines, 1, Math.PI/180, 150); for (int i = 0; i < lines.rows(); i++) { double[] data = lines.get(i, 0); double rho = data[0]; double theta = data[1]; double a = Math.cos(theta); double b = Math.sin(theta); double x0 = a*rho; double y0 = b*rho; //Drawing lines on the image Point pt1 = new Point(); Point pt2 = new Point(); pt1.x = Math.round(x0 + 1000*(-b)); pt1.y = Math.round(y0 + 1000*(a)); pt2.x = Math.round(x0 - 1000*(-b)); pt2.y = Math.round(y0 - 1000 *(a)); Imgproc.line(cannyColor, pt1, pt2, new Scalar(0, 0, 255), 3); } //Converting matrix to JavaFX writable image Image img = HighGui.toBufferedImage(cannyColor); WritableImage writableImage= SwingFXUtils.toFXImage((BufferedImage) img, null); //Setting the image view ImageView imageView = new ImageView(writableImage); imageView.setX(10); imageView.setY(10); imageView.setFitWidth(575); imageView.setPreserveRatio(true); //Setting the Scene object Group root = new Group(imageView); Scene scene = new Scene(root, 595, 400); stage.setTitle("Hough Line Transform"); stage.setScene(scene); stage.show(); } public static void main(String args[]) { launch(args); } }
Input image
Output
After execution, the above code will produce the following output −
The above is the detailed content of Implementing OpenCV Hough line transformation using Java. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Guide to Perfect Number in Java. Here we discuss the Definition, How to check Perfect number in Java?, examples with code implementation.

Guide to Weka in Java. Here we discuss the Introduction, how to use weka java, the type of platform, and advantages with examples.

Guide to Smith Number in Java. Here we discuss the Definition, How to check smith number in Java? example with code implementation.

In this article, we have kept the most asked Java Spring Interview Questions with their detailed answers. So that you can crack the interview.

Java 8 introduces the Stream API, providing a powerful and expressive way to process data collections. However, a common question when using Stream is: How to break or return from a forEach operation? Traditional loops allow for early interruption or return, but Stream's forEach method does not directly support this method. This article will explain the reasons and explore alternative methods for implementing premature termination in Stream processing systems. Further reading: Java Stream API improvements Understand Stream forEach The forEach method is a terminal operation that performs one operation on each element in the Stream. Its design intention is

Guide to TimeStamp to Date in Java. Here we also discuss the introduction and how to convert timestamp to date in java along with examples.

Capsules are three-dimensional geometric figures, composed of a cylinder and a hemisphere at both ends. The volume of the capsule can be calculated by adding the volume of the cylinder and the volume of the hemisphere at both ends. This tutorial will discuss how to calculate the volume of a given capsule in Java using different methods. Capsule volume formula The formula for capsule volume is as follows: Capsule volume = Cylindrical volume Volume Two hemisphere volume in, r: The radius of the hemisphere. h: The height of the cylinder (excluding the hemisphere). Example 1 enter Radius = 5 units Height = 10 units Output Volume = 1570.8 cubic units explain Calculate volume using formula: Volume = π × r2 × h (4

Java is a popular programming language that can be learned by both beginners and experienced developers. This tutorial starts with basic concepts and progresses through advanced topics. After installing the Java Development Kit, you can practice programming by creating a simple "Hello, World!" program. After you understand the code, use the command prompt to compile and run the program, and "Hello, World!" will be output on the console. Learning Java starts your programming journey, and as your mastery deepens, you can create more complex applications.
