Showing posts with label 3d scanner open source. Show all posts
Showing posts with label 3d scanner open source. Show all posts

Tuesday, May 20, 2014

What programs open RAW files?




chosen one


I think they are 3D programs or something like that


Answer
From wikipedia:

"A raw image file contains minimally processed data from the image sensor of a digital camera or image scanner. Raw files are so named because they are not yet processed and ready to use with a bitmap graphics editor, printed, or displayed by a typical web browser. The image must be processed and converted to an RGB format such as TIFF or JPEG before it can be manipulated."

You should then check out https://jrawio.dev.java.net/ , an Open Source Java program used to read RAW data from various digital camera models.

what is the cheapest animation software i can get for personal use and how much does it cost.?




chuck t


i want a little information on the easiest and cheapest animation software


Answer
Blender 3d it's an open source software totally free,
ovbiusly it's for 3d modelling and animation, but you can use the video secuence editor
tool to made video files from images created with hand drawing and scanner or digital camera.
http://www.blender.org

Pencil it's free and actually really good.
http://www.les-stooges.org/pascal/pencil/index.php




Powered by Yahoo! Answers

Thursday, April 24, 2014

Does anyone know anything about x-ray microtomography?

Q. Hello! Please help me and my group with our assignment at uni! We have been asked to write a 3-page essay about x-ray microtomography. But it seems rather difficult to find information about that topic on the internet and in published texts. We would like any information available! Thanks a lot!


Answer
Microtomography, like tomography, uses x-rays to create cross-sections of a 3D-object that later can be used to recreate a virtual model without destroying the original model. The term micro is used to indicate that the pixel sizes of the cross-sections are in the micrometer range. This also means that the machine is much smaller in design compared to the human version and is used to model smaller objects.

These scanners are typically used for small animals (in-vivo scanners), biomedical samples, foods, microfossils, and other studies for which minute detail is desired.

The first X-ray microtomography system was conceived and built by Jim Elliott in the early 1980s. The first published X-ray microtomographic images were reconstructed slices of a small tropical snail, with pixel size about 50 micrometers. (JC Elliott and SD Dover. X-ray microtomography. J. Microscopy 126, 211-213, 1982.)

In 2005, Skyscan, a company that produces scientific instruments, introduced a nano-ct scanner, introducing the concept of Nanotomography. Other companies producing such scanners include Xradia for materials and semiconductor applications and Scanco Medical AG for medical applications.

Working principle

* Imaging system

Fan beam reconstruction
The fan-beam system is based on a 1-dimensional x-ray detector and an electronic x-ray source, creating 2-dimensional cross-sections of the object. Typically used in human Computed tomography systems.
Cone beam reconstruction
The cone-beam system is based on a 2-dimensional x-ray detector (camera) and an electronic x-ray source, creating projection images that later will be used to reconstruct the image cross-sections.

* Sample holder system

The sample stays still, and the camera and electronic x-ray source rotates.
This is best used for in-vivo animal scans, and other situations where the sample should remain unmoving, but is more expensive.
E.g.SkyScan-1076 or SkyScan-1078 or Scanco VivaCT 40 scanners for sample details.
The sample rotates, and the camera and electronic x-ray source stays still.
Much cheaper to build, since moving the sample requires fewer components than moving the camera and the electronic x-ray source.

* Open/Closed systems

Open x-ray system
In an open system, x-rays may escape or leak out, thus the operator must stay behind a shield, have special protective clothing, or operate the scanner from a distance or a different room. Typical examples of these scanners are the human versions, or designed for big objects.
E.g. Scanco medical XtremeCT scanner.
Closed x-ray system
In a closed system, x-ray shielding is put around the scanner so the operator can put the scanner on his desk or special table. Although the scanner is shielded, care must be taken and the operator usually carries a dose meter, since x-rays have a tendency to be absorbed by metal and then re-emitted like an antenna. Although a typical scanner will produce a relatively harmless volume of x-rays, repeated scannings in a short timeframe could pose a danger.
Closed systems tend to become very heavy because lead is used to shield the x-rays. Therefore, the smaller scanners only have a small space for samples.
E.g. SkyScan-1076 or SkyScan-1078 or Scanco mCT 40 or Scanco mCT 80 scanners

