Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

android / dayu

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • dayu
  • ..
  • util
  • RotaterUtil.java
Find file
Normal viewHistoryPermalink
RotaterUtil.java 2.64 KB
Newer Older
罗翻's avatar
增加人脸识别
5b0d1c4f
 
罗翻 committed 7 years ago
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 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
package com.megvii.idcardlib.util;


public class RotaterUtil {

	public static byte[] rotate(byte[] data, int imageWidth, int imageHeight,
			int rotate) {
		switch (rotate) {
		case 0:
			return data;
		case 90:
			return rotateYUV420Degree90(data, imageWidth, imageHeight);
		case 180:
			return rotateYUV420Degree180(data, imageWidth, imageHeight);
		case 270:
			return rotateYUV420Degree270(data, imageWidth, imageHeight);
		}
		return data;
	}

	public static byte[] rotateYUV420Degree90(byte[] data, int imageWidth,
			int imageHeight) {
		byte[] yuv = new byte[imageWidth * imageHeight * 3 / 2];
		// Rotate the Y luma
		int i = 0;
		for (int x = 0; x < imageWidth; x++) {
			for (int y = imageHeight - 1; y >= 0; y--) {
				yuv[i] = data[y * imageWidth + x];
				i++;
			}

		}
		// int offset = imageWidth * imageHeight;
		// for (int x = 0; x < imageWidth / 2; x ++)
		// for (int y = imageHeight / 2 - 1; y >= 0; y --) {
		// yuv[i] = data[offset + (y * imageWidth) + x];
		// i ++ ;
		// yuv[i] = data[offset + (y * imageWidth) + x + 1];
		// i ++;
		// }

		// Rotate the U and V color components
		i = imageWidth * imageHeight * 3 / 2 - 1;
		for (int x = imageWidth - 1; x > 0; x = x - 2) {
			for (int y = 0; y < imageHeight / 2; y++) {
				yuv[i] = data[(imageWidth * imageHeight) + (y * imageWidth) + x];
				i--;
				yuv[i] = data[(imageWidth * imageHeight) + (y * imageWidth)
						+ (x - 1)];
				i--;
			}
		}
		return yuv;
	}

	public static byte[] rotateYUV420Degree180(byte[] data, int imageWidth,
			int imageHeight) {
		byte[] yuv = new byte[imageWidth * imageHeight * 3 / 2];
		int i = 0;
		int count = 0;

		for (i = imageWidth * imageHeight - 1; i >= 0; i--) {
			yuv[count] = data[i];
			count++;
		}

		i = imageWidth * imageHeight * 3 / 2 - 1;
		for (i = imageWidth * imageHeight * 3 / 2 - 1; i >= imageWidth
				* imageHeight; i -= 2) {
			yuv[count++] = data[i - 1];
			yuv[count++] = data[i];
		}
		return yuv;
	}

	public static byte[] rotateYUV420Degree270(byte[] data, int imageWidth,
			int imageHeight) {
		byte[] yuv = new byte[imageWidth * imageHeight * 3 / 2];
		// Rotate the Y luma

		int index = 0;
		int i = 0;
		for (int x = imageWidth - 1; x >= 0; x--) {
			index = 0;
			for (int y = 0; y < imageHeight; y++) {
				yuv[i] = data[index + x];
				i++;

				index += imageWidth;
			}

		}
		// Rotate the U and V color components
		i = imageWidth * imageHeight;
		int count = imageWidth * imageHeight;
		for (int x = imageWidth - 1; x > 0; x = x - 2) {
			index = count;
			for (int y = 0; y < imageHeight / 2; y++) {

				yuv[i] = data[index + (x - 1)];
				i++;
				yuv[i] = data[index + x];
				i++;

				index += imageWidth;
			}
		}
		return yuv;
	}
}