일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- bccard
- web 사진
- web 용어
- tensorflow
- vscode
- Keras
- 데이터전문기관
- mglearn
- CES 2O21 참여
- web 개발
- 결합전문기관
- 웹 용어
- pycharm
- C언어
- discrete_scatter
- java역사
- postorder
- paragraph
- web
- 대이터
- classification
- broscoding
- 머신러닝
- cudnn
- CES 2O21 참가
- 자료구조
- html
- KNeighborsClassifier
- 재귀함수
- inorder
- Today
- Total
목록[AI]/openCV (24)
bro's coding
#include "opencv2/opencv.hpp" #include using namespace cv; using namespace std; void sobel_edge() { Mat src = imread("family.jpg",IMREAD_GRAYSCALE); if (src.empty()) { cerr
영상의 투시 변환 #include "opencv2/opencv.hpp" #include using namespace cv; using namespace std; Mat src; Point2f srcQuad[4], dstQuad[4]; void on_mouse(int event, int x, int y, int flags, void*) { static int cnt = 0; if (event == EVENT_LBUTTONDOWN) { if (cnt < 4) { srcQuad[cnt++] = Point2f(x, y); circle(src, Point(x, y), 5, Scalar(0, 0, 255), -1); imshow("src", src); if (cnt == 4) { int w = 200, h = 30..
void affine_transform() { Mat src = loadim(); Point2f srcPts[3], dstPts[3]; srcPts[0] = Point2f(0, 0); srcPts[1] = Point2f(src.cols - 1, 0); srcPts[2] = Point2f(src.cols - 1, src.rows - 1); dstPts[0] = Point2f(50, 50); dstPts[1] = Point2f(src.cols - 100, 100); dstPts[2] = Point2f(src.cols - 50, src.rows - 50); Mat M = getAffineTransform(srcPts, dstPts); Mat dst; warpAffine(src, dst, M, Size()); ..
void filter_median() { //이미지 저장 Mat src = imread("C:/Users/givemebro/Desktop/flo.png", IMREAD_GRAYSCALE); if (src.empty()) { cerr
void filter_bilateral() { //이미지 저장 Mat src = imread("C:/Users/givemebro/Desktop/flo.png", IMREAD_GRAYSCALE); if (src.empty()) { cerr
void noise_gaussian() { //이미지 저장 Mat src = imread("C:/Users/givemebro/Desktop/flo.png", IMREAD_GRAYSCALE); if (src.empty()) { cerr
void unsharp_mask() { Mat src = imread("C:/Users/givemebro/Desktop/flo.png", IMREAD_GRAYSCALE); if (src.empty()) { cerr
void blurring_gaussian() { Mat src = imread("C:/Users/givemebro/Desktop/flo.png", IMREAD_GRAYSCALE); if (src.empty()) { cerr
1 1 1 1 1 1 1 1 1 *(1/9) void blurring_mean() { Mat src = imread("C:/Users/givemebro/Desktop/flo.png", IMREAD_GRAYSCALE); if (src.empty()) { cerr
embossing filter mask -1 -1 0 -1 0 1 0 1 1 #include "opencv2/opencv.hpp" #include using namespace cv; using namespace std; void filter_embossing() { // 사진 불러오기 Mat src = imread("IMG_20190930_162013_140.jpg",IMREAD_GRAYSCALE); if (src.empty()) { cerr