processing_camera_image.dart
2.38 KB
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
import 'dart:typed_data';
import 'package:image/image.dart' as imglib;
import 'package:processing_camera_image/processing_camera_image_i.dart';
abstract class ProcessingCameraImage {
factory ProcessingCameraImage() => IProcessingCameraImage();
/// [processCameraImageToRGB]. for Android with YUV420.
imglib.Image? processCameraImageToRGB({
int? width,
int? height,
Uint8List? plane0,
Uint8List? plane1,
Uint8List? plane2,
double? rotationAngle,
int? bytesPerRowPlane0,
int? bytesPerRowPlane1,
int? bytesPerPixelPlan1,
int backGroundColor = 0xFFFFFFFF,
bool isFlipHoriozntal = false,
bool isFlipVectical = false,
});
/// [processCameraImageToGray]. for Android with YUV420.
imglib.Image? processCameraImageToGray({
int? width,
int? height,
Uint8List? plane0,
double? rotationAngle,
int backGroundColor = 0xFFFFFFFF,
bool isFlipHoriozntal = false,
bool isFlipVectical = false,
});
/// [processCameraImageToRGBOHOS]. for IOS with NV21.
imglib.Image? processCameraImageToRGBOHOS({
int? width,
int? height,
Uint8List? plane0,
double? rotationAngle,
int backGroundColor = 0xFFFFFFFF,
bool isFlipHoriozntal = false,
bool isFlipVectical = false,
});
/// [processCameraImageToRGBIOS]. for IOS with NV12.
imglib.Image? processCameraImageToRGBIOS({
int? width,
int? height,
Uint8List? plane0,
Uint8List? plane1,
double? rotationAngle,
int? bytesPerRowPlane0,
int? bytesPerRowPlane1,
int? bytesPerPixelPlan1,
int backGroundColor = 0xFFFFFFFF,
bool isFlipHoriozntal = false,
bool isFlipVectical = false,
});
/// [processCameraImageToGrayIOS]. for IOS with NV12.
imglib.Image? processCameraImageToGrayIOS({
int? width,
int? height,
Uint8List? plane0,
double? rotationAngle,
int backGroundColor = 0xFFFFFFFF,
bool isFlipHoriozntal = false,
bool isFlipVectical = false,
});
/// [processCameraImageToGray8Bit]. for Android with YUV420.
Image8bit? processCameraImageToGray8Bit({
int? width,
int? height,
Uint8List? plane0,
double? rotationAngle,
int backGroundColor = 0xFF,
bool isFlipHoriozntal = false,
bool isFlipVectical = false,
});
}
class Image8bit {
final int width;
final int heigh;
final Uint8List data;
Image8bit({required this.data, required this.heigh, required this.width});
}