Machine Vision

cancel
Showing results for 
Search instead for 
Did you mean: 

Can ultrasound waves be converted into images using NI Vision

For my Project. I should recieve ultrasound waves and then represent them in 3-D. Please let me know whether i can reconstruct the images from sound waves in 3-D or 1-D atleast

0 Kudos
Message 1 of 7
(4,266 Views)

Hopefully you know more about ultrasound signals than you are expecting forum members to contribute.  If not, you need to start learning about ultrasound signals and how your particular sensor implements them.

 

I would recommend breaking the project down into parts.  Figure out how to interpret a single ultrasound signal, which would probably give you a pixel value.  Put the results together to get your final image.

 

Bruce

Bruce Ammons
Ammons Engineering
0 Kudos
Message 2 of 7
(4,246 Views)

Sorry Sir. I dont know much about ultrasound signals. i am a beginner in it . But when my guide told about this project, i am really inetersted to work on this task. I hope, memebers can help me on how to segment the project and help in my initial stages.

0 Kudos
Message 3 of 7
(4,224 Views)

A few hints to get you started

 

What kind of ultrasonic sensor is it?

If it's the type used in medical imaging, there may be a manual describing the data format of its output.

If it's just a simple ultrasonic sensor, then the datasheet for it (if there is one) should show some kind of information about what the output should be also.

 

Once you know the data format you can work on putting into a format that can later be used for image stuff.

For instance, if each sensor output is a stream of data representing a 2D slice, you'll need to work out how to convert that to a useful format. This may involve splitting the string every X bytes to get a new image "lines".

eg. how to convert an output of abcdefghi to

abc

def

ghi

 

You may also need to convert it to compatible number bases such as U8 or U16 before trying to convert to an image.

 

There is an array to image block that can be used to turn arrays of numbers into images. This may be useful for your situation.

 

Your initial post mentions 3D and 1D

If you have just a single dimension output (such as if you were moving a basic ultrasonic sensor along a path to measure distance), then you could pretty much just plot the cleaned data directly (once it was converted from the actual sensor output if needed).

0 Kudos
Message 4 of 7
(4,220 Views)

Thank you sir

0 Kudos
Message 5 of 7
(4,198 Views)

Sir I want to know about this Ultra sound imaging technology. Right now i have a zero knowledge about this subject. But im going to use this in my product. So I think it would be a great help if u can tell me some Basic devices to start knowing this.

0 Kudos
Message 6 of 7
(3,841 Views)

 


@Sahan wrote:

Sir I want to know about this Ultra sound imaging technology. Right now i have a zero knowledge about this subject. But im going to use this in my product. So I think it would be a great help if u can tell me some Basic devices to start knowing this.


Don't know any off the top of my head. You'll also need to explain (or decide) what you want to do with it before you can determine which device is appropriate for you as different sensors have different ranges etc.

0 Kudos
Message 7 of 7
(3,833 Views)