OSDN Git Service

-Wオプションを追加.それに合わせて生じたエラー潰し.
[paldema/paldema.git] / src / test / detect_parameter.cpp
index abed7d7..e720afa 100644 (file)
@@ -1,18 +1,8 @@
 // Copyright (C) 2009 Masaki Saito <rezoolab@gmail.com>
 //
-// This program is free software; you can redistribute it and/or
-// modify it under the terms of the GNU General Public License
-// as published by the Free Software Foundation; either version 2
-// of the License, or (at your option) any later version.
-//
-// This program is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-// GNU General Public License for more details.
-//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+// detect_parameter.cpp
+// このプログラムは与えられたファイルから数値をパースし、
+// カメラの内部、外部パラメータを推定します。
 
 #include "../cpp/pdcamera.cpp"
 #include <stdio.h>
@@ -47,7 +37,7 @@ void load_cc_file(const char* filename, double* uv, double* xyz, int* num) {
   fclose(fp);
 }
 
-int main(int argc, char* argv[]) {
+int main() {
   double *uv  = new double[MAX_POINTS];
   double *xyz = new double[MAX_POINTS];
   int num = 0;