The ushort tag has no wiki summary.
2
votes
0answers
33 views
Converting a byte array to a ushort array [duplicate]
I am new to C#, and I need to convert a large buffer stored in a byte[] array (an image) into a ushort[] array. The BitConverter.ToUInt16() method only does this one ushort at a time, so my first ...
7
votes
2answers
277 views
byte[] to ushort[]
Here is my questions. Bear with me giving a little explanation:
I am reading tiff image into buffer; Each pixel of my tiff is represented by a ushort (16 bits data, non-negtive)
My image size is ...
3
votes
2answers
130 views
Why can int be treated as ushort but not when passed as parameter in extension method and and what's an elegant solution to it?
I have this extension method:
public static bool In<T>(this T source, params T[] list)
{
return list.Contains(source);
}
Now I need to use the above method for a ushort. When I try
...
3
votes
1answer
178 views
add uchar values in ushort array with sse2 or sse3
i have an unsigned short dst[16][16] matrix and a larger unsigned char src[m][n] matrix.
Now i have to access in the src matrix and add a 16x16 submatrix to dst, using sse2 or ss3.
In a my older ...
0
votes
1answer
115 views
Why does xor'ing two ushort values not return a ushort? [duplicate]
Possible Duplicate:
C# XOR on two byte variables will not compile without a cast
Why do I get a compile error in this C# code?
void test()
{
ushort a = 0;
ushort b = 0;
ushort c = ...
9
votes
5answers
2k views
Why is ushort (System.UInt16) + ushort equal to int (System.Int32)?
Previously today I was trying to add two ushorts and I noticed that I had to cast the result back to ushort. I thought it might've become an uint (to prevent a possible unintended overflow?), but to ...
4
votes
2answers
543 views
Migrating C# code to Java, unsigned short and byte array conversion
I am writing a piece of code in Java (I'm fairly new to Java) that I have previously written in C#. Here's the code and the example in C#.
ushort number = 0xAABB; // 43707
byte[] data = new byte[2];
...
1
vote
1answer
400 views
Marshal ushort[] over network
I created 2 simple console program and a simple structure.
M11 Object is the test object that we want to send across network.
using System.Runtime.InteropServices;
using System;
namespace ...
0
votes
1answer
423 views
convert ushort[] grayscale values to byte[]
I have uhort[] values in the format 0-65536. But I need this grayscale values in byte form!
How can I convert my ushort values in byte values?
Thanks
1
vote
3answers
1k views
Converting raw-byte values into Java types
I have a problem with converting raw-bytes values into java types. I am receiving bytes by a datagram socket as a bytes array. I know exactly which bytes means what, but I don't know how to convert ...
1
vote
1answer
355 views
sending ushort ulong byte data over tcpclient object
My application in c# wants to cominicate with 3rd party Tcp server to send data and recieve back response messages ...The syntax of commands has UShort,ULONG,BYTE type datas
a sample command that ...
1
vote
1answer
1k views
Byte Array to Word Array to String
I have this byte[]: 00 28 00 60 00 30 10 70 00 22 FF FF.
I want to combine each pair of bytes into a word: 0028 0060 0030 1070 0022 FFFF.
I also want to turn the word array into a string: "0028 0060 ...
2
votes
2answers
525 views
how to get ushort data in c# A909 for 41104?
hello
I'm trying to convert an int value to 16 bit unsigned char type (USHORT)
in example 41104 is A909 in ushort
but in c#
i tried code samples as
byte[] bytes = BitConverter.GetBytes(41104);
...
2
votes
1answer
2k views
How do I print a short as an unsigned short in Java
I have an array of short whose values range between 0 and the maximum value of a short. I scale the data (to display it as TYPE_USHORT) so that the resulting short values range between 0 and 65535. ...
4
votes
2answers
3k views
What is the difference between a word and ushort in C#?
What is the difference between a word and ushort in C#? They are both 16 bits!
1
vote
3answers
1k views
ushort equivalent
I have an application in C# that I'm trying to convert to java. The C# app has a few variables that are of type ushort. Is there an equivalent in java?
Thank you
2
votes
5answers
4k views
C# ushort[] to string conversion; is this possible?
I have a very painful library which, at the moment, is accepting a C# string as a way to get arrays of data; apparently, this makes marshalling for pinvokes easier.
So how do I make a ushort array ...
1
vote
3answers
521 views
Translating Int32 into ushort and back again
I am attempting to devise a system for packing integer values greater than 65535 into a ushort. Let me explain.
We have a system which generates Int32 values using an IDENTITY column from SQL Server ...