- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我从 SDK 获得像素格式为 BGR 的图像,即 BGRBGRBGR
。对于另一个应用程序,我需要将此格式转换为 RGB 平面 RRRGGGBBB
。我不想为此任务使用额外的库,因此我必须使用自己的代码在格式之间进行转换。
我正在使用 C# .NET 4.5 32 位,数据位于具有相同大小的字节数组中。
现在我正在遍历数组源并将 BGR 值分配到目标数组中的适当位置,但这花费的时间太长(1.3 兆像素图像需要 250 毫秒)。运行代码的处理器是 Intel Atom E680,可以访问 MMX、SSE、SSE2、SSE3、SSSE3。
不幸的是,我不了解内在函数,无法为类似问题转换代码,如 Fast method to copy memory with translation - ARGB to BGR满足我的需求。
我目前用来在像素格式之间进行转换的代码是:
// the array with the BGRBGRBGR pixel data
byte[] source;
// the array with the RRRGGGBBB pixel data
byte[] result;
// the amount of pixels in one channel, width*height
int imageSize;
for (int i = 0; i < source.Length; i += 3)
{
result[i/3] = source[i + 2]; // R
result[i/3 + imageSize] = source[i + 1]; // G
result[i/3 + imageSize * 2] = source[i]; // B
}
我尝试将对源数组的访问分成三个循环,每个循环一个,但它并没有真正帮助。所以我愿意接受建议。
for (int i = 0; i < source.Length; i += 3)
{
result[i/3] = source[i + 2]; // R
}
for (int i = 0; i < source.Length; i += 3)
{
result[i/3 + imageSize] = source[i + 1]; // G
}
for (int i = 0; i < source.Length; i += 3)
{
result[i/3 + imageSize * 2] = source[i]; // B
}
编辑:我通过像这样删除除法和乘法将它降低到 180 毫秒,但是有没有办法让它更快?它仍然很慢,我猜这是因为内存读/写不是很理想。
int targetPosition = 0;
int imageSize2 = imageSize * 2;
for (int i = 0; i < source.Length; i += 3)
{
result[targetPosition] = source[i + 2]; // R
targetPosition++;
}
targetPosition = 0;
for (int i = 0; i < source.Length; i += 3)
{
result[targetPosition + imageSize] = source[i + 1]; // G
targetPosition++;
}
targetPosition = 0;
for (int i = 0; i < source.Length; i += 3)
{
result[targetPosition + imageSize2] = source[i]; // B
targetPosition++;
}
感谢 MBo 的回答,我能够将时间从 180 毫秒减少到 90 毫秒!这是代码:
转换器.cpp:
#include "stdafx.h"
BOOL __stdcall DllMain(HINSTANCE hInst, DWORD dwReason, LPVOID lpReserved) {
return TRUE;
}
const unsigned char Mask[] = { 0, 3, 6, 9,
1, 4, 7, 10,
2, 5, 8, 11,
12, 13, 14, 15};
extern "C" __declspec(dllexport) char* __stdcall ConvertPixelFormat(unsigned char* source, unsigned char *target, int imgSize) {
_asm {
//interleave r1g1b1 r2g2b2 r3g3b3 r4b4g4 r5b5g5 r6... to planar
// r1r2r3r4r5..... g1g2g3g4g5... b1b2b3b4b5...
push edi
push esi
mov eax, source //A address
mov edx, target //B address
mov ecx, imgSize
movdqu xmm5, Mask //load shuffling mask
mov edi, imgSize //load interleave step
mov esi, eax
add esi, edi
add esi, edi
add esi, edi
shr ecx, 2 //divide count by 4
dec ecx //exclude last array chunk
jle Rest
Cycle:
movdqu xmm0, [eax] //load 16 bytes
pshufb xmm0, xmm5 //shuffle bytes, we are interested in 12 ones
movd [edx], xmm0 //store 4 bytes of R
psrldq xmm0, 4 //shift right register, now G is on the end
movd [edx + edi], xmm0 //store 4 bytes of G to proper place
psrldq xmm0, 4 //do the same for B
movd [edx + 2 * edi], xmm0
add eax, 12 //shift source index to the next portion
add edx, 4 //shift destination index
loop Cycle
Rest: //treat the rest of array
cmp eax, esi
jae Finish
mov ecx, [eax]
mov [edx], cl //R
mov [edx + edi], ch //G
shr ecx, 16
mov [edx + 2 * edi], cl //B
add eax, 3
add edx, 1
jmp Rest
Finish:
pop esi
pop edi
}
}
C# 文件:
// Code to define the method
[DllImport("Converter.dll")]
unsafe static extern void ConvertPixelFormat(byte* source, byte* target, int imgSize);
// Code to execute the conversion
unsafe
{
fixed (byte* sourcePointer = &source[0])
{
fixed (byte* resultPointer = &result[0])
{
ConvertPixelFormat(sourcePointer, resultPointer, imageSize);
}
}
}
最佳答案
我已经在 Delphi 中实现了这个交错问题并检查了内置的 asm。我没有内在函数,所以使用普通汇编程序。
pshufb
等于 _mm_shuffle_epi8
( SSSE3 intrinsic )
在每个循环步骤中,我加载 16 个字节 (r1g1b1 r2g2b2 r3g3b3 r4b4g4 r5b5g5 r6)
到 128 位 XMM 寄存器,将它们打乱成 (r1r2r3r4 g1g2g3g4 b1b2b3b4 xxxx)
顺序,并将 r、g、b block 保存到目标内存(忽略最后 4 个字节)。下一步加载 (r5b5g5 r6g6b6 r7g7b7 ...)
等等。
注意,为了简化代码,我在第一个代码版本中没有正确处理数组的尾部。由于您可以使用此代码,因此我进行了必要的更正。
第一个版本问题示例:
imgSize = 32
数组大小 = 96 字节
32/4 = 8 个周期
最后一个周期从第 84 个字节开始读取 16 个字节直到第 99 个字节 - 所以我们超出了数组范围!
我只是在此处添加了保护字节:GetMem(A, Size * 3 + 15);
,但对于实际任务它可能不适用,因此值得对最后一个数组 block 进行特殊处理。
此代码在 i5-4670 机器上转换 200 个 1.3MP cadr 需要 967 毫秒用于 pascal 变体和 140 毫秒用于 asm 变体(处理器本身的单线程速度比 Atom 680 快 6-8 倍)。速度大约为 0.75 GB/Sec (pas) 和 5.4 GB/Sec (asm)
const
Mask: array[0..15] of Byte = ( 0, 3, 6, 9,
1, 4, 7, 10,
2, 5, 8, 11,
12, 13, 14, 15);
var
A, B: PByteArray;
i, N, Size: Integer;
t1, t2: DWord;
begin
Size := 1280 * 960 * 200;
GetMem(A, Size * 3);
GetMem(B, Size * 3);
for i := 0 to Size - 1 do begin
A[3 * i] := 1;
A[3 * i + 1] := 2;
A[3 * i + 2] := 3;
end;
t1 := GetTickCount;
for i := 0 to Size - 1 do begin
B[i] := A[3 * i];
B[i + Size] := A[3 * i + 1];
B[i + 2 * Size] := A[3 * i + 2];
end;
t2:= GetTickCount;
//interleave r1g1b1 r2g2b2 r3g3b3 r4b4g4 r5b5g5 r6... to planar
//r1r2r3r4r5..... g1g2g3g4g5... b1b2b3b4b5...
asm
push edi
push esi
mov eax, A //A address
mov edx, B //B address
mov ecx, Size
movdqu xmm5, Mask //load shuffling mask
mov edi, Size //load interleave step
mov esi, eax
add esi, edi
add esi, edi
add esi, edi
shr ecx, 2 //divide count by 4
dec ecx //exclude last array chunk
jle @@Rest
@@Cycle:
movdqu xmm0, [eax] //load 16 bytes
pshufb xmm0, xmm5 //shuffle bytes, we are interested in 12 ones
movd [edx], xmm0 //store 4 bytes of R
psrldq xmm0, 4 //shift right register, now G is on the end
movd [edx + edi], xmm0 //store 4 bytes of G to proper place
psrldq xmm0, 4 //do the same for B
movd [edx + 2 * edi], xmm0
add eax, 12 //shift source index to the next portion
add edx, 4 //shift destination index
loop @@Cycle
@@Rest: //treat the rest of array
cmp eax, esi
jae @@Finish
mov ecx, [eax]
mov [edx], cl //R
mov [edx + edi], ch //G
shr ecx, 16
mov [edx + 2 * edi], cl //B
add eax, 3
add edx, 1
jmp @@Rest
@@Finish:
pop esi
pop edi
end;
Memo1.Lines.Add(Format('pas %d asm %d', [t2-t1, GetTickCount - t2]));
FreeMem(A);
FreeMem(B);
关于c# - 加速像素格式转换 - BGR packed to RGB planar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27541667/
有没有办法使用 Clojure format(基于 java.util.Formatter)或 cl-format(基于 Common Lisp 的format) 以编程方式设置空格填充?如果您事先知
我正在尝试创建一个用户实体以及数据/文件(pdf格式)。上传并保存到数据库很好,但是当我让用户进入 postman 时尝试发送获取请求方法,然后在数据字段中显示一些糟糕的数据,而且我无法在数据库中看到
我必须将值为 {"STX","ETX"} 的普通字符串数组转换为十六进制值,并且我应该根据 http://www.asciitable.com/ 得到 {2,3} . 最佳答案 听起来你想要一个 Ma
我想格式化我的代码,但不确定哪种格式类型最适合我的项目需要。 我发现仅对于 dart 和 flutter 项目(我都有),有不止一个选项可用于格式化编程语言/框架中预先构建的代码。 Dart : da
我已经尝试了多个代码,例如这样 Sub DateFixer() Application.ScreenUpdating = False Application.Calculation =
SolrQuery query = new SolrQuery(); query.setQuery("*:*"); query.add("wt","csv"); server.query(query)
我有一个包含多个字符串的数据库,我从查询中获取了这些记录,并且我在 QString 中收到了这种格式的数据: "Mon, 13 Nov 2017 09:48:45 +0000" 所以,我需要根据文化来
我有一个 Delphi 2007 DBGrid,我想让用户以更新的 Excel 格式 (OOXML) 保存它,但我的标准是用户不需要安装 Excel。有没有人知道任何已经这样做的组件?是的,我已经搜索
我正在我们的普通 html 站点旁边创建一个移动站点。使用 rails 3.1。移动站点在子域 m.site.com 中访问。 我已经定义了移动格式(Mime::Type.register_alias
我正在尝试使用 xmlstarlet 格式化 xml 文件,但我不想创建新的 xml 文件。 我试过了 xmlstarlet fo --inplace --indent-tab --omit-decl
我在 A 列中有一个带有文本的电子表格。 例如 A1=MY TEXT1 A2=MY TEXT2 A3=MY TEXT3 A4=MY TEXT4 A5=MY TEXT5 我想在文本的前后添加撇号 结果是
我想做一些源代码转换(自动导入列表清理),我想保留注释和格式。我听说过一些关于解析器这样做的事情,我认为是 ghc 解析器。 看起来我可以通过从文件中提取内容来使用 hs-src-exts Langu
我在 Excel 中工作,我想根据另一张表中的列表找出一张表中是否有匹配项。 我已将值粘贴到列表中,并希望从另一张表中返回它们的相应值。包含字母和数字的单元格可以正常工作(例如:D5765000),但
我有一个 DurationField在我的模型中定义为 day0 = models.DurationField('Duration for Monday', default=datetime.time
我正在为我的应用程序开发 WMI 查询。它需要为给定的 VID/PID 找到分配的虚拟 COM 端口。使用 WMI Code Creator 我发现...... 命名空间:root\CIMV2 类:W
我试图弄清楚如何使用 NSTextList,但除了 this SO question 之外,在网上几乎没有找到有用的信息。和 the comment in this blog . 使用这个我已经能够创
我要查询all_objects表在哪里last_ddl_time='01 jan 2010'但它拒绝日期格式... 任何机构给我查询的确切格式? 最佳答案 正如 AKF 所说,您应该使用 Trunc除
我试图在我的应用程序中实现聊天功能。我使用了 2 个 JEditorPane。一个用于保存聊天记录,另一个用于将聊天发送到前一个 JEditorPane。 JEditorPane 是 text/h
我在大学里修了一个编译器类(class),内容非常丰富,很有趣,尽管也很多工作。既然给了我们要实现的语言规范,所以我学不到的一件事就是语言设计。我现在正在考虑创建一种有趣的简单玩具语言,以便我可以玩耍
Closed. This question does not meet Stack Overflow guidelines。它当前不接受答案。 想改善这个问题吗?更新问题,以便将其作为on-topic
我是一名优秀的程序员,十分优秀!