If you have x,y,z 3D point data.
For example ..
X Y Z
1.22 2.22 3.22
1.322 6.22 2.22
1.42 3.22 1.22
1.522 1.22 4.22
1.22 3.22 2.22
...
I want to plot 3D surface in matlab.
But It is very hart because the data is too large. The number of data is 1176764.
And The interval of data is not regular.
So to make map(matrix) for plotting is very hard.
and even when I make map(matrix), Matlab did not work because 'out of memory'.
The method to solve is using sufer 9 tool.
We can get mesh grid easy.
The method to use..
Firstly, Get Surfer 9 program.
Second...
In the menu. Select Grid -> Data
Choose your xyz.txt File.
And Open.
In Option window, normally there is no need to set up.
So just click 'OK'
Also 'OK'
then the tool will be working to make grid. After making grid, you can see report.
and then Open your grid file.
In menu, map -> new -> 3D wireframe
7/25/2012
7/10/2012
(source code) points click on image and save the coordinate to txt file
environment: Visual C+++ 2008, openCV 2.3
This source code is to save the coordinate that you select points on image.
This is useful when you have many image to save coordinates.
Firstly, you should make image file name in number order.
0.jpg, 1.jpg 2.jpg .....
The code ask to you
1. How many file do you have ?
-
2. How many point do you click on image?
-
There are some keys.
Left button is point selection, Cancel is right button, Space key is next button.
and Ese is the button to finish the work.
After finish the work.
The coordinate is stored in "output.txt"
The format is that
x1 y1 x2 y2 x3 y3 x4 y4
x1 y1 x2 y2 x3 y3 x4 y4
x1 y1 x2 y2 x3 y3 x4 y4
x1 y1 x2 y2 x3 y3 x4 y4
...
[source code]
Thanks you.
This source code is to save the coordinate that you select points on image.
This is useful when you have many image to save coordinates.
Firstly, you should make image file name in number order.
0.jpg, 1.jpg 2.jpg .....
The code ask to you
1. How many file do you have ?
-
2. How many point do you click on image?
-
There are some keys.
Left button is point selection, Cancel is right button, Space key is next button.
and Ese is the button to finish the work.
After finish the work.
The coordinate is stored in "output.txt"
The format is that
x1 y1 x2 y2 x3 y3 x4 y4
x1 y1 x2 y2 x3 y3 x4 y4
x1 y1 x2 y2 x3 y3 x4 y4
x1 y1 x2 y2 x3 y3 x4 y4
...
[source code]
Thanks you.
7/04/2012
full half face image data - 12,617(22 people)
full half face image data - 12,617(22 people)
100 x 100 image size
jpg file type
full half face image
100 x 100 image size
jpg file type
full half face image
face image data - half face 9580(22 people)
face image data - half face 9580(22 people)
jpg file type
100 x 100 image size
half face 9580 ( 22 people )
jpg file type
100 x 100 image size
half face 9580 ( 22 people )
7/03/2012
Frontal Face Image Data
4105 frontal faces.
bmp file type.
24x24 image size.
No margin face data.
Frontal face 4105(no margin)
bmp file type.
24x24 image size.
No margin face data.
Frontal face 4105(no margin)
Subscribe to:
Posts (Atom)
-
* Introduction - The solution shows panorama image from multi images. The panorama images is processing by real-time stitching algorithm...
-
As you can see in the following video, I created a class that stitching n cameras in real time. https://www.youtube.com/user/feelmare/sear...
-
Image size of origin is 320*240. Processing time is 30.96 second took. The result of stitching The resul...
-
My Environment : MS VS 2008 & MFC(Dialog Based) Joy Stick : Logitech Extreme 3D pro (XBox Type) Cteated Date : 2012. 03 [source code]...
-
Created Date : 2011.10 Language : C/C++ Tool : Microsoft Visual C++ 2008 Library & Utilized : OpenCV 2.3 Reference : SIFT referenc...
-
This is GPU version of this page -> http://feelmare.blogspot.kr/2013/12/finding-largest-subset-images-that-is.html Please refer detail ...
-
Created Date : 2007.8 Language : C/C++ Tool : Microsoft Visual C++ 6.0 (MFC) Library & Utilized : - Reference : Simplified approach ...
-
This is example class creation. RotatedRect tRect(Point2f(p2.x, p2.y), Size2f(W,H), atan(mn.first)*180/3.1415); In Here, p2.x, p2.y is ...
-
numberList = [ 1 , 2 , 3 , 4 , 5 ] strList = [ 'one' , 'two' , 'three' , 'five' ] # No iterables are passe...
-
If there are 3 point(c, p1, p2), as shown in the above figure. This function got the angle between the two lines using inner product...