Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Your first project is to create a program that uses text and pictures to describe yourself. You can choose any topics about yourself ( family

Your first project is to create a program that uses text and pictures to describe yourself. You can choose any topics about yourself (family, friends, hobbies, vacations, etc). The user of your program must be able individually select each topic and each topic must show some kind of picture.
Use the OpenCV library provided in the show picture assignment to do this project.
Be sure to include all the *.jpg /*.png files along with your source file and your vcxproj files. Do not include built / executable files (*.exe, *.dll,*.pdb,*.obj). Points will be deducted if you include these files.
You can use the code below to display jpg.
void showImage(const String& JpgName){
destroyWindow("PicWindow");
Mat image = imread(JpgName, IMREAD_COLOR);
if (!image.data)
{
cout << "Could not open or find the image "<< JpgName;
return;
}
namedWindow("PicWindow", WINDOW_AUTOSIZE);
imshow("PicWindow", image);
waitKey(50);
}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Microsoft Outlook 2023

Authors: James Holler

1st Edition

B0BP9P1VWJ, 979-8367217322

More Books

Students also viewed these Databases questions