zoukankan      html  css  js  c++  java
  • 相似变换 SimilarityTransform 以及skimage源码

    http://scikit-image.org/docs/dev/api/skimage.transform.html#skimage.transform.SimilarityTransform

    https://github.com/scikit-image/scikit-image/blob/master/skimage/transform/_geometric.py#L1040

    https://blog.csdn.net/u014096352/article/details/53526747

    2D similarity transformation.

    Has the following form:

    X = a0 * x - b0 * y + a1 =
      = s * x * cos(rotation) - s * y * sin(rotation) + a1
    
    Y = b0 * x + a0 * y + b1 =
      = s * x * sin(rotation) + s * y * cos(rotation) + b1
    

    where s is a scale factor and the homogeneous transformation matrix is:

    [[a0  b0  a1]
     [b0  a0  b1]
     [0   0    1]]
    

    The similarity transformation extends the Euclidean transformation with a single scaling factor in addition to the rotation and translation parameters.

  • 相关阅读:
    2021/6/28
    2021/6/25
    IDEA快捷键
    maven的一些问题
    Maven安装
    2021/6/14
    nmcli 网络管理工具
    linux yum仓库配置
    linux 防火墙selinux ,firewalld, iptables
    linux root密码重置
  • 原文地址:https://www.cnblogs.com/adong7639/p/9268122.html
Copyright © 2011-2022 走看看