Click here to Skip to main content
15,905,679 members
Home / Discussions / C#
   

C#

 
AnswerRe: object reference not set to an instance of an object Pin
Chinmaya C2-Apr-13 22:42
Chinmaya C2-Apr-13 22:42 
GeneralRe: object reference not set to an instance of an object Pin
surya 20133-Apr-13 3:05
surya 20133-Apr-13 3:05 
GeneralRe: object reference not set to an instance of an object Pin
Chinmaya C3-Apr-13 18:03
Chinmaya C3-Apr-13 18:03 
GeneralRe: object reference not set to an instance of an object Pin
surya 20133-Apr-13 18:39
surya 20133-Apr-13 18:39 
AnswerRe: object reference not set to an instance of an object Pin
Simon_Whale3-Apr-13 3:17
Simon_Whale3-Apr-13 3:17 
AnswerRe: object reference not set to an instance of an object Pin
Pete O'Hanlon3-Apr-13 6:54
mvePete O'Hanlon3-Apr-13 6:54 
QuestionC# BITMAP to Binary.. Pin
정성만2-Apr-13 16:07
정성만2-Apr-13 16:07 
AnswerRe: C# BITMAP to Binary.. Pin
Richard MacCutchan2-Apr-13 22:01
mveRichard MacCutchan2-Apr-13 22:01 
AnswerRe: C# BITMAP to Binary.. Pin
Eddy Vluggen3-Apr-13 7:05
professionalEddy Vluggen3-Apr-13 7:05 
Questionerror in query with 2 tables in c# visual studio 2010 Pin
User34902-Apr-13 9:40
User34902-Apr-13 9:40 
AnswerRe: error in query with 2 tables in c# visual studio 2010 Pin
Pete O'Hanlon2-Apr-13 10:12
mvePete O'Hanlon2-Apr-13 10:12 
GeneralRe: error in query with 2 tables in c# visual studio 2010 Pin
User34902-Apr-13 11:04
User34902-Apr-13 11:04 
GeneralRe: error in query with 2 tables in c# visual studio 2010 Pin
Pete O'Hanlon2-Apr-13 11:14
mvePete O'Hanlon2-Apr-13 11:14 
GeneralRe: error in query with 2 tables in c# visual studio 2010 Pin
User34902-Apr-13 11:35
User34902-Apr-13 11:35 
GeneralRe: error in query with 2 tables in c# visual studio 2010 Pin
Pete O'Hanlon2-Apr-13 11:39
mvePete O'Hanlon2-Apr-13 11:39 
GeneralRe: error in query with 2 tables in c# visual studio 2010 Pin
User34902-Apr-13 11:47
User34902-Apr-13 11:47 
GeneralRe: error in query with 2 tables in c# visual studio 2010 Pin
Pete O'Hanlon2-Apr-13 11:50
mvePete O'Hanlon2-Apr-13 11:50 
GeneralRe: error in query with 2 tables in c# visual studio 2010 Pin
User34902-Apr-13 12:00
User34902-Apr-13 12:00 
GeneralRe: error in query with 2 tables in c# visual studio 2010 Pin
Ravi Bhavnani4-Apr-13 6:18
professionalRavi Bhavnani4-Apr-13 6:18 
GeneralMessage Closed Pin
4-Apr-13 10:21
User34904-Apr-13 10:21 
GeneralRe: error in query with 2 tables in c# visual studio 2010 Pin
Ravi Bhavnani4-Apr-13 11:50
professionalRavi Bhavnani4-Apr-13 11:50 
SuggestionRe: error in query with 2 tables in c# visual studio 2010 Pin
ROHIT SRIVASTAVA3-Apr-13 2:58
ROHIT SRIVASTAVA3-Apr-13 2:58 
Question1500x1500 image at 30fps on wpf Pin
Andreoli Carlo2-Apr-13 4:58
professionalAndreoli Carlo2-Apr-13 4:58 
Hello,

i'm moving my actual winform based application to WPF.

My application acquire 1500x1500 8bit depth images at 30 frame per second.

In winform i was used to BitBlt my images to a panel handle and that work fine.

In wpf i tried two ways:

C#
// on every frame:
int stride = img_w * ((PixelFormats.Gray8.BitsPerPixel + 7) / 8);
bmpSource = BitmapSource.Create(img_w, img_h, 96, 96, PixelFormats.Gray8, null, my_arrb_8bit, stride);
            
this.Image1.Source = bmpSource;


but this is too slow...then i try

C#
// on every frame:
int max = PixelFormats.Rgb24.BitsPerPixel;
uint count = (uint)(img_w * img_h * PixelFormats.Rgb24.BitsPerPixel / 8);
IntPtr section = CreateFileMapping(new IntPtr(-1), IntPtr.Zero, FileMapProtection.PageReadWrite, 0, count, null);
IntPtr map = MapViewOfFile(section, FileMapAccess.FileMapAllAccess, 0, 0, (UIntPtr)count);
 
System.Runtime.InteropServices.Marshal.Copy(my_arrb_24bit, 0, map, (int)count);
my_ibs = System.Windows.Interop.Imaging.CreateBitmapSourceFromMemorySection(
    section,
    (int)img_w,
    (int)img_h,
    PixelFormats.Rgb24,
    (int)(img_w * PixelFormats.Rgb24.BitsPerPixel / 8), 0) as System.Windows.Interop.InteropBitmap;
this.Image1.Source = my_ibs;


this is faster than the first solution, but still i can't manage to reach 30fps....am i doing something wrong? any suggestion?
AnswerRe: 1500x1500 image at 30fps on wpf Pin
Pete O'Hanlon2-Apr-13 5:24
mvePete O'Hanlon2-Apr-13 5:24 
GeneralRe: 1500x1500 image at 30fps on wpf Pin
Andreoli Carlo2-Apr-13 23:06
professionalAndreoli Carlo2-Apr-13 23:06 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.