Typical use
* Biomedical

* Both dead and alive (in vivo) rat and mouse scanning.
* Human skin samples, small tumors, mice bone for osteoporosis research.

See in vivo microCT scanners for scanning examples.

* Electronics

Small electronic components. E.g. DRAM IC in plastic case.

* Microdevices

E.g. spray nozzle

* Composite materials and metallic foams

E.g. composite material with glass fibers 10 to 12 micrometres in diameter

* Polymers, plastics

E.g. plastic foam

* Diamonds

E.g. detecting defects in a diamond and finding the best way to cut it.

* Food and seeds

* E.g. piece of chocolate cake, cookies
* 3-D Imaging of Foods Using X-Ray Microtomography [1]

* Wood and paper

E.g. piece of wood to visualize year periodicity and cell structure

* Building materials

E.g. concrete after loading.

* Geology

E.g. sandstone

* Microfossils

E.g. bentonic foraminifers

* Space

E.g. Locating Stardust-like particles in aerogel using x-ray techniques [2]

* Others

E.g. cigarettes

* Stereo images

Visualizing with blue and green or blue filters to see depth

Java program, how do i remove all of a certain integer using arrays?




BB


i get arraylists but i'm completely lost when it comes to arrays
so far i have this (see code)
but it doesn't work and i don't know what i'm doing :(
how do i get the numbers into the array
i have to remove the zeroes and then reprint the array with no spaces...

import java.io.File;
import java.util.ArrayList;
import java.util.Scanner;

public class RemoveZero {
private static Scanner scan;
static int num [] = new int [100];

public static int[] readInArray(String filePath) {
try {
scan = new Scanner(new File(filePath));
} catch (Exception e) {
e.printStackTrace();
}
return null;
}

private static int[] removeAndShift(int[] num, int index) {
int temp;
while (scan.hasNext())
temp = scan.nextInt();
int num1 [] = {temp};
return num1;

if (temp ==0)
num1.addInt(temp);
else
return num1;
}


public static void printArray(int[] num) {}

//"C:/Documents and Settings/10wangjessie/Desktop/AP COMPUTER SCIENCe/lab-5-data-file-compact.txt"
public static void main(String[] args) {
RemoveZero zero = new RemoveZero();
zero.readInArray();
zero.printArray();
}
}
how do i scan the integers into the array because it is from a file?



Answer
[EDIT] You should be able to use the Scanner class to pull in the numbers from the file in the same manner you would pull them from the keyboard, or a String.

I don't know the format of the data in the file, but you do, so select your methods in order to read appropriately based on what that input will be. Try something like this:

String filename = "C:\...";
try
{
file = new Scanner( new FileInputStream( filename ) );
for(int i=0 ; file.hasNextLine() && i<someArray.length ; i++ )
someArray[i] = Integer.parseInt( file.nextLine() );
}
catch( FileNotFoundException e)
{
System.out.println( "File not found or could not be opened.\nPress enter to continue." );
(new Scanner(System.in)).nextLine();
}

[/EDIT]




I'm a little confused about what you are shooting for, but here is an example of what I think you are asking.

public class RemoveZero
{
public static int[] removeZeros( int[] toRemove )
{
//make a copy of the provided array so as to not mutate it in case it is important
int[] temp = new int[toRemove.length];
for( int i=0 ; i<toRemove.length ; i++ ) temp[i] = toRemove[i];
toRemove = temp;

//locations in the array we are reading from and writing to
int source , destination;

//for each source index, if it is not a zero, write it to a destination index
for( source = destination = 0 ; source < toRemove.length ; source++ )
if( toRemove[source] != 0 )
toRemove[destination++] = toRemove[source];

//create a new array of the appropriate length, copy all relevant values over
int[] toReturn = new int[destination];
for( int i=0 ; i<destination ; i++ )
toReturn[i] = toRemove[i];

return toReturn;
}

//just prints the array out
public static void printArray(int[] num) { for( int i : num ) System.out.printf( "%3d," , i ); System.out.println(); }

//driver
public static void main(String[] args)
{
//random sample data
int[] toRemove = new int[]{ 48, 18, 0, 25, 52, 14, 0, 93, 90, 65, 66, 95, 81, 0, 76, 59, 79, 19, 76, 12 };

//print before and after removing zeros
System.out.print( "Pre:\t" );
printArray( toRemove );

System.out.print( "Post:\t" );
printArray( removeZeros(toRemove) );
}
}




