VS 2010 - Display Grayscale Image From Raw Data Using Palette

Jan 19, 2012

Any code for creating the pallet for a Gray scale image, to display it on a picture box? I have written the code for creating for palette for a RGB image which is as follows:

Marshal.Copy(Image_bufffer, 0, _pImg, 1024 * 1024)
myBMP = New Bitmap(1024, 1024, 1024, System.Drawing.Imaging.PixelFormat.Format8bppIndexed, _pImg)
pal = myBMP.Palette
For i As Integer = 0 To pal.Entries.Length - 1
pal.Entries(i) = Color.FromArgb(255, i, i, i)
Next
myBMP.Palette = pal
Picturebox1.Image = myBMP 'Show the image

But the image displayed looks dull(less brightness) than the same image viewed from ImageJ. So instead of creating pallet from color.Argb, is there any way to create palette for a gray scale image?

View 2 Replies


ADVERTISEMENT

Extract 8 Bit Grayscale Image?

Oct 13, 2007

I need to extract 8 bit grayscale image.

My plan is this:
1. input the picture to a picture box no 1
2. load into memory
3. extract all value to a 2D array matriks
4. process the picture
5. Show the result in picture box no 2
6. End

I met a serious problem when i want to load it to memory. For a faster process i use Graphics class (i've got this trick from my friend). but later I found out that graphics wont work for PixelFormat.Format8bppIndexed.

Here's the code:

Imports System.Drawing.Imaging
Imports System.Runtime.InteropServices.Marshal
Public Class LockImage

[Code].....

View 2 Replies

Interface And Graphics :: Converting Image To Grayscale?

Dec 10, 2010

I'm creating a Image viewer and was wondering if anyone could help me with resizing an image, and converting the image to grayscale? My knowledge of visual basics is very limited so any code snippets.I am wanting to resize the original image to a 3 x 3.

View 1 Replies

VS 2008 Converting A Color Image To Grayscale?

Jul 16, 2009

I've been wondering if converting a color image to grayscale will reduce it's size?

And also wondering how to convert the image to grayscale?

View 4 Replies

Develop A Image Processsing Application That Will Analyse Some Grayscale Images?

Jan 14, 2012

I am trying to develop a image processsing application that will analyse some grayscale images, the images in question are basically biological photographs(PCR GEL Photographs) that have some bands which are lighter in shades, and these bands are arranged in some pattern( Mostly linear), Till now, i had suceeded to programatically identify those bands which are distinct and clearly seperated from other band, but the band, which are close, could not be identified as seperate band.more over my algorithms fails miserably in case case of color photographs,and i am clueless for a better approach.

View 2 Replies

Convert A Black And White Image In JPEG Format To A Grayscale TIFF Format?

Jun 5, 2011

Im looking for a class or code in VB.NET that can convert a black and white image in JPEG format to a grayscale TIFF format.

View 2 Replies

VS 2010 : Display A Message Upon Hovering On The Image?

Mar 31, 2011

Shading some areas of a clock's image based on the time.I have successfully shaded some regions based on the start time and end time. But I wish to add a facility so that when the mouse is moved upon a shaded region(there will be atleast 2 shaded regions), I would like to display a message corresponding to that region.

View 22 Replies

VS 2010 Display An Image In Windows Form?

Jun 14, 2011

I'm using VB 2010, accessing a MS Access database. I have constructed a simple Windows Form returning data from the db, one field of which has a reference to an image I'm trying to display together with the data from each individual record.

I have a field with a product number, that matches the jpg file name (ie, the product number 5505 matches an image that I want to display, namely 5505.jpg). I've even created a new field in the db called 'Image', that contains the full name 5505.jpg.

So, I've connected to the db with an OleDbAdapter, and all the data fields are displayed via bound textboxes. I've been able to display a single 'set' image with a PictureBox, but I'm not sure how the make the connection between the returned data (txtSearchImage which is, say, '5505.jpg'), and getting the Windows Form to display this.

Am I on the right track using a PictureBox? I've tried binding this via the PictureBox properties to the relevant data field, but (obviously) it doesn't make the connection to the image file on my hard drive.

Here's my code so far:

Public Class Form1
Private Sub btnSearchKits_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSearchKits.Click
' The following line passes the value the user enter for state

[Code].....

View 4 Replies

VS 2010 Find The Display Size Of An Image In A Picturebox?

Dec 13, 2010

Is there a way to tell the DISPLAY size of an image in a picture box? If the PictureBox.SizeMode=Zoom, the picture sometimes is not displayed as big as the picture box is, and is sometimes displayed smaller, or larger, than the actual image is. I just want to know what size it is actually displaying as.

View 3 Replies

VS 2010 Can't Display Data From Dataset?

Jan 22, 2011

I'm having a bit of trouble showing the data from my access DB within my application. I am using a DataGridView to display the data. Whenever I click the button I have made to display the data.the table remains blank. I am trying to avoid using the designers in VS2010 as this is for A-level coursework and i wont get any marks.

[Code]...

View 2 Replies

C# - How To Add Tab In Color Palette

Dec 13, 2010

I am working in VB.Net 2.0 windows forms. A color palette occurs on click of backcolor of any control. I want to add a new tab in this palette. In the new tab, I want to add the new colors as per the requirement.

View 1 Replies

Put Image In Access Data From 2010?

Jan 14, 2012

Imports System.Drawing.Image
Imports System.IO
Public Class Form1

[code].....

View 2 Replies

VS 2010 : Get Raw Data Of Graphics Image?

Feb 6, 2012

get the raw data of zoomed image in a picture box. But I am zooming the image using,e.Graphics.DrawImage(Picturebox.Image, New Rectangle(ZoomXCordinate, ZoomYCordinate, ZoomWidth, ZoomHeight)).Now I am not getting how to get the raw data of zoomed graphics image displayed on the Picturebox.I am actually trying to get the image data into a byte array.

View 5 Replies

VS 2010 Image Raw Data From Intptr?

May 31, 2012

how to retrive the raw data of the image pointed by an intptr.The thing is the detector gives the pointer to the acquired image and I need to retrieve the image rawdata from the given intptr.

View 1 Replies

Display Data From DATABASE TO LABEL - VB 2010

Jun 7, 2012

I have a VB app and it has a login feature installed. Now when someone logs in into the app I want the users First Name and Last Name to be displayed on my second form where the user gets redirected on a sucesfull login. I don't know how to accomplish this as I am quite new to VB. I have provided my login code below (btw it uses an online database):

MySqlConnection = New MySqlConnection
MySqlConnection.ConnectionString = "server=;Port=; user id=; password=; database="
MySqlConnection.Open()

[Code].....

I think the code which provides the first name and last name need to check the users username which was provided on the first form and search through the DB. Then when it has found the record it should recieve the First Name and Last name.

View 5 Replies

VS 2010 - Display Data From CSV File To DataGrid

Aug 20, 2010

I like to make a data grid that get data from a .csv and display on the table (note all the data is separated by ",") but I have no idea how to do this.

GRW,1001,LGAV,LGTS,"NEVRA Z507 OSMOS",SX-GRI,240,161,00:00," 00:00"," 1.05"," Flight Level:240"," 80"," P"," 0123456"," 1"
GRW,1002,LGTS,LGAV,"LEKPO UB1 ABLON",SX-GRI,250,161,00:00," 00:00"," 1.05"," Flight Level:250"," 80"," P"," 0123456"," 1"
GRW,1003,LGAV,LGRP,"VARIX UL995 ASIMI",SX-GRI,270,218,00:00," 00:00"," 1.2"," Flight Level:270"," 100"," P"," 0123456"," 1"
GRW,1004,LGRP,LGAV,"ASIMI UL995 VARIX",SX-GRI,280,218,00:00," 00:00"," 1.2"," Flight Level:280"," 100"," P"," 0123456"," 1"
GRW,1005,LGAV,LGKR,"PIKAD L53 KRK",SX-GRE,240,213,00:00," 00:00"," 1.15"," Flight Level:240"," 80"," P"," 0123456"," 1"

View 10 Replies

VS 2010 Create A Software To Display Data?

Sep 9, 2011

I understand how you can expose data in a database (with access to mysql) in Odate in order to create a program in VB.NET and connect to these data with a service.

the purpose of all this is to create a software to display data, and dynamically modify the data remotely.

View 1 Replies

VS 2010 - Reading Image Meta Data

Apr 14, 2011

I've been using the process shown here: [url]

For including images in my database, what i would like to do during the import process is capture some of the meta data to store against fields in my database as well.

In this case we will be using iPhone 4s which i believe capture data in EXIF format.

I did a bit of looking around on my own and apart from: [url]

View 7 Replies

VS 2010 Pull And Display The Data From The Database Into The List Box?

Jan 27, 2011

I'm currently working on a Capstone Point of Sales project. We're using a multi-column list box to pull up the item #, Item Name, Quantity(may be deleted) and Price. However, I haven't had much experience with a connect database in Visual Basic. how to pull and display the data from the database into the list box?

View 5 Replies

VS 2010 - Silverlight Datagrid - Doesn't Display The New Data

Sep 22, 2010

I have a SQL stored procedure that I bind to a Silverlight Datagrid. That works ok, the problem is when I use the same stored procedure to bind a different dataset to the same grid, it doesn't display the new data, only empty columns from the last dataset that was bound. What is going on here? I tried to set the grid = Nothing and I tried using Datagrid1.columns.clear() but that didn't work.

View 3 Replies

Convert A Drawing.Bitmap To 4 Bit Grayscale?

Apr 17, 2011

I need to convert a Drawing.Bitmap to 4 bit grayscale. Is there any way to accomplish this? I've tried using Bitmap.Clone but I only get the usual infamous "Out of memory" exception. Would this be grayscale even if it managed to convert to 4 bit?

View 3 Replies

Make Windows Form Grayscale?

Dec 18, 2009

Lets say that I have a form called "frmMain". There is a button on there that will launch a Modal pop up form. Any idea on how I can make the frmMain go to a grayscale or disabled look when the modal form is shown? I'm trying to make it so the modal form "pops" a bit from the main form interface.

View 3 Replies

See Different Colors (when Using Graphics Class) In A Palette Somewhere?

Sep 6, 2010

Is it possible to see the different colors (when using the graphics class) in a palette somewhere? It's hard to choose from the names only (DarkCyan, IndianRed ect, what is this!? )

View 7 Replies

Why Grayscale Bitmap Cannot Show In Picture Box

Jul 12, 2010

I'm having some problem. I try to create a 16bpp grayscale bitmap image and show in a picture box.

I used the following code

bmp = New Bitmap(xpixels, ypixels, Imaging.PixelFormat.Format16bppGrayScale)
dim bmp = New Bitmap(xpixels, ypixels, Imaging.PixelFormat.Format16bppGrayScale)
PictureBox1.Image = bmp

View 4 Replies

Save Image In Msaccess Database & In The Crystal Report It Should Display The Saved Image?

Aug 28, 2010

i want to save image in ms access 2000 database & i want retrive it in a crystal report in vb.net 2005

View 8 Replies

Post Image/URL To Access Database Using .NET And Re-Display Image In DataGrid?

Aug 21, 2009

1) Add a new record - I can currently add records text to access database, but not images.

