# -*- coding: utf-8 -*-
import cv2
import numpy as np
if __name__ == '__main__':
#path1代校准,path2正常图片
path1 = 'img/xuanzhuan.png'
path2 = 'img/yuantu.jpg'
# Read the images to be aligned
im1 = cv2.imread(path1);
im2 = cv2.imread(path2);
# Convert images to grayscale
im1_gray = cv2.cvtColor(im1,cv2.COLOR_BGR2GRAY)
im2_gray = cv2.cvtColor(im2,cv2.COLOR_BGR2GRAY)
# Find size of image1
sz = im1.shape
图像校正
最新推荐文章于 2024-10-29 18:55:44 发布
本文详细探讨了图像校正的重要性,介绍了常见的图像失真类型及其影响,并阐述了几种主流的校正算法,包括基于几何变换和基于学习的方法。通过实例展示,解释了如何使用这些技术改善图像质量,提升视觉效果。
摘要由CSDN通过智能技术生成