-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathShear.cpp
76 lines (70 loc) · 2.13 KB
/
Shear.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/*
* @brief 图像几何变换
* @author 吴驰域 3140100333
* @date 2017-04-19
*/
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include "Mirror.h"
#define BITMAP_ID 0x4D42
unsigned char* shear(BITMAPFILEHEADER *bitmapFileHeader, BITMAPINFOHEADER *bitmapInfoHeader, unsigned char *bitmapData, int x, double d, int *h, int *w)
{
int m = bitmapInfoHeader->biHeight; // 原图大小,像素尺度
int n = (bitmapInfoHeader->biWidth + 3) / 4 * 4 * 3;
if (x == 1) // 对x轴做错切
{
*h = m + abs((int)(d * bitmapInfoHeader->biWidth)); // 新图大小,坐标尺度
*w = bitmapInfoHeader->biWidth;
int row = *h; // 新图大小,像素尺度
int col = *w * 3;
unsigned char* newbitmapData = new unsigned char[row*col];
for (int i = 0; i < row; i++) // 枚举新图
for (int j = 0; j < col; j += 3)
{
int xx = i - d * (j / 3);
int yy = j / 3;
if (xx < 0 || xx > m)
{
newbitmapData[i*col + j] = 255;
newbitmapData[i*col + j + 1] = 255;
newbitmapData[i*col + j + 2] = 255;
}
else {
newbitmapData[i*col + j] = bitmapData[xx*n + yy * 3];
newbitmapData[i*col + j + 1] = bitmapData[xx*n + yy * 3 + 1];
newbitmapData[i*col + j + 2] = bitmapData[xx*n + yy * 3 + 2];
}
}
return newbitmapData;
}
else { // 对y轴做错切
*h = m; // 新图大小,坐标尺度
*w = (bitmapInfoHeader->biWidth + abs((int)(d * bitmapInfoHeader->biHeight))+3)/4*4; // 必须是4的倍数
int row = *h; // 新图大小,像素尺度
int col = *w * 3;
unsigned char* newbitmapData = new unsigned char[row*col];
for (int i = 0; i < row; i++) // 枚举新图
for (int j = 0; j < col; j += 3)
{
if (i > 500 && j > 3000)
{
int p = 1;
}
int xx = i;
int yy = j / 3 - d * i;
if (yy < 0 || yy > bitmapInfoHeader->biWidth)
{
newbitmapData[i*col + j] = 255;
newbitmapData[i*col + j + 1] = 255;
newbitmapData[i*col + j + 2] = 255;
}
else {
newbitmapData[i*col + j] = bitmapData[xx*n + yy * 3];
newbitmapData[i*col + j + 1] = bitmapData[xx*n + yy * 3 + 1];
newbitmapData[i*col + j + 2] = bitmapData[xx*n + yy * 3 + 2];
}
}
return newbitmapData;
}
}