Hello everyone.
I'm a beginner in c#, before I used Matlab to do image processing. Since there's any project should do in C# so I start to learn it.
I have difficulty to convert the array into matrix and than display it into image (bitmap is fine) like "imshow" function in matlab. In this case I used C# window form.
For the replay I'm very appreciate.
Many Thanks
Loading
Mamta MPosted Nov 23, 2011, 2:32 AM
You can use an ImageList control into which you populate an array of images. Then you display each image one by one, by using a PictureBox control, whose source is set to the index of the ImageList control.
http://msdn.microsoft.com/en-us/library/system.windows.forms.imagelist.aspx
Hope that helps, if not then please ask us what you need.
-Mamta