Skip to content

mattreturn1/ComputerVision_ObjectDetection_FeatureMatching

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

49 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Installation & Execution Pipeline

Follow these steps to set up and run the project:


Table of Contents


1. Download and Extract

  • Download the ZIP file.
  • Extract it to your desired folder.

2. Open a Terminal in the Project Folder

  • GUI method:
    Right-click inside the extracted folder and select "Open in Terminal".

  • Terminal command:

    cd /path/to/yourrepo-main

    Make sure you're in the folder where you extracted the project before running any commands.


3. Launch the OpenCV Singularity Environment

  • On the VM, run the following command to enter the Singularity container:

    start_opencv

    Note: If this is your first time using the container, you might need to configure the Singularity container before running this command. Please refer to the setup documentation for the container configuration if necessary.


4. Build the Project with CMake

Generate the Makefile

  • cmake .

This step generates the Makefile, which contains the rules for building your project.

Compile the Project

  • make

This command compiles the project using the generated Makefile. If you encounter errors during this step, ensure you have the necessary dependencies and that the environment is correctly set up.


5. Run the Executable

  • Execute the compiled program:

    ./IntermediateProjectCV

    Note: The executable will be located in the build folder if you used an out-of-source build, or directly in the project folder if you did an in-source build.