当前位置:网站首页>Opencv learning log 27 -- chip positioning
Opencv learning log 27 -- chip positioning
2022-07-06 16:07:00 【@Spring sauce】
Preface
This article focuses on opencv Application of chip positioning in image processing .
One 、 Chip positioning
// Chip positioning
#include <opencv2/opencv.hpp>
#include <iostream>
using namespace cv;
using namespace std;
int main()
{
cv::Mat dst;
cv::Mat dstbin;
cv::Mat dsttemp;
cv::Mat resMat;
cv::Mat Matstate;
cv::Mat center;
cv::Mat src = imread("C://Users//john//Desktop//1.jpg");
cv::Mat srcgray = imread("C://Users//john//Desktop//1.jpg", 0);
threshold(srcgray, dstbin, 100, 255, THRESH_OTSU); // Dajin law
cv::imshow("dstbin", dstbin);
src.copyTo(dst);
//bitwise_not(dstbin, dsttemp);
vector<vector<Point>> contours;
vector<Vec4i> hirearchy;
findContours(dstbin, contours, CV_RETR_LIST, CV_CHAIN_APPROX_NONE);
int num = contours.size();
//cout << num << endl;
Point2f rect[4];
for (int i = 0; i < num; i++)
{
RotatedRect rbox = minAreaRect(contours[i]);
///cout << rbox << endl;
int area = contourArea(contours[i]);// Calculate the contour area
rbox.points(rect); // Copy the four ends of the smallest circumscribed rectangle to rect Array
if (fabs(rbox.size.width * 1.0 / rbox.size.height - 1) < 0.2&&area>=100)
{
drawContours(dst, contours, i, Scalar(255, 0, 0), -1, 8);
for (int j = 0; j<4; j++)
{
line(dst, rect[j], rect[(j + 1) % 4], Scalar(255, 255, 255), 2, 8); // Draw the smallest outer edge of each rectangle
}
}
}
cv::imshow("dsttemp", dstbin);
cv::imshow("dst", dst);
waitKey(0);
}
summary
1. The code can run directly , If you don't understand, please leave a message .
2. Missing material pictures , Follow up, thank you .
边栏推荐
- 滲透測試 ( 1 ) --- 必備 工具、導航
- Write web games in C language
- CEP used by Flink
- If you want to apply for a programmer, your resume should be written like this [essence summary]
- 0-1背包問題(一)
- Interesting drink
- 【高老师UML软件建模基础】20级云班课习题答案合集
- The most complete programming language online API document
- Borg Maze (BFS+最小生成树)(解题报告)
- Penetration test 2 --- XSS, CSRF, file upload, file inclusion, deserialization vulnerability
猜你喜欢
Programmers, what are your skills in code writing?
PySide6 信号、槽
B - Code Party (girls' competition)
[teacher Gao UML software modeling foundation] collection of exercises and answers for level 20 cloud class
Ball Dropping
Penetration test (3) -- Metasploit framework (MSF)
Write web games in C language
D - function (HDU - 6546) girls' competition
Penetration test (4) -- detailed explanation of meterpreter command
Vs2019 initial use
随机推荐
China potato slicer market trend report, technical dynamic innovation and market forecast
STM32 how to use stlink download program: light LED running light (Library version)
【练习-6】(Uva 725)Division(除法)== 暴力
Opencv learning log 18 Canny operator
The most complete programming language online API document
Essai de pénétration (1) - - outils nécessaires, navigation
Nodejs+vue online fresh flower shop sales information system express+mysql
信息安全-安全专业名称|CVE|RCE|POC|VUL|0DAY
Shell脚本编程
C language must memorize code Encyclopedia
【练习-3】(Uva 442)Matrix Chain Multiplication(矩阵链乘)
用C语言写网页游戏
Information security - Epic vulnerability log4j vulnerability mechanism and preventive measures
Information security - security professional name | CVE | rce | POC | Vul | 0day
Differential (one-dimensional, two-dimensional, three-dimensional) Blue Bridge Cup three body attack
【练习4-1】Cake Distribution(分配蛋糕)
0-1背包問題(一)
Research Report on market supply and demand and strategy of China's earth drilling industry
B - Code Party (girls' competition)
渗透测试 ( 4 ) --- Meterpreter 命令详解