07-14-2010 05:41 AM
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
07-14-2010 08:06 PM
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
07-15-2010 11:49 PM
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.
07-16-2010 12:44 AM
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).
07-17-2010 05:08 AM
Thank you sir
05-23-2011 10:46 PM
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.
05-25-2011 12:09 AM
@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.