반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Keras
- web 사진
- KNeighborsClassifier
- 재귀함수
- classification
- java역사
- CES 2O21 참가
- 결합전문기관
- web 용어
- 데이터전문기관
- bccard
- 웹 용어
- pycharm
- 대이터
- web
- postorder
- inorder
- vscode
- paragraph
- discrete_scatter
- 머신러닝
- mglearn
- CES 2O21 참여
- html
- C언어
- web 개발
- broscoding
- tensorflow
- 자료구조
- cudnn
Archives
- Today
- Total
bro's coding
affine_transform in C++ 본문
반응형
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());
imshow("src", src);
imshow("dst", dst);
waitKey();
destroyAllWindows();
}
int main() {
affine_transform();
return 0;
}
반응형
'[AI] > openCV' 카테고리의 다른 글
binarization (0) | 2020.06.23 |
---|---|
Canny_edge (0) | 2020.06.23 |
sobel_edge (0) | 2020.06.23 |
setMouseCallback (0) | 2020.06.23 |
medianBlur in C++ (0) | 2020.06.22 |
Gaussian(양방향 필터) in C++ (0) | 2020.06.22 |
Gaussian(잡음 추가) in C++ (0) | 2020.06.22 |
GaussianBlur(unsharp) in C++ (0) | 2020.06.22 |
Comments