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)
-
dp parameter is about resolution of voting space. dp is larger, voting resolution is small compare to image size. so dp is larger, circle...
-
line, circle, rectangle, ellipse, polyline, fillConvexPoly, putText, drawContours example source code!!. ... //http://study....
-
//Singular value decomposition : Mat w, u, v; SVDecomp(data, w, u, v); // A = U W V^T //The flags cause U and V to be returned transpose...
-
In past, I wrote an articel about YUV 444, 422, 411 introduction and yuv rgb converting example code. refer to this page -> http://feel...
-
The latent SVM tells the learning method used in this paper -> "Discriminatively trained deformable part models". The authors s...
-
Optical Flow sample source code using OpenCV. It programed based on http://feelmare.blogspot.kr/2012/10/make-2-frame-having-time-interv...
-
Logistic Classifier The logistic classifier is similar to equation of the plane. W is weight vector, X is input vector and y is output...
-
EMD(earth mover distance) method is very good method to compare image similarity. But processing time is slow. For using the EMD compare, ...
-
Very simple way~ string s; CString cs(s.c_str()); //
-
TensorFlow install using virtualenv on ubuntu environment. The method is same with pip install. http://study.marearts.com/2016/04/tensorf...