Powered by Yahoo! Answers

Wednesday, November 20, 2013

Is there any other COOL editing software like iStopmotion i can use to make awesome videos?

3d scanner open source
 on odp, Open, open, Open Source, OpenSource, Opensource, opensource, open ...
3d scanner open source image



JustASmall


What is it called and what does it do... thanks!!


Answer
Try these. All are FREE......

Pencil : http://www.pencil-animation.org/
Pencil is an animation/drawing software for Mac OS X, Windows, and Linux. It lets you create traditional hand-drawn animation (cartoon) using both bitmap and vector graphics. Pencil is free and open source.

Synfig Animation Studio : http://synfig.org/
Synfig is a powerful, industrial-strength vector-based open-source 2D animation software package, designed from the ground-up for producing feature-film quality animation with fewer people and resources.2D Animation has traditionally been very expensive because every frame must be drawn by hand. Even with today´s digital inking and painting software, the process still relies on individuals hand-drawing each frame. This laborious task is called "tweening".Synfig eliminates the task of manual tweening, producing smooth, fluid motion without the animator having to draw out each frame individually. This allows you to produce 2D animation with fewer people while producing art of a higher quality.

Tapptoons Linetester : http://myweb.tiscali.co.uk/tapptoons/index.htm
The Tapptoons Linetester enables animators to use a scanner or video camera (with compatible capture card) to input animation images into a standard PC and edit their work, adding soundtrack and color if they wish and to output the result as a Windows AVI. Can be used for puppet animation as well as drawn animation.

eDrawings : http://www.edrawingsviewer.com/
eDrawings is a freeware utility which will give the user the power to view, create and share 3D models and 2D drawings. eDrawings offers unique capabilities like point-and-click animations that make it easy for anyone with a PC to interpret and understand 2D and 3D design data.

What are the some of the best applications of c and c++ language except unix?




rahul





Answer
HERE ARE LIST OF FAMOUS C C++ APPS

Adobe systems
All major applications of adobe systems are developed in C++ programming language. These applications include Photoshop & ImageReady, Illustrator and Adobe Premier.

Google
Some of the Google applications are also written in C++, including Google file system and Google Chromium.

Mozilla
Internet browser Firefox and email client Thunderbird are written in C++ programming language and they are also open source projects.

MySQL
MySQL is the worldâs most popular open source database software, with over 100 million copies of its software downloaded or distributed throughout its history. Many of the worldâs largest and fastest-growing organizations use MySQL to save time and money powering their high-volume Web sites, critical business systems, and packaged software â including industry leaders such as Yahoo!, Alcatel-Lucent, Google, Nokia, YouTube, Wikipedia, and Booking.com.

Alias System â Autodesk Maya
Maya 3D software was originally developed by Alias System Corporation and was later carried over by Autodesk. Maya 3D software, now a days is widely used in computers, video games, television. It is a powerful, integrated 3D modelling, animation, visual effects, and rendering solution.

Winamp Media Player
Winamp is the ultimate media player, allows you to manage audio and video files, rip and burn CDs, enjoy free music, access and share your music and videos remotely, and sync your music to your iPod , Creative, and Microsoft Plays for Sure devices . Winamp features album art support, streams audio and video content, and provides access to thousands of internet radio stations and podcasts.

12D Solutions
12D Solutions Pty Ltd is an Australian software developer specialising in civil engineering and surveying applications. Computer Aided Design system for surveying, civil engineering, and more. 12D Solutions clients include civil and water engineering consultants, environmental consultants, surveyors, local, state and national government departments and authorities, research institutes, construction companies and mining consultants.

