数字图像处理
文章平均质量分 70
起名字什么的好难
在自我提升的路上奔腾不息~
展开
-
DatawhalTask04:不讲武德-炼丹与品尝
训练流程:设置各种超参数定义数据加载模块 dataloader定义网络 model定义损失函数 loss定义优化器 optimizer遍历训练数据,预测-计算loss-反向传播对模型预测进行后处理测试流程:读取一张图片预处理模型预测对模型预测进行后处理后处理:目标框信息解码NMS非极大值抑制#######此代码只包含单个图像后处理,批处理参考原文####### Decode object coordinates from the form we regres原创 2020-12-27 20:36:35 · 140 阅读 · 1 评论 -
收藏几个视频风格迁移的博客地址
Stabilizing neural style-transfer for videoNeural Style Transfer on Real Time Video (With Full implementable code)Real Time Video Neural Style TransferStyle Transfer Guide原创 2020-11-20 18:58:58 · 430 阅读 · 0 评论 -
根据HSV颜色空间提取图像中特定颜色
import cv2import numpy as npimg = cv2.imread('test_img/6_1.jpg')cv2.imshow("original", img)img_hsv = cv2.cvtColor(img, cv2.COLOR_BGR2HSV)rows, cols, channels = img.shape# 区间1lower_red = np.array([0, 43, 46])upper_red = np.array([10, 255, 255])mas原创 2020-10-07 17:06:41 · 2121 阅读 · 1 评论 -
PIL save numpy array as img encounter OSError: cannot write mode F as JPEG
Solution:import numpy as npfrom PIL import Imagewith open('/media/yuxijin/dataset/videos/content/mountain_2/flow/reliable_9_10.txt', 'r') as f: data = f.readlines()header = list(map(int, data[0].split(' ')))w = header[0]h = header[1]vals = np.原创 2020-10-05 18:37:49 · 1333 阅读 · 0 评论 -
Visualize files names in ‘*.flo‘
If you are familiar with python, you can convert your ‘*.flo’ files to png and even video by tools provoided by georgegach/flowiz. Just follow their instruction, you can easily visualize your flow files.Below shows an example of the result by the python c原创 2020-09-29 15:47:28 · 261 阅读 · 0 评论 -
Convert Multiple Frames in a Specified Folder to Video
import globimport cv2import osfiles = glob.glob('bamboo_2/floviz/png/*.png')print(files)files.sort(key=lambda x: x[15:-4])files.sort()print(files)frame_list = []for i in files: img = cv2.imread(i) frame_list.append(img)size = (frame_li原创 2020-09-29 15:21:06 · 154 阅读 · 0 评论 -
MATLAB rgb转hsv后h通道取值含义
MATLAB hsv颜色空间理解原创 2017-12-29 11:46:27 · 20526 阅读 · 32 评论 -
图像质量评估(PSNR+SSIM)-C++
psnr ssim 图像质量评估原创 2017-09-12 18:11:26 · 6834 阅读 · 1 评论 -
高提升滤波
图像锐化中高提升滤波的实现。原创 2016-11-25 11:10:23 · 5394 阅读 · 1 评论 -
Laplacian锐化图像
图像锐化中Laplacian锐化的实现原创 2016-11-25 10:37:22 · 1040 阅读 · 0 评论 -
Sobel锐化图像
图像锐化中的Sobel锐化实现原创 2016-11-25 10:23:54 · 5306 阅读 · 0 评论 -
自适应中值滤波
自适应中值滤波的实现原创 2016-11-25 10:09:05 · 6489 阅读 · 0 评论 -
图像平滑之高斯平滑(模糊)
图像平滑中的高斯平滑的实现原创 2016-11-25 09:53:20 · 3783 阅读 · 0 评论 -
图像平滑之平均平滑
图像平滑中的平均平滑的实现原创 2016-11-25 09:45:23 · 1460 阅读 · 0 评论 -
图像旋转变换
vs实现《数字图像处理与机器视觉》一书中图像旋转变换原创 2016-11-09 15:16:15 · 1084 阅读 · 0 评论 -
图像缩放变换
vs实现《数字图像处理与机器视觉》一书中图像缩放变换原创 2016-11-09 15:26:14 · 679 阅读 · 0 评论 -
图像平移变换
vs实现《数字图像处理与机器视觉》一书中图像平移变换原创 2016-11-08 16:01:52 · 4648 阅读 · 0 评论 -
图像镜像变换
vs实现《数字图像处理与机器视觉》中图像的镜像变换,包括水平镜像和垂直镜像。原创 2016-11-08 17:10:41 · 1512 阅读 · 0 评论 -
图像转置变换
vs实现《数字图像处理与机器视觉》图像转置变换原创 2016-11-08 17:17:27 · 2982 阅读 · 1 评论