Bumblebee housing & bracket
The first version.
There are still many things need to be modified.
Showing posts with label Equipment. Show all posts
Showing posts with label Equipment. Show all posts
11/10/2013
10/23/2013
Lifetrons, DrumBassIII BT
Lifetrons, DrumBass III BT
Bluetooth speaker
deluxe wireless edition
Small in size but sound is very big!!
satisfactory design.
But also weak bass
But my thought, the sound quality is a little bit better than Macbook air notebook.
9/12/2013
macbook air haswell 13 inch, appearance photos
very very good equipment.
Satisfied in all.
However, our country has been concentrated in the Windows environment application services, so
Mac to use a lot of uncomfortable.
To use ms office (of course the Mac version is also available), games, Banking and I also should be developed in vs2012.
There is vmware(fusion 5,6), parallels to use window with mac.
But requires a lot of resources and slow (especially high-quality video, 3d game).
And sometimes the window is abnormal operating.
Using Boot Camp that is obscure.
Because when you boot into Windows, the Mac would be well not to use.
LG notebook Z360 appearance photos
The screen is very good.
Thin and light and speed is fast.
But.. typing is uncomfortable, track pad is not speed reaction like mac
The click part is to touch, difficult to adapt.
LG notebook Z360 appearance photos
supplied contents
leather case
Overall, not bad laptop.
So I had bought 4 more. ^^
3/09/2013
SICK LMS511 sensor data acquisition interface (source code, C++/MFC)
This is data acquisition source code of LMS511(SICK co.)
Source code is made by MFC(vs 2008).
The sensor is communicated by TCP/IP.
You can set sensor ip and test running by sopas program.
The sopas program is included in the manual CD.
This movie is running test video.
LMS511 communication sample code (tcp/ip)
reference here
http://study.marearts.com/2013/03/sick-lms511-sensor-data-acquisition.html
Source code is here(github)
https://github.com/MareArts/LMS511-SICK-Laser-sensor-communication-tcp-ip
youtube
https://www.youtube.com/watch?v=2LTpaDGus1Y
Thank you.
Source code is made by MFC(vs 2008).
The sensor is communicated by TCP/IP.
You can set sensor ip and test running by sopas program.
The sopas program is included in the manual CD.
This movie is running test video.
LMS511 communication sample code (tcp/ip)
reference here
http://study.marearts.com/2013/03/sick-lms511-sensor-data-acquisition.html
Source code is here(github)
https://github.com/MareArts/LMS511-SICK-Laser-sensor-communication-tcp-ip
youtube
https://www.youtube.com/watch?v=2LTpaDGus1Y
Thank you.
1/10/2013
881A sonar sensor - data acquisition source code
881A sonar sensor - data acquisition source code
< source code >
This code is also made by VS 2008.
This source code included 'interface_881A' class.
You can get the data easily using the class.
Thank you.
< source code >
This code is also made by VS 2008.
This source code included 'interface_881A' class.
You can get the data easily using the class.
//port open CString strPort = "COM5"; int baudrate = 115200; int data = 8; int parity = 0; int stop = 0;//1; C881A.OpenPort2(strPort,baudrate,data,parity,stop); //request data C881A.SendData(); //data acquisition part //The data is saved in the Command_881A_GetData struct CString str; str.Format("%s", C881A.ReceiveData.DataHeader.c_str()); m_List.AddString(str); str.Format("Head ID : %d", C881A.ReceiveData.HeadID); m_List.AddString(str); str.Format("Head Position : %lf", C881A.ReceiveData.HeadPosition); m_List.AddString(str); str.Format("Head direction : %d", C881A.ReceiveData.Direction); m_List.AddString(str); str.Format("Range : %d", C881A.ReceiveData.Range); m_List.AddString(str); str.Format("Profile Range : %d", C881A.ReceiveData.ProfileRange); m_List.AddString(str); str.Format("Data Byte : %d", C881A.ReceiveData.DataBytes); m_List.AddString(str); m_List10.ResetContent(); for(int i=0; i< 500; ++i) { str.Format("[%d] = %d", i, C881A.ReceiveData.Data[i]); m_List10.AddString(str); } /////////////////////////// //close port C881A.ClosePort();
Thank you.
Subscribe to:
Posts (Atom)
-
Logistic Classifier The logistic classifier is similar to equation of the plane. W is weight vector, X is input vector and y is output...
-
I use MOG2 algorithm to background subtraction. The process is resize to small for more fast processing to blur for avoid noise affectio...
-
This is data acquisition source code of LMS511(SICK co.) Source code is made by MFC(vs 2008). The sensor is communicated by TCP/IP. ...
-
Background subtractor example souce code. OpenCV support about 3 types subtraction algorithm. Those are MOG, MOG2, GMG algorithms. Det...
-
Image size of origin is 320*240. Processing time is 30.96 second took. The result of stitching The resul...
-
Created Date : 2009.10. Language : C++ Tool : Visual Studio C++ 2008 Library & Utilized : Point Grey-FlyCapture, Triclops, OpenCV...
-
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...
-
The MNIST dataset is a dataset of handwritten digits, comprising 60 000 training examples and 10 000 test examples. The dataset can be downl...
-
This post is about how to copy Mat data to vector and copy vector data to Mat. Reference this example source code. printf ( "/////...
-
This example source code is to extract HOG feature from images. And save descriptors to XML file. The source code explain how to use HOGD...