Bloomberg
Providing real-time financial information to investors.

callas Software
callas software develops pdf creation, optmisation, updation and pdf form creation tools and plugins.

Image Systems
These are the world leading motion analysys programs and film scanner systems.

Operating systems written in C++ programming language.
Apple â OS X
Few parts of apple OS X are written in C++ programming language. Also few application for iPod are written in C++.

Microsoft
Literally most of the software are developed using various flavors of Visual C++ or simply C++. Most of the big applications like Windows 95, 98, Me, 200 and XP are also written in C++. Also Microsoft Office, Internet Explorer and Visual Studio are written in Visual C++.

Symbian OS
Symbian OS is also developed using C++. This is one of the most widespread OSâs for cellular phones.

http://www.mycplus.com/featured-articles/top-10-applications-written-in-c-cplusplus/




Powered by Yahoo! Answers

Wednesday, November 13, 2013

What are the some of the best applications of c and c++ language except unix?

3d scanner open source
 on ... to Becoming an Engineer: From 3D Scan to Moai (think Easter Island
3d scanner open source image



rahul





Answer
HERE ARE LIST OF FAMOUS C C++ APPS

Adobe systems
All major applications of adobe systems are developed in C++ programming language. These applications include Photoshop & ImageReady, Illustrator and Adobe Premier.

Google
Some of the Google applications are also written in C++, including Google file system and Google Chromium.

Mozilla
Internet browser Firefox and email client Thunderbird are written in C++ programming language and they are also open source projects.

MySQL
MySQL is the worldâs most popular open source database software, with over 100 million copies of its software downloaded or distributed throughout its history. Many of the worldâs largest and fastest-growing organizations use MySQL to save time and money powering their high-volume Web sites, critical business systems, and packaged software â including industry leaders such as Yahoo!, Alcatel-Lucent, Google, Nokia, YouTube, Wikipedia, and Booking.com.

Alias System â Autodesk Maya
Maya 3D software was originally developed by Alias System Corporation and was later carried over by Autodesk. Maya 3D software, now a days is widely used in computers, video games, television. It is a powerful, integrated 3D modelling, animation, visual effects, and rendering solution.

Winamp Media Player
Winamp is the ultimate media player, allows you to manage audio and video files, rip and burn CDs, enjoy free music, access and share your music and videos remotely, and sync your music to your iPod , Creative, and Microsoft Plays for Sure devices . Winamp features album art support, streams audio and video content, and provides access to thousands of internet radio stations and podcasts.

12D Solutions
12D Solutions Pty Ltd is an Australian software developer specialising in civil engineering and surveying applications. Computer Aided Design system for surveying, civil engineering, and more. 12D Solutions clients include civil and water engineering consultants, environmental consultants, surveyors, local, state and national government departments and authorities, research institutes, construction companies and mining consultants.

Bloomberg
Providing real-time financial information to investors.

callas Software
callas software develops pdf creation, optmisation, updation and pdf form creation tools and plugins.

Image Systems
These are the world leading motion analysys programs and film scanner systems.

Operating systems written in C++ programming language.
Apple â OS X
Few parts of apple OS X are written in C++ programming language. Also few application for iPod are written in C++.

Microsoft
Literally most of the software are developed using various flavors of Visual C++ or simply C++. Most of the big applications like Windows 95, 98, Me, 200 and XP are also written in C++. Also Microsoft Office, Internet Explorer and Visual Studio are written in Visual C++.

Symbian OS
Symbian OS is also developed using C++. This is one of the most widespread OSâs for cellular phones.

http://www.mycplus.com/featured-articles/top-10-applications-written-in-c-cplusplus/

what is the cheapest animation software i can get for personal use and how much does it cost.?




chuck t


i want a little information on the easiest and cheapest animation software


Answer
Blender 3d it's an open source software totally free,
ovbiusly it's for 3d modelling and animation, but you can use the video secuence editor
tool to made video files from images created with hand drawing and scanner or digital camera.
http://www.blender.org

Pencil it's free and actually really good.
http://www.les-stooges.org/pascal/pencil/index.php




Powered by Yahoo! Answers

Thursday, September 19, 2013

What software do I need to make cartoons?

3d scanner open source
 on odp, Open, open, Open Source, OpenSource, Opensource, opensource, open ...
3d scanner open source image



Jimmy


I want to make animated cartoons, but am not sure what software I need. What software is best to draw the characters and backgrounds? Once I draw the characters do I then put them into Adobe Flash to make a cartoon?


Answer
You can use any of these FREE Cartoon Animation Softwares.........

Pencil : http://www.pencil-animation.org/
Pencil is an animation/drawing software for Mac OS X, Windows, and Linux. It lets you create traditional hand-drawn animation (cartoon) using both bitmap and vector graphics. Pencil is free and open source.

Synfig Animation Studio : http://synfig.org/
Synfig is a powerful, industrial-strength vector-based open-source 2D animation software package, designed from the ground-up for producing feature-film quality animation with fewer people and resources.2D Animation has traditionally been very expensive because every frame must be drawn by hand. Even with today´s digital inking and painting software, the process still relies on individuals hand-drawing each frame. This laborious task is called "tweening".Synfig eliminates the task of manual tweening, producing smooth, fluid motion without the animator having to draw out each frame individually. This allows you to produce 2D animation with fewer people while producing art of a higher quality.

Tapptoons Linetester : http://myweb.tiscali.co.uk/tapptoons/index.htm
The Tapptoons Linetester enables animators to use a scanner or video camera (with compatible capture card) to input animation images into a standard PC and edit their work, adding soundtrack and color if they wish and to output the result as a Windows AVI. Can be used for puppet animation as well as drawn animation.

eDrawings : http://www.edrawingsviewer.com/
eDrawings is a freeware utility which will give the user the power to view, create and share 3D models and 2D drawings. eDrawings offers unique capabilities like point-and-click animations that make it easy for anyone with a PC to interpret and understand 2D and 3D design data.





â«

Is there any other COOL editing software like iStopmotion i can use to make awesome videos?




JustASmall


What is it called and what does it do... thanks!!


Answer
Try these. All are FREE......

Pencil : http://www.pencil-animation.org/
Pencil is an animation/drawing software for Mac OS X, Windows, and Linux. It lets you create traditional hand-drawn animation (cartoon) using both bitmap and vector graphics. Pencil is free and open source.

Synfig Animation Studio : http://synfig.org/
Synfig is a powerful, industrial-strength vector-based open-source 2D animation software package, designed from the ground-up for producing feature-film quality animation with fewer people and resources.2D Animation has traditionally been very expensive because every frame must be drawn by hand. Even with today´s digital inking and painting software, the process still relies on individuals hand-drawing each frame. This laborious task is called "tweening".Synfig eliminates the task of manual tweening, producing smooth, fluid motion without the animator having to draw out each frame individually. This allows you to produce 2D animation with fewer people while producing art of a higher quality.

Tapptoons Linetester : http://myweb.tiscali.co.uk/tapptoons/index.htm
The Tapptoons Linetester enables animators to use a scanner or video camera (with compatible capture card) to input animation images into a standard PC and edit their work, adding soundtrack and color if they wish and to output the result as a Windows AVI. Can be used for puppet animation as well as drawn animation.

eDrawings : http://www.edrawingsviewer.com/
eDrawings is a freeware utility which will give the user the power to view, create and share 3D models and 2D drawings. eDrawings offers unique capabilities like point-and-click animations that make it easy for anyone with a PC to interpret and understand 2D and 3D design data.




Powered by Yahoo! Answers

Saturday, August 17, 2013

Is there any other COOL editing software like iStopmotion i can use to make awesome videos?

3d scanner open source
 on 3D Butterflies Over Waterfalls Screensaver Software Informer ...
3d scanner open source image



JustASmall


What is it called and what does it do... thanks!!


Answer
Try these. All are FREE......

Pencil : http://www.pencil-animation.org/
Pencil is an animation/drawing software for Mac OS X, Windows, and Linux. It lets you create traditional hand-drawn animation (cartoon) using both bitmap and vector graphics. Pencil is free and open source.

Synfig Animation Studio : http://synfig.org/
Synfig is a powerful, industrial-strength vector-based open-source 2D animation software package, designed from the ground-up for producing feature-film quality animation with fewer people and resources.2D Animation has traditionally been very expensive because every frame must be drawn by hand. Even with today´s digital inking and painting software, the process still relies on individuals hand-drawing each frame. This laborious task is called "tweening".Synfig eliminates the task of manual tweening, producing smooth, fluid motion without the animator having to draw out each frame individually. This allows you to produce 2D animation with fewer people while producing art of a higher quality.

Tapptoons Linetester : http://myweb.tiscali.co.uk/tapptoons/index.htm
The Tapptoons Linetester enables animators to use a scanner or video camera (with compatible capture card) to input animation images into a standard PC and edit their work, adding soundtrack and color if they wish and to output the result as a Windows AVI. Can be used for puppet animation as well as drawn animation.

eDrawings : http://www.edrawingsviewer.com/
eDrawings is a freeware utility which will give the user the power to view, create and share 3D models and 2D drawings. eDrawings offers unique capabilities like point-and-click animations that make it easy for anyone with a PC to interpret and understand 2D and 3D design data.

What are the some of the best applications of c and c++ language except unix?




rahul





Answer
HERE ARE LIST OF FAMOUS C C++ APPS

Adobe systems
All major applications of adobe systems are developed in C++ programming language. These applications include Photoshop & ImageReady, Illustrator and Adobe Premier.

Google
Some of the Google applications are also written in C++, including Google file system and Google Chromium.

Mozilla
Internet browser Firefox and email client Thunderbird are written in C++ programming language and they are also open source projects.

MySQL
MySQL is the worldâs most popular open source database software, with over 100 million copies of its software downloaded or distributed throughout its history. Many of the worldâs largest and fastest-growing organizations use MySQL to save time and money powering their high-volume Web sites, critical business systems, and packaged software â including industry leaders such as Yahoo!, Alcatel-Lucent, Google, Nokia, YouTube, Wikipedia, and Booking.com.

Alias System â Autodesk Maya
Maya 3D software was originally developed by Alias System Corporation and was later carried over by Autodesk. Maya 3D software, now a days is widely used in computers, video games, television. It is a powerful, integrated 3D modelling, animation, visual effects, and rendering solution.

Winamp Media Player
Winamp is the ultimate media player, allows you to manage audio and video files, rip and burn CDs, enjoy free music, access and share your music and videos remotely, and sync your music to your iPod , Creative, and Microsoft Plays for Sure devices . Winamp features album art support, streams audio and video content, and provides access to thousands of internet radio stations and podcasts.

12D Solutions
12D Solutions Pty Ltd is an Australian software developer specialising in civil engineering and surveying applications. Computer Aided Design system for surveying, civil engineering, and more. 12D Solutions clients include civil and water engineering consultants, environmental consultants, surveyors, local, state and national government departments and authorities, research institutes, construction companies and mining consultants.

Bloomberg
Providing real-time financial information to investors.

callas Software
callas software develops pdf creation, optmisation, updation and pdf form creation tools and plugins.

Image Systems
These are the world leading motion analysys programs and film scanner systems.

Operating systems written in C++ programming language.
Apple â OS X
Few parts of apple OS X are written in C++ programming language. Also few application for iPod are written in C++.

Microsoft
Literally most of the software are developed using various flavors of Visual C++ or simply C++. Most of the big applications like Windows 95, 98, Me, 200 and XP are also written in C++. Also Microsoft Office, Internet Explorer and Visual Studio are written in Visual C++.

Symbian OS
Symbian OS is also developed using C++. This is one of the most widespread OSâs for cellular phones.

http://www.mycplus.com/featured-articles/top-10-applications-written-in-c-cplusplus/




Powered by Yahoo! Answers