2) Get the ID [URL]I'm not sure how to integrate this code into my code. I am stuck here.

3) Save the image in the filesystem using the ID as a filename - I can save the upload an image and save the image to a directory on my computer, but I am unable to name the image that of the ID of the access database.

4) Update the database to put the filename in the record you just created. - I am unable to do this as well (obviously).

Protected Sub SUBMIT_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles SUBMIT.Click
Dim custDb As Data.OleDb.OleDbConnection
Dim cmdInsertCustomers As Data.OleDb.OleDbCommand

[code]....

View 5 Replies

Find Names And RGB Values Of Colors In Net Palette?

Dec 8, 2011

I've got a chart showing data as a part of a vb.net forms application. The Chart object makes a really pretty picture, but I need it to match the color scheme on the rest of the UI. How do I get the RGB values for the palette?

View 2 Replies

Missing Color Palette On Properties Window

May 26, 2011

I am programming a VB windows form using visual studio 2008. In my properties window, i use to have color palette on every color function for example under BackColor, when i click on the component, all i get are text of the colors, without a sample picture[code]...

View 2 Replies

VS 2008 - If An Image Is In Listview, Will It Display A Thumbnail Of The Image?

Jun 19, 2009

I need to know how to use listview, I'm having trouble using it.What are listviews uses?What can be listed in listview?What cannot be listview?If an image is in listview, will it display a thumbnail of the image?

View 4 Replies

2010 - SQL Data Manipulation - Display Each Element On A Page In A Structured Format

Jun 15, 2010

I'm currently learning VB.net and can confidently connect to databases and return results to comboboxes run stored procedures ect to datagrids, However I'm wanting to find an online tutorial for doing loops with data so for example

I return the following data into a dataset

Orderno Orderitem Price GUID
111 Pies 1.50 xxx-xxxxx-xxxxx-xxxxxxx
111 orangutang 2.00 xxx-xxxxx-xxxxx-xxxxxxx
ect

I want to display each element on a page in a structured format so as to make a visual representation in seperate entities (labels maybe) of the data like so:

Order number

line 1 (includes item and price in plain text on a page i guess using a label)
line 2 (same goes)

Subtotal( )

The results and formulae i can do but it's simply how to split off the data from my dataset and display elements as seperates (also how will i dynamically create the lables as obviously i'm not going to know in advance how many order item rows will return )

Obviously this is not urgent but if anyone could point me at a tutorial or even better a few lines of code that will do this for the microsoft northwind data so i can mess about with it and play.

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved