C++ 矩形图像旋转后的宽高计算方法

矩形图像旋转后的宽高计算涉及到图像处理和矩阵运算。

以下是一个简单的C++示例,展示如何计算一个矩形图像旋转后的宽度和高度:

cpp 复制代码
#include <iostream>  
#include <cmath>  
  
using namespace std;  
  
int main() {  
    double width = 5.0;  // 原始宽度  
    double height = 3.0;  // 原始高度  
    double angle = 45.0;  // 旋转角度(以度为单位)  
  
    // 将旋转角度从度转换为弧度  
    angle = angle * M_PI / 180.0;  
  
    // 计算旋转后的宽度和高度  
    double rotated_width = height * fabs(sin(angle)) + width * fabs(cos(angle));  
    double rotated_height = height * fabs(cos(angle)) + width * fabs(sin(angle));  
  
    cout << "Rotated Width: " << rotated_width << endl;  
    cout << "Rotated Height: " << rotated_height << endl;  
  
    return 0;  
}

其中M_PI 的定义可以参照

https://blog.csdn.net/wangnaisheng/article/details/132896399

相关推荐
懒羊羊大王&5 小时前
模版进阶(沉淀中)
c++
owde6 小时前
顺序容器 -list双向链表
数据结构·c++·链表·list
GalaxyPokemon6 小时前
Muduo网络库实现 [九] - EventLoopThread模块
linux·服务器·c++
W_chuanqi6 小时前
安装 Microsoft Visual C++ Build Tools
开发语言·c++·microsoft
tadus_zeng7 小时前
Windows C++ 排查死锁
c++·windows
EverestVIP7 小时前
VS中动态库(外部库)导出与使用
开发语言·c++·windows
胡斌附体8 小时前
qt socket编程正确重启tcpServer的姿势
开发语言·c++·qt·socket编程
GalaxyPokemon8 小时前
Muduo网络库实现 [十] - EventLoopThreadPool模块
linux·服务器·网络·c++
守正出琦8 小时前
日期类的实现
数据结构·c++·算法
ChoSeitaku8 小时前
NO.63十六届蓝桥杯备战|基础算法-⼆分答案|木材加工|砍树|跳石头(C++)
c++·算法·蓝桥杯