Visual Studio Community
(updated 03-03) We will use Visual Studio Community for OpenCV C++ . You can download for free if you have a MSN account.
For Installing OpenCV on Visual Studio Community: click here
How to Install
Download link: https://visualstudio.microsoft.com/ko/vs/community/
Click "Free Download" of Visual Studio Community 2022. After downloading, install the program.
Select "C++ programming Desktop" Option. Optionally, select others such as "Visual Studio Extension Pack". Then Select the Install button.
Visual Studio 2022 ์คํ ํ: MSN ๋ก๊ทธ์ธ .
ํ๋๋ ์ด๋ฉ์ผ ID ๋ก ๊ฐ์ ํ ๋ก๊ทธ์ธ.
VS ํ๋ก์ ํธ ๊ฒฝ๋ก directory ํ์ธํ๊ธฐ
VS ์คํ ํ ๋ฉ๋ด>'๋๊ตฌ > ์ต์ ์ ํ

ํ๋ก์ ํธ ๋ฐ ์๋ฃจ์ > ์์น > ํ๋ก์ ํธ ์์น: ์์ ๋กญ๊ฒ ์ค์ (๋ณ๊ฒฝํ์ง ์์๋ ๋ฌด๊ดํจ)
ํ๋ก์ ํธ ์์น: ํ๋ก์ ํธ ์์ฑ์ ์์ค์ฝ๋๋ฅผ ํฌํจํ ํ๋ก์ ํธ์ ์ ์ฅ ๊ฒฝ๋ก๋ฅผ ์๋ฏธ
Default๋ก VS ํ๋ก์ ํธ๊ฐ ์ฌ๊ธฐ ๊ฒฝ๋ก์ ์์ฑ์ด ๋จ.

VS ํ๋ก์ ํธ ๋ง๋ค๊ธฐ
"Hello Handong" ํ ์คํธ์ฝ๋ ์์ฑํ๊ธฐ
Visual Studio 2022 ์คํ ํ ์ ํ๋ก์ ํธ ๋ง๋ค๊ธฐ > ๋น ํ๋ก์ ํธ

ํ๋ก์ ํธ ์ด๋ฆ์ HelloHandong ์ผ๋ก ์ค์ ํ ๋ง๋ค๊ธฐ

๋ณด๊ธฐ โ ์๋ฃจ์ ํ์๊ธฐ > [ํ๋ก์ ํธ๋ช ] > ์์ค ํ์ผ > ์ถ๊ฐ > ์ํญ๋ชฉ click
C++ ํ์ผ(cpp) ์ ํ ํ helloHandong.cpp ํ์ผ ์์ฑ


์๋ ์์ค์ฝ๋ ์ ๋ ฅ ํ ์คํ (CTRL+F5)
#include <stdio.h>
int main()
{
printf("Hello, Handong!\n");
return 0;
}Expected Output

See also
For Installing OpenCV on Visual Studio Community
Last updated
Was this helpful?