OpenCV - ग्रेस्केल को रंगीन चित्र
पहले के अध्यायों में, हमने चर्चा की कि इनपुट इमेज को विभिन्न प्रकारों (बाइनरी, ग्रेस्केल, बीजीआर, आदि) के रूप में कैसे पढ़ा जाए। इस अध्याय में, हम सीखेंगे कि एक प्रकार की छवि को दूसरे में कैसे परिवर्तित किया जाए।
नाम का वर्ग Imgproc पैकेज का org.opencv.imgproc एक छवि को एक रंग से दूसरे रंग में बदलने के तरीके प्रदान करता है।
ग्रेस्केल में रंगीन छवियों को परिवर्तित करना
नामक विधि cvtColor()रंगीन चित्रों को ग्रेस्केल में बदलने के लिए उपयोग किया जाता है। इस विधि का वाक्य विन्यास निम्नलिखित है।
cvtColor(Mat src, Mat dst, int code)
यह विधि निम्नलिखित मापदंडों को स्वीकार करती है -
src - एक मैट्रिक्स स्रोत का प्रतिनिधित्व करता है।
dst - एक मैट्रिक्स जो गंतव्य का प्रतिनिधित्व करता है।
code - एक पूर्णांक कोड रूपांतरण के प्रकार का प्रतिनिधित्व करता है, उदाहरण के लिए, आरजीबी से ग्रेस्केल।
आप कोड को पास करके रंगीन चित्रों को ग्रे स्केल में बदल सकते हैं Imgproc.COLOR_RGB2GRAY स्रोत और गंतव्य मैट्रिक्स के साथ एक पैरामीटर के रूप में cvtColor() तरीका।
उदाहरण
निम्न कार्यक्रम दर्शाता है कि रंगीन छवि को ग्रेस्केल छवि के रूप में कैसे पढ़ा जाए और जावाएफएक्स विंडो का उपयोग करके इसे प्रदर्शित किया जाए।
import java.awt.image.BufferedImage;
import org.opencv.core.Core;
import org.opencv.core.Mat;
import org.opencv.imgcodecs.Imgcodecs;
import org.opencv.imgproc.Imgproc;
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;
public class ColorToGrayscale extends Application {
@Override
public void start(Stage stage) throws Exception {
WritableImage writableImage = loadAndConvert();
// Setting the image view
ImageView imageView = new ImageView(writableImage);
// Setting the position of the image
imageView.setX(10);
imageView.setY(10);
// setting the fit height and width of the image view
imageView.setFitHeight(400);
imageView.setFitWidth(600);
// Setting the preserve ratio of the image view
imageView.setPreserveRatio(true);
// Creating a Group object
Group root = new Group(imageView);
// Creating a scene object
Scene scene = new Scene(root, 600, 400);
// Setting title to the Stage
stage.setTitle("Colored to grayscale image");
// Adding scene to the stage
stage.setScene(scene);
// Displaying the contents of the stage
stage.show();
}
public WritableImage loadAndConvert() throws Exception {
//Loading the OpenCV core library
System.loadLibrary( Core.NATIVE_LIBRARY_NAME );
String input = "C:/EXAMPLES/OpenCV/sample.jpg";
//Reading the image
Mat src = Imgcodecs.imread(input);
//Creating the empty destination matrix
Mat dst = new Mat();
//Converting the image to gray sacle and saving it in the dst matrix
Imgproc.cvtColor(src, dst, Imgproc.COLOR_RGB2GRAY);
//Extracting data from the transformed image (dst)
byte[] data1 = new byte[dst.rows() * dst.cols() * (int)(dst.elemSize())];
dst.get(0, 0, data1);
//Creating Buffered image using the data
BufferedImage bufImage = new BufferedImage(dst.cols(),dst.rows(),
BufferedImage.TYPE_BYTE_GRAY);
//Setting the data elements to the image
bufImage.getRaster().setDataElements(0, 0, dst.cols(), dst.rows(), data1);
//Creating a WritableImage
WritableImage writableImage = SwingFXUtils.toFXImage(bufImage, null);
System.out.println("Converted to Grayscale");
return writableImage;
}
public static void main(String args[]) throws Exception {
launch(args);
}
}
इनपुट छवि
मान लें कि निम्नलिखित इनपुट छवि है sample.jpg उपरोक्त कार्यक्रम में निर्दिष्ट।
आउटपुट छवि
कार्यक्रम को निष्पादित करने पर, आपको निम्न आउटपुट मिलेगा।