メインコンテンツまでスキップ

Installing OpenCV on Fedora

Let's install OpenCV (Open Source Computer Vision Library) on the Fedora operating system. OpenCV is a powerhouse in the realm of computer vision and machine learning, providing an extensive set of tools and algorithms that facilitate the development of applications capable of understanding and interpreting visual data.

Before we dive into the installation process, let's briefly discuss why OpenCV is such a vital tool in the modern developer's arsenal. Imagine OpenCV as a Swiss Army knife for computer vision tasks. It allows you to perform anything from reading and writing images to detecting objects, extracting features, and even implementing deep learning algorithms. Its versatility and wide adoption make it a go-to choice for both academia and industry.

Now, let's focus on the task at hand – installing OpenCV on Fedora. Fedora is a great, open-source operating system known for its cutting-edge features and strong community support. It's an excellent platform for development, and with OpenCV installed, it becomes even more powerful.

Prerequisites

Before we begin, ensure that you have the following:

  • A system running Fedora (the steps provided here are tested on Fedora 34, but should work on other recent versions as well).
  • Access to the terminal.
  • Basic knowledge of using the command line.
  • An internet connection to download the necessary packages.

Step 1: Update Your System

First things first, let's make sure your system is up-to-date. This ensures that you have the latest package lists and that any existing software is current. Open a terminal and run:

sudo dnf update

Step 2: Install Dependencies

OpenCV relies on several dependencies to function correctly. Install these by running:

sudo dnf install @development-tools
sudo dnf install cmake
sudo dnf install numpy python3-devel python3-numpy
sudo dnf install opencv-devel opencv-python opencv-python-devel

This command installs the necessary build tools, CMake for the build process, NumPy for numerical operations, and the development headers for Python. It also installs the OpenCV development packages, which include the OpenCV library itself and the Python bindings.

Step 3: Verify the Installation

After the installation completes, you can verify it by running a simple Python script that uses OpenCV. Create a Python file named opencv_test.py and add the following code:

import cv2

# Load an image using OpenCV
image = cv2.imread('sample_image.jpg')

# Display the image in a window
cv2.imshow('Image loaded with OpenCV', image)
cv2.waitKey(0)
cv2.destroyAllWindows()

Make sure you have an image file named sample_image.jpg in the same directory as your script, or update the filename in the code accordingly.

Run the script using:

python3 opencv_test.py

You should see a window displaying the image you loaded. If you do, congratulations! You've successfully installed OpenCV on your Fedora system.

Step 4: Exploring OpenCV (Optional)

Now that OpenCV is installed, let's dive into a simple example to demonstrate its capabilities. We'll write a Python script that captures video from your webcam and displays it in real-time.

Create a file named webcam_capture.py and add the following code:

import cv2

# Initialize video capture
cap = cv2.VideoCapture(0)

# Check if the webcam is opened correctly
if not cap.isOpened():
print("Error: Could not open webcam.")
exit()

while True:
# Capture frame-by-frame
ret, frame = cap.read()

# If frame is read correctly, ret is True
if not ret:
print("Error: Can't receive frame (stream end?). Exiting ...")
break

# Display the resulting frame
cv2.imshow('Webcam Video', frame)

# Press 'q' to quit the video window
if cv2.waitKey(1) & 0xFF == ord('q'):
break

# When everything is done, release the capture
cap.release()
cv2.destroyAllWindows()

Run the script:

python3 webcam_capture.py

You should see a window showing the live feed from your webcam. Press 'q' to quit.

Troubleshooting

  • Webcam Not Detected: Ensure that your webcam is correctly connected and that there are no other applications using it. You can also try changing the device index in cv2.VideoCapture(0) to another number if you have multiple video capture devices.
  • Python Version Mismatch: If you encounter issues related to Python versions, ensure that you're using Python 3 by explicitly calling python3 instead of python.
  • Missing Dependencies: If the installation fails due to missing dependencies, re-run the dnf install command with the missing packages.

You've now successfully installed OpenCV on your Fedora system and even tested it with a couple of Python scripts. Don't hesitate to consult the official OpenCV documentation for more detailed information on specific functions and algorithms.