Skip to main content

3-D Scanning


If you are game developer you would be so annoyed while creating environment which completely real. It can be made easier with the technology called 3-D scanning.

3-D scanning:


It is process of analyzing real object and grabbing the necessary data required to recreate its shape and appearance in digital form.

Different machine and method exist to create 3-D object but we will the main method which are commonly:
1.      Laser triangulation 3D scanning technology.
2.      Structured light Scanning.
3.      Photogrammetry.

1. Laser triangulation 3D scanning technology:
It is the most commonly used 3-D technique. As the name suggest Laser light is used in this technique. Shape of the object measure using laser light to get a digital representation of the real object.
This laser scanning technique is perfect for measurement and inspection of complex geometries. It allows getting measurements and data from where it is impractical with traditional methods.

2.Structured light Scanning:
In this method projector is use instead of camera to create the 3- D model that project different light pattern on the surface of the object. During this object distorts patterns which are recorded though which 3-D model are created.


3.Photogrammetry:
Using the multiple photograph of object though multiple angle is taken and measured to get all information of the existing physical object and It imitates the stereos-copy of the binocular human vision.
 In short, this process collects the data regarding the shape, the volume and the depth of the object that we are trying to collect. It won’t allow you to get the most accurate result, but by using good photogrammetry software you could actually reach a satisfying result.

Related link:
Want to see 3-D object made through photogrammetry. Click Here

Comments

Popular posts from this blog

Hustle

The innate hunger to build,create,do something & try. Hustle isn't just working on the things you like,it means doing the things you don't enjoy so you can do the things you love. Hustle:The ability to make things happen in light of knowing,how to get there ,but operate with the general principle that action breed results. Hustle stands for: H - How U - U  S -  Survive T -  The L - life  E - Everyday Some days I'm Humble. Some days I  Struggle. But everyday I Hustle. Remember Every Boss started as a worker.

TCP Segment

A TCP segment is made up of a TCP header and a data section. Source Port :  A source port is a high numbered port chosen from a special section of ports known as ephemeral ports. A source port is needed so that when the web server replies, the computer making the original request can send this data to the program that was actually requesting it. It is in this way that when it web server responds to your requests to view a web page that this response gets received by your web browser and not your word processor. Destination Port : port on which the client in request the data( The destination port is the port of the service the traffic is intended for ) Sequence Number :This is a 32-bit number that's used to keep track of where in a sequence of TCP segments this one is expected to be.There are limits to the total size of what we send across the wire. In Ethernet frame, it's usually limited in size to 1,518 bytes, but we usually need to send way more data than that. At the transp...

Troubleshooting and debugging

Troubleshooting is the process of identifying, analyzing, and solving problems.  Debugging is the process of identifying, analyzing, and removing bugs in a system. We sometimes use troubleshooting and debugging interchangeably.  But generally, we say troubleshooting when we're fixing problems in the system running the application, and debugging when we're fixing the bugs in the actual code of the application. Debuggers let us follow the code line by line, inspect changes in variable assignments, interrupt the program when a specific condition is met, and more. System calls are the calls that the programs running on our computer make to the running kernel.   A reproduction case is a way to verify if the problem is present or not. Where to check for log file in OS? On Linux , you'd read system logs like /var/log/syslog and user-specific logs like the .xsession-errors file located in the user's home directory. On MacOs , on top of the system logs, you'd go through...