Posts by Thiago • 61 points
2 posts
-
2
votes1
answer114
viewsA: array 1D for Bitmap
The index table was missing (Palette), the problem was solved by adding the code: ColorPalette ^palette = bmpNewGray->Palette; array<Color> ^entries = palette->Entries; for(int i = 0; i…
-
4
votes1
answer114
viewsQ: array 1D for Bitmap
I’ve been working on an FPGA project that sends an array (1D) of Bytes from a grayscale image to the PC. Well, I wrote a simple code with some image to simulate sending and receiving an array and…