2021—2022学年第一学期寒假学习记录1

发布时间:2022-06-26 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了2021—2022学年第一学期寒假学习记录1脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。

2022.01.01,今天是服务外包竞赛:随便拿个奖队的项目进行前动员大会,会议内容包括梓琪队长对我们进行的亲切问候和我们下一步的具体计划。

以下是参考资料摘自https://blog.csdn.net/qq_38342510/article/details/121228052

识别图片中曲线并获取其坐标

有时候需要用到一些数据库里面曲线图的数据,进行进一步的变换处理,但是很多时候都只有图片,没有数据。基于这个问题,给出了以下算法。思路:

 1)通过图像算法中常用的边界识别的方法来识别曲线; 2)根据曲线上每一点的像素坐标和坐标轴的数值范围,来计算曲线上每一个像素点在坐标轴中的像素坐标。

实现过程:

一、曲线识别1)图片预处理思路: 将待处理的图像转换成灰度图,在转换成二值图像;対二值图像的每一行和每一列的像素求和,根据像素和识别出图像的坐标轴范围;在坐标轴范围内遍历二值图像的每一列,将每列中像素值为0的像素下面的像素值全部置零。

原图:[(img-PlRNIiCW-1636440564958)(“图片路径”, “原图”)]

具体实现:

将图像转换成二值图像:

# 打开图片 img = cv.imread(pic_name) # 灰度化 gray_img = cv.cvtColor(img, cv.COLOR_BGR2GRAY) # 二值化 # 此时的第二个和第三个参数, # 即二值化的上下阈值需要根据图片的实际情况个来调整 ret, binary_img = cv.threshold(gray_img, 180, 255, cv.THRESH_BINARY)识别坐标轴的范围:

# 图像像素按行和列求和 # 二值图像反相 con_bi_img = 255 - binary_img column_sum_img = np.sum(con_bi_img, axis=0) row_sum_img = np.sum(con_bi_img, axis=1) # 排序 sort_column_sum = np.sort(column_sum_img) sort_column_sum_indices = np.argsort(column_sum_img) sort_row_sum = np.sort(row_sum_img) sort_row_sum_indices = np.argsort(row_sum_img) print("列:n") print(sort_column_sum[len(sort_column_sum) - 5:]) print(sort_column_sum_indices[len(sort_column_sum_indices) - 5:]) print("行:n") print(sort_row_sum[len(sort_row_sum) - 5:]) print(sort_row_sum_indices[len(sort_row_sum_indices) - 5:])将曲线和坐标轴之间的区域设置成黑色:

for i in range(45, 773): flag = 0 for j in range(73, 495): if binary_img[j][i] == 0: flag += j break for j in range(flag, 495): binary_img[j][i] = 0预处理结果:[(img-66BqlU2N-1636440564961)(“图片路径”, “预处理结果”)]

2)识别曲线思路: 通过对预处理的到图像进行边缘获取;识别出图像的坐标轴,在坐标轴范围内的边缘线就是所要识别的曲线。

具体实现:

边缘提取:

# 边缘提取 xgrd = cv.Sobel(binary_img, cv.CV_16SC1, 1, 0) ygrd = cv.Sobel(binary_img, cv.CV_16SC1, 0, 1 egde_output = cv.Canny(xgrd, ygrd, 50, 150)曲线获取:

# 图像像素按行和列求和 column_sum_img = np.sum(egde_output, axis=0) row_sum_img = np.sum(egde_output, axis=1) # 排序 sort_column_sum = np.sort(column_sum_img) sort_column_sum_indices = np.argsort(column_sum_img) sort_row_sum = np.sort(row_sum_img) sort_row_sum_indices = np.argsort(row_sum_img) print(sort_column_sum[len(sort_column_sum) - 10:]) print(sort_column_sum_indices[len(sort_column_sum_indices) - 10:]) print(sort_row_sum[len(sort_row_sum) - 10:]) print(sort_row_sum_indices[len(sort_row_sum_indices) - 10:])

fc = egde_output[71:494, 47:770]曲线识别结果:[(img-SRwtfHfc-1636440564963)(“图片路径”, “曲线识别结果”)]

二、坐标计算思路:

 根据原图的坐标范围与像素的对应关系来计算曲线上每一个像素的数值坐标。

具体实现: # 提取图像数据 rows = (fc.shape)[0] cols = (fc.shape)[1]

min_x = 4000 max_x = 400 min_y = 0.0 max_y = 0.95

x_axis = np.empty([rows, cols]) y_axis = np.empty([cols, rows])

# x_interval和y_interval用于调整数据长度,在报错的时候可以通过他们来调整 x_interval = (max_x - min_x) / (cols + 1) x_value = np.arange(min_x + x_interval, max_x, x_interval) y_interval = (max_y - min_y) / (rows + 1) y_value = np.arange(max_y - y_interval, min_y, -y_interval)

x_axis[:, ] = x_value y_axis[:, ] = y_value y_axis = y_axis.T

x_fc = x_axis.T[fc.T == 255] y_fc = y_axis.T[fc.T == 255]x_fc 和 y_fc 即为所求曲线的横坐标和纵坐标曲线获取结果:[(img-aC7heHzO-1636440564964)(“图片路径”, “曲线获取结果”)]

完整代码: 为方便代码修改和阅读,上文中的几个步骤的实现分别在独立的文件中,共有三个文件。

./main.py

import get_curve as gc

pic_name = "the path of the original picture"res = gc.get_points(pic_name)./pic_prepro.py

import numpy as npimport cv2 as cv

