code
stringlengths
1
2.08M
repo_name
stringlengths
1
35
path
stringlengths
4
221
language
stringclasses
66 values
license
stringclasses
17 values
size
int64
1
2.08M
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Text.RegularExpressions; namespace FIS.iDET.Keygen { public partial class KeygenForm : Form { const string notV...
2atgroup
TiffBrowserTestCSharp/Keygen/KeygenForm.cs
C#
Microsoft Reciprocal License (Ms-RL)
1,259
namespace FIS.iDET.Keygen { partial class KeygenForm { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any resources being used. /// </summary>...
2atgroup
TiffBrowserTestCSharp/Keygen/KeygenForm.Designer.cs
C#
Microsoft Reciprocal License (Ms-RL)
8,209
using System; using System.Text; using System.Security.Cryptography; namespace FIS.iDET.Keygen { /// <summary> /// Calculate a serial number that matches a unique machine ID of a computer /// </summary> // Hoang add code ... public class LicenseService { public static str...
2atgroup
TiffBrowserTestCSharp/Keygen/LicenseService.cs
C#
Microsoft Reciprocal License (Ms-RL)
2,032
using System; using System.Collections.Generic; using System.Windows.Forms; namespace FIS.iDET.Keygen { static class Program { /// <summary> /// The main entry point for the application. /// </summary> [STAThread] static void Main() { A...
2atgroup
TiffBrowserTestCSharp/Keygen/Program.cs
C#
Microsoft Reciprocal License (Ms-RL)
492
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTi...
2atgroup
TiffBrowserTestCSharp/Keygen/Properties/AssemblyInfo.cs
C#
Microsoft Reciprocal License (Ms-RL)
1,530
using System; using System.Drawing; namespace FIS.iDET.TemplateCreator { public class DataColumn { public DataColumn() { // set default values _width = 100; _type = DataTypeEnum.COLUMN_TYPE_TEXT; _header = "Untitled"; x =...
2atgroup
TiffBrowserTestCSharp/Template Creator/DataColumn.cs
C#
Microsoft Reciprocal License (Ms-RL)
2,632
using System; using System.Collections.Generic; using System.Text; namespace FIS.iDET.TemplateCreator { public static class DataTypeEnum { /* data type for datagridview column */ public const int COLUMN_TYPE_NUMBER = 0; public const int COLUMN_TYPE_DATE = 1; public c...
2atgroup
TiffBrowserTestCSharp/Template Creator/DataTypeEnum.cs
C#
Microsoft Reciprocal License (Ms-RL)
364
using System; using System.Collections.Generic; using System.Text; namespace FIS.iDET.TemplateCreator { /*class DoublePoint { public double X=0, Y=0; public DoublePoint(double X, double Y) { this. } }*/ public class DoubleRectangle { ...
2atgroup
TiffBrowserTestCSharp/Template Creator/DoubleRectangle.cs
C#
Microsoft Reciprocal License (Ms-RL)
669
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Diagnostics; namespace FIS.iDET.TemplateCreator { public partial class FormAbout : Form { public FormAbout() ...
2atgroup
TiffBrowserTestCSharp/Template Creator/FormAbout.cs
C#
Microsoft Reciprocal License (Ms-RL)
1,328
namespace FIS.iDET.TemplateCreator { partial class FormAbout { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any resources being used. /// </...
2atgroup
TiffBrowserTestCSharp/Template Creator/FormAbout.Designer.cs
C#
Microsoft Reciprocal License (Ms-RL)
10,104
using System; using System.Windows.Forms; using System.Drawing; namespace FIS.iDET.TemplateCreator { public partial class FormEdit : Form { public FormEdit() { InitializeComponent(); } private FormTemplateCreator parentForm; private bool editM...
2atgroup
TiffBrowserTestCSharp/Template Creator/FormEdit.cs
C#
Microsoft Reciprocal License (Ms-RL)
3,976
namespace FIS.iDET.TemplateCreator { partial class FormEdit { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any resources being used. /// </s...
2atgroup
TiffBrowserTestCSharp/Template Creator/FormEdit.Designer.cs
C#
Microsoft Reciprocal License (Ms-RL)
5,426
using System; using System.Collections.Generic; using System.Drawing; using System.Windows.Forms; namespace FIS.iDET.TemplateCreator { public partial class FormTemplateCreator : Form { public static double zoomFactor = 1; ImageService tifImage = null; public int count = 0;...
2atgroup
TiffBrowserTestCSharp/Template Creator/FormTemplateCreator.cs
C#
Microsoft Reciprocal License (Ms-RL)
29,774
namespace FIS.iDET.TemplateCreator { partial class FormTemplateCreator { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any resources being used. ...
2atgroup
TiffBrowserTestCSharp/Template Creator/FormTemplateCreator.Designer.cs
C#
Microsoft Reciprocal License (Ms-RL)
41,552
using System; using System.Collections.Generic; using System.Text; using System.IO; using System.Windows.Forms; namespace FIS.iDET.TemplateCreator { public class GlobalConstants { /* VARIABLES */ // username public static string Username = "No Name"; //version ...
2atgroup
TiffBrowserTestCSharp/Template Creator/GlobalConstants.cs
C#
Microsoft Reciprocal License (Ms-RL)
1,488
using System; using System.Collections.Generic; using System.Text; namespace FIS.iDET.TemplateCreator { class GlobalVariables { public static string Version = "Version 2.1.0"; // current version of template creator public static string TemplateVersion = "2.0.6"; ...
2atgroup
TiffBrowserTestCSharp/Template Creator/GlobalVariables.cs
C#
Microsoft Reciprocal License (Ms-RL)
648
using System; using System.Drawing; using System.Drawing.Imaging; using System.Windows.Forms; namespace FIS.iDET.TemplateCreator { public class ImageService { string imageFileName; Bitmap tifImage; int totalFrames, currentFrame; ...
2atgroup
TiffBrowserTestCSharp/Template Creator/ImageService.cs
C#
Microsoft Reciprocal License (Ms-RL)
6,597
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using Microsoft.Win32; using System.Text.RegularExpressions; namespace FIS.iDET.TemplateCreator { public partial class LicenseKeyForm : F...
2atgroup
TiffBrowserTestCSharp/Template Creator/LicenseKeyForm.cs
C#
Microsoft Reciprocal License (Ms-RL)
2,617
namespace FIS.iDET.TemplateCreator { partial class LicenseKeyForm { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any resources being used. /...
2atgroup
TiffBrowserTestCSharp/Template Creator/LicenseKeyForm.Designer.cs
C#
Microsoft Reciprocal License (Ms-RL)
10,595
using System; using System.Security.Cryptography; using System.Text; namespace FIS.iDET.TemplateCreator { /// <summary> /// Generates a 16 byte Unique Identification code of a computer /// Example: 1234-8DB5-5763-69D3-FE52-8CF7-395D-2EA9 /// </summary> public class LicenseService ...
2atgroup
TiffBrowserTestCSharp/Template Creator/LicenseService.cs
C#
Microsoft Reciprocal License (Ms-RL)
8,446
using System; using System.Collections.Generic; using System.Windows.Forms; namespace FIS.iDET.TemplateCreator { static class Program { /// <summary> /// The main entry point for the application. /// </summary> [STAThread] static void Main() { ...
2atgroup
TiffBrowserTestCSharp/Template Creator/Program.cs
C#
Microsoft Reciprocal License (Ms-RL)
738
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTi...
2atgroup
TiffBrowserTestCSharp/Template Creator/Properties/AssemblyInfo.cs
C#
Microsoft Reciprocal License (Ms-RL)
1,514
using System; using System.Collections.Generic; using System.Text; using Microsoft.Win32; using System.Windows.Forms; namespace FIS.iDET.TemplateCreator { public class RegistryService { private static RegistryKey appRegistryKey = Registry.CurrentUser.OpenSubKey(GlobalConstants.REGISTRY_PATH...
2atgroup
TiffBrowserTestCSharp/Template Creator/RegistryService.cs
C#
Microsoft Reciprocal License (Ms-RL)
3,516
using System; using System.Collections.Generic; using System.Xml; using System.IO; using System.Text; using System.Windows.Forms; namespace FIS.iDET.TemplateCreator { class XmlService { public static List<DataColumn> ReadXml(string fromFile) { try { ...
2atgroup
TiffBrowserTestCSharp/Template Creator/XmlService.cs
C#
Microsoft Reciprocal License (Ms-RL)
6,435
using System; using System.Windows.Forms; namespace FIS.iDET { public class ClipboardUtils { public static void OnDataGridPaste(object grid, KeyEventArgs e) { //MessageBox.Show(e.KeyCode.ToString()); if (e.Control ) if ( e.KeyCode =...
2atgroup
TiffBrowserTestCSharp/TiffBrowserTestCSharp/ClipboardUtils.cs
C#
Microsoft Reciprocal License (Ms-RL)
4,946
using System; using System.Collections.Generic; using System.Text; using System.Drawing; namespace FIS.iDET { public class DataColumn { public DataColumn() { // set default values _width = 100; _type = DataTypeEnum.COLUMN_TYPE_TEXT; ...
2atgroup
TiffBrowserTestCSharp/TiffBrowserTestCSharp/DataColumn.cs
C#
Microsoft Reciprocal License (Ms-RL)
3,001
using System; using System.Collections.Generic; using System.Text; namespace FIS.iDET { public static class DataTypeEnum { /* data type for datagridview column */ public const int COLUMN_TYPE_NUMBER = 0; public const int COLUMN_TYPE_DATE = 1; public const int COLUMN_...
2atgroup
TiffBrowserTestCSharp/TiffBrowserTestCSharp/DataTypeEnum.cs
C#
Microsoft Reciprocal License (Ms-RL)
348
using System; using System.Collections.Generic; using System.Text; namespace FIS.iDET { /*class DoublePoint { public double X=0, Y=0; public DoublePoint(double X, double Y) { this. } }*/ public class DoubleRectangle { public doubl...
2atgroup
TiffBrowserTestCSharp/TiffBrowserTestCSharp/DoubleRectangle.cs
C#
Microsoft Reciprocal License (Ms-RL)
653
using System; using System.Collections.Generic; using System.IO; using System.Runtime.InteropServices; using System.Windows.Forms; using Microsoft.Office.Interop.Excel; namespace FIS.iDET { /// <summary> /// Class providing methods to work with data importing from and exporting to Microsoft Excel ...
2atgroup
TiffBrowserTestCSharp/TiffBrowserTestCSharp/ExcelService.cs
C#
Microsoft Reciprocal License (Ms-RL)
26,643
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Diagnostics; namespace FIS.iDET { public partial class FormAbout : Form { public FormAbout() { ...
2atgroup
TiffBrowserTestCSharp/TiffBrowserTestCSharp/FormAbout.cs
C#
Microsoft Reciprocal License (Ms-RL)
1,312
namespace FIS.iDET { partial class FormAbout { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any resources being used. /// </summary> ...
2atgroup
TiffBrowserTestCSharp/TiffBrowserTestCSharp/FormAbout.Designer.cs
C#
Microsoft Reciprocal License (Ms-RL)
10,082
using System; using System.Collections; using System.Collections.Generic; using System.Windows.Forms; namespace FIS.iDET { public partial class FormMergeTool : Form { List<ExcelSheet> listExcelSheets1 = null; List<ExcelSheet> listExcelSheets2 = null; public static List<Excel...
2atgroup
TiffBrowserTestCSharp/TiffBrowserTestCSharp/FormMergeTool.cs
C#
Microsoft Reciprocal License (Ms-RL)
15,088
namespace FIS.iDET { partial class FormMergeTool { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any resources being used. /// </summary> ...
2atgroup
TiffBrowserTestCSharp/TiffBrowserTestCSharp/FormMergeTool.Designer.cs
C#
Microsoft Reciprocal License (Ms-RL)
14,485
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace FIS.iDET { public partial class FormPleaseWait : Form { public FormPleaseWait() { InitializeC...
2atgroup
TiffBrowserTestCSharp/TiffBrowserTestCSharp/FormPleaseWait.cs
C#
Microsoft Reciprocal License (Ms-RL)
356
namespace FIS.iDET { partial class FormPleaseWait { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any resources being used. /// </summary> ...
2atgroup
TiffBrowserTestCSharp/TiffBrowserTestCSharp/FormPleaseWait.Designer.cs
C#
Microsoft Reciprocal License (Ms-RL)
2,871
using System; using System.Collections.Generic; using System.Text; using System.IO; using System.Windows.Forms; namespace FIS.iDET { public class GlobalConstants { // Version public const string stringVersion = "FIS Data Entry Support Tool\nVersion 2.0.0 Pre-Final"; public ...
2atgroup
TiffBrowserTestCSharp/TiffBrowserTestCSharp/GlobalConstants.cs
C#
Microsoft Reciprocal License (Ms-RL)
4,058
using System; using System.Collections.Generic; using System.Text; namespace FIS.iDET { /*public class ExcelSheetResult { public List<object[]> value= new List<object[]>(); public ExcelSheetResult() { } }*/ public class ExcelSheet { ...
2atgroup
TiffBrowserTestCSharp/TiffBrowserTestCSharp/GlobalVariables.cs
C#
Microsoft Reciprocal License (Ms-RL)
1,153
using System; using System.Drawing; using System.Drawing.Imaging; using System.Windows.Forms; namespace FIS.iDET { public class ImageService { string imageFileName; Bitmap tifImage; int totalFrames, currentFrame; Boolean fileLoa...
2atgroup
TiffBrowserTestCSharp/TiffBrowserTestCSharp/ImageService.cs
C#
Microsoft Reciprocal License (Ms-RL)
7,214
using System; using System.Collections.Generic; using System.Diagnostics; using System.Drawing; using System.IO; using System.Windows.Forms; using Microsoft.VisualBasic; namespace FIS.iDET { public partial class InputToolForm : Form { // the autosaved excel file private ExcelSer...
2atgroup
TiffBrowserTestCSharp/TiffBrowserTestCSharp/InputToolForm.cs
C#
Microsoft Reciprocal License (Ms-RL)
64,057
namespace FIS.iDET { partial class InputToolForm { /// <summary> /// Clean up any resources being used. /// </summary> /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> protected override void Dispose(bool disposi...
2atgroup
TiffBrowserTestCSharp/TiffBrowserTestCSharp/InputToolForm.Designer.cs
C#
Microsoft Reciprocal License (Ms-RL)
75,272
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using Microsoft.Win32; using System.Text.RegularExpressions; namespace FIS.iDET { public partial class LicenseKeyForm : Form { ...
2atgroup
TiffBrowserTestCSharp/TiffBrowserTestCSharp/LicenseKeyForm.cs
C#
Microsoft Reciprocal License (Ms-RL)
2,601
namespace FIS.iDET { partial class LicenseKeyForm { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any resources being used. /// </summary> ...
2atgroup
TiffBrowserTestCSharp/TiffBrowserTestCSharp/LicenseKeyForm.Designer.cs
C#
Microsoft Reciprocal License (Ms-RL)
10,579
using System; using System.Collections.Generic; using System.Text; using System.Management; using System.Security.Cryptography; using System.Security; using System.Collections; using System.Diagnostics; namespace FIS.iDET { /// <summary> /// Generates a 16 byte Unique Identification code of a co...
2atgroup
TiffBrowserTestCSharp/TiffBrowserTestCSharp/LicenseService.cs
C#
Microsoft Reciprocal License (Ms-RL)
8,569
using System; using System.Collections.Generic; using System.Text; namespace FIS.iDET { public enum CompareMode { COMPARE=1, DISPLAY=2, NONE=3 }; public enum FileSource { FILE1=1, FILE2=2 } public class ColumnCompareInfo { ...
2atgroup
TiffBrowserTestCSharp/TiffBrowserTestCSharp/PageCompareInfo.cs
C#
Microsoft Reciprocal License (Ms-RL)
738
using System; using System.Collections.Generic; using System.Windows.Forms; using System.Threading; namespace FIS.iDET { static class Program { // Setup a unique Name for your Application static Mutex mutex = new Mutex(true, "{8C6524D3-7CC9-4148-80AE-FEEA035FFE01}"); /// ...
2atgroup
TiffBrowserTestCSharp/TiffBrowserTestCSharp/Program.cs
C#
Microsoft Reciprocal License (Ms-RL)
1,192
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTi...
2atgroup
TiffBrowserTestCSharp/TiffBrowserTestCSharp/Properties/AssemblyInfo.cs
C#
Microsoft Reciprocal License (Ms-RL)
1,534
using System; using System.Collections.Generic; using System.Text; using Microsoft.Win32; using System.Windows.Forms; namespace FIS.iDET { public class RegistryService { private static RegistryKey appRegistryKey = Registry.CurrentUser.OpenSubKey(GlobalConstants.REGISTRY_PATH, true); ...
2atgroup
TiffBrowserTestCSharp/TiffBrowserTestCSharp/RegistryService.cs
C#
Microsoft Reciprocal License (Ms-RL)
3,500
using System; using System.Collections.Generic; using System.Xml; using System.IO; using System.Text; using System.Windows.Forms; namespace FIS.iDET { class XmlService { public static void ExportAddressNumber(string stringInput, out int col, out int row) { col = 0; ...
2atgroup
TiffBrowserTestCSharp/TiffBrowserTestCSharp/XmlService.cs
C#
Microsoft Reciprocal License (Ms-RL)
15,396
<?PHP /* $Id$ */ # This file is part of Chatty :) # Copyright (C) 2003, 2004, 2005 Marco Olivo # # Chatty :) 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 you...
6hkmgxh3
6hkmgxh3/fwfw.php
PHP
Apache License 2.0 (Apache)
9,410
<?PHP /* $Id$ */ # This file is part of Chatty :) # Copyright (C) 2003, 2004, 2005 Marco Olivo # # Chatty :) 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 you...
08ku907
08ku907/fwfw.php
PHP
Apache License 2.0 (Apache)
9,410
using namespace std; using namespace cv; class BeeHive { public: Conf conf; vector<Pair2i>* pairwiseMatches; const vector<KeyPoint>* keypoints1; const vector<KeyPoint>* keypoints2; int currentDance; int fieldSize; Outlier *biggestOutlier; Outlier **previousSolutions; vector<Outlier...
3dReconstruction
Source/Build3dModel/Build3dModel/beehive.h
C
New BSD License (BSD)
11,122
class Conf { public: int NumberOfThreads; int NumberOfIterations; int Population; int MaxNumberOfAttempts; double NormDeviation; int OutlierSuspectAttempts; int OutlierConfirmAttempts; double OutlierSuspectTresholdPct; double OutlierConfirmTresholdPct; //double ReplacementTrashold; };
3dReconstruction
Source/Build3dModel/Build3dModel/beehiveConfiguration.h
C
New BSD License (BSD)
315
#include "opencv2/imgproc/imgproc.hpp" #include "opencv2/calib3d/calib3d.hpp" #include "opencv2/nonfree/features2d.hpp" #include "opencv2/nonfree/nonfree.hpp" #include "opencv2/highgui/highgui.hpp" #include "opencv2/core/opengl_interop.hpp" #include "opencv2/contrib/contrib.hpp" #include <windows.h> #include <GL/...
3dReconstruction
Source/Build3dModel/Build3dModel/build3dmodel.cpp
C++
New BSD License (BSD)
27,412
using namespace std; typedef pair<int, int> Pair2i; typedef map<int, Pair2i> SetIntPair;
3dReconstruction
Source/Build3dModel/Build3dModel/customTypes.h
C
New BSD License (BSD)
96
#include "opencv2/core/core.hpp" using namespace cv; class Outlier { public: int suspectedAsOutlierCount; Pair2i pair; double distance; vector<Pair2i> tabooList; int timesVisited; public: Outlier(Pair2i _pair, double _distance); Outlier(); double suspectedAsOutlierPct() { return ((doub...
3dReconstruction
Source/Build3dModel/Build3dModel/outlier.h
C
New BSD License (BSD)
628
<?xml version="1.0"?> <opencv_storage> <imageWidth>640</imageWidth> <imageHeight>480</imageHeight> <extension>png</extension> <box> -0.023121 -0.038009 -0.091940 0.078626 0.121636 -0.017395 </box> <K type_id="opencv-matrix"> <rows>3</rows> <cols>3</cols> <dt>d</dt> <data>1520...
3dReconstruction
Source/Build3dModel/Build3dModel/TempleModel/TempleModelCameraParameters.xml
XML
New BSD License (BSD)
27,564
<?xml version="1.0"?> <opencv_storage> <imageWidth>640</imageWidth> <imageHeight>480</imageHeight> <extension>png</extension> <K type_id="opencv-matrix"> <rows>3</rows> <cols>3</cols> <dt>d</dt> <data>1520.400000 0.000000 302.320000 0.000000 1525.900000 246.870000 0.000000 0.000000 1.00...
3dReconstruction
Source/Build3dModel/Build3dModel/TempleModel/TempleModelCameraParameters123.xml
XML
New BSD License (BSD)
1,716
#include "opencv2/highgui/highgui.hpp" #include "opencv2/calib3d/calib3d.hpp" #include "opencv2/imgproc/imgproc.hpp" #include "opencv2/features2d/features2d.hpp" #include "opencv2/nonfree/nonfree.hpp" #include <iostream> using namespace cv; using namespace std; static void help(char** argv) { cout << "\nThis pro...
3dReconstruction
Spikes/DescriptorMatcher/descriptor_extractor_matcher.cpp
C++
New BSD License (BSD)
12,141
///* // * stereo_match.cpp // * calibration // * // * Created by Victor Eruhimov on 1/18/10. // * Copyright 2010 Argus Corp. All rights reserved. // * // */ // //#include "opencv2/calib3d/calib3d.hpp" //#include "opencv2/imgproc/imgproc.hpp" //#include "opencv2/highgui/highgui.hpp" //#include "opencv2/contrib/cont...
3dReconstruction
Spikes/StereoMatch/stereo_match.cpp
C++
New BSD License (BSD)
13,693
<?xml version="1.0"?> <opencv_storage> <K type_id="opencv-matrix"> <rows>3</rows> <cols>3</cols> <dt>d</dt> <data>1520.400000 0.000000 302.320000 0.000000 1525.900000 246.870000 0.000000 0.000000 1.000000</data> </K> <D type_id="opencv-matrix"> <rows>8</rows> <cols>1</cols> ...
3dReconstruction
Spikes/StereoMatch/temple47cameraParameters.xml
XML
New BSD License (BSD)
25,333
<?xml version="1.0"?> <opencv_storage> <R type_id="opencv-matrix"> <rows>3</rows> <cols>3</cols> <dt>d</dt> <data> 9.9975845371004723e-001 5.2938494283308168e-003 -2.1330949194199155e-002 -4.9128856780201770e-003 9.9982820089904900e-001 1.7872667436219555e-002 2.1421899766595125e-002 -...
3dReconstruction
Spikes/StereoRectifySpike/extrinsics.xml
XML
New BSD License (BSD)
2,015
<?xml version="1.0"?> <opencv_storage> <M1 type_id="opencv-matrix"> <rows>3</rows> <cols>3</cols> <dt>d</dt> <data> 5.3471311032432391e+002 0. 3.3513838135674729e+002 0. 5.3471311032432391e+002 2.4020578137651339e+002 0. 0. 1.</data></M1> <D1 type_id="opencv-matrix"> <rows>1</rows> <cols>...
3dReconstruction
Spikes/StereoRectifySpike/intrinsics.xml
XML
New BSD License (BSD)
908
///* This is sample from the OpenCV book. The copyright notice is below */ // ///* *************** License:************************** // Oct. 3, 2008 // Right to use this code in any way you want without warranty, support or any guarantee of it working. // // BOOK: It would be nice if you cited it: // Learning ...
3dReconstruction
Spikes/StereoRectifySpike/stereo_calib.cpp
C++
New BSD License (BSD)
14,784
<?xml version="1.0"?> <opencv_storage> <imagelist> "left01.jpg" "right01.jpg" "left02.jpg" "right02.jpg" "left03.jpg" "right03.jpg" "left04.jpg" "right04.jpg" "left05.jpg" "right05.jpg" "left06.jpg" "right06.jpg" "left07.jpg" "right07.jpg" "left08.jpg" "right08.jpg" "left09.jpg" "right09.jpg" "left11.jpg" "right11.jpg"...
3dReconstruction
Spikes/StereoRectifySpike/stereo_calib.xml
XML
New BSD License (BSD)
434
#include"CRectangle.h" void CRectangle::setValues(int a, int b){ x = a; y = b; } int CRectangle::area(){ return(x*y); }
2112110124
Example01/CRectangle.cpp
C++
Microsoft Reciprocal License (Ms-RL)
129
#include<iostream> using namespace std; class CRectangle { int x, y; public: void setValues(int a, int b); int area(); };
2112110124
Example01/CRectangle.h
C
Microsoft Reciprocal License (Ms-RL)
131
#include"CRectangle.h" #include<conio.h> int main() { CRectangle rect; rect.setValues(3, 4); cout << "area:" << rect.area(); _getch(); return 0; }
2112110124
Example01/main.cpp
C++
Microsoft Reciprocal License (Ms-RL)
161
#include"CRectangle.h" void CRectangle::setValues(int a, int b){ x = a; y = b; } int CRectangle::area(){ return(x*y); }
2112110124
Example02/CRectangle.cpp
C++
Microsoft Reciprocal License (Ms-RL)
129
#include<iostream> using namespace std; class CRectangle { int x, y; public: void setValues(int a, int b); int area(); };
2112110124
Example02/CRectangle.h
C
Microsoft Reciprocal License (Ms-RL)
131
#include"CRectangle.h" #include<conio.h> int main() { CRectangle recta; CRectangle rectb; recta.setValues(3, 4); rectb.setValues(5, 6); cout << "area a:" << recta.area()<<"\n"; cout << "area b:" << rectb.area(); _getch(); return 0; }
2112110124
Example02/main.cpp
C++
Microsoft Reciprocal License (Ms-RL)
253
#include"CRectangle.h" void CRectangle::setValues(int a, int b){ x = a; y = b; } int CRectangle::area(){ return(x*y); }
2112110124
Example03/CRectangle.cpp
C++
Microsoft Reciprocal License (Ms-RL)
129
#include<iostream> using namespace std; class CRectangle{ int x, y; public: void setValues(int a, int b); int area(); };
2112110124
Example03/CRectangle.h
C
Microsoft Reciprocal License (Ms-RL)
132
#include"CRectangle.h" #include<conio.h> int main(){ CRectangle *rect = new CRectangle(); rect->setValues(3, 4); cout << " area:" << rect->area(); _getch(); return 0; }
2112110124
Example03/main.cpp
C++
Microsoft Reciprocal License (Ms-RL)
186
#include"CRectangle.h" void CRectangle::setValues(int a, int b){ x = a; y = b; } int CRectangle::area(){ return(x*y); }
2112110124
Example04/CRectangle.cpp
C++
Microsoft Reciprocal License (Ms-RL)
133
#include<iostream> using namespace std; class CRectangle{ int x, y; public: void setValues(int a, int b); int area(); };
2112110124
Example04/CRectangle.h
C
Microsoft Reciprocal License (Ms-RL)
132
#include"CRectangle.h" #include<conio.h> int main() { CRectangle *rect = new CRectangle(); rect->setValues(3, 4); cout << "area:" << rect->area(); delete rect; _getch(); return 0; }
2112110124
Example04/main.cpp
C++
Microsoft Reciprocal License (Ms-RL)
199
#include"CRectangle.h" CRectangle::CRectangle(int a, int b){ width = a; height = b; } int CRectangle::area(){ return(width*height); }
2112110124
Example05/CRectangle.cpp
C++
Microsoft Reciprocal License (Ms-RL)
143
#include<iostream> using namespace std; class CRectangle{ int width; int height; public: CRectangle(int, int); int area(); };
2112110124
Example05/CRectangle.h
C
Microsoft Reciprocal License (Ms-RL)
137
#include"CRectangle.h" #include<conio.h> int main(){ CRectangle recta(3, 4); CRectangle rectb(5, 6); cout << "area a:" << recta.area() << "\n"; cout << "area b:" << rectb.area(); _getch(); return 0; }
2112110124
Example05/main.cpp
C++
Microsoft Reciprocal License (Ms-RL)
215
#include"CRectangle.h" CRectangle::CRectangle(){ width = 5; height = 5; } CRectangle::CRectangle(int a, int b){ width = a; height = b; } int CRectangle::area(){ return(width*height); }
2112110124
Example06/CRectangle.cpp
C++
Microsoft Reciprocal License (Ms-RL)
202
#include<iostream> using namespace std; class CRectangle{ int width; int height; public: CRectangle(); CRectangle(int, int); int area(); };
2112110124
Example06/CRectangle.h
C
Microsoft Reciprocal License (Ms-RL)
153
#include"CRectangle.h" #include<conio.h> int main(){ CRectangle recta(3, 4); CRectangle rectb; cout << "area a" << recta.area() << "\n"; cout << "area b:" << rectb.area(); _getch(); return 0; }
2112110124
Example06/main.cpp
C++
Microsoft Reciprocal License (Ms-RL)
208
#include"CRectangle.h" CRectangle::CRectangle(int a, int b){ width = new int; height = new int; *width = a; *height = b; } int CRectangle::area(){ return((*width)*(*height)); }
2112110124
Example07/CRectangle.cpp
C++
Microsoft Reciprocal License (Ms-RL)
192
#include<iostream> using namespace std; class CRectangle{ int *width; int *height; public: CRectangle(int, int); int area(); };
2112110124
Example07/CRectangle.h
C
Microsoft Reciprocal License (Ms-RL)
141
#include"CRectangle.h" #include<conio.h> int main() { CRectangle recta(3, 4); cout << "area a:" << recta.area(); _getch(); return 0; }
2112110124
Example07/main.cpp
C++
Microsoft Reciprocal License (Ms-RL)
148
#include"CRectangle.h" CRectangle::CRectangle(int a, int b){ width = new int; height = new int; *width = a; *height = b; } CRectangle::~CRectangle(){ delete width; delete height; } int CRectangle::area(){ return(*width)*(*height); }
2112110124
Example08/CRectangle.cpp
C++
Microsoft Reciprocal License (Ms-RL)
256
#include<iostream> using namespace std; class CRectangle{ int *width; int *height; public: CRectangle(int, int); ~CRectangle(); int area(); };
2112110124
Example08/CRectangle.h
C
Microsoft Reciprocal License (Ms-RL)
158
#include"CRectangle.h" #include<conio.h> int main() { CRectangle recta(3, 4); cout << "area a:" << recta.area(); _getch(); return 0; }
2112110124
Example08/main.cpp
C++
Microsoft Reciprocal License (Ms-RL)
148
#include "CRectangle.h" void CReactangle:: setValues(int a, int b) { w = a; h = b; } int CReactangle:: area() { return (w*h); }
2112110124
Example09/CRectangle.cpp
C++
Microsoft Reciprocal License (Ms-RL)
139
#include <iostream> using namespace std; class CReactangle{ int w,h; public: void setValues(int a, int b); int area(); };
2112110124
Example09/CRectangle.h
C
Microsoft Reciprocal License (Ms-RL)
134
#include "CRectangle.h" #include <conio.h> int main() { CReactangle recta; CReactangle *rectb; rectb = &recta; rectb -> setValues(8,9); cout <<"area: " << recta.area(); cout <<"area: " << rectb->area(); _getch(); return 0; }
2112110124
Example09/main.cpp
C++
Microsoft Reciprocal License (Ms-RL)
244
#include "Crectangle.h" void CRectangle::setValues(int a, int b){ w = a; h = b; } int CRectangle::area(){ return(w*h); }
2112110124
Example10/CRectangle.cpp
C++
Microsoft Reciprocal License (Ms-RL)
132
#include <iostream> using namespace std; class CRectangle{ int w, h; public: void setValues(int a, int b); int area(); };
2112110124
Example10/CRectangle.h
C
Microsoft Reciprocal License (Ms-RL)
136
#include "Crectangle.h" #include <conio.h> int main(){ CRectangle recta; recta.setValues(3,4); CRectangle*rectb; rectb = &recta; rectb->setValues(3,9); cout << "area: " << recta.area(); cout << "\narea: " << rectb->area(); CRectangle *rectc = new CRectangle(); rectc->setValues(5,6); rectb = rect...
2112110124
Example10/main.cpp
C++
Microsoft Reciprocal License (Ms-RL)
468
#include "CRectangle.h" void CRectangle::setValues(int a, int b){ w = a; h = b; } int CRectangle::area(){ return(w*h); }
2112110124
Example11/CRectangle.cpp
C++
Microsoft Reciprocal License (Ms-RL)
132
#include <iostream> using namespace std; class CRectangle{ int w, h; public: void setValues(int a, int b); int area(); };
2112110124
Example11/CRectangle.h
C
Microsoft Reciprocal License (Ms-RL)
136
#include "CRectangle.h" #include <conio.h> int main(){ CRectangle *rectb; CRectangle *rectc = new CRectangle(); rectc->setValues(8,9); rectb = rectc; cout << "area: " << rectb->area(); cout << "\narea: " << rectc->area(); _getch(); delete rectb; return 0; }
2112110124
Example11/main.cpp
C++
Microsoft Reciprocal License (Ms-RL)
280
#include "CRectangle.h" void CRectangle::setValues(int a, int b){ w = a; h = b; } void CRectangle::setValues(CRectangle *r){ rect = r; }
2112110124
Example12/CRectangle.cpp
C++
Microsoft Reciprocal License (Ms-RL)
148
#include <iostream> using namespace std; class CRectangle{ int w, h; CRectangle *rect; public: void setValues(CRectangle *rect); void setValues(int a, int b); int area(); };
2112110124
Example12/CRectangle.h
C
Microsoft Reciprocal License (Ms-RL)
193
#include "CRectangle.h" #include <conio.h> int main(){ CRectangle *recta = new CRectangle(); recta->setValues(3,4); CRectangle rectb; rectb.setValues(recta); //cout << "area: " << recta-> _getch(); delete recta; return 0; }
2112110124
Example12/main.cpp
C++
Microsoft Reciprocal License (Ms-RL)
245