def pre_pro(pic_name): # 打开图片 img = cv.imread(pic_name) # 灰度化 gray_img = cv.cvtColor(img, cv.COLOR_BGR2GRAY) # 二值化 # 此时的第二个和第三个参数, # 即二值化的上下阈值需要根据图片的实际情况个来调整 ret, binary_img = cv.threshold(gray_img, 180, 255, cv.THRESH_BINARY) cv.imshow('binary_img', binary_img) cv.waitKey(0) cv.destroyAllWindows()

# 图像像素按行和列求和 # 二值图像反相 con_bi_img = 255 - binary_img # print(np.shape(binary_img)) cv.imshow('con_bi_img', con_bi_img) cv.waitKey(0) cv.destroyAllWindows() column_sum_img = np.sum(con_bi_img, axis=0) row_sum_img = np.sum(con_bi_img, axis=1) # 排序 sort_column_sum = np.sort(column_sum_img) sort_column_sum_indices = np.argsort(column_sum_img) sort_row_sum = np.sort(row_sum_img) sort_row_sum_indices = np.argsort(row_sum_img) print("列:n") print(sort_column_sum[len(sort_column_sum) - 5:]) print(sort_column_sum_indices[len(sort_column_sum_indices) - 5:]) print("行:n") print(sort_row_sum[len(sort_row_sum) - 5:]) print(sort_row_sum_indices[len(sort_row_sum_indices) - 5:])

# 通过每一列和每一行像素和的输出值,判断坐标轴的位置 # 在坐标轴范围内遍历每一列,将曲线下面的部分设置成黑色 for i in range(45, 773): flag = 0 for j in range(73, 495): if binary_img[j][i] == 0: flag += j break for j in range(flag, 495): binary_img[j][i] = 0 cv.imshow('binary_img', binary_img) cv.waitKey(0) cv.destroyAllWindows() return binary_img./get_curve.py

import numpy as npfrom numpy.core.fromnumeric import shapeimport cv2 as cvimport pic_prepro as pp

def get_points(picture_name):

binary_img = pp.pre_pro(picture_name) cv.imshow('binary_img', binary_img) cv.waitKey(0) cv.destroyAllWindows()

# 边缘提取 xgrd = cv.Sobel(binary_img, cv.CV_16SC1, 1, 0) ygrd = cv.Sobel(binary_img, cv.CV_16SC1, 0, 1)

egde_output = cv.Canny(xgrd, ygrd, 50, 150) cv.imshow('canny_edge', egde_output) cv.waitKey(0) cv.destroyAllWindows()

# 图像像素按行和列求和 column_sum_img = np.sum(egde_output, axis=0) row_sum_img = np.sum(egde_output, axis=1) # 排序 sort_column_sum = np.sort(column_sum_img) sort_column_sum_indices = np.argsort(column_sum_img) sort_row_sum = np.sort(row_sum_img) sort_row_sum_indices = np.argsort(row_sum_img) print(sort_column_sum[len(sort_column_sum) - 10:]) print(sort_column_sum_indices[len(sort_column_sum_indices) - 10:]) print(sort_row_sum[len(sort_row_sum) - 10:]) print(sort_row_sum_indices[len(sort_row_sum_indices) - 10:])

fc = egde_output[71:494, 47:770] cv.imshow('function_curve', fc) cv.waitKey(0) cv.destroyAllWindows()

# 提取图像数据 rows = (fc.shape)[0] cols = (fc.shape)[1]

min_x = 4000 max_x = 400 min_y = 0.0 max_y = 0.95

x_axis = np.empty([rows, cols]) y_axis = np.empty([cols, rows])

# x_interval和y_interval用于调整数据长度,在报错的时候可以通过他们来调整 x_interval = (max_x - min_x) / (cols + 1) x_value = np.arange(min_x + x_interval, max_x, x_interval) y_interval = (max_y - min_y) / (rows + 1) y_value = np.arange(max_y - y_interval, min_y, -y_interval)

x_axis[:, ] = x_value y_axis[:, ] = y_value y_axis = y_axis.T

x_fc = x_axis.T[fc.T == 255] y_fc = y_axis.T[fc.T == 255]

return (x_fc, y_fc)

 

TRANSLATE with 2021—2022学年第一学期寒假学习记录1 x
English
Arabic Hebrew Polish
Bulgarian Hindi Portuguese
Catalan Hmong Daw Romanian
Chinese Simplified Hungarian Russian
Chinese Traditional Indonesian Slovak
Czech Italian Slovenian
Danish Japanese Spanish
Dutch Klingon Swedish
English Korean Thai
Estonian Latvian Turkish
Finnish Lithuanian Ukrainian
French Malay Urdu
German Maltese Vietnamese
Greek Norwegian Welsh
Haitian Creole Persian  
2021—2022学年第一学期寒假学习记录1
2021—2022学年第一学期寒假学习记录1 2021—2022学年第一学期寒假学习记录1 2021—2022学年第一学期寒假学习记录1
 
TRANSLATE with 2021—2022学年第一学期寒假学习记录1
COPY THE URL BELOW
2021—2022学年第一学期寒假学习记录1
2021—2022学年第一学期寒假学习记录1 Back
EMBED THE SNIPPET BELOW IN YOUR SITE 2021—2022学年第一学期寒假学习记录1
Enable collaborative features and customize widget: Bing Webmaster Portal
Back

脚本宝典总结

以上是脚本宝典为你收集整理的2021—2022学年第一学期寒假学习记录1全部内容,希望文章能够帮你解决2021—2022学年第一学期寒假学习记录1所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签:数据库